/* ============================================================
   GEEMAPS ACCESSIBILITY — Design System
   Aesthetic: Architectural Dark
   Fonts: Bebas Neue (display) + Plus Jakarta Sans (body)
   Brand: #f46556 coral on near-black
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --coral:        #f46556;
  --coral-dark:   #d94f43;
  --coral-glow:   rgba(244, 101, 86, 0.15);
  --dark:         #0c0c14;
  --dark-2:       #14141e;
  --dark-card:    #1c1c2c;
  --dark-border:  rgba(255,255,255,0.08);
  --ink:          #1a1a2e;
  --ink-soft:     #4a4a6a;
  --muted:        #5e5e82;
  --surface:      #f4f4f6;
  --border:       #b8b8cc;
  --white:        #ffffff;

  --coral-aa:     #f46556;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --max-w:        1140px;
  --radius:       6px;
  --radius-lg:    14px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.10);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.14);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.22);
  --coral-shadow: 0 4px 20px rgba(244,101,86,0.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── Focus rings (accessible) ────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Screen-reader only ──────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Container ───────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Dot-grid background ─────────────────────────────────── */
.dot-grid {
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ── Section label ───────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-aa);
  margin-bottom: 0.75rem;
}

/* ── Display headings ────────────────────────────────────── */
h1, h2, h3.display {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.15;
  font-weight: 500;
}

h2, h3.display {
  letter-spacing: -0.02em;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--coral-shadow);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(244,101,86,0.45);
}

.btn-outline {
  border: 1.5px solid var(--ink-soft);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--coral);
  color: var(--coral-aa);
  background: var(--coral-glow);
}

.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: var(--coral-glow);
}

/* ─────────────────────────────────────────────────────────────
   NAVIGATION
   ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

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

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
  margin-top: 4px;
}

.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 1px solid var(--border);
  padding-left: 10px;
  line-height: 1.3;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 0.2s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: 8px; padding: 8px 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ─────────────────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────────────────── */
.hero {
  background: var(--white);
  padding-top: 64px; /* nav height */
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,101,86,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-aa);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0ms;
}
.hero-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--coral-aa);
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.05;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 100ms;
}
.hero h1 .accent { color: var(--coral); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 200ms;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,64,48,0.08);
  border: 1px solid rgba(196,64,48,0.28);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-aa);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 250ms;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--coral-aa);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 350ms;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 450ms;
}
.hero-trust::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--border);
}

.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 200ms;
}

.hero-demo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-border);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(244,101,86,0.1);
  aspect-ratio: 16/10;
  background: var(--dark-2);
  position: relative;
}

.hero-demo-wrap iframe {
  width: 100%; height: 100%;
  opacity: 0.85;
  pointer-events: none;
  display: block;
}

.hero-demo-label {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(12,12,20,0.9);
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
}
.hero-demo-label span { color: var(--coral); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────
   HERO SHOWCASE (Animated Product Visual)
   ──────────────────────────────────────────────────────────── */
.hero-showcase {
  max-width: var(--max-w);
  margin: 20px auto 0;
  padding: 0 24px 80px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 500ms;
}

.showcase-scene {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}

/* Gradient orbs */
.showcase-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.showcase-orb-1 {
  width: 300px; height: 300px;
  background: rgba(244, 101, 86, 0.12);
  top: -60px; right: -40px;
  animation: orbFloat 8s ease-in-out infinite;
}
.showcase-orb-2 {
  width: 200px; height: 200px;
  background: rgba(99, 102, 241, 0.08);
  bottom: -40px; left: -30px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.showcase-orb-3 {
  width: 160px; height: 160px;
  background: rgba(244, 101, 86, 0.06);
  top: 40%; left: 50%;
  animation: orbFloat 12s ease-in-out infinite 2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 10px) scale(0.95); }
}

/* Browser mockup */
.showcase-browser {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.12),
    0 4px 16px rgba(0,0,0,0.08),
    0 0 0 1px rgba(244,101,86,0.06);
}

