/* ===================================
   NarrativeIQ — Theme Stylesheet
   =================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0e0e12;
  --bg-warm: #f7f4ef;
  --surface: #161619;
  --surface-2: #1e1e23;
  --text: #e8e4dc;
  --text-muted: #8a877f;
  --text-dim: #5a5750;
  --accent: #c8a96e;
  --accent-dim: rgba(200, 169, 110, 0.12);
  --border: rgba(200, 169, 110, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.06);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
  --space-7: 128px;

  --radius: 4px;
  --radius-md: 8px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Selection --- */
::selection { background: var(--accent); color: var(--bg); }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--text-dim); border-radius: 3px; }

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(14, 14, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  color: var(--accent);
  font-size: 10px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--text); }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  gap: 64px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(200, 169, 110, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200, 169, 110, 0.04) 0%, transparent 50%),
    var(--bg);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.price-pill {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
}

/* --- Hero Visual (Split Scene) --- */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-frame {
  width: 100%;
  max-width: 520px;
  position: relative;
}

.frame-label {
  position: absolute;
  top: -28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.frame-label--before { left: 0; }
.frame-label--after { right: 0; }

.split-scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.split-panel {
  background: var(--surface);
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel-label {
  font-size: 10px;
  color: var(--text-dim);
  text-align: center;
  letter-spacing: 0.03em;
}

/* Browser mockup */
.mock-browser {
  background: #1a1a1f;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

/* Bad site mock */
.mock-site--bad .bad-nav {
  height: 16px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin: 8px;
}

.mock-site--bad .bad-hero {
  height: 50px;
  margin: 8px;
  background: linear-gradient(135deg, #2a2a35 0%, #222230 100%);
  border-radius: 2px;
  border-left: 3px solid #666;
}

.mock-site--bad .bad-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 8px;
}

.mock-site--bad .bad-block {
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
}

.mock-site--bad .bad-footer {
  height: 12px;
  margin: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
}

/* Good site mock */
.mock-site--good .good-nav {
  height: 14px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(200,169,110,0.3) 100%);
  border-radius: 2px;
  margin: 8px;
  width: 60%;
}

.mock-site--good .good-hero {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mock-site--good .good-headline-mock {
  height: 14px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  width: 80%;
}

.mock-site--good .good-sub-mock {
  height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  width: 95%;
}

.mock-site--good .good-cta-mock {
  height: 14px;
  background: var(--accent);
  border-radius: 2px;
  width: 40%;
  margin-top: 4px;
}

.mock-site--good .good-review {
  margin: 0 8px 8px;
  background: rgba(200,169,110,0.08);
  border-radius: 2px;
  padding: 6px 8px;
  border-left: 2px solid var(--accent);
}

.mock-site--good .review-stars {
  font-size: 7px;
  color: var(--accent);
  margin-bottom: 3px;
  letter-spacing: 1px;
}

.mock-site--good .review-text-mock {
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  width: 85%;
}

.mock-site--good .good-footer-mock {
  height: 12px;
  margin: 0 8px 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}

/* --- Proof Stats --- */
.proof {
  padding: 48px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 32px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 220px;
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border-subtle);
}

/* --- How Section --- */
.how {
  padding: var(--space-7) 48px;
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(200,169,110,0.04) 0%, transparent 60%),
    var(--bg);
}

.section-header {
  max-width: 700px;
  margin: 0 auto var(--space-6);
  text-align: center;
}

.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.01em;
}

.steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.step:last-child { border-bottom: none; }

.step-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.02em;
}

.step-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding-top: 4px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

.how-note {
  max-width: 680px;
  margin: 48px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 28px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.note-mark {
  color: var(--accent);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 3px;
}

.note-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Services --- */
.services {
  padding: var(--space-7) 48px;
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
}

.services-inner { max-width: 1100px; margin: 0 auto; }

.services-header { text-align: center; margin-bottom: var(--space-5); }

.services-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.service-card {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background 0.3s ease;
}

.service-card:hover { background: var(--surface-2); }

.service-card--primary {
  background: var(--surface);
}

.service-card--primary:hover { background: #1e1e26; }

.card-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 20px;
  align-self: flex-start;
}

.card-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.card-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 24px;
  line-height: 1;
}

.card-price-note {
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 300;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.card-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 1px;
  background: var(--accent);
}

.services-retainer {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.retainer-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 4px 12px;
  flex-shrink: 0;
  margin-top: 3px;
}

.retainer-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}

.retainer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Pricing --- */
.pricing {
  padding: var(--space-7) 48px;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(200,169,110,0.05) 0%, transparent 60%),
    var(--surface);
  border-top: 1px solid var(--border-subtle);
}

.pricing-inner { max-width: 1100px; margin: 0 auto; }

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-5);
}

.pricing-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--bg);
  padding: 0;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  background: var(--surface);
}

.pricing-card-header {
  padding: 36px 32px 28px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-card--featured .pricing-card-header {
  background: var(--surface-2);
}

.plan-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 20px;
}

.plan-tag--accent {
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border);
}

.plan-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.plan-price-note {
  font-size: 16px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 300;
}

.plan-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 32px;
  flex: 1;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.plan-feature:last-child { border-bottom: none; }

