/* ═══════════════════════════════════════════════════
   VoiceAI Landing Page — CSS
   Fonts: Bricolage Grotesque (headings) + Figtree (body)
   Palette: Navy #0A1628 | Blue #3358E8 | Teal #00C896
═══════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ────────────────────────────── */
:root {
  --dark:       #0A1628;
  --dark-2:     #0f1f3c;
  --dark-3:     #162035;
  --accent:     #3358E8;
  --accent-h:   #2849D5;
  --green:      #00C896;
  --green-h:    #00b085;
  --bg:         #F6F7F9;
  --bg-2:       #EEEEF1;
  --text:       #1A1A2E;
  --muted:      #5E6478;
  --border:     rgba(10,22,40,0.08);
  --white:      #ffffff;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Figtree', sans-serif;

  --nav-h:      72px;
  --container:  1160px;
  --radius:     14px;
  --radius-lg:  24px;

  --shadow:     0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg:  0 16px 56px rgba(10,22,40,0.18);
}

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

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

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

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ── CONTAINER ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── TYPOGRAPHY ───────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

.section-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  margin-bottom: 16px;
  text-align: center;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 56px;
  text-align: center;
  line-height: 1.7;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  font-size: 0.9375rem;
  box-shadow: 0 4px 20px rgba(51,88,232,0.35);
}
.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(51,88,232,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 11px 24px;
  font-size: 0.9375rem;
}
.btn-outline:hover {
  background: rgba(51,88,232,0.06);
  border-color: var(--accent-h);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 12px 20px;
  font-size: 0.9375rem;
}
.btn-ghost:hover { color: var(--white); }

.btn-lg { padding: 15px 28px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 8px 18px; font-size: 0.875rem; border-radius: 8px; }
.btn-full { width: 100%; justify-content: center; }

/* ── FOCUS STYLES ─────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline-offset: 3px;
  border-radius: 12px;
}
.btn-sm:focus-visible { border-radius: 8px; }
.faq-q:focus-visible { outline-offset: -2px; }

/* ── REVEAL ANIMATION ─────────────────────────────── */
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-loaded .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO ENTRANCE STAGGER ────────────────────────── */
.hero-badge.reveal          { transition-delay: 0.05s; }
.hero-title.reveal          { transition-delay: 0.15s; }
.hero-sub.reveal            { transition-delay: 0.28s; }
.hero-ctas.reveal           { transition-delay: 0.42s; }
.hero-proof.reveal          { transition-delay: 0.56s; }
.hero-visual.reveal         { transition-delay: 0.22s; }

/* ── NAVIGATION ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 38px;
  width: auto;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { margin-left: auto; display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s 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); }

/* ── MOBILE MENU ──────────────────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 150;
  backdrop-filter: blur(4px);
}
.mobile-overlay.show { display: block; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--dark-2);
  z-index: 200;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  border-left: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .btn {
  display: flex;
  justify-content: center;
  border-bottom: none;
}
.mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 1.25rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.mobile-close:hover { color: var(--white); background: rgba(255,255,255,0.06); }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(51,88,232,0.12) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-glow.g1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(51,88,232,0.18), transparent 70%);
  top: -100px;
  right: -100px;
}
.hero-glow.g2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,200,150,0.12), transparent 70%);
  bottom: 0;
  left: 0;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,150,0.08);
  border: 1px solid rgba(0,200,150,0.2);
  border-radius: 40px;
  padding: 6px 16px 6px 10px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
  width: fit-content;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,150,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(0,200,150,0); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
}
.hero-sub strong { color: var(--green); font-weight: 600; }

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

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
}
.proof-avatars {
  display: flex;
}
.proof-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  margin-left: -10px;
  object-fit: cover;
  background: #1a2540;
}
.proof-avatars .proof-avatar:first-child { margin-left: 0; }
.hero-proof p { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin: 0; }
.hero-proof strong { color: var(--white); font-weight: 700; }

.proof-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.proof-stars {
  display: inline-flex;
  gap: 2px;
}
.proof-stars svg {
  width: 14px;
  height: 14px;
  display: block;
}
.proof-google {
  font-weight: 600;
  letter-spacing: 0.1px;
}
.proof-count {
  color: rgba(255,255,255,0.45);
}

/* Hero visual / phone */
.hero-visual {
  display: none;
  justify-content: center;
  align-items: center;
}