.showcase-browser-bar {
  background: #f0f0f3;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.showcase-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ddd;
}
.showcase-dot:nth-child(1) { background: #ff5f57; }
.showcase-dot:nth-child(2) { background: #febc2e; }
.showcase-dot:nth-child(3) { background: #28c840; }

.showcase-url {
  margin-left: 12px;
  font-size: 0.72rem;
  color: #999;
  background: #e8e8ec;
  padding: 4px 12px;
  border-radius: 4px;
  flex: 1;
  max-width: 280px;
}

/* Viewport with simulated 3D space */
.showcase-viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  background: url('tour-preview.jpg') center/cover no-repeat;
  overflow: hidden;
  min-height: 380px;
}

.showcase-space {
  position: absolute;
  inset: 0;
}

/* Perspective grid floor — hidden when using real tour image */
.showcase-grid-floor {
  display: none;
}

/* Slight dark overlay for UI readability on photo */
.showcase-viewport::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
  z-index: 1;
}

/* Floating hotspot pins */
.showcase-pin {
  position: absolute;
  z-index: 4;
}
.showcase-pin-1 { top: 40%; left: 15%; animation: pinFloat 4s ease-in-out infinite; }
.showcase-pin-2 { top: 22%; left: 60%; animation: pinFloat 4s ease-in-out infinite 1.3s; }
.showcase-pin-3 { top: 55%; left: 80%; animation: pinFloat 4s ease-in-out infinite 2.6s; }

.showcase-pin-dot {
  width: 32px; height: 32px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(244,101,86,0.5);
  position: relative;
  z-index: 2;
}

.showcase-pin-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--coral);
  animation: pinPulse 2.5s ease-out infinite;
  z-index: 1;
}
.showcase-pin-2 .showcase-pin-pulse { animation-delay: 0.8s; }
.showcase-pin-3 .showcase-pin-pulse { animation-delay: 1.6s; }

@keyframes pinFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pinPulse {
  0% { width: 32px; height: 32px; opacity: 0.6; }
  100% { width: 64px; height: 64px; opacity: 0; }
}

/* Info panel */
.showcase-panel {
  position: absolute;
  top: 25%; left: 35%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  padding: 16px 18px;
  width: 240px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 5;
  animation: panelSlide 6s ease-in-out infinite;
}

.showcase-panel-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.showcase-panel-desc {
  font-size: 0.7rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 10px;
}

.showcase-panel-audio {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border-radius: 6px;
  padding: 6px 10px;
}

.showcase-audio-icon {
  color: var(--coral);
  display: flex;
  flex-shrink: 0;
}

.showcase-audio-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.showcase-audio-bars span {
  width: 3px;
  background: var(--coral);
  border-radius: 2px;
  animation: audioBar 1.2s ease-in-out infinite;
}
.showcase-audio-bars span:nth-child(1) { height: 8px; animation-delay: 0s; }
.showcase-audio-bars span:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.showcase-audio-bars span:nth-child(3) { height: 6px; animation-delay: 0.2s; }
.showcase-audio-bars span:nth-child(4) { height: 18px; animation-delay: 0.3s; }
.showcase-audio-bars span:nth-child(5) { height: 10px; animation-delay: 0.4s; }
.showcase-audio-bars span:nth-child(6) { height: 16px; animation-delay: 0.5s; }
.showcase-audio-bars span:nth-child(7) { height: 7px; animation-delay: 0.6s; }
.showcase-audio-bars span:nth-child(8) { height: 12px; animation-delay: 0.7s; }

@keyframes audioBar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

@keyframes panelSlide {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-6px); opacity: 0.95; }
}

/* Language selector */
.showcase-langs {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  gap: 4px;
  z-index: 4;
}

