@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg:       #191c1f;
  --bg2:      #1a1e24;
  --bg3:      #0f1215;
  --surface:  #1e2329;
  --surface2: #242b34;
  --surface3: #2a3140;
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.13);
  --text:     #ffffff;
  --text2:    rgba(255,255,255,0.60);
  --text3:    rgba(255,255,255,0.32);
  --accent:   #38BDF8;
  --accent-dk:#0C1B33;
  --accent-d: rgba(56,189,248,0.12);
  --accent-g: rgba(56,189,248,0.22);
  --green:    #22c55e;
  --green-d:  rgba(34,197,94,0.12);
  --blue2:    #6366f1;
  --blue2-d:  rgba(99,102,241,0.12);
  --amber:    #f59e0b;
  --amber-d:  rgba(245,158,11,0.12);
  --teal:     #2dd4bf;
  --teal-d:   rgba(45,212,191,0.12);
  --r-card:   16px;
  --r-btn:    9999px;
  --font:     'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* â”€â”€â”€ UTILS â”€â”€â”€ */

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

section { padding: 104px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}

.eyebrow::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

.h-display {
  font-size: clamp(52px, 6.5vw, 92px);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.03em;
}

.h-xl {
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.025em;
}

.h-lg {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
}

.lead {
  font-size: 18px; font-weight: 400;
  line-height: 1.65; color: var(--text2); letter-spacing: 0.01em;
}

.body-sm { font-size: 14px; color: var(--text2); line-height: 1.7; }

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

/* â”€â”€â”€ BUTTONS â”€â”€â”€ */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px;
  padding: 14px 32px; border-radius: var(--r-btn);
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.18s ease; white-space: nowrap;
}

.btn-primary { background: var(--accent); color: var(--accent-dk); }

.btn-primary:hover { background: #7dd3fc; transform: translateY(-1px); }

.btn-secondary {
  background: rgba(255,255,255,0.07); color: var(--text);
  border: 1px solid var(--border2);
}

.btn-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--accent);
  font-weight: 600; font-size: 14px;
  padding: 10px 20px; border-radius: var(--r-btn);
  border: 1px solid rgba(56,189,248,0.28);
  cursor: pointer; text-decoration: none;
  transition: all 0.18s ease;
}

.btn-ghost:hover { background: var(--accent-d); border-color: var(--accent); }

.btn-sm { padding: 9px 20px !important; font-size: 13px !important; font-weight: 600 !important; }

/* â”€â”€â”€ NAV â”€â”€â”€ */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,18,21,0.90);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); height: 64px;
  display: flex; align-items: center;
  transition: border-color 0.3s;
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%;
  display: flex; align-items: center; gap: 8px;
}

.nav-logo { flex-shrink: 0; margin-right: auto; }

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-links a {
  color: var(--text2); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--r-btn);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}

.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.nav-cta {
  margin-left: 8px;
  background: var(--accent); color: var(--accent-dk) !important;
  font-weight: 700 !important; padding: 9px 20px !important;
  font-size: 14px !important; border-radius: var(--r-btn) !important;
  letter-spacing: -0.01em;
}

.nav-cta:hover { background: #7dd3fc !important; color: var(--accent-dk) !important; }

/* â”€â”€â”€ HERO â”€â”€â”€ */

#hero {
  padding: 120px 0 56px; background: var(--bg3);
  position: relative; overflow: hidden;
}

.hero-content { position: relative; z-index: 2; max-width: 840px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-d); border: 1px solid rgba(56,189,248,0.22);
  border-radius: var(--r-btn); padding: 6px 16px;
  font-size: 12px; font-weight: 600; color: var(--accent);
  margin-bottom: 32px; letter-spacing: 0.04em;
}

.badge-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

.hero-ctas {
  display: flex; gap: 14px; margin-top: 48px; flex-wrap: wrap; align-items: center;
}

.hero-note {
  margin-top: 18px; font-size: 13px; color: var(--text3); font-weight: 400;
  display: flex; align-items: center; gap: 6px;
}

.hero-note::before { content: '\2713'; color: var(--green); }

/* â”€â”€â”€ STATS BAR â”€â”€â”€ */

.stats-bar {
  position: relative; z-index: 2;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}

.stat-item { padding: 0 32px; border-right: 1px solid var(--border); }

.stat-item:first-child { padding-left: 0; }

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