.phone-wrap {
  position: relative;
  width: 240px;
}

.phone {
  width: 240px;
  height: 460px;
  background: linear-gradient(180deg, #0d1f38 0%, #0a1628 100%);
  border-radius: 36px;
  border: 1.5px solid rgba(51,88,232,0.3);
  box-shadow: 0 0 0 8px rgba(51,88,232,0.05), var(--shadow-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 80px;
  height: 26px;
  background: #060e1a;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  flex-shrink: 0;
}

.phone-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 28px;
  gap: 20px;
}

.call-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,200,150,0.12);
  border: 1px solid rgba(0,200,150,0.25);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.call-pulse {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.ai-orb {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0;
}
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(51,88,232,0.3);
  animation: orbit-expand 3s ease-out infinite;
}
.orb-ring.r1 { width: 96px; height: 96px; }
.orb-ring.r2 { width: 96px; height: 96px; animation-delay: 1.5s; }

@keyframes orbit-expand {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

.orb-core {
  width: 64px;
  height: 64px;
  background: radial-gradient(circle at 40% 35%, rgba(51,88,232,0.5), rgba(10,22,40,0.8));
  border-radius: 50%;
  border: 1.5px solid rgba(51,88,232,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 24px rgba(51,88,232,0.25);
}

.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 40px;
}
.waveform span {
  display: block;
  width: 4px;
  background: var(--accent);
  border-radius: 4px;
  height: 8px;
  animation: wave-bar 1.2s ease-in-out infinite;
}
.waveform span:nth-child(1) { animation-delay: 0.0s; }
.waveform span:nth-child(2) { animation-delay: 0.1s; }
.waveform span:nth-child(3) { animation-delay: 0.2s; }
.waveform span:nth-child(4) { animation-delay: 0.3s; }
.waveform span:nth-child(5) { animation-delay: 0.15s; }
.waveform span:nth-child(6) { animation-delay: 0.25s; }
.waveform span:nth-child(7) { animation-delay: 0.05s; }
.waveform span:nth-child(8) { animation-delay: 0.35s; }
.waveform span:nth-child(9) { animation-delay: 0.18s; }

@keyframes wave-bar {
  0%, 100% { height: 6px; opacity: 0.4; }
  50% { height: 32px; opacity: 1; }
}

.phone-status {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  letter-spacing: 0.04em;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.fc-icon {
  font-size: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(51,88,232,0.15);
  border-radius: 8px;
  flex-shrink: 0;
}
.fc-text { display: flex; flex-direction: column; }
.fc-text strong { font-size: 0.75rem; color: var(--white); font-weight: 600; }
.fc-text span { font-size: 0.6875rem; color: rgba(255,255,255,0.5); }

.fc1 {
  bottom: 80px;
  right: -56px;
  animation: float-card 4s ease-in-out infinite;
}
.fc2 {
  top: 100px;
  left: -60px;
  animation: float-card 4s ease-in-out infinite 2s;
}

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

/* Scroll indicator */
.scroll-indicator {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 32px;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.scroll-arrow {
  animation: scroll-nudge 1.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes scroll-nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── PROBLEM ──────────────────────────────────────── */
.problem {
  background: var(--bg);
  padding: 96px 0;
}

.stat-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 40px auto 56px;
  max-width: 520px;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-symbol {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 1rem;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.6;
}
.stat-label strong { color: var(--text); }

.problem-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.problem-img {
  display: none;
}

.problem-list {
  list-style: none;
  max-width: 720px;
  margin: 0 auto;
}
.problem-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 8px;
}
.problem-item:first-child { border-top: 1px solid var(--border); }
.problem-item h3 {
  font-size: 1.125rem;
  color: var(--text);
  font-weight: 700;
}
.problem-item p { font-size: 0.9375rem; color: var(--muted); line-height: 1.65; }

.problem-item:nth-child(1) { transition-delay: 0.05s; }
.problem-item:nth-child(2) { transition-delay: 0.15s; }
.problem-item:nth-child(3) { transition-delay: 0.25s; }

/* ── HOW IT WORKS ─────────────────────────────────── */
.how-it-works {
  background: var(--dark-3);
  padding: 96px 0;
}
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-sub { color: rgba(255,255,255,0.55); }

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

.step {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
}
.step-num {
  position: absolute;
  bottom: -16px;
  right: 12px;
  font-family: var(--font-display);
  font-size: 7.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.055);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.step-icon,
.step h3,
.step p {
  position: relative;
  z-index: 1;
}
.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(51,88,232,0.12);
  border: 1px solid rgba(51,88,232,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.step h3 { font-size: 1.125rem; color: var(--white); }
.step p { font-size: 0.9375rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

.step-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(51,88,232,0.3), rgba(51,88,232,0.05));
  margin: 0 auto;
}

/* Steps cascade left to right */
.steps > .step:nth-child(1) { transition-delay: 0s;    }
.steps > .step:nth-child(3) { transition-delay: 0.12s; }
.steps > .step:nth-child(5) { transition-delay: 0.24s; }
.steps > .step:nth-child(7) { transition-delay: 0.36s; }

/* ── DEMO SECTION ─────────────────────────────────── */
.demo-section {
  background: var(--bg-2);
  padding: 96px 0;
}

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

.demo-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: var(--dark);
  gap: 12px;
}
.demo-call-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  min-width: 0;
}
.demo-call-status span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.demo-call-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
.demo-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.demo-transcript {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.demo-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 82%;
}
.demo-line.ai  { align-self: flex-start; }
.demo-line.client {
  align-self: flex-end;
  align-items: flex-end;
}

.demo-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.demo-bubble {
  padding: 10px 14px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
  border-radius: 12px;
}
.demo-line.ai .demo-bubble {
  background: rgba(51,88,232,0.07);
  border: 1px solid rgba(51,88,232,0.12);
  border-bottom-left-radius: 3px;
}
.demo-line.client .demo-bubble {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-bottom-right-radius: 3px;
  color: var(--muted);
  font-style: italic;
}

.demo-result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: rgba(0,200,150,0.06);
  border-top: 1px solid rgba(0,200,150,0.15);
}
.demo-result-check {
  width: 32px;
  height: 32px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.demo-result strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 2px;
}
.demo-result span {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ── BENEFITS ─────────────────────────────────────── */
.benefits {
  background: var(--bg);
  padding: 96px 0;
}

.benefit-featured {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.benefit-feat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefit-feat-body h3 {
  font-size: 1.375rem;
  color: var(--text);
  font-weight: 800;
  text-wrap: balance;
}
.benefit-feat-body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}
.benefit-feat-mark {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 5.5rem);
  font-weight: 800;
  color: var(--accent);
  opacity: 0.13;
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
  align-self: flex-end;
}