.showcase-lang {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.showcase-lang.active {
  background: var(--coral);
  color: white;
  box-shadow: 0 2px 8px rgba(244,101,86,0.4);
}

/* Caption bar */
.showcase-caption {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
}

.showcase-caption-icon {
  background: var(--coral);
  color: white;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 3px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

/* WCAG badge */
.showcase-wcag {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(40, 200, 64, 0.15);
  border: 1px solid rgba(40, 200, 64, 0.3);
  color: #4ade80;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 4;
}

/* Accessibility controls */
.showcase-a11y-controls {
  position: absolute;
  right: 12px;
  bottom: 52px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 4;
}

.showcase-a11y-btn {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 700;
}

/* Floating feature badges */
.showcase-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 5;
  white-space: nowrap;
}

.showcase-float-1 {
  top: 20px; right: -8px;
  animation: floatBadge 5s ease-in-out infinite;
}
.showcase-float-2 {
  top: 50%; left: -8px;
  transform: translateY(-50%);
  animation: floatBadge 5s ease-in-out infinite 1.5s;
}
.showcase-float-3 {
  bottom: 20px; right: -8px;
  animation: floatBadge 5s ease-in-out infinite 3s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive: hide complex elements on small screens */
@media (max-width: 768px) {
  .showcase-float { display: none; }
  .showcase-panel { width: 180px; padding: 12px; left: 25%; }
  .showcase-panel-desc { display: none; }
  .showcase-pin-dot { width: 24px; height: 24px; }
  .showcase-pin-dot svg { width: 10px; height: 10px; }
  .showcase-orb { display: none; }
}

@media (max-width: 480px) {
  .showcase-panel { display: none; }
  .showcase-a11y-controls { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   STATS BAR
   ──────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 32px 24px;
}

.stats-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--coral);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ─────────────────────────────────────────────────────────────
   PROBLEM SECTION
   ──────────────────────────────────────────────────────────── */
.section-problem {
  padding: 100px 24px;
  background: var(--surface);
}

.section-problem .container { text-align: center; }

.section-problem h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
  color: var(--ink);
}

.section-problem .lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 56px;
}

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

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  transition: all 0.25s;
}
.problem-card:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.problem-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.problem-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS
   ──────────────────────────────────────────────────────────── */
.section-how {
  padding: 100px 24px;
  background: var(--white);
}

.section-how .container { text-align: center; }

.section-how h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--ink);
  margin-bottom: 12px;
}

.section-how .lead {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 64px;
}

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

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.step-card:hover { border-color: var(--coral); box-shadow: var(--shadow-sm); }

.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}

.step-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────────
   FEATURES
   ──────────────────────────────────────────────────────────── */
.section-features {
  padding: 100px 24px;
  background: var(--surface);
}

.section-features .container { text-align: center; }

.section-features h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--ink);
  margin-bottom: 12px;
}

.section-features .lead {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 64px;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: left;
  transition: all 0.25s;
}
.feature-card:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   DEMO SECTION
   ──────────────────────────────────────────────────────────── */
.section-demo {
  padding: 100px 24px;
  background: var(--white);
}

.demo-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--dark-border);
}

.demo-card-body {
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.demo-card-text .section-label { display: block; color: var(--coral); }
.demo-card-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}
.demo-card-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
  max-width: 380px;
}

.demo-preview {
  width: 340px;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  flex-shrink: 0;
  background: var(--dark-2);
  position: relative;
}

/* ── Tour Mockup Illustration ── */
.tour-mockup {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 25%, #2d1f45 0%, #130f28 45%, #060612 100%);
  overflow: hidden;
}

/* Ceiling glow */
.tour-mockup::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(200,160,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Perspective floor grid */
.tour-mockup::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -30%;
  right: -30%;
  height: 48%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 14%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 20%);
  transform: perspective(300px) rotateX(52deg);
  transform-origin: bottom center;
}

.tour-hs {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.tour-hs-pin {
  width: 34px; height: 34px;
  background: var(--coral);
  border: 2.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  box-shadow: 0 0 0 0 rgba(244,101,86,0.5), 0 2px 10px rgba(0,0,0,0.5);
  animation: hs-pulse 2.8s ease-in-out infinite;
  cursor: default;
}
.tour-hs:nth-child(2) .tour-hs-pin { animation-delay: 0.7s; }
.tour-hs:nth-child(3) .tour-hs-pin { animation-delay: 1.4s; }

@keyframes hs-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,101,86,0.5), 0 2px 10px rgba(0,0,0,0.5); }
  50%       { box-shadow: 0 0 0 9px rgba(244,101,86,0), 0 2px 10px rgba(0,0,0,0.5); }
}

