/* ═══════════════════════════════════════════
   LeadBridge — Theme CSS
   Deep midnight navy + warm gold + off-white
   Playfair Display + DM Sans
   ═══════════════════════════════════════════ */

:root {
  --bg: #0a0e1a;
  --surface: #0f1520;
  --surface-2: #141d2e;
  --surface-3: #1a2438;
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --gold-glow: rgba(201, 168, 76, 0.08);
  --white: #f7f5ef;
  --muted: #8896ab;
  --muted-2: #5a6a7e;
  --border: rgba(255, 255, 255, 0.055);
  --border-gold: rgba(201, 168, 76, 0.25);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* ─── TYPOGRAPHY ─── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 8vw 0;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 60% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
    var(--bg);
}

.hero-rays {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 80%;
  overflow: hidden;
}

.ray {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.15) 0%, transparent 100%);
  transform-origin: top center;
  opacity: 0.5;
}

.ray-1 { right: 15%; height: 90%; width: 1px; transform: rotate(8deg); opacity: 0.3; }
.ray-2 { right: 22%; height: 70%; width: 2px; transform: rotate(3deg); opacity: 0.2; }
.ray-3 { right: 8%; height: 60%; width: 1px; transform: rotate(-5deg); opacity: 0.15; }

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, transparent 0%, black 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 6vh;
  max-width: 880px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
}

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

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 3rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.proof-item { text-align: left; }

.proof-stat {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.proof-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted-2);
  line-height: 1.4;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* City Silhouette */
.hero-city {
  position: relative;
  z-index: 1;
  margin-top: auto;
  height: 35vh;
  overflow: hidden;
}

.city-silhouette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}

.building {
  background: linear-gradient(to top, rgba(15, 21, 32, 0.9), rgba(15, 21, 32, 0.3));
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
}

.building::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  width: 1px;
  height: 6px;
  background: rgba(201, 168, 76, 0.5);
  transform: translateX(-50%);
}

.b1 { width: 4%; height: 45%; }
.b2 { width: 6%; height: 65%; }
.b3 { width: 5%; height: 80%; }
.b4 { width: 8%; height: 95%; }
.b5 { width: 7%; height: 70%; }
.b6 { width: 5%; height: 55%; }
.b7 { width: 6%; height: 85%; }
.b8 { width: 4%; height: 40%; }
.b9 { width: 5%; height: 60%; }

.reflection-layer {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(201, 168, 76, 0.04) 0%, transparent 100%);
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 8vw;
}

.stats-inner {
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.stat {
  flex: 1;
  padding: 1rem 2.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ─── MECHANICS ─── */
.mechanics {
  padding: 8rem 8vw;
  background: var(--bg);
}

.mechanics-inner { max-width: 1100px; }

.steps {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 4rem;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 420px;
  gap: 3rem;
  align-items: center;
}

.step-reverse { direction: rtl; }
.step-reverse > * { direction: ltr; }

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.step-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 0;
}

/* Device: Phone (WhatsApp) */
.device-phone {
  border-radius: 28px;
  background: var(--surface-3);
  padding: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--border), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.device-frame { background: #0a0d15; border-radius: 20px; overflow: hidden; position: relative; }

.device-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 26px;
  background: #0a0d15;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.device-screen { padding: 0 0 60px; }

.wa-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 38px 16px 14px;
  background: var(--surface-2);
}

.wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #a8823a 100%);
  flex-shrink: 0;
}

.wa-name-block { flex: 1; }
.wa-name { width: 80px; height: 10px; background: rgba(255,255,255,0.3); border-radius: 3px; margin-bottom: 5px; }
.wa-status { font-size: 0.65rem; color: #4caf50; }

.wa-messages { padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; }

.wa-msg { display: flex; }
.wa-msg-in { justify-content: flex-start; }
.wa-msg-out { justify-content: flex-end; }

.bubble {
  max-width: 75%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 0.78rem;
  line-height: 1.5;
  background: var(--surface-3);
  color: var(--muted);
}

.bubble-out { background: rgba(201, 168, 76, 0.15); color: var(--white); }

.wa-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}