.stat-num {
  font-size: 34px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--text); line-height: 1; margin-bottom: 6px;
}

.stat-label { font-size: 13px; color: var(--text2); line-height: 1.45; }

/* â”€â”€â”€ PROBLEM â”€â”€â”€ */

#problem { background: var(--bg2); }

.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.pain-cards { display: flex; flex-direction: column; gap: 16px; }

.pain-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 24px 28px;
  position: relative; overflow: hidden;
}

.pain-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent); border-radius: 2px 0 0 2px;
}

.pain-num {
  font-size: 38px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--text); line-height: 1; margin-bottom: 6px;
}

.pain-lbl { font-size: 14px; color: var(--text2); line-height: 1.55; }

/* â”€â”€â”€ THE JOURNEY â”€â”€â”€ */

#journey { background: var(--bg); position: relative; }

.journey-intro { max-width: 640px; margin-bottom: 72px; }

.journey-track {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  position: relative;
}

.journey-track::before {
  content: ''; position: absolute;
  top: 44px; left: calc(12.5% + 8px); right: calc(12.5% + 8px);
  height: 1px; background: linear-gradient(90deg, var(--accent), rgba(56,189,248,0.15));
  pointer-events: none; z-index: 0;
}

.journey-stage {
  background: var(--surface); border: 1px solid var(--border);
  padding: 36px 28px 32px; position: relative; z-index: 1;
  transition: border-color 0.2s, background 0.2s;
}

.journey-stage:first-child { border-radius: var(--r-card) 0 0 var(--r-card); }

.journey-stage:last-child  { border-radius: 0 var(--r-card) var(--r-card) 0; }

.journey-stage:hover { border-color: var(--border2); background: var(--surface2); }

.stage-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: var(--accent-dk);
  font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}

.stage-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}

.stage-title {
  font-size: 18px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--text); margin-bottom: 12px; line-height: 1.2;
}

.stage-desc { font-size: 13px; color: var(--text2); line-height: 1.65; margin-bottom: 20px; }

.stage-products {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid var(--border); padding-top: 16px; margin-top: auto;
}

.stage-products li {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text2); line-height: 1.4;
}

.stage-products li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

.stage-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 2px 8px; border-radius: var(--r-btn);
  background: var(--green-d); color: var(--green);
  border: 1px solid rgba(34,197,94,0.25); margin-bottom: 10px;
}

/* â”€â”€â”€ ENTRY POINT CTA â”€â”€â”€ */

.entry-cta {
  margin-top: 48px;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--r-card); padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}

.entry-cta-text h3 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.entry-cta-text p { font-size: 14px; color: var(--text2); }

/* â”€â”€â”€ LAYER SECTIONS â”€â”€â”€ */

.layer-section { padding: 88px 0; }

.layer-section.alt { background: var(--bg2); }

.layer-section.dark { background: var(--bg3); }

.layer-header { margin-bottom: 52px; }

.layer-header .stage-num-lg {
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}

.layer-cards {
  display: grid; gap: 2px;
}

.layer-cards.cols-2 { grid-template-columns: repeat(2, 1fr); }

.layer-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }

.layer-cards.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* â”€â”€â”€ PRODUCT CARD â€” FEATURED â”€â”€â”€ */

.pcard {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  transition: border-color 0.2s, background 0.2s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}

.pcard:hover { border-color: var(--border2); background: var(--surface2); }

.pcard-featured {
  border-color: rgba(56,189,248,0.2);
  background: var(--surface2);
}

.pcard-featured::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Corner radii for grid arrangements */

.layer-cards.cols-2 .pcard:nth-child(1) { border-radius: var(--r-card) 0 0 0; }

.layer-cards.cols-2 .pcard:nth-child(2) { border-radius: 0 var(--r-card) 0 0; }

.layer-cards.cols-2 .pcard:nth-child(3) { border-radius: 0 0 0 var(--r-card); }

.layer-cards.cols-2 .pcard:nth-child(4) { border-radius: 0 0 var(--r-card) 0; }

.layer-cards.cols-3 .pcard:nth-child(1) { border-radius: var(--r-card) 0 0 0; }

.layer-cards.cols-3 .pcard:nth-child(3) { border-radius: 0 var(--r-card) 0 0; }

.layer-cards.cols-3 .pcard:nth-child(4) { border-radius: 0 0 0 var(--r-card); }