.tour-hs-label {
  background: rgba(8,6,20,0.82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 3px 9px;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.tour-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 9px 14px;
  background: rgba(8,6,20,0.88);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 3;
}

.tour-langs {
  position: absolute;
  top: 10px; right: 10px;
  display: flex;
  gap: 4px;
  z-index: 3;
}
.tour-lang {
  padding: 3px 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 3px;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}
.tour-lang.active {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.tour-wcag-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(244,101,86,0.15);
  border: 1px solid rgba(244,101,86,0.45);
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 3;
}

/* ─────────────────────────────────────────────────────────────
   PRICING
   ──────────────────────────────────────────────────────────── */
.section-pricing {
  padding: 100px 24px;
  background: var(--surface);
}

.section-pricing .container { text-align: center; }

.section-pricing h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 12px;
  color: var(--ink);
}
.section-pricing .lead {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 440px;
  margin: 0 auto 64px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  transition: all 0.25s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }

.pricing-card.featured {
  border-color: var(--coral);
  box-shadow: var(--coral-shadow);
  transform: scale(1.03);
  position: relative;
}

.pricing-badge {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.pricing-tier {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price .currency {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: super;
}
.pricing-price .period {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
}

.pricing-setup {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.pricing-setup strong { color: var(--ink); }

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.pricing-features li::before {
  content: '✓';
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────────────────────
   FAQ
   ──────────────────────────────────────────────────────────── */
.section-faq {
  padding: 100px 24px;
  background: var(--white);
}

.section-faq .container { max-width: 780px; text-align: center; }

.section-faq h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 12px;
}
.section-faq .lead {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 48px;
}

.faq-list { text-align: left; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--coral); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  gap: 16px;
  cursor: pointer;
  background: none;
}
.faq-question:hover { color: var(--coral); }

.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
}
.faq-icon svg {
  display: block;
  transition: transform 0.2s;
}
.faq-item.open .faq-icon {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 24px;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 260px;
  margin-top: 0;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

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

.footer-col a {
  font-size: 0.88rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral-aa); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a { color: var(--coral-aa); }

/* ─────────────────────────────────────────────────────────────
   ONBOARDING PAGE
   ──────────────────────────────────────────────────────────── */
.onboarding-page {
  background: var(--surface);
  padding-top: 64px;
  min-height: 100vh;
}

.onboarding-hero {
  background: var(--dark);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.onboarding-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.onboarding-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.onboarding-hero h1 .accent { color: var(--coral); }

.onboarding-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.onboarding-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* Progress */
.progress-header {
  text-align: center;
  margin-bottom: 40px;
}

.progress-track {
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--coral);
  border-radius: 4px;
  transition: width 0.4s ease;
}
.progress-label {
  font-size: 0.82rem;
  color: var(--muted);
}
.progress-label strong { color: var(--coral); }

/* Step cards */
.form-step { display: none; }
.form-step.active { display: block; }

.step-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 40px;
  box-shadow: var(--shadow-sm);
}

.step-panel-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.step-panel-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--coral);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.step-panel h2 {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.step-panel-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* Form fields */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.field-row.single { grid-template-columns: 1fr; }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.field label .req { color: var(--coral); margin-left: 2px; }

.field input,
.field select,
.field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-glow);
}

.field input.error,
.field select.error,
.field textarea.error {
  border-color: #e53e3e;
}

.field-hint {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}
.field-hint a { color: var(--coral); text-decoration: underline; }

.field-error {
  font-size: 0.78rem;
  color: #e53e3e;
  display: none;
}
.field-error.visible { display: block; }

/* Checkboxes & radios */
.check-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-group.horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--ink);
}
.check-item input[type="checkbox"],
.check-item input[type="radio"] {
  width: 18px; height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--coral);
  flex-shrink: 0;
  padding: 0;
}