.wa-input {
  flex: 1;
  height: 32px;
  background: var(--surface-3);
  border-radius: 20px;
  opacity: 0.5;
}

.wa-send {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

/* Device: Laptop (CRM Dashboard) */
.device-laptop {
  border-radius: 12px;
  background: var(--surface-3);
  padding: 10px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.4);
}

.laptop-bar {
  height: 10px;
  background: var(--surface-3);
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
}

.laptop-bar::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.device-laptop .device-screen {
  display: flex;
  height: 240px;
  overflow: hidden;
}

.dash-sidebar {
  width: 56px;
  background: rgba(0,0,0,0.3);
  border-right: 1px solid var(--border);
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.dash-logo {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--gold);
  opacity: 0.8;
  margin-bottom: 8px;
}

.dash-nav-item {
  font-size: 0.6rem;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
  opacity: 0.6;
}

.dash-nav-active {
  color: var(--gold);
  opacity: 1;
}

.nav-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.dash-main {
  flex: 1;
  padding: 10px 12px;
  overflow: hidden;
}

.dash-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.dash-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.9;
}

.dash-filter {
  font-size: 0.6rem;
  color: var(--muted-2);
  opacity: 0.6;
}

.pipeline-row {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 10px;
  overflow: hidden;
}

.pipeline-stage { flex: 1; }

.stage-label {
  font-size: 0.58rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
  opacity: 0.7;
}

.lead-card {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 6px;
  background: var(--surface-2);
  border-radius: 6px;
  margin-bottom: 4px;
  border: 1px solid var(--border);
}

.lead-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}