.benefit-secondary-grid {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--border);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.benefit-secondary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--white);
  transition: background 0.15s ease;
}
.benefit-secondary:hover { background: var(--bg); }

.benefit-secondary-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-secondary h3 {
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 3px;
}
.benefit-secondary p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.benefit-secondary:nth-child(1) { transition-delay: 0s;    }
.benefit-secondary:nth-child(2) { transition-delay: 0.07s; }
.benefit-secondary:nth-child(3) { transition-delay: 0.14s; }
.benefit-secondary:nth-child(4) { transition-delay: 0.21s; }
.benefit-secondary:nth-child(5) { transition-delay: 0.28s; }

/* ── CALCULATOR ───────────────────────────────────── */
.calculator {
  position: relative;
  padding: 96px 0;
  background: var(--dark);
  overflow: hidden;
}
.calc-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.calc-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(51,88,232,0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
}

.calculator .section-title { color: var(--white); }
.calculator .section-sub { color: rgba(255,255,255,0.55); }

.calc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.calc-input-group { display: flex; flex-direction: column; gap: 10px; }
.calc-input-group label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
}
.calc-input-group label strong { color: var(--white); }

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(51,88,232,0.2);
  transition: box-shadow 0.2s;
}
.calc-slider::-webkit-slider-thumb:hover { box-shadow: 0 0 0 7px rgba(51,88,232,0.25); }
.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: none;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.calc-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 16px 20px;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  gap: 12px;
}
.breakdown-row strong { color: var(--white); font-weight: 600; white-space: nowrap; }
.highlight-row { color: var(--green); }
.highlight-row strong { color: var(--green); }
.price-ai { color: var(--green); }

