/* css/main.css — Book Experts LLC Design System */

/* ── RESET & BASE ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-950:  #060d1a;
  --navy-900:  #0a1628;
  --navy-800:  #0f1f33;
  --navy-700:  #162d4a;
  --navy-600:  #1e3a5f;
  --navy-500:  #2a4f7c;
  --gold-600:  #a8841f;
  --gold-500:  #c9a227;
  --gold-400:  #efc93d;
  --gold-300:  #f5dc6f;
  --gold-100:  #fdf8d4;
  --cream-200: #f2ece0;
  --cream-100: #f9f6f0;
  --white:     #ffffff;
  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-300:  #d1d5db;
  --gray-400:  #9ca3af;
  --gray-500:  #6b7280;
  --gray-600:  #4b5563;
  --gray-700:  #374151;
  --gray-900:  #111827;
  --green-500: #22c55e;
  --green-100: #dcfce7;
  --green-700: #15803d;
  --red-500:   #ef4444;
  --red-100:   #fee2e2;
  --red-700:   #b91c1c;
  --blue-100:  #dbeafe;
  --blue-600:  #2563eb;
  --purple-100:#f3e8ff;
  --purple-600:#9333ea;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full:9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 2px 16px rgba(10,22,40,.08);
  --shadow-lg:  0 8px 32px rgba(10,22,40,.16);
  --shadow-gold:0 4px 24px rgba(201,162,39,.28);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--navy-900); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; }
ul { list-style: none; }

/* ── LAYOUT ──────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 60px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── TOPBAR ──────────────────────────────────────────────────────── */
.topbar { background: var(--navy-900); padding: 8px 0; font-size: 12px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; }
.topbar-left  { display: flex; gap: 24px; }
.topbar-left a, .topbar-right { color: var(--gray-300); }
.topbar-left a { display: flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar-left a:hover { color: var(--gold-400); }
.topbar-left a i { font-size: 11px; }

/* ── NAVBAR ──────────────────────────────────────────────────────── */
.navbar { background: #fff; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--gray-100); transition: box-shadow .3s; }
.navbar.scrolled { box-shadow: 0 2px 20px rgba(10,22,40,.12); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 32px; }
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { width: 36px; height: 36px; background: linear-gradient(135deg,#c9a227,#f5dc6f); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--navy-900); font-size: 16px; box-shadow: var(--shadow-gold); }
.brand-name { display: block; font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 18px; line-height: 1; }
.brand-llc  { display: block; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-500); line-height: 1; margin-top: 2px; }
.nav-links  { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray-700); transition: color .2s; }
.nav-links a:hover { color: var(--gold-500); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; flex-direction: column; justify-content: space-between; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--navy-700); border-radius: 2px; transition: all .3s; }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: var(--radius-md); font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all .2s; text-decoration: none; }
.btn-primary { background: var(--gold-500); color: var(--navy-900); box-shadow: var(--shadow-gold); }
.btn-primary:hover { background: var(--gold-400); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(201,162,39,.35); }
.btn-primary:active { transform: translateY(0); }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-secondary { background: transparent; color: var(--navy-700); border: 2px solid var(--navy-600); }
.btn-secondary:hover { background: var(--navy-600); color: #fff; }
.btn-ghost { background: transparent; color: var(--gray-600); }
.btn-ghost:hover { background: var(--gray-100); color: var(--navy-900); }
.btn-white { background: #fff; color: var(--navy-900); }
.btn-white:hover { background: var(--cream-100); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: #fff; color: var(--navy-900); }
.btn-danger { background: var(--red-500); color: #fff; }
.btn-danger:hover { background: #dc2626; }
.btn:disabled, .btn[disabled] { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ── FORM ELEMENTS ───────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-800); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md); font-size: 14px; color: var(--navy-900);
  background: #fff; transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-400); box-shadow: 0 0 0 3px rgba(239,201,61,.15);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { cursor: pointer; }
.form-hint  { font-size: 12px; color: var(--gray-400); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--red-500); margin-top: 4px; }

/* ── CARDS ───────────────────────────────────────────────────────── */
.card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); transition: box-shadow .3s, transform .2s; }
.card:hover { box-shadow: var(--shadow-lg); }
.card-body { padding: 28px; }

/* ── SECTION HEADERS ─────────────────────────────────────────────── */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 12px; }
.eyebrow::before,.eyebrow::after { content:''; display:block; width:28px; height:2px; background:var(--gold-500); border-radius:2px; }
.section-title { font-size: clamp(28px,4vw,44px); font-weight: 700; color: var(--navy-900); margin-bottom: 16px; }
.section-title-light { color: #fff; }
.section-subtitle { font-size: 17px; color: var(--gray-500); line-height: 1.7; max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.gold-text { background: linear-gradient(135deg,var(--gold-500),var(--gold-300)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.divider-gold { width: 48px; height: 3px; background: var(--gold-500); border-radius: 2px; margin: 0 auto 24px; }

/* ── BADGES ──────────────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; }
.badge-gray   { background: var(--gray-100); color: var(--gray-600); }
.badge-blue   { background: var(--blue-100); color: var(--blue-600); }
.badge-green  { background: var(--green-100); color: var(--green-700); }
.badge-red    { background: var(--red-100); color: var(--red-700); }
.badge-purple { background: var(--purple-100); color: var(--purple-600); }
.badge-indigo { background: #e0e7ff; color: #4338ca; }
.badge-pink   { background: #fce7f3; color: #be185d; }
.badge-orange { background: #ffedd5; color: #c2410c; }
.badge-yellow { background: #fef9c3; color: #a16207; }
.badge-gold   { background: var(--gold-100); color: var(--gold-600); }

/* ── ALERTS ──────────────────────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius-md); font-size: 14px; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 10px; }
.alert-success { background: var(--green-100); color: var(--green-700); border: 1px solid #86efac; }
.alert-error   { background: var(--red-100);   color: var(--red-700);   border: 1px solid #fca5a5; }
.alert-info    { background: var(--blue-100);  color: var(--blue-600);  border: 1px solid #93c5fd; }
.alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }

/* ─────────────────────────────────────────────────────────────────────────
   LANDING PAGE SECTIONS
───────────────────────────────────────────────────────────────────────── */

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-600) 55%, var(--navy-700) 100%);
  padding: 80px 0 100px; position: relative; overflow: hidden;
}
.hero::before {
  content:''; position:absolute; top:-80px; right:-80px;
  width:500px; height:500px; border-radius:50%;
  background:rgba(201,162,39,.06); pointer-events:none;
}
.hero::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:60px;
  background:#fff; clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-400); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.hero-eyebrow i { font-size: 12px; }
.hero-title { font-size: clamp(32px,4.5vw,54px); font-weight: 700; color: #fff; margin-bottom: 20px; line-height: 1.1; }
.hero-title .gold-text { -webkit-text-fill-color: transparent; }
.hero-desc { color: var(--gray-300); font-size: 17px; line-height: 1.7; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { width: 34px; height: 34px; background: rgba(201,162,39,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold-400); font-size: 13px; flex-shrink: 0; }
.trust-label { font-size: 12px; font-weight: 600; color: #fff; line-height: 1.2; }
.trust-sub   { font-size: 11px; color: var(--gray-400); }

/* Hero form card */
.hero-form-card { background: #fff; border-radius: var(--radius-xl); box-shadow: 0 20px 60px rgba(0,0,0,.25); padding: 36px; }
.form-card-header { text-align: center; margin-bottom: 24px; }
.form-card-icon { width: 48px; height: 48px; background: var(--gold-100); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--gold-500); font-size: 20px; margin: 0 auto 12px; }
.form-card-header h2 { font-size: 22px; color: var(--navy-900); margin-bottom: 4px; }
.form-card-header p  { font-size: 13px; color: var(--gray-500); }

/* ── STATS BAR ───────────────────────────────────────────────────── */
.stats-bar { background: var(--gold-500); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--navy-900); }
.stat-label { font-size: 13px; font-weight: 600; color: var(--navy-700); margin-top: 4px; }

/* ── SERVICES ────────────────────────────────────────────────────── */
.services { background: var(--cream-100); }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 56px; }
.service-card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-sm); transition: all .3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; transition: transform .3s; }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 { font-size: 16px; font-weight: 600; color: var(--navy-900); margin-bottom: 8px; }
.service-card p  { font-size: 13px; color: var(--gray-500); line-height: 1.65; }
.si-blue   { background:#dbeafe; color:#2563eb; }
.si-purple { background:#f3e8ff; color:#9333ea; }
.si-green  { background:#dcfce7; color:#16a34a; }
.si-orange { background:#ffedd5; color:#ea580c; }
.si-red    { background:#fee2e2; color:#dc2626; }
.si-teal   { background:#ccfbf1; color:#0d9488; }
.si-pink   { background:#fce7f3; color:#db2777; }
.si-indigo { background:#e0e7ff; color:#4f46e5; }

/* ── PACKAGES ────────────────────────────────────────────────────── */
.packages { background: #fff; }
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 56px; }
.package-card { border: 2px solid var(--gray-200); border-radius: var(--radius-xl); overflow: hidden; transition: all .3s; position: relative; }
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package-card.featured { border-color: var(--gold-400); box-shadow: var(--shadow-gold); }
.pkg-badge { position: absolute; top: 0; right: 0; background: var(--gold-500); color: var(--navy-900); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: 5px 14px; }
.pkg-badge.badge-dark { background: var(--navy-800); color: #fff; }
.pkg-header { padding: 32px 28px 24px; }
.pkg-header.featured-header { background: var(--navy-900); }
.pkg-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 16px; }
.pkg-icon.dark-icon { background: rgba(201,162,39,.2); color: var(--gold-400); }
.pkg-icon.light-icon { background: #fff; }
.pkg-name { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.pkg-tagline { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }
.pkg-header.featured-header .pkg-name    { color: #fff; }
.pkg-header.featured-header .pkg-tagline { color: var(--gray-400); }
.pkg-price { display: flex; align-items: flex-end; gap: 4px; }
.pkg-price-amount { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--navy-900); line-height: 1; }
.pkg-header.featured-header .pkg-price-amount { color: var(--gold-400); }
.pkg-price-period { font-size: 13px; color: var(--gray-400); padding-bottom: 8px; }
.pkg-body { padding: 24px 28px 28px; background: #fff; }
.pkg-features { margin-bottom: 24px; }
.pkg-feature { display: flex; align-items: flex-start; gap: 10px; padding: 5px 0; font-size: 13px; color: var(--navy-700); }
.pkg-feature i { color: var(--green-500); margin-top: 2px; font-size: 12px; flex-shrink: 0; }
.pkg-feature.missing { color: var(--gray-400); }
.pkg-feature.missing i { color: var(--gray-300); }
.pkg-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px; border-radius: var(--radius-md); font-weight: 700; font-size: 14px; cursor: pointer; transition: all .2s; text-decoration: none; }
.pkg-btn-primary { background: var(--gold-500); color: var(--navy-900); box-shadow: var(--shadow-gold); }
.pkg-btn-primary:hover { background: var(--gold-400); }
.pkg-btn-dark    { background: var(--navy-900); color: #fff; }
.pkg-btn-dark:hover    { background: var(--navy-700); }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.compare-table th { padding: 14px 16px; text-align: left; background: var(--navy-900); color: #fff; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.compare-table th.featured-col { background: rgba(201,162,39,.15); }
.compare-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); color: var(--navy-700); }
.compare-table tr:nth-child(even) td { background: var(--gray-50); }
.compare-table td.featured-col { background: rgba(201,162,39,.04); border-left: 1px solid rgba(201,162,39,.15); border-right: 1px solid rgba(201,162,39,.15); }
.compare-table td.center { text-align: center; }

/* ── PROCESS ─────────────────────────────────────────────────────── */
.process { background: var(--navy-900); padding: 80px 0; }
.process-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 24px; margin-top: 56px; position: relative; }
.process-grid::before { content:''; position:absolute; top:44px; left:10%; right:10%; height:1px; background: var(--navy-700); }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.step-circle { width: 88px; height: 88px; border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 20px; gap: 4px; }
.step-circle i  { font-size: 26px; color: #fff; }
.step-num   { font-size: 10px; font-weight: 800; color: rgba(255,255,255,.65); letter-spacing: .1em; }
.step-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.step-desc  { font-size: 12px; color: var(--gray-400); line-height: 1.6; }

/* ── TESTIMONIALS ────────────────────────────────────────────────── */
.testimonials { background: var(--cream-100); }
.rating-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border-radius: var(--radius-full); padding: 10px 20px; box-shadow: var(--shadow-md); margin-top: 20px; font-size: 14px; }
.stars { color: var(--gold-500); letter-spacing: 2px; }
.rating-num  { font-weight: 800; color: var(--navy-900); }
.rating-text { color: var(--gray-500); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.testimonial-card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-sm); transition: all .3s; }
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.testimonial-card.featured { box-shadow: 0 0 0 2px var(--gold-400), var(--shadow-md); }
.t-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.t-stars { color: var(--gold-500); font-size: 13px; letter-spacing: 2px; }
.t-quote-icon { color: var(--gold-200,#f5dc6f); font-size: 18px; opacity: .5; }
.t-text  { font-size: 13.5px; color: var(--navy-700); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.t-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--gray-100); padding-top: 14px; }
.t-name  { font-weight: 700; font-size: 13px; color: var(--navy-900); }
.t-title-text { font-size: 11px; color: var(--gray-400); }
.t-pkg-badge { background: var(--gold-100); color: var(--gold-600); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: var(--radius-full); }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq { background: #fff; }
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 15px; color: var(--navy-900); background: #fff; transition: background .2s; user-select: none; }
.faq-question:hover { background: var(--cream-100); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; color: var(--gold-500); font-size: 11px; transition: all .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { background: var(--gold-500); color: var(--navy-900); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 22px 18px; font-size: 14px; color: var(--gray-600); line-height: 1.75; border-top: 1px solid var(--gray-100); margin-top: 0; padding-top: 14px; }

/* ── CTA SECTION ─────────────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg,var(--navy-900),var(--navy-600)); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:600px; height:600px; border-radius:50%; background:rgba(201,162,39,.06); pointer-events:none; }
.cta-icon { width: 64px; height: 64px; background: rgba(201,162,39,.15); border-radius: 18px; display: flex; align-items: center; justify-content: center; color: var(--gold-400); font-size: 26px; margin: 0 auto 24px; }
.cta-section h2 { font-size: clamp(28px,4vw,44px); color: #fff; margin-bottom: 16px; }
.cta-section p  { color: var(--gray-300); font-size: 17px; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { color: var(--gray-500); font-size: 13px; margin-top: 20px; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer { background: var(--navy-900); color: var(--gray-400); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-400); transition: color .2s; }
.footer-contact a:hover { color: var(--gold-400); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 32px; height: 32px; border-radius: 8px; background: var(--navy-700); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--gray-400); transition: all .2s; }
.footer-social a:hover { background: var(--navy-600); color: var(--gold-400); }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--gray-400); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-400); }
.footer-divider { border: none; border-top: 1px solid var(--navy-700); margin: 48px 0 24px; }
.footer-disclaimer { font-size: 11px; color: var(--gray-600); text-align: center; line-height: 1.6; margin-bottom: 20px; }
.footer-disclaimer strong { color: var(--gray-500); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-bottom: 28px; font-size: 12px; color: var(--gray-600); }
.footer-links { display: flex; gap: 12px; align-items: center; }
.footer-links a { color: var(--gray-600); transition: color .2s; }
.footer-links a:hover { color: var(--gold-400); }

/* ─────────────────────────────────────────────────────────────────────────
   AUTH PAGES (login / register)
───────────────────────────────────────────────────────────────────────── */
.auth-page { min-height: 100vh; background: var(--cream-100); display: flex; align-items: center; justify-content: center; padding: 40px 16px; }
.auth-card { background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 44px; width: 100%; max-width: 480px; }
.auth-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 32px; }
.auth-card h1 { font-size: 26px; color: var(--navy-900); text-align: center; margin-bottom: 6px; }
.auth-card .sub { text-align: center; color: var(--gray-500); font-size: 14px; margin-bottom: 28px; }
.auth-footer { text-align: center; font-size: 14px; color: var(--gray-500); margin-top: 20px; }
.auth-footer a { color: var(--gold-500); font-weight: 600; }
.auth-footer a:hover { color: var(--gold-600); }

/* Step progress */
.steps { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.step { display: flex; align-items: center; gap: 8px; flex: 1; }
.step-dot { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.step-dot.active   { background: var(--gold-500); color: var(--navy-900); }
.step-dot.done     { background: var(--green-500); color: #fff; }
.step-dot.inactive { background: var(--gray-100); color: var(--gray-400); }
.step-label { font-size: 12px; font-weight: 600; }
.step-label.active   { color: var(--navy-900); }
.step-label.inactive { color: var(--gray-400); }
.step-line { flex: 1; height: 1px; background: var(--gray-200); }

/* Package radio cards */
.pkg-radio-list { display: flex; flex-direction: column; gap: 8px; }
.pkg-radio { display: flex; align-items: flex-start; gap: 12px; padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: var(--radius-md); cursor: pointer; transition: all .2s; }
.pkg-radio:hover { border-color: var(--gray-300); }
.pkg-radio.selected { border-color: var(--gold-400); background: var(--gold-100); }
.pkg-radio input[type=radio] { accent-color: var(--gold-500); margin-top: 3px; flex-shrink: 0; }
.pkg-radio-name { font-weight: 700; font-size: 14px; color: var(--navy-900); }
.pkg-radio-desc { font-size: 12px; color: var(--gray-500); }

/* ── CHECKOUT ────────────────────────────────────────────────────── */
.checkout-page { min-height: 100vh; background: var(--cream-100); padding: 40px 16px; }
.checkout-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 32px; max-width: 960px; margin: 32px auto 0; }
.order-summary { background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); padding: 28px; position: sticky; top: 24px; }
.order-summary h2 { font-size: 18px; color: var(--navy-900); margin-bottom: 20px; }
.summary-pkg { background: var(--cream-100); border-radius: var(--radius-md); padding: 16px; margin-bottom: 18px; }
.summary-pkg-name  { font-weight: 700; color: var(--navy-900); }
.summary-pkg-sub   { font-size: 12px; color: var(--gray-500); }
.summary-pkg-price { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--navy-900); margin-top: 8px; }
.summary-features { list-style: none; margin-bottom: 18px; }
.summary-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--navy-700); padding: 4px 0; }
.summary-features li i { color: var(--green-500); font-size: 12px; }
.summary-total { display: flex; justify-content: space-between; font-weight: 700; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.summary-total .total-price { color: var(--gold-500); font-size: 20px; font-family: var(--font-display); }
.guarantee-list { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.guarantee-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-500); }
.guarantee-item i { color: var(--green-500); font-size: 11px; }
.payment-card  { background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); padding: 36px; }
.payment-card h2 { font-size: 20px; color: var(--navy-900); margin-bottom: 24px; }
.stripe-notice { background: var(--blue-100); border: 1px solid #93c5fd; border-radius: var(--radius-md); padding: 14px 16px; font-size: 13px; color: var(--blue-600); margin-bottom: 24px; }
.stripe-notice code { background: rgba(37,99,235,.1); padding: 2px 6px; border-radius: 4px; font-size: 12px; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11px; color: var(--gray-400); margin-top: 14px; }

/* ─────────────────────────────────────────────────────────────────────────
   DASHBOARD LAYOUT
───────────────────────────────────────────────────────────────────────── */
.dash-layout { display: flex; min-height: 100vh; background: var(--gray-50); }

/* Sidebar */
.dash-sidebar { width: 240px; background: #fff; border-right: 1px solid var(--gray-100); display: flex; flex-direction: column; position: fixed; top: 0; left: 0; height: 100vh; z-index: 50; overflow-y: auto; }
.dash-sidebar-logo { display: flex; align-items: center; gap: 10px; padding: 20px 18px; border-bottom: 1px solid var(--gray-100); }
.dash-nav { flex: 1; padding: 16px 12px; }
.dash-nav-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--gray-400); padding: 0 12px; margin-bottom: 8px; margin-top: 4px; }
.dash-nav-link { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: var(--radius-md); font-size: 14px; font-weight: 500; color: var(--gray-600); text-decoration: none; transition: all .2s; margin-bottom: 2px; }
.dash-nav-link:hover  { background: var(--gray-50); color: var(--navy-900); }
.dash-nav-link.active { background: rgba(201,162,39,.1); color: var(--gold-600); font-weight: 700; }
.dash-nav-link i { width: 18px; text-align: center; font-size: 14px; }
.dash-user { padding: 12px; border-top: 1px solid var(--gray-100); }
.dash-user-card { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--cream-100); border-radius: var(--radius-md); margin-bottom: 8px; }
.dash-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--navy-600); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.dash-user-name  { font-weight: 600; font-size: 13px; color: var(--navy-900); }
.dash-user-email { font-size: 11px; color: var(--gray-400); }
.dash-logout { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: var(--radius-md); font-size: 13px; font-weight: 600; color: var(--red-500); text-decoration: none; transition: all .2s; }
.dash-logout:hover { background: var(--red-100); }

/* Main content area */
.dash-main { margin-left: 240px; flex: 1; display: flex; flex-direction: column; min-width: 0; }
.dash-header { background: #fff; border-bottom: 1px solid var(--gray-100); padding: 0 32px; height: 64px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 40; }
.dash-greeting h2 { font-size: 16px; font-weight: 600; color: var(--navy-900); }
.dash-greeting p  { font-size: 12px; color: var(--gray-400); }
.dash-header-actions { display: flex; align-items: center; gap: 10px; }
.dash-bell { width: 36px; height: 36px; border-radius: var(--radius-md); background: var(--gray-50); display: flex; align-items: center; justify-content: center; color: var(--gray-500); position: relative; cursor: pointer; }
.dash-bell::after { content:''; position:absolute; top:8px; right:8px; width:6px; height:6px; border-radius:50%; background:var(--gold-500); }
.dash-content { padding: 32px; flex: 1; }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 28px; }
.stat-card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-xl); padding: 22px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 16px; transition: all .2s; text-decoration: none; }
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat-card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.stat-card-value { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--navy-900); }
.stat-card-label { font-size: 12px; color: var(--gray-500); }

/* Data tables */
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th { padding: 12px 16px; text-align: left; background: var(--cream-100); color: var(--navy-700); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; border-bottom: 1px solid var(--gray-100); }
.data-table td { padding: 13px 16px; border-bottom: 1px solid var(--gray-50); color: var(--navy-700); }
.data-table tr:hover td { background: var(--gray-50); }
.data-table tr:last-child td { border-bottom: none; }

/* Progress bar */
.progress-bar-wrap { background: var(--gray-100); border-radius: var(--radius-full); height: 6px; }
.progress-bar { background: var(--gold-500); border-radius: var(--radius-full); height: 100%; transition: width .5s; }

/* Publishing stage tracker */
.stage-tracker { display: flex; justify-content: space-between; position: relative; margin: 32px 0; }
.stage-tracker::before { content:''; position:absolute; top:20px; left:0; right:0; height:2px; background:var(--gray-100); z-index:0; }
.stage-progress-line { position:absolute; top:20px; left:0; height:2px; background:var(--gold-500); z-index:0; transition:width .5s; }
.stage { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 1; flex: 1; }
.stage-dot { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all .3s; border: 2px solid var(--gray-200); background: #fff; }
.stage-dot.done    { background: var(--green-500); border-color: var(--green-500); color: #fff; }
.stage-dot.current { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); }
.stage-dot.future  { background: #fff; border-color: var(--gray-200); color: var(--gray-300); }
.stage-name { font-size: 10px; font-weight: 600; color: var(--gray-400); text-align: center; max-width: 70px; }
.stage-name.done    { color: var(--green-600,#16a34a); }
.stage-name.current { color: var(--gold-600); }

/* Upload zone */
.upload-zone { border: 2px dashed var(--gray-200); border-radius: var(--radius-xl); padding: 48px 24px; text-align: center; cursor: pointer; transition: all .2s; }
.upload-zone:hover,.upload-zone.drag-over { border-color: var(--gold-400); background: var(--gold-100); }
.upload-icon { width: 60px; height: 60px; background: var(--gold-100); border-radius: 18px; display: flex; align-items: center; justify-content: center; color: var(--gold-500); font-size: 24px; margin: 0 auto 16px; }
.upload-zone h3 { font-size: 16px; color: var(--navy-900); margin-bottom: 4px; }
.upload-zone p  { font-size: 13px; color: var(--gray-400); }

/* ── ADMIN SIDEBAR ───────────────────────────────────────────────── */
.admin-sidebar { background: var(--navy-900); }
.admin-sidebar .dash-nav-link       { color: var(--gray-400); }
.admin-sidebar .dash-nav-link:hover { background: var(--navy-700); color: #fff; }
.admin-sidebar .dash-nav-link.active{ background: var(--gold-500); color: var(--navy-900); }
.admin-sidebar .dash-nav-label      { color: var(--navy-500); }
.admin-sidebar .dash-sidebar-logo .brand-name { color: #fff; }
.admin-sidebar .dash-user-card { background: var(--navy-800); }
.admin-sidebar .dash-user-name  { color: #fff; }
.admin-sidebar .dash-logout { color: #f87171; }
.admin-sidebar .dash-logout:hover { background: rgba(239,68,68,.15); }

/* Revenue bar chart */
.bar-chart { display: flex; align-items: flex-end; gap: 12px; height: 140px; }
.bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.bar-col  { width: 100%; background: var(--gold-500); border-radius: 6px 6px 0 0; min-height: 4px; transition: height .5s; }
.bar-label { font-size: 11px; color: var(--gray-400); }
.bar-value { font-size: 10px; font-weight: 700; color: var(--navy-700); }

/* ── ANIMATION ───────────────────────────────────────────────────── */
.anim { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4, .services-grid { grid-template-columns: repeat(2,1fr); }
  .packages-grid           { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .footer-grid             { grid-template-columns: 1fr 1fr; }
  .footer-brand            { grid-column: 1 / -1; }
  .stats-row               { grid-template-columns: repeat(2,1fr); }
  .process-grid            { grid-template-columns: repeat(2,1fr); }
  .process-grid::before    { display: none; }
  .testimonials-grid       { grid-template-columns: 1fr 1fr; }
  .checkout-grid           { grid-template-columns: 1fr; }
  .order-summary           { position: static; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; flex-direction: column; align-items: center; justify-content: center; gap: 24px; z-index: 200; font-size: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; z-index: 201; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
  .nav-actions { gap: 6px; }
  .nav-actions .btn-ghost { display: none; }
  .topbar { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-main { margin-left: 0; }
  .dash-content { padding: 20px 16px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr 1fr; }
}