.layer-cards.cols-3 .pcard:last-child   { border-radius: 0 0 var(--r-card) 0; }

.layer-cards.cols-4 .pcard:nth-child(1) { border-radius: var(--r-card) 0 0 var(--r-card); }

.layer-cards.cols-4 .pcard:last-child   { border-radius: 0 var(--r-card) var(--r-card) 0; }

.pcard-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; margin-bottom: 16px;
}

.pcard-price {
  font-size: 12px; font-weight: 700; color: var(--accent);
  background: var(--accent-d); border: 1px solid rgba(56,189,248,0.2);
  padding: 3px 12px; border-radius: var(--r-btn); white-space: nowrap; flex-shrink: 0;
}

.pcard-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 9px; border-radius: var(--r-btn);
  display: inline-block; margin-bottom: 10px;
}

.label-green { background: var(--green-d); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }

.label-blue  { background: var(--blue2-d); color: #a5b4fc; border: 1px solid rgba(99,102,241,0.25); }

.label-teal  { background: var(--teal-d); color: var(--teal); border: 1px solid rgba(45,212,191,0.25); }

.label-amber { background: var(--amber-d); color: var(--amber); border: 1px solid rgba(245,158,11,0.25); }

.pcard-name {
  font-size: 20px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--text); margin-bottom: 6px;
}

.pcard-hook { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 14px; }

.pcard-desc { font-size: 14px; color: var(--text2); line-height: 1.65; margin-bottom: 24px; }

.pcard-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--border); padding-top: 20px; margin-bottom: 28px;
}

.pcard-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: var(--text2); line-height: 1.5;
}

.pcard-list li .li-icon {
  flex-shrink: 0; margin-top: 1px; color: var(--accent);
}

.pcard-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding-top: 20px; border-top: 1px solid var(--border);
  flex-wrap: wrap; margin-top: auto;
}

.pcard-for { font-size: 12px; color: var(--text3); }

.pcard-for strong { color: var(--text2); }

/* â”€â”€â”€ AUDIT HERO CARD â”€â”€â”€ */

.audit-hero {
  background: var(--bg3);
  border: 1px solid rgba(56,189,248,0.18);
  border-radius: var(--r-card);
  padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  position: relative; overflow: hidden; margin-bottom: 56px;
}

.audit-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 40%, rgba(56,189,248,0.3) 100%);
}

.audit-glow {
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(56,189,248,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.audit-steps { display: flex; flex-direction: column; gap: 0; }

.audit-step {
  display: flex; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

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

.audit-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent-d); border: 1px solid rgba(56,189,248,0.3);
  color: var(--accent); font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-top: 2px;
}

.audit-step-content h4 {
  font-size: 14px; font-weight: 700; color: var(--text);
  margin-bottom: 4px; letter-spacing: -0.005em;
}

.audit-step-content p { font-size: 13px; color: var(--text2); line-height: 1.55; }

.audit-price-badge {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-bottom: 8px;
}

.audit-price-big {
  font-size: 52px; font-weight: 900; letter-spacing: -0.04em; color: var(--text);
}

.audit-guarantee {
  margin-top: 20px; padding: 16px 20px;
  background: var(--green-d); border: 1px solid rgba(34,197,94,0.2);
  border-radius: 10px; font-size: 13px; color: var(--green); line-height: 1.55;
  display: flex; gap: 10px; align-items: flex-start;
}

.audit-guarantee::before { content: '\2714'; font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* â”€â”€â”€ ECONOMICS â”€â”€â”€ */

#economics { background: var(--bg3); position: relative; overflow: hidden; }

.econ-glow {
  position: absolute; bottom: -180px; right: -80px;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse, rgba(56,189,248,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.econ-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px;
}

.econ-card {
  background: var(--surface); border: 1px solid var(--border);
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: border-color 0.2s;
}

.econ-card:hover { border-color: var(--border2); }

.econ-card:first-child { border-radius: var(--r-card) 0 0 var(--r-card); }

.econ-card:last-child  { border-radius: 0 var(--r-card) var(--r-card) 0; }

.econ-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.3s;
}

.econ-card:hover::after { opacity: 1; }

.econ-num {
  font-size: clamp(22px, 2vw, 32px); font-weight: 900; letter-spacing: -0.035em;
  color: var(--text); line-height: 1.1; margin-bottom: 12px;
  overflow-wrap: break-word; word-break: break-word;
}

.econ-label { font-size: 14px; color: var(--text2); margin-bottom: 6px; line-height: 1.45; }

.econ-sub   { font-size: 12px; color: var(--text3); line-height: 1.5; }

/* â”€â”€â”€ LOCAL FOCUS â”€â”€â”€ */

#local { background: var(--bg2); }

.local-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 72px; align-items: center; }

.local-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.local-stat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 24px 20px; text-align: center;
}

