/* ============================================================
   VIAEXP — PREMIUM DARK LANDING PAGE
   Palette: Navy/Slate dark + Cyan + Amber + White
============================================================ */

:root {
  --bg: #060c1a;
  --bg-2: #0a1228;
  --bg-3: #0f1a35;
  --surface: #111d38;
  --surface-2: #162040;
  --border: rgba(255,255,255,0.07);
  --border-glow: rgba(56,189,248,0.2);
  --cyan: #38bdf8;
  --cyan-dim: rgba(56,189,248,0.15);
  --cyan-glow: rgba(56,189,248,0.4);
  --amber: #f59e0b;
  --amber-dim: rgba(245,158,11,0.15);
  --green: #34d399;
  --green-dim: rgba(52,211,153,0.15);
  --red: #f87171;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-ui: 'Inter', sans-serif;
}

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

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

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CONTAINER ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--cyan);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em {
  font-style: normal;
  color: var(--cyan);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, #0ea5e9 100%);
  color: #060c1a;
  padding: 12px 24px;
  font-size: 0.95rem;
  box-shadow: 0 0 20px rgba(56,189,248,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(56,189,248,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 12px 24px;
  font-size: 0.95rem;
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }

.btn-outline {
  background: transparent;
  color: var(--cyan);
  padding: 14px 32px;
  font-size: 1rem;
  border: 1.5px solid var(--cyan);
}
.btn-outline:hover { background: var(--cyan-dim); }

.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-xl { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6,12,26,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.05em;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--cyan), #0ea5e9);
  color: #060c1a;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 6px;
}
.logo-text { font-size: 1.1rem; color: var(--white); }

.header-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.header-nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--white); }
.header-cta { margin-left: 8px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black, transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(56,189,248,0.4) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.3) 0%, transparent 70%);
  bottom: 0; left: -100px;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(52,211,153,0.2) 0%, transparent 70%);
  top: 30%; left: 40%;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.25);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-card { text-align: left; }
.proof-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.proof-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 4px;
  line-height: 1.3;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 420px;
}

.visual-card-main {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(56,189,248,0.1);
}

.vc-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.vc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.vc-dot.red { background: #ff5f57; }
.vc-dot.yellow { background: #febc2e; }
.vc-dot.green { background: #28c840; }
.vc-title { font-size: 0.75rem; color: var(--text-dim); margin-left: 8px; font-family: monospace; }

.vc-body { padding: 20px; font-family: monospace; font-size: 0.82rem; }
.vc-line { display: flex; gap: 8px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.vc-line:last-child { border-bottom: none; }
.vc-key { color: var(--text-dim); min-width: 80px; }
.green-text { color: var(--green); }
.amber-text { color: var(--amber); }
.cyan-text { color: var(--cyan); }
.vc-status { margin-top: 8px; }
.vc-badge {
  display: inline-block;
  background: rgba(52,211,153,0.15);
  color: var(--green);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
}

.visual-float {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow);
}
.visual-float-1 {
  bottom: 60px; left: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float1 4s ease-in-out infinite;
}
.visual-float-2 {
  top: 20px; right: -20px;
  min-width: 180px;
  animation: float2 4.5s ease-in-out infinite;
}
@keyframes float1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

.vf-icon { font-size: 1.2rem; }
.vf-text { display: flex; flex-direction: column; }
.vf-text strong { font-size: 0.82rem; color: var(--white); }
.vf-text span { font-size: 0.72rem; color: var(--text-dim); }
.vf-bar-label { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 6px; }
.vf-bar-label span { color: var(--amber); font-weight: 700; }
.vf-progress { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.vf-fill { height: 100%; width: 35%; background: linear-gradient(90deg, var(--amber), var(--cyan)); border-radius: 2px; animation: grow 2s 1s ease-out forwards; width: 0; }
@keyframes grow { to { width: 35%; } }
.vf-note { font-size: 0.68rem; color: var(--text-dim); margin-top: 6px; display: block; }

/* ── FOR WHO ── */
.for-who {
  padding: 100px 0;
  background: var(--bg-2);
}
.fw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.fw-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
  animation-delay: var(--delay, 0ms);
}
.fw-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(56,189,248,0.1);
}
.fw-icon { font-size: 2rem; margin-bottom: 16px; }
.fw-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.fw-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── PROBLEM ── */
.problem {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.problem-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(245,158,11,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.compare-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 60px;
}
.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dim);
  padding: 0 8px;
}
.compare-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.compare-bad { border-color: rgba(248,113,113,0.2); }
.compare-good { border-color: rgba(52,211,153,0.2); background: rgba(52,211,153,0.03); }
.compare-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.compare-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.compare-icon.bad { background: rgba(248,113,113,0.15); color: var(--red); }
.compare-icon.good { background: rgba(52,211,153,0.15); color: var(--green); }
.compare-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.compare-col ul { list-style: none; }
.compare-col li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.compare-col li:last-child { border-bottom: none; }
.compare-bad li::before { content: '–'; color: var(--red); flex-shrink: 0; }
.compare-good li::before { content: '✓'; color: var(--green); flex-shrink: 0; }

.market-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mn-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.mn-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.mn-label { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

/* ── LOGIC ── */
.logic {
  padding: 100px 0;
  background: var(--bg-2);
}
.logic-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow-x: auto;
}
.lf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  min-width: 110px;
  padding: 16px 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}
