/* ═══════════════════════════════════════════════════════════
   WEBIFY — Landing CSS
   Skill: UI/UX Pro Max — Style: Modern Dark Cinema + 3D Hyperrealism
   Pattern: Hero + Testimonials + CTA (Conversion-Optimized)
   Motion: Complex tier — GSAP ScrollTrigger + Parallax + Magnetic
   Palette: Deep #020203 | Indigo #5E6AD2 | Amber #F59E0B
   Font: Poppins 700-800 (display) · Inter 400-600 (body) · Open Sans
   ═══════════════════════════════════════════════════════════ */

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

/* ── Design Tokens (skill output) ── */
:root {
  /* Backgrounds — light theme, dark blocks (hero/nav) override locally below */
  --bg:          #FFFFFF;
  --bg-base:     #F7F8FB;
  --bg-elevated: #F1F2F7;
  --surface:     rgba(15,17,23,.035);
  --surface-2:   rgba(15,17,23,.06);

  /* Accents */
  --accent:      #5E6AD2;          /* indigo — premium */
  --accent-2:    #0ea5e9;          /* sky blue — speed */
  --accent-glow: rgba(94,106,210,.28);
  --accent-soft: rgba(94,106,210,.10);
  --amber:       #f59e0b;
  --amber-glow:  rgba(245,158,11,.35);
  --green:       #10b981;
  --red:         #ef4444;

  /* Foreground */
  --fg:          #14151A;
  --fg-muted:    #5B5F6B;
  --fg-dim:      #9AA0AC;

  /* Borders */
  --border:      rgba(15,17,23,.09);
  --border-2:    rgba(94,106,210,.25);

  /* Geometry */
  --r:           14px;
  --r-lg:        20px;
  --r-xl:        28px;

  /* Easing — skill recommendation cubic-bezier(0.16,1,0.3,1) */
  --ease:        cubic-bezier(0.16,1,0.3,1);
  --ease-out:    cubic-bezier(0.22,1,0.36,1);

  /* Shadows */
  --shadow:      0 4px 24px rgba(15,17,23,.08);
  --shadow-lg:   0 12px 56px rgba(15,17,23,.12);
  --shadow-glow: 0 0 48px var(--accent-glow);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Open Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-tap-highlight-color: transparent;
  /* ambient grid pattern */
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(94,106,210,.06), transparent),
    linear-gradient(rgba(15,17,23,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,17,23,.02) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

/* ── Dark blocks — hero stays on the original Dark Cinema palette ── */
.nav,
.hero {
  --bg:          #040813;
  --bg-base:     #060c1a;
  --bg-elevated: #0d1526;
  --surface:     rgba(255,255,255,.04);
  --surface-2:   rgba(255,255,255,.07);
  --fg:          #EDEDEF;
  --fg-muted:    #8A8F98;
  --fg-dim:      #435470;
  --border:      rgba(255,255,255,.08);
  --border-2:    rgba(94,106,210,.20);
  --shadow:      0 4px 24px rgba(0,0,0,.6);
  --shadow-lg:   0 12px 56px rgba(0,0,0,.7);
}
.hero {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(94,106,210,.12), transparent),
    linear-gradient(rgba(255,255,255,.013) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.013) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  color: var(--fg);
}

h1, h2, h3, h4 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--fg);
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
a { color: inherit; text-decoration: none; }

/* ── Reveal — stagger via --delay ── */
.js-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.js-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Section eyebrow ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Open Sans', monospace;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--accent);
  opacity: .5;
}
.section-title { font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--fg-muted); max-width: 520px; line-height: 1.75; margin-bottom: 52px; }