.local-stat-n { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; color: var(--accent); margin-bottom: 6px; }

.local-stat-l { font-size: 12px; color: var(--text2); line-height: 1.4; }

/* â”€â”€â”€ PROOF â”€â”€â”€ */

#proof { background: var(--bg); }

.proof-quote {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 56px 64px;
  text-align: center; margin-bottom: 32px;
  position: relative; overflow: hidden;
}

.proof-quote::before {
  content: '\201C'; position: absolute; top: -30px; left: 32px;
  font-size: 200px; font-weight: 900; color: var(--accent); opacity: 0.05;
  line-height: 1; font-family: Georgia, serif; pointer-events: none;
}

.pq-text {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; line-height: 1.25; letter-spacing: -0.02em;
  color: var(--text); position: relative; z-index: 1;
}

.pq-text em { font-style: normal; color: var(--accent); }

.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.testimonial {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 32px;
}

.testimonial-text {
  font-size: 15px; color: var(--text2); line-height: 1.7;
  margin-bottom: 24px; font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #38BDF8, #1D4ED8);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: white; flex-shrink: 0;
}

.author-name { font-size: 14px; font-weight: 600; color: var(--text); }

.author-role { font-size: 12px; color: var(--text3); }

/* â”€â”€â”€ FAQ â”€â”€â”€ */

#faq { background: var(--bg2); }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 52px; }

.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 28px 30px;
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: var(--border2); }

.faq-q {
  font-size: 15px; font-weight: 600; color: var(--text);
  margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px;
}

.faq-q::before {
  content: 'Q'; font-size: 10px; font-weight: 800; letter-spacing: 0.05em;
  color: var(--accent); background: var(--accent-d); padding: 2px 6px;
  border-radius: 4px; flex-shrink: 0; margin-top: 3px;
}

.faq-a { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* â”€â”€â”€ FINAL CTA â”€â”€â”€ */

#cta {
  background: var(--bg3); padding: 120px 0;
  position: relative; overflow: hidden;
}

.cta-glow {
  position: absolute; top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(56,189,248,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }

.cta-pricebox {
  display: inline-flex; align-items: center; gap: 32px;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--r-card); padding: 28px 44px;
  margin: 44px auto; flex-wrap: wrap; justify-content: center; text-align: left;
}

.cta-price { font-size: 56px; font-weight: 900; letter-spacing: -0.04em; }

.cta-price-info { font-size: 14px; color: var(--text2); line-height: 1.6; max-width: 280px; }

.cta-price-info strong { color: var(--text); }

.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.cta-reassure {
  margin-top: 24px; font-size: 13px; color: var(--text3);
  display: flex; align-items: center; gap: 24px; justify-content: center; flex-wrap: wrap;
}

.cta-reassure span::before { content: '\2713  '; color: var(--green); }

/* â”€â”€â”€ FOOTER â”€â”€â”€ */

footer {
  background: var(--bg3); border-top: 1px solid var(--border);
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid; grid-template-columns: 5fr 2fr 2fr 2fr;
  gap: 48px; margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px; color: var(--text3); line-height: 1.7;
  margin-top: 16px; max-width: 280px;
}

.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }

