/* ===========================
   Global Styles
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:    #1a2e4a;
  --gold:    #c8a951;
  --accent:  #2563eb;
  --light:   #f5f7fa;
  --white:   #ffffff;
  --text:    #333333;
  --muted:   #666666;
  --border:  #dde3ec;
  --radius:  6px;
  --shadow:  0 2px 12px rgba(0,0,0,0.08);
  --font-body: 'Georgia', serif;
  --font-ui:   'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }

/* ===========================
   Navigation
   =========================== */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo span { color: var(--gold); }

nav ul { list-style: none; display: flex; gap: 0.25rem; }

nav a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
  transition: all 0.2s;
}

nav a:hover, nav a.active {
  color: var(--white);
  background: rgba(200,169,81,0.2);
}

nav a.active { color: var(--gold); }

nav .cta-nav {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  margin-left: 0.5rem;
}

nav .cta-nav:hover {
  background: #d9b96a;
  color: var(--navy) !important;
}

/* ===========================
   Hero
   =========================== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0f1f35 100%);
  color: var(--white);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,81,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(200,169,81,0.2);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200,169,81,0.3);
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-family: var(--font-body);
}

.hero-price {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
}

.hero-price strong { color: var(--gold); font-size: 1.2rem; }

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: #d9b96a;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,169,81,0.4);
}

.btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-dark:hover {
  background: #243d5c;
  transform: translateY(-2px);
}

/* ===========================
   Page Header (inner pages)
   =========================== */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #0f1f35 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem 3.5rem;
}

.page-header h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.page-header p { opacity: 0.75; font-size: 1.05rem; }

/* ===========================
   Sections / Layout
   =========================== */
section { padding: 5rem 2rem; }