.calc-results {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(0,200,150,0.07);
  border: 1px solid rgba(0,200,150,0.2);
  border-radius: var(--radius);
  padding: 24px;
}
.result-item { flex: 1; text-align: center; }
.result-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
}
.result-label { font-size: 0.8125rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.result-divider { width: 1px; height: 48px; background: rgba(0,200,150,0.2); flex-shrink: 0; }

.calc-bars-wrap { display: flex; flex-direction: column; gap: 10px; }
.calc-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bar-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  width: 64px;
  flex-shrink: 0;
  text-align: right;
}
.bar-track {
  flex: 1;
  height: 10px;
  background: rgba(255,255,255,0.07);
  border-radius: 5px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 5px;
  transform-origin: left;
  transition: transform 0.6s ease;
}
.bar-ai { background: var(--green); }
.bar-human { background: rgba(255,255,255,0.2); }
.bar-value { font-size: 0.8125rem; color: rgba(255,255,255,0.5); width: 80px; flex-shrink: 0; }

.calc-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.calc-cta { align-self: stretch; justify-content: center; }

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonials {
  background: var(--bg);
  padding: 96px 0;
}

/* ── TESTIMONIALS MARQUEE ─────────────────────────── */
.marquee-wrap {
  position: relative;
  overflow: hidden;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  padding: 8px 0 16px;
}

/* margin-right on every item (including last) keeps slot width uniform:
   N items × (card-width + 20px margin) = total → -50% = exactly one set.
   Using gap:20px gives N−1 gaps → -50% drifts from the set boundary. */
.marquee-track > * {
  margin-right: 20px;
}

.marquee-track--slow {
  animation-duration: 48s;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
  position: relative;
  width: 300px;
  flex-shrink: 0;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(51,88,232,0.07);
  font-weight: 800;
}

.stars { color: #FBBF24; font-size: 0.875rem; letter-spacing: 2px; }

.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  object-fit: cover;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--text); }
.testimonial-author span { font-size: 0.8125rem; color: var(--muted); }