.a1 { background: linear-gradient(135deg, #6b8fcf, #3d5a8a); }
.a2 { background: linear-gradient(135deg, #7ba89e, #4a7a70); }
.a3 { background: linear-gradient(135deg, var(--gold), #a8823a); }
.a4 { background: linear-gradient(135deg, #8b7cc9, #6a5da3); }

.lead-info { flex: 1; min-width: 0; }
.lead-name { font-size: 0.62rem; color: var(--white); opacity: 0.85; font-weight: 500; }
.lead-src { font-size: 0.55rem; color: var(--muted-2); }

.lead-score {
  font-size: 0.52rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  flex-shrink: 0;
}

.score-low { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.score-med { background: rgba(234, 179, 8, 0.15); color: #f59e0b; }
.score-high { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.score-done { background: var(--gold-dim); color: var(--gold); }

.pipeline-arrow { font-size: 0.6rem; color: var(--muted-2); align-self: center; opacity: 0.5; padding-top: 14px; }

.dash-metrics {
  display: flex;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.metric { text-align: center; }
.metric-val { font-size: 0.9rem; font-weight: 700; color: var(--white); opacity: 0.8; }
.gold-text { color: var(--gold); }
.metric-lab { font-size: 0.55rem; color: var(--muted-2); opacity: 0.7; }

/* Device: Calendar */
.device-calendar {
  border-radius: 20px;
  background: var(--surface-3);
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cal-month { font-size: 0.8rem; font-weight: 600; color: var(--white); }
.cal-nav { font-size: 0.9rem; color: var(--muted-2); letter-spacing: 0.2em; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 14px;
}

.cal-day-header {
  font-size: 0.55rem;
  color: var(--muted-2);
  text-align: center;
  padding: 2px 0;
  opacity: 0.6;
}

.cal-day {
  font-size: 0.65rem;
  color: var(--muted);
  text-align: center;
  padding: 4px 2px;
  border-radius: 5px;
}

.cal-day.dim { opacity: 0.3; }
.cal-day.today { background: var(--gold-dim); color: var(--gold); font-weight: 600; }
.cal-day.has-event { background: rgba(34, 197, 94, 0.1); color: #22c55e; font-weight: 600; }

.booking-card {
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 14px;
}

.booking-time { font-size: 0.7rem; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.booking-title { font-size: 0.8rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.booking-with { font-size: 0.68rem; color: var(--muted); margin-bottom: 8px; }

.booking-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: #22c55e;
  font-weight: 500;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

/* ─── OUTCOMES ─── */
.outcomes {
  padding: 8rem 8vw;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.outcomes-body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 1.25rem;
  max-width: 420px;
}

.outcomes-quote {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--gold-glow);
  border-left: 2px solid var(--gold);
  border-radius: 0 8px 8px 0;
}

.outcomes-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.outcomes-quote cite {
  font-size: 0.72rem;
  color: var(--muted-2);
  font-style: normal;
}

.outcomes-list { display: flex; flex-direction: column; gap: 1.75rem; }

.outcome-item { display: flex; align-items: flex-start; gap: 1rem; }

.outcome-icon {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.outcome-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.outcome-text p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── PRICING ─── */
.pricing {
  padding: 8rem 8vw;
  background: var(--bg);
}

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

.pricing-intro {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 0.75rem;
  margin-bottom: 3rem;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 2rem;
  align-items: center;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--surface); }

.price-row-featured {
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  border-left: 3px solid var(--gold);
}

.price-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.price-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.price-note {
  font-size: 0.72rem;
  color: var(--muted-2);
  text-align: right;
  line-height: 1.4;
}

.pricing-cta {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
}

.pricing-cta p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── CLOSING ─── */
.closing {
  padding: 8rem 8vw;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.closing-inner { max-width: 900px; }

.closing-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2.5rem;
  opacity: 0.5;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.closing-statement-2 {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 2.5rem 8vw;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand { display: flex; align-items: center; gap: 1rem; }

.footer-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--muted-2);
}

.footer-meta {
  font-size: 0.78rem;
  color: var(--muted-2);
}

/* ─── PRIMARY BUTTON ─── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #d4b75a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

/* ─── HERO CTA ROW ─── */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-cta-sub {
  font-size: 0.82rem;
  color: var(--muted-2);
  max-width: 280px;
  line-height: 1.5;
}

/* ─── HOW IT WORKS ─── */
.how-works {
  padding: 8rem 8vw;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-works-inner { max-width: 1100px; }

.how-works-intro {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 3.5rem;
  max-width: 480px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.how-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s;
}

.how-step:hover { border-color: var(--border-gold); }

.how-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}

.how-step-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.how-step-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── TRUST SECTION ─── */
.trust-section {
  padding: 8rem 8vw;
  background: var(--bg);
}

.trust-inner { max-width: 1100px; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.trust-icon {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.trust-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.trust-text p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── FAQ SECTION ─── */
.faq-section {
  padding: 8rem 8vw;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.faq-inner { max-width: 800px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 3rem;
}

.faq-item {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: var(--surface-2); }

.faq-q {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.faq-a {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── CLOSING CTA ─── */
.closing-cta-row {
  margin-top: 3rem;
}

/* ─── PRICING FREE ROW ─── */
.price-row-free {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.06) 0%, transparent 60%);
  border-left: 3px solid #22c55e;
}

.price-row-free .price-value { color: #22c55e; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .step { grid-template-columns: 60px 1fr; }
  .step .step-device { display: none; }
  .step-reverse { direction: ltr; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 4rem; }
  .price-row { grid-template-columns: 1fr; gap: 1rem; }
  .price-value, .price-note { text-align: left; }
  .stats-inner { flex-wrap: wrap; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); width: 50%; flex: none; }
  .stat:last-child { border-bottom: none; }
  .hero-proof { gap: 1.5rem; flex-wrap: wrap; }
  .how-steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .faq-inner { max-width: 100%; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (max-width: 600px) {
  .hero { min-height: 88vh; padding: 0 6vw; }
  .hero-headline { font-size: 2.2rem; }
  .mechanics, .outcomes, .pricing, .closing, .how-works, .trust-section, .faq-section { padding: 5rem 6vw; }
  .stats-strip { padding: 2rem 6vw; }
  .stat { width: 100%; }
  .price-row { padding: 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .step { grid-template-columns: 1fr; gap: 0.5rem; }
  .step-number { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }
  .how-step { padding: 1.25rem; }
  .faq-item { padding: 1.25rem; }
  .closing-cta-row { text-align: center; }
}