/* ── Buttons ── */
.btn-primary,
.btn-hero,
.btn-price,
.btn-final {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  padding: 15px 28px;
  border-radius: var(--r);
  letter-spacing: .01em;
  transition: background .25s, transform .25s var(--ease), box-shadow .25s;
  box-shadow: 0 0 0 0 var(--accent-glow);
  position: relative;
  overflow: hidden;
}
.btn-primary::before,
.btn-hero::before,
.btn-price::before,
.btn-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.btn-primary:hover::before,
.btn-hero:hover::before,
.btn-price:hover::before,
.btn-final:hover::before { opacity: 1; }
.btn-primary:hover,
.btn-hero:hover,
.btn-price:hover,
.btn-final:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px var(--accent-glow);
}
/* hero & final get the pulse */
.btn-hero, .btn-final { animation: btn-pulse 3.5s ease-in-out infinite; }
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(94,106,210,.3); }
  50%       { box-shadow: 0 4px 40px rgba(94,106,210,.6), 0 0 0 8px rgba(94,106,210,0); }
}
.btn-hero:hover, .btn-final:hover { animation: none; }

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--fg-muted);
  font-size: .88rem;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: color .2s, border-color .2s, background .2s;
}
.btn-ghost-hero:hover { color: var(--fg); border-color: var(--border-2); background: var(--surface-2); }

.btn-outline-accent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: 12px 22px;
  border-radius: var(--r);
  border: 1.5px solid var(--accent);
  transition: background .2s, color .2s;
}
.btn-outline-accent:hover { background: var(--accent-soft); }

.btn-sm-accent {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  padding: 10px 20px;
  border-radius: var(--r);
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(94,106,210,.3);
}
.btn-sm-accent:hover { background: #7c87f5; transform: translateY(-2px); }


/* ════════════════════════════════
   NAV
════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 300;
  padding: 0 16px;
  background: rgba(4,8,19,.55);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid var(--border);
  transition: background .35s, border-color .35s;
}
.nav.scrolled { background: rgba(4,8,19,.9); border-color: var(--border-2); }
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 12px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--fg);
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(94,106,210,.5);
  transition: box-shadow .3s;
  overflow: hidden;
}
.nav-logo-mark img { width: 100%; height: 100%; display: block; border-radius: inherit; }
.nav.scrolled .nav-logo-mark { box-shadow: 0 0 24px rgba(94,106,210,.7); }
.nav-logo-mark.sm { width: 24px; height: 24px; border-radius: 6px; }
.nav-links { display: none; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 6px 12px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--fg); background: var(--surface); }
.nav-track { color: var(--accent) !important; }
.nav-cta {
  display: none;
  background: var(--accent);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  padding: 9px 18px;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(94,106,210,.4);
  transition: background .2s, box-shadow .2s, transform .2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: #7c87f5; transform: translateY(-1px); box-shadow: 0 0 28px rgba(94,106,210,.6); }
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--fg-muted); border-radius: 2px; transition: background .2s; }
.nav-burger:hover span { background: var(--fg); }
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 62px; left: 0; right: 0;
  background: rgba(4,8,19,.97);
  backdrop-filter: blur(24px);
  padding: 12px 16px 20px;
  gap: 2px;
  border-bottom: 1px solid var(--border-2);
}
.nav-links.mobile-open a { color: var(--fg-muted) !important; padding: 13px 12px !important; border-bottom: 1px solid var(--border); border-radius: 0; }
.nav-links.mobile-open a:last-child { border: none; }
.nav-links.mobile-open a:hover { color: var(--fg) !important; background: var(--surface) !important; border-radius: var(--r); }


/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 94px 20px 64px;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
/* ambient light blobs — skill: animated 2-3 blob views, opacity .08-.12, slow oscillation */
.hero-glow-1 {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(94,106,210,.16), transparent 65%);
  top: -200px; left: -180px;
  pointer-events: none;
  animation: blob-1 20s ease-in-out infinite;
  will-change: transform;
}
.hero-glow-2 {
  position: absolute;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(14,165,233,.12), transparent 65%);
  bottom: -120px; right: -100px;
  pointer-events: none;
  animation: blob-2 26s ease-in-out infinite;
  will-change: transform;
}
@keyframes blob-1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(80px,50px) scale(1.05); }
  66%      { transform: translate(-40px,90px) scale(.96); }
}
@keyframes blob-2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-60px,-40px) scale(.97); }
  66%      { transform: translate(50px,-70px) scale(1.04); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}