.logo-strip { text-align: center; }
.logo-strip-label {
  font-size: 0.8125rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.logo-placeholder {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
}

/* ── PRICING ──────────────────────────────────────── */
.pricing {
  background: var(--dark-2);
  padding: 96px 0;
}
.pricing .section-title { color: var(--white); }
.pricing .section-sub { color: rgba(255,255,255,0.55); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.2s ease;
}
.pricing-card:hover { transform: translateY(-4px); }

/* Featured card appears first */
.pricing-card:nth-child(2) { transition-delay: 0s;    }
.pricing-card:nth-child(1) { transition-delay: 0.1s;  }
.pricing-card:nth-child(3) { transition-delay: 0.1s;  }

.pricing-card.featured {
  border-color: var(--accent);
  background: rgba(51,88,232,0.06);
  box-shadow: 0 0 0 1px rgba(51,88,232,0.3), var(--shadow-lg);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.plan-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.price-setup-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-unit {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.price-monthly-row {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding-left: 2px;
}
.price-monthly-row strong {
  color: var(--green);
  font-weight: 700;
}

.plan-desc { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan-features li {
  font-size: 0.9rem;
  padding-left: 4px;
}
.feature-on { color: rgba(255,255,255,0.8); }
.feature-on::before { content: '✓ '; color: var(--green); font-weight: 700; }
.feature-off { color: rgba(255,255,255,0.38); }
.feature-off::before { content: '✕ '; }

/* ── FAQ ──────────────────────────────────────────── */
.faq {
  background: var(--bg);
  padding: 96px 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.faq-title { text-align: left; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ── FINAL CTA ────────────────────────────────────── */
.final-cta {
  position: relative;
  background: var(--dark);
  padding: 96px 0;
  overflow: hidden;
}
.fcta-bg { position: absolute; inset: 0; pointer-events: none; }
.fcta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.fcta-glow.g1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(51,88,232,0.2), transparent);
  top: -100px; left: -100px;
}
.fcta-glow.g2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,200,150,0.12), transparent);
  bottom: -80px; right: -80px;
}
.fcta-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(51,88,232,0.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.fcta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
}

.fcta-text .section-tag { color: rgba(255,255,255,0.5); }
.fcta-text h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.fcta-text p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}
.fcta-perks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.fcta-perks li {
  font-size: 0.875rem;
  color: var(--green);
  font-weight: 600;
}

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}
.form-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input::placeholder { color: rgba(255,255,255,0.4); }
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(51,88,232,0.15);
}
.form-input option { background: var(--dark-2); color: var(--white); }
.form-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.5;
}

/* ── CONTACT CARD ─────────────────────────────────── */
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card-intro {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 4px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.contact-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2px;
}

.contact-item-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  margin-top: 8px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}
.btn-whatsapp:active { transform: translateY(0); }
.btn-whatsapp:focus-visible {
  outline: 2px solid #25D366;
  outline-offset: 3px;
  border-radius: var(--radius);
}

.contact-copy-icon {
  margin-left: auto;
  flex-shrink: 0;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s ease;
}
.contact-item:hover .contact-copy-icon { color: rgba(255,255,255,0.55); }

/* ── COPY TOAST ───────────────────────────────────── */
.copy-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--text);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(10,22,40,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 600;
  white-space: nowrap;
}
.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── FOOTER ───────────────────────────────────────── */
.footer { background: #060e1a; padding-top: 72px; }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { margin-bottom: 4px; }
.footer-brand > p { font-size: 0.9rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all 0.2s;
}
.social-link:hover { background: rgba(51,88,232,0.2); color: var(--white); }

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li, .footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-legal a { font-size: 0.8125rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── COOKIE BANNER ────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: min(560px, calc(100vw - 48px));
  box-shadow: var(--shadow-lg);
  z-index: 500;
  flex-wrap: wrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}
.cookie-banner p { font-size: 0.875rem; color: rgba(255,255,255,0.6); flex: 1; min-width: 160px; }
.cookie-banner a { color: var(--accent); }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }

/* ── RESPONSIVE: TABLET (≥ 768px) ────────────────── */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }

  .problem-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .problem-img {
    display: block;
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    max-height: 460px;
    box-shadow: var(--shadow-lg);
  }
  .problem-body .problem-list {
    max-width: none;
    margin: 0;
  }

  .scroll-indicator { display: flex; }

  .benefit-featured { flex-direction: row; align-items: center; }
  .benefit-secondary-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-secondary:last-child:nth-child(2n+1) { grid-column: 1 / -1; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }

  .faq-inner { grid-template-columns: 300px 1fr; }
  .faq-title { text-align: left; }

  .fcta-inner { grid-template-columns: 1fr 1fr; align-items: start; }

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

  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }

  .steps {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
  .step { flex: 1; }
  .step-connector {
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, rgba(51,88,232,0.3), rgba(51,88,232,0.05));
    flex-shrink: 0;
    align-self: center;
    margin-top: 0;
  }
}

/* ── RESPONSIVE: DESKTOP (≥ 1024px) ──────────────── */
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: flex; }
  .benefit-secondary-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-secondary:last-child:nth-child(2n+1) { grid-column: auto; }
}

/* ── REDUCED MOTION ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .js-loaded .reveal { opacity: 1; transform: none; }
}