.footer-col ul a {
  font-size: 14px; color: var(--text2);
  text-decoration: none; transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

.footer-bottom p { font-size: 13px; color: var(--text3); }

.footer-links { display: flex; gap: 24px; }

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

.footer-links a:hover { color: var(--text2); }

/* â”€â”€â”€ ANIMATION â”€â”€â”€ */

.fade-up {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */

/* Hero lead helper (moved from inline style) */

.hero-lead {
  max-width: 680px;
  margin-top: 28px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Nav logo responsive sizing */

.nav-logo-svg { width: 160px; height: 42px; }

/* Large CTA button */

.btn-lg { font-size: 16px; padding: 16px 40px; }

/* Economics CTA helper */

.econ-cta-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.econ-cta-btn { text-align: center; white-space: normal; line-height: 1.4; }

/* --- HAMBURGER MENU --- */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }

.hamburger.open span:nth-child(2) { opacity: 0; }

.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay { display: none; }

/* --- TABLET (max 1024px) --- */

@media (max-width: 1024px) {
  .journey-track { grid-template-columns: repeat(2, 1fr); }
  .journey-track::before { display: none; }
  .econ-grid { grid-template-columns: repeat(2, 1fr); }
  .econ-card:nth-child(1) { border-radius: var(--r-card) 0 0 0; }
  .econ-card:nth-child(2) { border-radius: 0 var(--r-card) 0 0; }
  .econ-card:nth-child(3) { border-radius: 0 0 0 var(--r-card); }
  .econ-card:nth-child(4) { border-radius: 0 0 var(--r-card) 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .audit-hero { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .layer-cards.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .layer-cards.cols-4 .pcard:nth-child(1) { border-radius: var(--r-card) 0 0 0; }
  .layer-cards.cols-4 .pcard:nth-child(2) { border-radius: 0 var(--r-card) 0 0; }
  .layer-cards.cols-4 .pcard:nth-child(3) { border-radius: 0 0 0 var(--r-card); }
  .layer-cards.cols-4 .pcard:nth-child(4) { border-radius: 0 0 var(--r-card) 0; }
}

/* --- MOBILE (max 768px) --- */

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  #hero { padding: 88px 0 40px; }

  /* Nav -- hamburger + slide-in drawer */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: rgba(15, 18, 21, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 80px 32px 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 105;
    border-left: 1px solid var(--border);
    overflow-y: auto;
  }
  .nav-links.nav-open { transform: translateX(0); }
  .nav-links a {
    display: block !important;
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 10px;
  }
  .nav-links a:hover { background: rgba(255,255,255,0.06); }
  .nav-cta {
    margin-left: 0 !important;
    margin-top: 12px;
    text-align: center;
    display: block !important;
  }
  .nav-overlay {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
  }
  .nav-logo-svg { width: 130px; height: 34px; }

  /* Hero adjustments */
  .hero-lead { max-width: 100%; margin-top: 20px; gap: 10px; }
  .h-display { font-size: clamp(36px, 8vw, 52px); }
  .h-xl { font-size: clamp(28px, 5.5vw, 38px); }
  .h-lg { font-size: clamp(24px, 4.5vw, 32px); }
  .lead { font-size: 16px; }

  /* Stats bar */
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 32px; padding-top: 24px; }
  .stat-item { padding: 12px 16px; }
  .stat-item:first-child { padding-left: 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); padding-top: 16px; }
  .stat-item:nth-child(3) { padding-left: 0; }
  .stat-num { font-size: 26px; }
  .stat-label { font-size: 12px; }

  /* Problem section */
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .pain-cards { gap: 12px; }
  .pain-card { padding: 20px 22px; }

  /* Journey */
  .journey-track { grid-template-columns: 1fr; }
  .journey-intro { margin-bottom: 48px; }
  .journey-stage { padding: 28px 24px 24px; }
  .journey-stage:first-child { border-radius: var(--r-card) var(--r-card) 0 0; }
  .journey-stage:last-child  { border-radius: 0 0 var(--r-card) var(--r-card); }
  .entry-cta { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px 24px; }

  /* Product layers */
  .layer-section { padding: 64px 0; }
  .layer-cards.cols-2, .layer-cards.cols-3, .layer-cards.cols-4 { grid-template-columns: 1fr; }
  .pcard { border-radius: 0 !important; padding: 28px 24px; }
  .layer-cards .pcard:first-child { border-radius: var(--r-card) var(--r-card) 0 0 !important; }
  .layer-cards .pcard:last-child  { border-radius: 0 0 var(--r-card) var(--r-card) !important; }
  .pcard-name { font-size: 18px; }
  .pcard-desc { font-size: 13px; margin-bottom: 20px; }
  .pcard-list { margin-bottom: 20px; }
  .pcard-foot { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Audit hero */
  .audit-hero { padding: 28px 24px; gap: 32px; margin-bottom: 40px; }
  .audit-price-big { font-size: 40px; }
  .audit-step { gap: 14px; padding: 16px 0; }

  /* Economics */
  .econ-grid { grid-template-columns: 1fr 1fr; }
  .econ-card { padding: 24px 20px; }
  .econ-cta-wrap { margin-top: 36px; }
  .econ-cta-btn { font-size: 14px; padding: 14px 24px; }

  /* Local */
  .local-grid { grid-template-columns: 1fr; gap: 40px; }
  .local-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .local-stat { padding: 20px 16px; }
  .local-stat-n { font-size: 24px; }

  /* Proof */
  .proof-quote { padding: 32px 24px; }
  .testimonials { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
  .faq-item { padding: 22px 24px; }

  /* CTA */
  #cta { padding: 80px 0; }
  .cta-pricebox { padding: 24px 24px; gap: 20px; }
  .cta-price { font-size: 44px; }
  .btn-lg { font-size: 15px; padding: 14px 28px; }
  .cta-reassure { gap: 12px; font-size: 12px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }

  /* Buttons */
  .btn { font-size: 14px; padding: 12px 24px; }
  .btn-primary { padding: 13px 26px; }
  .btn-ghost { font-size: 13px; padding: 9px 18px; }
}

/* --- SMALL MOBILE (max 480px) --- */

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 52px 0; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .hero-note { font-size: 12px; }

  /* Stats to single column */
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { padding: 12px 0; border-right: none !important; }
  .stat-item:nth-child(n) { border-top: 1px solid var(--border); }
  .stat-item:first-child { border-top: none; }

  /* CTA buttons stack */
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { text-align: center; justify-content: center; }
  .cta-pricebox { padding: 20px 16px; gap: 16px; flex-direction: column; text-align: center; }
  .cta-price { font-size: 36px; }
  .cta-price-info { max-width: 100%; text-align: center; }
  .btn-lg { font-size: 14px; padding: 13px 24px; }

  /* Economics grid fully stacked */
  .econ-grid { grid-template-columns: 1fr; }
  .econ-card { border-radius: 0 !important; }
  .econ-card:first-child { border-radius: var(--r-card) var(--r-card) 0 0 !important; }
  .econ-card:last-child  { border-radius: 0 0 var(--r-card) var(--r-card) !important; }
  .econ-cta-btn { font-size: 13px; padding: 12px 20px; }

  /* Layer section spacing */
  .layer-section { padding: 52px 0; }
  .layer-header { margin-bottom: 36px; }
  .pcard { padding: 24px 20px; }

  /* Audit hero tighter */
  .audit-hero { padding: 24px 20px; }

  /* FAQ */
  .faq-item { padding: 18px 20px; }

  /* CTA section */
  #cta { padding: 64px 0; }

  /* Footer */
  footer { padding: 40px 0 28px; }
  .footer-grid { gap: 24px; }

  /* Journey */
  .journey-stage { padding: 24px 20px 20px; }
  .stage-desc { font-size: 12px; }
  .entry-cta { padding: 24px 20px; }

  /* Local stats stack on very small */
  .local-stats { grid-template-columns: 1fr; }
  .local-stat { padding: 16px; }

  /* Logo even smaller */
  .nav-logo-svg { width: 112px; height: 30px; }
}

/* --- VERY SMALL MOBILE (max 360px) --- */

@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .h-display { font-size: 32px; }
  .h-xl { font-size: 26px; }
  .h-lg { font-size: 22px; }
  .lead { font-size: 15px; }
  .btn { font-size: 13px; padding: 11px 20px; }
  .nav-logo-svg { width: 100px; height: 26px; }
  .audit-hero { padding: 20px 16px; }
  .pcard { padding: 20px 16px; }
  .cta-price { font-size: 32px; }
}

/* ── Legal Pages ── */

.legal-page {
  padding: 140px 0 80px;
  min-height: 100vh;
}

.legal-page h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.legal-page .legal-updated {
  color: var(--text3);
  font-size: 0.9rem;
  margin-bottom: 48px;
}

.legal-page .legal-back {
  display: inline-block;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
  text-decoration: none;
}

.legal-page .legal-back:hover { text-decoration: underline; }

.legal-page section {
  padding: 0;
  margin-bottom: 36px;
}

.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.legal-page p {
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-page li {
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-page a {
  color: var(--accent);
}

.legal-page a:hover {
  text-decoration: underline;
}