.feature-check {
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

.feature-check--dim {
  color: var(--text-dim);
}

.plan-feature strong { color: var(--text); }

.plan-feature--add-on em {
  color: var(--text-dim);
  font-style: normal;
}

.plan-cta {
  padding: 24px 32px 36px;
}

.cta-btn {
  display: block;
  text-align: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-btn--secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.cta-btn--secondary:hover {
  background: var(--surface-2);
  color: var(--text);
  border-color: rgba(200,169,110,0.3);
}

.cta-btn--primary {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--bg);
}

.cta-btn--primary:hover {
  background: #d4b87e;
  border-color: #d4b87e;
}

/* Comparison table */
.comparison-table {
  margin-bottom: 48px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--surface);
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-corner {
  padding: 16px 24px;
  border-right: 1px solid var(--border-subtle);
}

.comparison-col {
  padding: 16px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-right: 1px solid var(--border-subtle);
}

.comparison-col:last-child { border-right: none; }

.comparison-col--featured {
  color: var(--accent);
  background: var(--surface-2);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg);
}

.comparison-row:last-child { border-bottom: none; }

.comparison-label {
  padding: 14px 24px;
  font-size: 13px;
  color: var(--text-muted);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
}

.comparison-cell {
  padding: 14px 24px;
  font-size: 13px;
  color: var(--text-muted);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
}

.comparison-cell:last-child { border-right: none; }

.comparison-cell--featured {
  background: var(--surface);
  color: var(--text);
}

.check-icon {
  color: var(--accent);
  font-weight: 700;
}

/* FAQ */
.pricing-faq {
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item {
  background: var(--bg);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.3s ease;
}

.faq-item:hover { background: var(--surface-2); }

.faq-q {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}

.faq-a {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Payment terms strip */
.payment-terms {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 32px;
}

.terms-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.terms-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 4px 12px;
  flex-shrink: 0;
}

.terms-value {
  font-size: 13px;
  color: var(--text-muted);
}

.terms-sep {
  width: 1px;
  height: 24px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* --- Outcomes / Verticals --- */
.outcomes {
  padding: var(--space-7) 48px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(200,169,110,0.04) 0%, transparent 60%),
    var(--bg);
  border-top: 1px solid var(--border-subtle);
}

.outcomes-inner { max-width: 1100px; margin: 0 auto; }

.outcomes-header { text-align: center; margin-bottom: var(--space-5); }

.verticals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.vertical {
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s ease;
}

.vertical:hover { background: var(--surface-2); }

.vertical-icon { color: var(--accent); opacity: 0.7; }

.vertical-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}

.vertical-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Closing --- */
.closing {
  padding: var(--space-7) 48px;
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: -0.01em;
  border: none;
}

.closing-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
}

.cta-inner {
  padding: 24px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-2);
}

.cta-text {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-muted);
  font-style: italic;
}

/* --- Footer --- */
.footer {
  padding: 48px;
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 220px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-head {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

/* ===================================
   AUDIT PAGE
   =================================== */

.audit-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  background:
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(200,169,110,0.06) 0%, transparent 60%),
    var(--bg);
}

.audit-hero-inner { max-width: 760px; }

.audit-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.audit-headline em { font-style: italic; color: var(--accent); }

.audit-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 14px;
}

.audit-includes {
  padding: var(--space-6) 48px;
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.audit-includes-inner { max-width: 820px; margin: 0 auto; }

.audit-items { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }

.audit-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: flex-start;
}

.audit-item:last-child { border-bottom: none; }

.audit-item-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  padding-top: 4px;
}

.audit-item-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.audit-item-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.audit-form-section {
  padding: var(--space-6) 48px;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(200,169,110,0.04) 0%, transparent 60%),
    var(--bg);
}

.audit-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 48px;
}

.audit-form-header { margin-bottom: 32px; }

.audit-form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.audit-form-subtitle { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.audit-error {
  background: rgba(220, 80, 60, 0.1);
  border: 1px solid rgba(220, 80, 60, 0.25);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px;
  color: #e07060;
  margin-bottom: 24px;
}

.audit-form { display: flex; flex-direction: column; gap: 20px; }

.form-field { display: flex; flex-direction: column; gap: 7px; }

.form-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-required { color: var(--accent); }

.form-input,
.form-select,
.form-textarea {
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  padding: 11px 14px;
  transition: border-color 0.2s ease;
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: rgba(200, 169, 110, 0.4); }

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-dim); }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5750' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-select option { background: var(--surface); color: var(--text); }

.form-textarea { resize: vertical; min-height: 80px; line-height: 1.6; }

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-submit-btn {
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--bg);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.form-submit-btn:hover { background: #d4b87e; border-color: #d4b87e; }

.form-submit-note { font-size: 12px; color: var(--text-dim); line-height: 1.5; }

.audit-thankyou {
  text-align: center;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.thankyou-mark { color: var(--accent); font-size: 22px; margin-bottom: 4px; }

.thankyou-headline {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}

.thankyou-body { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 440px; }

.audit-back-link {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  margin-top: 8px;
  transition: opacity 0.2s;
}

.audit-back-link:hover { opacity: 0.75; }

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    min-height: auto;
    gap: 40px;
  }

  .hero-visual { order: -1; }

  .proof-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .proof-divider { display: none; }
  .proof-stat { padding: 0; }

  .how, .services, .outcomes, .closing, .footer {
    padding: 64px 24px;
  }

  .steps { gap: 0; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; }
  .step-number { font-size: 40px; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .verticals {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom { grid-column: 1; }

  .audit-hero { padding: 100px 24px 60px; min-height: auto; }
  .audit-includes { padding: 56px 24px; }
  .audit-form-section { padding: 56px 24px; }
  .audit-form-wrap { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .verticals { grid-template-columns: 1fr; }
  .hero-headline { font-size: 36px; }
  .stat-num { font-size: 40px; }
  .card-price { font-size: 28px; }
  .audit-item { grid-template-columns: 40px 1fr; gap: 16px; }
  .form-submit-row { flex-direction: column; align-items: flex-start; }
}