.lf-highlight {
  background: rgba(56,189,248,0.1);
  border-color: rgba(56,189,248,0.3);
}
.lf-end {
  background: rgba(52,211,153,0.08);
  border-color: rgba(52,211,153,0.25);
}
.lf-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(56,189,248,0.15);
  padding: 2px 8px;
  border-radius: 4px;
}
.lf-step strong { font-size: 0.85rem; color: var(--white); }
.lf-step span { font-size: 0.72rem; color: var(--text-dim); }
.lf-arrow {
  font-size: 1.2rem;
  color: var(--text-dim);
  flex-shrink: 0;
}

.logic-insight {
  display: flex;
  gap: 20px;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  align-items: flex-start;
}
.li-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.logic-insight p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }
.logic-insight strong { color: var(--amber); }

/* ── HOW ── */
.how {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.how-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(56,189,248,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(52,211,153,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all 0.3s;
  animation-delay: var(--delay, 0ms);
}
.step-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}
.step-featured {
  background: linear-gradient(135deg, rgba(56,189,248,0.1) 0%, rgba(52,211,153,0.05) 100%);
  border-color: rgba(56,189,248,0.3);
  box-shadow: 0 0 30px rgba(56,189,248,0.1);
}
.step-featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #060c1a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}
.step-featured .step-num { opacity: 0.6; }
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.step-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ── WHY ── */
.why { padding: 100px 0; background: var(--bg-2); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.why-text > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.why-list { list-style: none; }
.why-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.why-list li:last-child { border-bottom: none; }
.wl-arrow { color: var(--cyan); font-weight: 700; flex-shrink: 0; }
.why-list strong { color: var(--white); }

/* Pareto viz */
.pareto-viz {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.pv-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pv-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 160px;
  position: relative;
}
.pv-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.pv-bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  transition: height 1s ease;
}
.pv-bar span { color: var(--white); }
.pv-bar-a { background: rgba(100,116,139,0.4); height: 0; }
.pv-bar-b { background: rgba(56,189,248,0.5); height: 0; }
.pv-bar-c { background: rgba(56,189,248,0.5); height: 0; }
.pv-bar-d { background: linear-gradient(0deg, rgba(52,211,153,0.6), rgba(56,189,248,0.6)); height: 0; }
.pv-xlabel { font-size: 0.68rem; color: var(--text-dim); text-align: center; line-height: 1.3; }
.pv-arrow-mid {
  align-self: center;
  color: var(--amber);
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}
.pv-legend {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.pvl {
  width: 10px; height: 10px;
  border-radius: 2px;
  display: inline-block;
}
.pvl.a { background: rgba(100,116,139,0.6); }
.pvl.b { background: rgba(56,189,248,0.6); }

/* ── RESULTS ── */
.results {
  padding: 100px 0;
  position: relative;
}
.results-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(56,189,248,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.results-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 40px;
}
.rt {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.rt thead {
  background: rgba(56,189,248,0.08);
  border-bottom: 1px solid var(--border-glow);
}
.rt th {
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cyan);
  white-space: nowrap;
}
.rt td {
  padding: 14px 16px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.rt tr:last-child td { border-bottom: none; }
.rt tbody tr:hover { background: rgba(255,255,255,0.02); }
.row-approved { background: rgba(52,211,153,0.04); }
.row-elim { background: rgba(248,113,113,0.03); }
.rt td strong { color: var(--white); }
.status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}
.status.approved { background: rgba(52,211,153,0.15); color: var(--green); }
.status.elim { background: rgba(248,113,113,0.15); color: var(--red); }
.status.hab { background: rgba(56,189,248,0.12); color: var(--cyan); }
.rt-disclaimer {
  padding: 16px;
  font-size: 0.75rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

.results-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 20px;
}
.rh-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.rh-featured {
  background: linear-gradient(135deg, rgba(52,211,153,0.1), rgba(56,189,248,0.08));
  border-color: rgba(52,211,153,0.25);
}
.rh-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 6px;
}
.rh-featured .rh-num { color: var(--green); }
.rh-label { font-size: 0.82rem; color: var(--text-muted); }

/* ── STORY ── */
.story { padding: 100px 0; background: var(--bg-3); }
.story-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.15;
}
.story-lead {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
}
.story-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.story-content strong { color: var(--white); }
blockquote {
  border-left: 3px solid var(--cyan);
  padding: 16px 20px;
  background: rgba(56,189,248,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem;
  color: var(--cyan);
  font-style: italic;
  line-height: 1.6;
  margin: 24px 0;
}
.sv-card {
  background: var(--surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
}
.sv-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--cyan);
  opacity: 0.4;
  margin-bottom: 16px;
}
.sv-card > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.sv-author { display: flex; gap: 14px; align-items: center; }
.sv-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #060c1a;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sv-author strong { font-size: 0.9rem; color: var(--white); }
.sv-author span { font-size: 0.75rem; color: var(--text-dim); }
.sv-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sv-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.sv-n {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 4px;
}
.sv-stat span:last-child { font-size: 0.75rem; color: var(--text-dim); }