/* File upload */
.file-drop {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--surface);
  display: block;
  user-select: none;
}
.file-drop:hover, .file-drop.drag-over {
  border-color: var(--coral);
  background: var(--coral-glow);
}
.file-drop input[type="file"] {
  display: none;
}
.file-drop-icon { font-size: 1.8rem; margin-bottom: 8px; }
.file-drop-label { font-size: 0.88rem; color: var(--ink-soft); }
.file-drop-label strong { color: var(--coral); }
.file-drop-meta { font-size: 0.75rem; color: var(--muted); margin-top: 4px; }
.file-drop-name {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--coral);
  font-weight: 600;
  display: none;
}

/* Info / hint box */
.info-box {
  background: var(--coral-glow);
  border: 1px solid rgba(244,101,86,0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}
.info-box strong { color: var(--coral); }

.sample-downloads {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.sample-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral);
  border: 1px solid rgba(244,101,86,0.3);
  border-radius: 4px;
  padding: 6px 12px;
  transition: all 0.2s;
}
.sample-link:hover {
  background: var(--coral-glow);
  border-color: var(--coral);
}

/* SDK guide accordion */
.sdk-guide summary::-webkit-details-marker { display: none; }
.sdk-guide[open] .sdk-guide-arrow { transform: rotate(90deg); }

/* ── Content blocks (Step 5) ─────────────────────────────── */
.content-block {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  background: var(--white);
}

.content-block-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.content-block-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--coral);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.content-block-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.content-block-req {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.content-block-opt {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.content-block-sub {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Content guide (expandable) */
.content-guide {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.content-guide summary {
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.content-guide summary::-webkit-details-marker { display: none; }
.content-guide summary:hover { background: var(--coral-glow); }

.content-guide-body {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.content-guide-body p { margin-bottom: 10px; }
.content-guide-body p:last-child { margin-bottom: 0; }
.content-guide-body ul,
.content-guide-body ol {
  padding-left: 1.3em;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.content-guide-body strong { color: var(--ink); }
.content-guide-body code {
  background: var(--border);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 0.82rem;
  font-family: monospace;
}
.content-guide-body a { color: var(--coral); text-decoration: underline; }

/* Review step */
.review-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.review-group {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.review-group-title {
  background: var(--surface);
  padding: 10px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.review-rows {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.875rem;
}

.review-key {
  color: var(--muted);
  flex-shrink: 0;
  min-width: 120px;
}

.review-val {
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

.price-estimate {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-estimate-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.price-estimate-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--coral);
  line-height: 1;
}

.price-estimate-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

/* Step nav buttons */
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.step-nav .btn { min-width: 120px; justify-content: center; }

/* Agree checkbox */
.agree-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 20px;
  cursor: pointer;
}
.agree-check input {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--coral);
}

/* ─────────────────────────────────────────────────────────────
   SUCCESS PAGE
   ──────────────────────────────────────────────────────────── */
.success-page {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}
.success-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.success-page::after {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(244,101,86,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.success-card {
  position: relative;
  z-index: 1;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 60px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 72px; height: 72px;
  background: var(--coral-glow);
  border: 2px solid rgba(244,101,86,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
  animation: pulse 2s ease-in-out infinite;
}

.success-card h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.success-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 36px;
}

.next-steps {
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.next-steps h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}

.next-steps ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.next-steps ol li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.next-steps ol li::before {
  content: attr(data-n);
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--coral);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────
   ANIMATIONS
   ──────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,101,86,0.3); }
  50%       { box-shadow: 0 0 0 12px rgba(244,101,86,0); }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .problem-grid,
  .steps-grid,
  .features-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .demo-card-body { grid-template-columns: 1fr; }
  .demo-preview { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
  .step-panel { padding: 28px 20px; }
  .success-card { padding: 40px 28px; }
  .price-estimate { flex-direction: column; gap: 8px; text-align: center; }
}

/* Mobile nav open state */
.nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: var(--white);
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  gap: 16px;
}
.nav.open .nav-cta {
  display: block;
  padding: 0 24px 16px;
  position: absolute;
  bottom: -64px; left: 0; right: 0;
  background: var(--white);
}