.container { max-width: 1140px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-intro {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 3rem;
  font-family: var(--font-body);
  line-height: 1.7;
}

/* ===========================
   Portfolio Grid
   =========================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--white);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.browser-mock { position: relative; }

.browser-bar {
  background: #e8ecf0;
  padding: 0.55rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.browser-dots { display: flex; gap: 5px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 22px;
  margin-left: 0.5rem;
  padding: 0 0.5rem;
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  align-items: center;
}

.preview-screen { height: 200px; position: relative; overflow: hidden; }

/* Preview styles */
.preview-modern { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.preview-modern::before { content: ''; position: absolute; top: 20px; left: 20px; width: 120px; height: 10px; background: #e94560; border-radius: 2px; }
.preview-modern::after { content: ''; position: absolute; top: 50px; left: 20px; right: 20px; height: 4px; background: rgba(255,255,255,0.15); border-radius: 2px; box-shadow: 0 16px 0 rgba(255,255,255,0.1), 0 32px 0 rgba(255,255,255,0.08); }
.preview-modern .preview-hero-block { position: absolute; bottom: 20px; left: 20px; right: 20px; height: 70px; background: linear-gradient(90deg, #e94560, #c0392b); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.9); font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

.preview-restaurant { background: #2c1810; }
.preview-restaurant::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%); }
.preview-restaurant .rest-overlay { position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Crect width='100' height='100' fill='%23d4a853' opacity='0.15'/%3E%3C/svg%3E"); background-size: 40px; }
.preview-restaurant .rest-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: white; }
.preview-restaurant .rest-content .rest-name { font-size: 1.1rem; font-weight: 700; font-style: italic; letter-spacing: 2px; color: #d4a853; }
.preview-restaurant .rest-content .rest-sub { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; opacity: 0.8; }

.preview-trades { background: #f8f9fa; }
.preview-trades .trades-nav { position: absolute; top: 0; left: 0; right: 0; height: 30px; background: #1e3a5f; display: flex; align-items: center; padding: 0 12px; gap: 8px; }
.preview-trades .trades-nav span { width: 30px; height: 5px; background: rgba(255,255,255,0.4); border-radius: 2px; }
.preview-trades .trades-hero { position: absolute; top: 30px; left: 0; right: 0; height: 100px; background: linear-gradient(90deg, #1e3a5f, #2c5282); display: flex; align-items: center; padding: 0 14px; }
.preview-trades .trades-title { color: white; font-size: 0.75rem; font-weight: 700; line-height: 1.4; }
.preview-trades .trades-title small { display: block; color: #fcd34d; font-size: 0.55rem; letter-spacing: 1px; }
.preview-trades .trades-cards { position: absolute; bottom: 10px; left: 10px; right: 10px; display: flex; gap: 6px; }
.preview-trades .trades-card { flex: 1; height: 40px; background: white; border: 1px solid #e2e8f0; border-radius: 3px; border-top: 3px solid #1e3a5f; }

.preview-salon { background: #fdf8f4; }
.preview-salon::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, #c9a96e, #e8d5b7, #c9a96e); }
.preview-salon .salon-content { position: absolute; top: 30px; left: 0; right: 0; text-align: center; }
.preview-salon .salon-name { font-size: 1rem; font-weight: 300; letter-spacing: 5px; text-transform: uppercase; color: #3d2b1f; }
.preview-salon .salon-divider { width: 40px; height: 1px; background: #c9a96e; margin: 6px auto; }
.preview-salon .salon-sub { font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase; color: #c9a96e; }
.preview-salon .salon-image { position: absolute; bottom: 0; left: 0; right: 0; height: 90px; background: linear-gradient(180deg, #e8d5b7 0%, #c9a96e 100%); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }

.preview-shop { background: #ffffff; }
.preview-shop .shop-header { position: absolute; top: 0; left: 0; right: 0; height: 28px; background: #111; display: flex; align-items: center; padding: 0 10px; }
.preview-shop .shop-logo { font-size: 0.65rem; font-weight: 800; color: white; flex: 1; }
.preview-shop .shop-icons { display: flex; gap: 6px; }
.preview-shop .shop-icons span { width: 14px; height: 14px; background: rgba(255,255,255,0.3); border-radius: 2px; }
.preview-shop .shop-banner { position: absolute; top: 28px; left: 0; right: 0; height: 80px; background: linear-gradient(90deg, #667eea, #764ba2); display: flex; align-items: center; justify-content: center; color: white; font-size: 0.75rem; font-weight: 700; }
.preview-shop .shop-products { position: absolute; bottom: 10px; left: 10px; right: 10px; display: flex; gap: 6px; }
.preview-shop .shop-product { flex: 1; background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 3px; padding: 6px; }
.preview-shop .product-img { height: 40px; background: linear-gradient(135deg, #dee2e6, #adb5bd); border-radius: 2px; margin-bottom: 4px; }
.preview-shop .product-price { font-size: 0.55rem; font-weight: 700; color: #495057; }

.preview-creative { background: #0a0a0a; }
.preview-creative .creative-grid { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3px; padding: 3px; }
.preview-creative .creative-item { border-radius: 2px; }
.preview-creative .creative-item:nth-child(1) { background: linear-gradient(135deg, #f093fb, #f5576c); }
.preview-creative .creative-item:nth-child(2) { background: linear-gradient(135deg, #4facfe, #00f2fe); grid-row: span 2; }
.preview-creative .creative-item:nth-child(3) { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.preview-creative .creative-item:nth-child(4) { background: linear-gradient(135deg, #fa709a, #fee140); }
.preview-creative .creative-item:nth-child(5) { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.preview-creative .creative-item:nth-child(6) { background: linear-gradient(135deg, #fd7f6f, #febc2e); }

.portfolio-card-info { padding: 1.4rem 1.5rem; }
.portfolio-card-info h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.portfolio-card-info p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; margin-bottom: 0.75rem; }

.portfolio-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag { font-size: 0.72rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 50px; background: var(--light); color: var(--navy); border: 1px solid var(--border); }
.tag-price { background: rgba(200,169,81,0.15); color: #8a6d00; border-color: var(--gold); }

/* ===========================
   Pricing
   =========================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.25s;
  background: var(--white);
  position: relative;
}

.pricing-card:hover { border-color: var(--navy); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }

.pricing-card.featured { border-color: var(--gold); background: var(--navy); color: var(--white); transform: scale(1.02); }

.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 0.25rem 1rem; border-radius: 50px; }

.pricing-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-card.featured h3 { color: var(--gold); }

.pricing-price { font-size: 3rem; font-weight: 800; line-height: 1; margin: 1.2rem 0 0.25rem; color: var(--navy); }
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-price sup { font-size: 1.4rem; font-weight: 700; vertical-align: super; }

.pricing-period { font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.6); }

.pricing-features { list-style: none; margin-bottom: 2rem; text-align: left; }
.pricing-features li { padding: 0.5rem 0; font-size: 0.9rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.6rem; color: var(--text); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.15); }
.pricing-features li::before { content: '✓'; color: #22c55e; font-weight: 700; flex-shrink: 0; }
.pricing-card.featured .pricing-features li::before { color: var(--gold); }

/* ===========================
   Steps / How It Works
   =========================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.step-item { text-align: center; padding: 2rem 1.5rem; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--gold); font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; }
.step-item h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.6rem; }
.step-item p { font-size: 0.9rem; color: var(--muted); font-family: var(--font-body); line-height: 1.65; }

/* ===========================
   About
   =========================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.about-visual { background: linear-gradient(135deg, var(--navy) 0%, #2c4a6e 100%); border-radius: var(--radius); aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); font-size: 4rem; gap: 1rem; padding: 2rem; }
.about-visual p { font-size: 0.85rem; opacity: 0.6; letter-spacing: 2px; text-transform: uppercase; text-align: center; }

.about-content h2 { margin-bottom: 1.2rem; }
.about-content p { color: var(--muted); font-family: var(--font-body); margin-bottom: 1.2rem; line-height: 1.7; }

.about-list { list-style: none; margin: 1.5rem 0 2rem; }
.about-list li { padding: 0.5rem 0; font-size: 0.95rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.about-list li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ===========================
   Contact
   =========================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }

.contact-info-box { background: var(--navy); border-radius: var(--radius); padding: 2.5rem; color: var(--white); }
.contact-info-box h3 { font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--gold); }

.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-detail .icon { font-size: 1.3rem; }
.contact-detail strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 0.2rem; }
.contact-detail span { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

.form-title { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.form-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; font-family: var(--font-body); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); margin-bottom: 0.45rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.95rem; font-family: var(--font-ui); color: var(--text); background: var(--white); transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ===========================
   FAQ
   =========================== */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-item h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.6rem; display: flex; gap: 0.6rem; }
.faq-item h4::before { content: 'Q'; background: var(--gold); color: var(--navy); font-size: 0.75rem; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 800; }
.faq-item p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; font-family: var(--font-body); padding-left: 1.8rem; }

/* ===========================
   CTA Banner
   =========================== */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, #0f1f35 100%); color: var(--white); text-align: center; padding: 5rem 2rem; }
.cta-banner h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
.cta-banner p { opacity: 0.75; margin-bottom: 2rem; font-family: var(--font-body); font-size: 1.05rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===========================
   Footer
   =========================== */
footer {
  background: #0d1b2a;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.85rem;
}

.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
footer strong { color: var(--gold); }

.affiliate-btn {
  display: inline-block;
  background: var(--gold);
  color: #1a2e4a;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 1.2rem;
  transition: background 0.2s;
}

.affiliate-btn:hover { background: #d9b96a; color: #1a2e4a; }

/* ===========================
   Utility
   =========================== */
.bg-light { background: var(--light); }
.text-center { text-align: center; }

.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  nav ul { gap: 0.1rem; }
  nav a { padding: 0.4rem 0.5rem; font-size: 0.75rem; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .section-title { font-size: 1.8rem; }
}