.hero-content { text-align: center; max-width: 680px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Open Sans', monospace;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--fg-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
}
.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,.2);
  animation: pulse-dot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(16,185,129,.2); }
  50%      { box-shadow: 0 0 0 7px rgba(16,185,129,.04); }
}

.hero-h1 {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.03;
  color: var(--fg);
  margin-bottom: 26px;
}
/* Chaque ligne est découpée lettre par lettre par initHeadlineAnim() pour l'animation
   d'entrée — sans white-space:nowrap le navigateur traite les <span> de lettres comme
   des points de coupure indépendants et peut couper un mot en plein milieu. */
.h1-line { display: block; white-space: nowrap; }
/* JS will SplitText these */
.h1-accent { color: var(--accent); }
.h1-mono { font-family: 'Open Sans', monospace; font-weight: 700; }
.price-val {
  color: var(--amber);
  text-shadow: 0 0 60px rgba(245,158,11,.5), 0 0 120px rgba(245,158,11,.2);
}

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 38px;
}
.hero-sub strong { color: var(--fg); }
.br-desk { display: none; }

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}
.sp-avatars { display: flex; }
.sp-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: hsl(var(--h), 45%, 30%);
  color: #fff;
  font-size: .63rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.sp-av:first-child { margin-left: 0; }
.sp-text { font-size: .8rem; color: var(--fg-muted); text-align: left; }
.sp-text strong { color: var(--fg); }
.sp-stars { display: flex; align-items: center; gap: 2px; margin-top: 2px; }
.sp-stars span { font-size: .68rem; color: var(--fg-dim); margin-left: 4px; font-family: 'Open Sans', monospace; }

.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.hero-badges span { display: inline-flex; align-items: center; gap: 6px; font-size: .77rem; color: var(--fg-dim); }
.hero-badges svg { color: var(--accent); }