/* ── OFFER ── */
.offer {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.offer-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(56,189,248,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all 0.3s;
  animation-delay: var(--delay, 0ms);
}
.offer-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
}
.offer-featured {
  background: linear-gradient(135deg, rgba(56,189,248,0.08), rgba(52,211,153,0.05));
  border-color: rgba(56,189,248,0.25);
  box-shadow: 0 0 30px rgba(56,189,248,0.08);
}
.oc-badge {
  display: inline-block;
  background: var(--amber);
  color: #060c1a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.oc-icon { font-size: 2rem; margin-bottom: 16px; }
.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.offer-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ── PRICING ── */
.pricing {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.pricing-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(56,189,248,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(56,189,248,0.1) 0%, rgba(52,211,153,0.08) 100%);
  border: 2px solid var(--cyan);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: 0 0 60px rgba(56,189,248,0.2), var(--shadow-lg);
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber), #f97316);
  color: #060c1a;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
}
.pricing-main {
  margin: 20px 0 32px;
}
.pricing-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 12px;
}
.pricing-currency {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  margin-top: 8px;
}
.pricing-value {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}
.pricing-cents {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  margin-top: 8px;
}
.pricing-installments {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 500;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text);
}
.pricing-features svg {
  color: var(--green);
  flex-shrink: 0;
}
.pricing-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 16px;
}

/* ── GUARANTEE ── */
.guarantee {
  padding: 60px 0;
  background: var(--bg-2);
}
.guarantee-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(52,211,153,0.06);
  border: 1px solid rgba(52,211,153,0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.guarantee-icon {
  flex-shrink: 0;
}
.guarantee-icon svg {
  color: var(--green);
}
.guarantee-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.guarantee-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── FAQ ── */
.faq { padding: 100px 0; background: var(--bg-2); }
.faq-list { max-width: 780px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--cyan); }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--cyan);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 24px;
  overflow: hidden;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CTA FINAL ── */
.cta-final {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(56,189,248,0.12) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(56,189,248,0.03) 100%);
  pointer-events: none;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.25);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-inner h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-inner > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.cta-guarantee svg { color: var(--green); flex-shrink: 0; }

/* ── FOOTER ── */
.site-footer {
  background: #030810;
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
.footer-brand .logo { margin-bottom: 10px; }
.footer-brand p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  grid-column: 1 / -1;
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 50;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: none;
}
.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .fw-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-wrap { grid-template-columns: 1fr; gap: 48px; }
  .results-highlight { grid-template-columns: 1fr 1fr; }
  .rh-featured { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hero { padding: 80px 0 60px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-proof { gap: 16px; }
  .fw-grid { grid-template-columns: 1fr; }
  .compare-wrap { grid-template-columns: 1fr; }
  .compare-vs { display: none; }
  .market-numbers { grid-template-columns: 1fr; }
  .logic-flow { padding: 20px; gap: 4px; }
  .lf-arrow { font-size: 0.8rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .results-highlight { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .section-title { font-size: 1.8rem; }
  .sticky-cta { display: block; }
}

/* ── CONTEXT IMAGES SECTION ── */
.context-images {
  padding: 100px 0;
  background: var(--bg-3);
}
.context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
.context-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.context-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.4s, transform 0.4s;
}
.context-img-wrap:hover img {
  filter: brightness(0.95) saturate(1.05);
  transform: scale(1.02);
}
.context-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(6,12,26,0.95) 0%, rgba(6,12,26,0.6) 60%, transparent 100%);
  padding: 28px 24px 20px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}
.cic-icon { font-size: 1.8rem; flex-shrink: 0; }
.context-img-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.context-img-caption span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.context-callout {
  background: rgba(56,189,248,0.06);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
}
.context-callout p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.context-callout strong { color: var(--cyan); }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(245,158,11,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(52,211,153,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.3s;
  animation-delay: var(--delay, 0ms);
}
.testi-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}
.testi-featured {
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(56,189,248,0.05));
  border-color: rgba(245,158,11,0.25);
}
.testi-stars {
  color: var(--amber);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.testi-card blockquote {
  border: none;
  background: none;
  padding: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.7;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #060c1a;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-featured .testi-avatar {
  background: linear-gradient(135deg, var(--amber), #f97316);
}
.testi-author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
}
.testi-author span {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.testi-highlight-tag {
  position: absolute;
  top: -1px; right: 20px;
  background: var(--amber);
  color: #060c1a;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
}

@media (max-width: 1024px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .context-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .testi-grid { grid-template-columns: 1fr; }
  .context-img-wrap img { height: 260px; }
  .pricing-card { padding: 32px 24px; }
  .pricing-value { font-size: 3.5rem; }
  .pricing-currency, .pricing-cents { font-size: 1.5rem; }
  .guarantee-wrap { flex-direction: column; text-align: center; padding: 32px 24px; }
  .guarantee-content h3 { font-size: 1.3rem; }
}