/* ── 3D Browser Mockup ── */
.hero-mockup-wrap {
  width: 100%;
  max-width: 500px;
  perspective: 1400px;
  perspective-origin: 50% 50%;
  flex-shrink: 0;
}
.hero-mockup {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  /* initial tilt */
  transform: rotateX(4deg) rotateY(-6deg);
  transition: transform .08s linear;
}
.mockup-glow {
  position: absolute;
  inset: -28px;
  background: radial-gradient(ellipse at center, rgba(94,106,210,.25), transparent 70%);
  border-radius: 24px;
  pointer-events: none;
  filter: blur(24px);
  animation: glow-breathe 4s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%,100% { opacity: .7; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.06); }
}
.mockup-browser {
  background: linear-gradient(180deg, #101828 0%, #0a1020 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    0 32px 80px rgba(0,0,0,.8),
    0 0 0 1px rgba(94,106,210,.12),
    inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.mb-bar {
  background: #0d1627;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mb-dots { display: flex; gap: 6px; }
.mb-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mb-dots span:nth-child(1) { background: #ff5f57; }
.mb-dots span:nth-child(2) { background: #febc2e; }
.mb-dots span:nth-child(3) { background: #28c840; }
.mb-url {
  flex: 1;
  background: rgba(0,0,0,.35);
  border-radius: 6px;
  height: 21px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  color: var(--fg-dim);
  font-family: 'Open Sans', monospace;
  font-size: .63rem;
  letter-spacing: .03em;
}
.mb-url svg { color: var(--green); flex-shrink: 0; }
.mb-screen { padding: 14px; display: flex; flex-direction: column; gap: 9px; }
.ms-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: rgba(255,255,255,.025);
  border-radius: 6px;
}
.ms-logo-bar { width: 52px; height: 5px; border-radius: 3px; background: var(--accent); opacity: .9; }
.ms-nav-links { display: flex; gap: 6px; flex: 1; justify-content: center; }
.ms-nav-links span { width: 24px; height: 4px; background: var(--border); border-radius: 2px; }
.ms-cta-btn { width: 44px; height: 15px; background: var(--accent); border-radius: 4px; opacity: .75; }
.ms-hero-block {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 10px;
  background: linear-gradient(135deg, rgba(94,106,210,.1), rgba(14,165,233,.06));
  border-radius: 8px;
  border: 1px solid rgba(94,106,210,.15);
}
.ms-hero-text { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.ms-h1 { height: 8px; background: rgba(255,255,255,.8); border-radius: 4px; }
.ms-h2 { height: 5px; background: rgba(255,255,255,.3); border-radius: 3px; width: 65%; }
.ms-h3 { height: 5px; background: rgba(255,255,255,.16); border-radius: 3px; width: 42%; }
.ms-btn { height: 17px; width: 64px; background: var(--accent); border-radius: 4px; margin-top: 4px; opacity: .9; }
.ms-hero-img { width: 68px; height: 58px; background: rgba(94,106,210,.1); border-radius: 7px; border: 1px solid rgba(94,106,210,.2); flex-shrink: 0; }
.ms-cards { display: flex; gap: 6px; }
.ms-card { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 8px 6px; display: flex; flex-direction: column; gap: 4px; }
.ms-card-icon { width: 18px; height: 18px; background: rgba(94,106,210,.15); border-radius: 5px; }
.ms-card-lines { display: flex; flex-direction: column; gap: 3px; }
.ms-card-lines span { height: 3px; background: var(--border); border-radius: 2px; }
.ms-card-lines span:last-child { width: 55%; }

/* Floating badges */
.mockup-badge {
  position: absolute;
  background: rgba(10,16,32,.92);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 8px 14px;
  font-family: 'Open Sans', monospace;
  font-size: .7rem;
  color: var(--fg);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  backdrop-filter: blur(16px);
  z-index: 3;
}
.mb-top    { top: -14px; right: -12px; animation: float-1 4.2s ease-in-out infinite; }
.mb-bottom { bottom: -14px; left: 10px; animation: float-2 4.8s ease-in-out infinite; }
.mb-left   { top: 50%; right: -22px; transform: translateY(-50%); animation: float-3 3.9s ease-in-out infinite; }
@keyframes float-1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes float-2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
@keyframes float-3 { 0%,100%{transform:translateY(-50%) translateX(0)} 50%{transform:translateY(-50%) translateX(6px)} }

.hero-scroll-hint {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-family: 'Open Sans', monospace;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.scroll-mouse {
  width: 20px; height: 32px;
  border: 1.5px solid var(--fg-dim);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: var(--accent);
  border-radius: 2px;
  opacity: .7;
  animation: scroll-bounce 2.2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%   { transform: translateY(0);  opacity: .7; }
  50%  { transform: translateY(9px); opacity: .15; }
  100% { transform: translateY(0);  opacity: .7; }
}


/* ════════════════════════════════
   STATS
════════════════════════════════ */
.stats-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stat-item { flex: 1; min-width: 130px; text-align: center; padding: 12px 16px; }
.stat-num {
  display: block;
  font-family: 'Open Sans', monospace;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .73rem; font-weight: 500; color: var(--fg-muted); text-transform: uppercase; letter-spacing: .07em; }
.stat-sep { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }


/* ════════════════════════════════
   TICKER
════════════════════════════════ */
.ticker-wrap { overflow: hidden; background: var(--bg); border-bottom: 1px solid var(--border); padding: 14px 0; }
.ticker { overflow: hidden; }
.ticker-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: ticker-move 26s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 500; color: var(--fg-dim); white-space: nowrap; }
.ticker-track svg { color: var(--accent); opacity: .45; }
@keyframes ticker-move { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ════════════════════════════════
   COMPARE
════════════════════════════════ */
.compare-section { padding: 88px 0; background: var(--bg-base); }
.compare-grid {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.compare-col { padding: 30px 26px; }
.compare-bad  { background: rgba(239,68,68,.04); }
.compare-good { background: rgba(16,185,129,.04); }
.compare-vs-bar {
  background: var(--bg-elevated);
  color: var(--fg-dim);
  font-family: 'Open Sans', monospace;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.compare-col-head { display: flex; align-items: center; gap: 10px; font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: 20px; }
.compare-col-head.bad  { color: var(--red); }
.compare-col-head.good { color: var(--green); }
.col-head-icon { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bad-icon  { background: rgba(239,68,68,.12);  color: var(--red); }
.good-icon { background: rgba(16,185,129,.12); color: var(--green); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.compare-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--fg-muted); line-height: 1.55; }
.li-x, .li-c { flex-shrink: 0; margin-top: 2px; }


/* ════════════════════════════════
   HOW IT WORKS
════════════════════════════════ */
.how-section {
  padding: 88px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-grid { display: flex; flex-direction: column; gap: 0; align-items: stretch; }
.step-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .35s var(--ease);
  cursor: default;
}
.step-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--step-color, var(--accent)), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.step-card:hover { border-color: var(--border-2); box-shadow: 0 0 40px rgba(94,106,210,.1), var(--shadow); transform: translateY(-5px); }
.step-card:hover::after { opacity: 1; }
.step-num-badge { font-family: 'Open Sans', monospace; font-size: .66rem; font-weight: 700; color: var(--fg-dim); letter-spacing: .12em; }
.step-icon-wrap { width: 52px; height: 52px; border-radius: 14px; background: var(--c, rgba(94,106,210,.1)); color: var(--cc, var(--accent)); display: flex; align-items: center; justify-content: center; }
.step-card h3 { font-size: 1.05rem; font-weight: 700; }
.step-card p { font-size: .87rem; color: var(--fg-muted); line-height: 1.7; }
.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Open Sans', monospace;
  font-size: .68rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(94,106,210,.18);
  border-radius: 100px;
  padding: 5px 12px;
  align-self: flex-start;
  letter-spacing: .04em;
}
.step-tag.green-tag { color: var(--green); background: rgba(16,185,129,.07); border-color: rgba(16,185,129,.18); }
.step-connector { display: flex; align-items: center; justify-content: center; padding: 6px 0; color: var(--fg-dim); }
.how-cta { display: flex; justify-content: center; margin-top: 48px; }


/* ════════════════════════════════
   PORTFOLIO
════════════════════════════════ */
.portfolio-section { padding: 88px 0; background: var(--bg-base); }
.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.p-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .3s, box-shadow .4s var(--ease), transform .4s var(--ease);
  transform-style: preserve-3d;
  cursor: pointer;
}
/* 3D card hover — skill: scale press 0.97→1, elevation on hover */
.p-card:hover {
  border-color: rgba(94,106,210,.3);
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(94,106,210,.1);
  transform: translateY(-8px) rotateX(3deg) rotateY(-1deg);
}
.p-preview {
  background: linear-gradient(140deg, var(--g1, #0d1526), var(--g2, #06101e));
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 155px;
  position: relative;
}
.p-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,.4));
  pointer-events: none;
}
.pp-nav-bar { display: flex; align-items: center; gap: 8px; }
.ppn-logo { width: 42px; height: 5px; border-radius: 3px; }
.ppn-links { display: flex; gap: 6px; margin-left: auto; }
.ppn-links::before, .ppn-links::after { content: ''; display: block; width: 20px; height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; }
.pp-hero-area { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
.pph-text { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.pph-h1 { height: 7px; border-radius: 4px; }
.pph-h2 { height: 5px; border-radius: 3px; width: 55%; }
.pph-btn { height: 15px; width: 52px; border-radius: 4px; margin-top: 4px; }
.pph-visual { width: 60px; height: 50px; border-radius: 6px; flex-shrink: 0; }
.p-info { padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.p-tag {
  display: inline-flex;
  align-items: center;
  font-family: 'Open Sans', monospace;
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 100px;
  padding: 3px 10px;
  align-self: flex-start;
  margin-bottom: 2px;
}
.p-info strong { font-size: .9rem; font-weight: 700; font-family: 'Poppins', sans-serif; }
.p-time { display: flex; align-items: center; gap: 5px; font-size: .74rem; color: var(--fg-dim); font-family: 'Open Sans', monospace; }
.p-cta-card {
  background: linear-gradient(135deg, rgba(94,106,210,.15), rgba(14,165,233,.08));
  border-color: rgba(94,106,210,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  position: relative;
  overflow: hidden;
}
.p-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(94,106,210,.12), transparent 70%);
  animation: glow-breathe 3s ease-in-out infinite;
}
.p-cta-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 32px 20px; position: relative; z-index: 1; }
.pcta-icon { width: 56px; height: 56px; background: var(--accent-soft); border: 1px solid var(--border-2); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 4px; }
.p-cta-inner strong { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; }
.p-cta-inner p { font-size: .85rem; color: var(--fg-muted); }


/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testi-section { padding: 88px 0; background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testi-layout { display: flex; flex-direction: column; gap: 20px; }
.testi-featured {
  background: linear-gradient(135deg, rgba(94,106,210,.06), rgba(14,165,233,.03));
  border: 1px solid rgba(94,106,210,.2);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(94,106,210,.06);
}
.testi-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.testi-quote-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: .75;
  color: var(--accent);
  opacity: .1;
  margin-bottom: -4px;
  user-select: none;
}
.star-row { display: flex; gap: 3px; margin-bottom: 14px; }
.star-row.sm { gap: 2px; margin-bottom: 10px; }
.testi-text { font-size: 1.02rem; color: var(--fg-muted); line-height: 1.75; font-style: italic; margin-bottom: 26px; }
.testi-author { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.testi-author.sm { gap: 9px; }
.testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: hsl(var(--h), 40%, 24%);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.08);
}
.testi-av.sm { width: 32px; height: 32px; font-size: .6rem; }
.testi-author strong { display: block; font-size: .9rem; font-weight: 700; }
.testi-author span { font-size: .78rem; color: var(--fg-muted); }
.testi-author > div:not([class]) { flex: 1; }
.testi-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Open Sans', monospace;
  font-size: .67rem;
  font-weight: 500;
  color: var(--green);
  background: rgba(16,185,129,.07);
  border: 1px solid rgba(16,185,129,.18);
  border-radius: 100px;
  padding: 5px 12px;
  letter-spacing: .04em;
  margin-top: 4px;
}
.testi-stack { display: flex; flex-direction: column; gap: 14px; }
.testi-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  transition: border-color .25s, box-shadow .3s, transform .3s var(--ease);
}
.testi-card:hover { border-color: rgba(94,106,210,.2); box-shadow: var(--shadow); transform: translateY(-3px); }
.testi-card p { font-size: .88rem; color: var(--fg-muted); line-height: 1.7; font-style: italic; margin-bottom: 16px; }


/* ════════════════════════════════
   PRICING
════════════════════════════════ */
.pricing-section { padding: 88px 0; background: var(--bg-base); }
.pricing-layout { display: flex; flex-direction: column; gap: 24px; }
.price-card {
  background: linear-gradient(160deg, rgba(94,106,210,.09), rgba(94,106,210,.03));
  border: 1.5px solid var(--accent);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 0 0 8px rgba(94,106,210,.04), var(--shadow-lg);
  overflow: hidden;
}
.price-card-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: radial-gradient(ellipse at top center, rgba(94,106,210,.14), transparent 80%);
  pointer-events: none;
}
.price-badge-wrap { margin-bottom: 16px; }
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-family: 'Open Sans', monospace;
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.price-plan-name {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.price-amount-row { display: flex; align-items: flex-start; gap: 2px; margin-bottom: 6px; line-height: 1; }
.pa-curr { font-family: 'Open Sans', monospace; font-size: 1.6rem; font-weight: 700; color: var(--fg-muted); margin-top: 10px; }
.pa-num {
  font-family: 'Open Sans', monospace;
  font-size: 5.8rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.04em;
  text-shadow: 0 0 80px var(--amber-glow), 0 0 160px rgba(245,158,11,.1);
}
.pa-note { font-size: .78rem; color: var(--fg-dim); align-self: flex-end; padding-bottom: 14px; margin-left: 4px; }
.price-when-note {
  font-family: 'Open Sans', monospace;
  font-size: .7rem;
  color: var(--fg-dim);
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
  letter-spacing: .04em;
}
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--fg-muted); }
.price-features svg { flex-shrink: 0; }
.btn-price { width: 100%; justify-content: center; font-size: 1rem; padding: 17px 28px; margin-bottom: 18px; }
.price-guarantee {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: .82rem;
  font-weight: 500;
  background: rgba(16,185,129,.06);
  border: 1px solid rgba(16,185,129,.15);
  border-radius: var(--r);
  padding: 11px 14px;
}
.options-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 30px 26px;
}
.options-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.options-sub { font-size: .85rem; color: var(--fg-muted); margin-bottom: 22px; }
.options-list { list-style: none; display: flex; flex-direction: column; margin-bottom: 16px; }
.options-list li { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.options-list li:last-child { border-bottom: none; }
.ol-left { display: flex; align-items: center; gap: 9px; color: var(--fg-muted); }
.options-list strong { font-family: 'Open Sans', monospace; font-weight: 700; color: var(--accent); font-size: .9rem; }
.opt-amber { color: var(--amber) !important; }
.options-note { font-size: .78rem; color: var(--fg-dim); line-height: 1.65; margin-bottom: 18px; }


/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq-section { padding: 88px 0; background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-layout { display: flex; flex-direction: column; gap: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item.faq-open { border-color: var(--border-2); box-shadow: 0 0 24px rgba(94,106,210,.06); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--fg);
  text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-chevron { flex-shrink: 0; color: var(--fg-dim); transition: transform .35s var(--ease), color .25s; }
.faq-open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
  padding: 0 20px;
}
.faq-a.faq-a-open { max-height: 320px; padding: 0 20px 18px; }
.faq-a p { font-size: .88rem; color: var(--fg-muted); line-height: 1.75; }
.faq-aside { display: flex; flex-direction: column; gap: 14px; }
.faq-aside-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition: border-color .25s;
}
.faq-aside-card:hover { border-color: var(--border-2); }
.fac-ico { width: 44px; height: 44px; background: var(--accent-soft); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 12px; }
.faq-aside-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.faq-aside-card p { font-size: .84rem; color: var(--fg-muted); line-height: 1.65; }
.fac-link { display: inline-flex; align-items: center; gap: 5px; font-size: .8rem; font-weight: 600; color: var(--accent); margin-top: 10px; transition: color .2s; }
.fac-link:hover { color: #7c87f5; }


/* ════════════════════════════════
   FINAL CTA
════════════════════════════════ */
.final-cta {
  padding: 110px 0;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .45; }
.cta-glow-1 { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(94,106,210,.18), transparent 70%); top: -180px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.cta-glow-2 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(14,165,233,.1), transparent 70%); bottom: -100px; right: 0; pointer-events: none; }
.final-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.final-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,.07);
  border: 1px solid rgba(245,158,11,.22);
  color: var(--amber);
  font-family: 'Open Sans', monospace;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.final-inner h2 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); line-height: 1.1; margin-bottom: 16px; }
.cta-accent { color: var(--accent); }
.final-inner p { font-size: 1rem; color: var(--fg-muted); margin-bottom: 38px; }
.btn-final { font-size: 1.05rem; padding: 18px 38px; margin-bottom: 30px; }
.final-trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 28px; }
.final-trust span { display: flex; align-items: center; gap: 7px; font-size: .79rem; color: var(--fg-dim); }
.final-trust svg { color: var(--accent); }


/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: var(--bg-elevated); border-top: 1px solid var(--border); padding: 40px 0 28px; }

/* Trust Avis badge */
.footer-trust-row { display: flex; justify-content: center; margin-bottom: 36px; }
.trust-avis-badge {
  display: inline-flex; align-items: center; gap: 10px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 100px; padding: 8px 18px 8px 8px;
  transition: border-color .2s, box-shadow .2s;
}
.trust-avis-badge:hover { border-color: var(--border-2); box-shadow: 0 4px 16px rgba(94,106,210,.1); }
.ta-logo { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 7px; background: #2563eb; flex-shrink: 0; }
.ta-name { font-size: .8rem; font-weight: 600; color: var(--fg-muted); }
.ta-name strong { color: #2563eb; font-weight: 800; }
.ta-sep { width: 1px; height: 20px; background: var(--border); flex-shrink: 0; }
.ta-avatar { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 7px; background: var(--surface-2); color: var(--fg); font-weight: 800; font-size: .78rem; flex-shrink: 0; }
.ta-info { display: flex; flex-direction: column; gap: 1px; }
.ta-brand { display: flex; align-items: center; gap: 4px; font-size: .78rem; font-weight: 700; color: var(--fg); }
.ta-stars { display: flex; align-items: center; gap: 1px; font-size: .72rem; color: var(--fg-dim); }
.ta-stars strong { color: var(--fg); margin-left: 3px; margin-right: 2px; }

.footer-inner { display: flex; flex-direction: column; gap: 28px; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: .95rem; color: var(--fg); }
.footer-brand p { font-size: .8rem; color: var(--fg-dim); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 18px; align-content: flex-start; }
.footer-nav a { font-size: .8rem; color: var(--fg-dim); transition: color .2s; }
.footer-nav a:hover { color: var(--accent); }
.footer-contact-col { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-link { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; color: var(--fg-muted); transition: color .2s; }
.footer-contact-link:hover { color: var(--accent); }
.footer-contact-link svg { flex-shrink: 0; }
.footer-whatsapp:hover { color: #25D366; }
.footer-copy { font-size: .72rem; color: var(--fg-dim); margin-top: 32px; }


/* ════════════════════════════════
   TOAST
════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 20px; right: 20px;
  background: var(--bg-elevated);
  color: var(--fg);
  border: 1px solid var(--border-2);
  padding: 13px 18px;
  border-radius: var(--r);
  font-size: .875rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }


/* ════════════════════════════════
   TABLET — 600px+
════════════════════════════════ */
@media (min-width: 600px) {
  .hero-actions { flex-direction: row; justify-content: center; }
  .compare-grid { flex-direction: row; }
  .compare-vs-bar {
    width: 28px;
    writing-mode: vertical-lr;
    padding: 12px 8px;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    flex-shrink: 0;
  }
  .steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
  }
  .step-connector { padding: 26px 6px 0; flex-direction: column; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-layout { flex-direction: row; align-items: flex-start; }
  .price-card { flex: 1.3; }
  .options-card { flex: 1; }
  .faq-layout { flex-direction: row; gap: 32px; }
  .faq-list { flex: 1; }
  .faq-aside { width: 290px; flex-shrink: 0; }
}

/* ════════════════════════════════
   DESKTOP — 1024px+
════════════════════════════════ */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .nav-burger { display: none; }
  .hero-inner { flex-direction: row; align-items: center; gap: 72px; }
  .hero-content { text-align: left; max-width: 640px; flex-shrink: 0; }
  .hero-pill { margin-left: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-social-proof { justify-content: flex-start; }
  .hero-badges { justify-content: flex-start; }
  .hero-mockup-wrap { flex: 1; max-width: none; }
  .br-desk { display: block; }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-layout { flex-direction: row; gap: 24px; }
  .testi-featured { flex: 1.2; }
  .testi-stack { flex: 1; }
  .footer-inner { flex-direction: row; align-items: flex-start; justify-content: space-between; }
  .footer-brand { flex-shrink: 0; }
}

/* ════════════════════════════════
   REDUCED MOTION
════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js-reveal { opacity: 1 !important; transform: none !important; }
  .hero-glow-1, .hero-glow-2, .mockup-glow { animation: none !important; }
  .mb-top, .mb-bottom, .mb-left { animation: none !important; }
  .btn-hero, .btn-final { animation: none !important; }
  .ticker-track { animation: none !important; }
  .scroll-wheel { animation: none !important; }
}
