/* ==========================================================================
   CaseXpress — styles
   Palette néon sur fond clair. Polices: Lilita One (titres), Baloo 2
   (boutons/accents), Manrope (texte courant).
   ========================================================================== */

:root {
  --bg: #fdf8fc;
  --bg-soft: #f6ecf8;
  --surface: #ffffff;
  --surface-2: #fff1fa;
  --line: rgba(25, 10, 40, 0.1);

  --pink: #ff2f9e;
  --pink-2: #ff7ad1;
  --lime: #d6ff1f;
  --lime-2: #eeff9c;
  --cyan: #2fe4ff;
  --violet: #8a3bff;

  /* darker, text-safe variants of the neon accents (for use directly on the light bg) */
  --lime-ink: #4f9a00;
  --pink-ink: #d6007f;
  --cyan-ink: #0091ab;

  --ink: #201233;
  --muted: #6b6184;
  --muted-2: #948aac;

  /* dark "islands" — header, footer, step cards, FAQ cards keep the original
     dark surface so the true fluo lime/pink can be used against them */
  --dark-bg: #0d0a1e;
  --dark-surface: #17122b;
  --dark-surface-2: #1e1638;
  --dark-line: rgba(255, 255, 255, 0.1);
  --dark-ink: #fff8fd;
  --dark-muted: #b9b2d9;
  --dark-muted-2: #8a83ad;

  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 32px;

  --shadow-pink: 0 16px 36px -10px rgba(255, 47, 158, 0.28);
  --shadow-lime: 0 16px 36px -10px rgba(111, 143, 0, 0.22);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: "Lilita One", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0;
}

.accent { font-family: "Baloo 2", system-ui, sans-serif; font-weight: 700; }

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* ---------- background texture: grain + blobs ---------- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  will-change: transform;
}
.blob--1 {
  width: 46vw; height: 46vw;
  top: -14vw; left: -10vw;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
  animation: float-a 22s ease-in-out infinite;
}
.blob--2 {
  width: 40vw; height: 40vw;
  top: 20vh; right: -14vw;
  background: radial-gradient(circle, var(--violet) 0%, transparent 70%);
  opacity: 0.18;
  animation: float-b 26s ease-in-out infinite;
}
.blob--3 {
  width: 34vw; height: 34vw;
  bottom: -12vw; left: 18vw;
  background: radial-gradient(circle, var(--lime) 0%, transparent 72%);
  opacity: 0.22;
  animation: float-c 30s ease-in-out infinite;
}
.blob--4 {
  width: 30vw; height: 30vw;
  bottom: 6vh; right: 4vw;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 72%);
  opacity: 0.16;
  animation: float-a 24s ease-in-out infinite reverse;
}

@keyframes float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(4vw, 6vh) scale(1.08); }
  66% { transform: translate(-3vw, -2vh) scale(0.96); }
}
@keyframes float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-6vw, 4vh) scale(1.1); }
}
@keyframes float-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5vw, -5vh) scale(1.12); }
}

.grain {
  position: absolute;
  inset: -10%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.35;
}

/* ---------- custom cursor glow (desktop only) ---------- */
.cursor-glow {
  position: fixed;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  background: radial-gradient(circle, rgba(255, 47, 158, 0.55), rgba(111, 143, 0, 0.28) 60%, transparent 70%);
  filter: blur(2px);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, width 0.2s ease, height 0.2s ease;
  opacity: 0;
  mix-blend-mode: multiply;
}
.cursor-glow.is-active { opacity: 1; }
.cursor-glow.is-pointer { width: 44px; height: 44px; }

/* ==========================================================================
   Buttons & chips
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 0.9em 1.7em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.btn:active { transform: scale(0.96); }

.btn--primary {
  background: linear-gradient(120deg, var(--pink), #ff5fc0);
  color: #17021 0;
  color: #1a0313;
  box-shadow: 0 10px 30px -8px rgba(255, 47, 158, 0.65);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -6px rgba(255, 47, 158, 0.8); }

.btn--lime {
  background: linear-gradient(120deg, var(--lime), var(--lime-2));
  color: #0d1400;
  box-shadow: 0 10px 30px -8px rgba(214, 255, 31, 0.55);
}
.btn--lime:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -6px rgba(214, 255, 31, 0.7); }

.btn--ghost {
  background: rgba(25, 10, 40, 0.03);
  color: var(--ink);
  border: 1.5px solid rgba(25, 10, 40, 0.16);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--lime-ink);
  color: var(--lime-ink);
  transform: translateY(-3px);
}

.btn--block { width: 100%; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5em 1em;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(25, 10, 40, 0.025);
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--lime-ink);
  background: rgba(111, 143, 0, 0.1);
  border: 1px solid rgba(111, 143, 0, 0.3);
  padding: 0.45em 1em;
  border-radius: 999px;
}
.eyebrow--plain {
  background: none;
  border: none;
  padding: 0;
}

.price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Baloo 2", sans-serif;
  text-align: center;
  background: var(--surface);
  border: 2px dashed rgba(25, 10, 40, 0.25);
  border-radius: 999px;
  width: 128px;
  height: 128px;
  box-shadow: var(--shadow-pink);
}
.price-badge strong {
  font-family: "Lilita One", sans-serif;
  font-size: 1.7rem;
  color: var(--lime-ink);
  line-height: 1;
}
.price-badge span { font-size: 0.62rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* ==========================================================================
   Section scaffolding
   ========================================================================== */

.section { position: relative; z-index: 1; padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin-top: 0.4em;
}
.section-title .hl-pink { color: var(--pink); }
.section-title .hl-lime { color: var(--lime-ink); }
.section-lede { color: var(--muted); font-size: 1.08rem; margin-top: 1em; max-width: 60ch; }
.center .section-lede { margin-inline: auto; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.34s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.42s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.5s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.58s; }
.reveal-stagger > *:nth-child(9) { transition-delay: 0.66s; }
.reveal-stagger > *:nth-child(10) { transition-delay: 0.74s; }
.reveal-stagger > *:nth-child(11) { transition-delay: 0.82s; }

/* ==========================================================================
   Navbar
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(13, 10, 30, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--dark-line), 0 10px 30px -18px rgba(0, 0, 0, 0.4);
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(13, 10, 30, 0.96);
  box-shadow: 0 1px 0 var(--dark-line), 0 18px 40px -20px rgba(0, 0, 0, 0.6);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: 0.5em; }
.brand img { width: 58px; height: 58px; }
.brand-word {
  font-family: "Lilita One", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  color: var(--dark-ink);
}
.brand-word .x { color: var(--pink); }
.brand-word .g { color: var(--lime); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
}
.nav-links a { position: relative; color: var(--dark-muted); transition: color 0.25s ease; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--dark-ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 0.9rem; }
.nav-lang {
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-muted);
  transition: color 0.25s ease;
  white-space: nowrap;
}
.nav-lang:hover { color: var(--dark-ink); }
.mobile-panel .nav-lang:hover { color: var(--lime); }
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-burger span {
  position: relative;
  width: 18px; height: 2px;
  background: var(--dark-ink);
  display: block;
}
.nav-burger span::before, .nav-burger span::after {
  content: "";
  position: absolute; left: 0;
  width: 18px; height: 2px;
  background: var(--dark-ink);
  transition: transform 0.3s ease;
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }
.nav-burger.is-open span { background: transparent; }
.nav-burger.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(13, 10, 30, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.6rem;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
}
.mobile-panel.is-open { transform: translateY(0); }
.mobile-panel a { color: var(--dark-ink); }
.mobile-panel a.mobile-panel-cta {
  color: #0d1400;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* ==========================================================================
   Marquee ticker
   ========================================================================== */

.ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(90deg, var(--pink), var(--violet) 50%, var(--pink));
  padding: 14px 0;
  transform: rotate(-1.4deg);
  margin: -18px 0 0;
  box-shadow: 0 8px 30px -6px rgba(255, 47, 158, 0.4);
}
.ticker--alt {
  background: linear-gradient(90deg, var(--lime), #9de600 50%, var(--lime));
  transform: rotate(1.2deg);
  box-shadow: 0 8px 30px -6px rgba(214, 255, 31, 0.3);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
  will-change: transform;
}
.ticker--alt .ticker-track { animation-duration: 32s; animation-direction: reverse; }
.ticker-track span {
  font-family: "Lilita One", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #1a0313;
  padding: 0 1.4rem;
  white-space: nowrap;
}
.ticker--alt .ticker-track span { color: #0d1400; }

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

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  z-index: 1;
  padding: clamp(7.5rem, 14vw, 11rem) 0 5rem;
  overflow: visible;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-title {
  font-size: clamp(2.7rem, 6.4vw, 4.6rem);
  margin-top: 0.5em;
}
.hero-title span { display: block; }
.grad {
  background: linear-gradient(90deg, var(--pink) 0%, var(--pink-ink) 25%, var(--lime-ink) 55%, var(--cyan-ink) 80%, var(--pink) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: grad-pan 7s linear infinite;
}
@keyframes grad-pan {
  to { background-position: 300% center; }
}
.hero-lede { color: var(--muted); font-size: 1.15rem; max-width: 46ch; margin-top: 1.2em; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 2.1rem; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem; margin-top: 1.8rem; }
.hero-meta .chip {
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  color: var(--muted);
  box-shadow: none;
}
.hero-meta .chip + .chip {
  border-left: 1px solid var(--line);
  padding-left: 0.9rem;
}

.hero-visual { position: relative; }
.hero-visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.7), var(--shadow-pink);
}
.hero-visual-frame img { width: 100%; }

.hero-case-frame {
  position: absolute;
  left: -9%;
  top: 54%;
  width: clamp(98px, 15vw, 148px);
  padding: 7px;
  border-radius: 22px;
  background: #0c0a17;
  line-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 26px 40px -14px rgba(0, 0, 0, 0.65),
    0 0 34px 4px rgba(255, 47, 158, 0.45),
    0 0 60px 10px rgba(214, 255, 31, 0.2);
  z-index: 3;
  opacity: 0;
  animation:
    hero-case-pop 0.75s cubic-bezier(0.2, 0.9, 0.3, 1.2) 0.5s both,
    hero-case-float 7s ease-in-out 1.25s infinite;
}
@keyframes hero-case-pop {
  0% { opacity: 0; transform: scale(0.35) rotate(18deg) translateY(26px); }
  65% { opacity: 1; transform: scale(1.08) rotate(-9deg) translateY(-8px); }
  85% { transform: scale(0.96) rotate(-4deg) translateY(2px); }
  100% { opacity: 1; transform: scale(1) rotate(-6deg) translateY(0); }
}
.hero-case-frame img {
  width: 100%;
  aspect-ratio: 9 / 17.5;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
  border-radius: 16px;
}
.hero-case-notch {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 2;
}
@keyframes hero-case-float {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-10px); }
}

/* ==========================================================================
   Steps
   ========================================================================== */

.steps-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: center;
}
.steps-copy .section-lede { margin-inline: 0; }
.steps-copy .steps-grid { margin-top: 1.8rem; }

.steps-grid {
  display: grid;
  gap: 1.2rem;
}
.step-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: linear-gradient(180deg, var(--dark-surface-2), var(--dark-surface));
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 47, 158, 0.45);
  box-shadow: var(--shadow-pink);
}
.step-num {
  flex: none;
  font-family: "Lilita One", sans-serif;
  font-size: 2.4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lime);
  line-height: 1;
}
.step-icon { flex: none; font-size: 1.7rem; margin: 0; }
.step-icon--qr { line-height: 0; }
.step-icon--qr svg { display: block; border-radius: 8px; width: 28px; height: 28px; }
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.3em; color: var(--dark-ink); }
.step-card p { color: var(--dark-muted); font-size: 0.9rem; margin: 0; }

.steps-note {
  margin-top: 1.8rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--lime);
  color: var(--muted);
  font-size: 0.98rem;
}
.steps-note strong { color: var(--ink); }

.journey {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: "Baloo 2", sans-serif;
}
.journey-step {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.journey-step .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  flex: none;
}
.journey-arrow { color: var(--muted-2); font-size: 1rem; }

/* ---------- phone mockup video (steps section) ---------- */

.steps-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.steps-demo-caption {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.phone-mockup {
  position: relative;
  width: min(230px, 72vw);
  padding: 8px;
  border-radius: 30px;
  background: #0c0a17;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 55px -18px rgba(0, 0, 0, 0.65), 0 0 30px 2px rgba(255, 47, 158, 0.25);
}
.phone-mockup-notch {
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 2;
}
.phone-video {
  position: relative;
  aspect-ratio: 9 / 19.5;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
}
.phone-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pv-overlay-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s ease, opacity 0.3s ease;
  z-index: 3;
}
.pv-overlay-play:hover { transform: scale(1.08); background: rgba(255, 47, 158, 0.55); }
.phone-video.is-playing .pv-overlay-play { opacity: 0; pointer-events: none; }
.phone-video-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 0.6rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78) 60%);
  z-index: 3;
}
.pv-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.pv-btn:hover { background: rgba(255, 47, 158, 0.55); transform: translateY(-2px); }
.pv-btn svg { width: 15px; height: 15px; }
.phone-video:not(.is-playing) .pv-btn .ic-pause { display: none; }
.phone-video.is-playing .pv-btn .ic-play { display: none; }
.phone-video.is-muted .ic-vol-on { display: none; }
.phone-video:not(.is-muted) .ic-vol-off { display: none; }

/* ==========================================================================
   Gallery marquee (photo wall)
   ========================================================================== */

.wall { position: relative; z-index: 1; overflow-x: hidden; }
.wall-row {
  display: flex;
  width: max-content;
  gap: 1.4rem;
  animation: wall-scroll 46s linear infinite;
  padding: 0.6rem 0;
}
.wall-row.reverse { animation-name: wall-scroll-rev; animation-duration: 54s; }
.wall:hover .wall-row { animation-play-state: paused; }

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

.polaroid {
  flex: none;
  width: 210px;
  background: #fff;
  border: 1px solid rgba(25, 10, 40, 0.08);
  border-radius: 0;
  padding: 10px 10px 44px;
  box-shadow: 0 20px 40px -16px rgba(30, 10, 40, 0.28);
  transform: rotate(var(--tilt, -3deg));
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}
.polaroid:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.04);
  box-shadow: 0 26px 50px -14px rgba(255, 47, 158, 0.45);
  z-index: 5;
}
.polaroid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
}
.polaroid figcaption {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #1a0313;
}

/* ==========================================================================
   Pro lists (partners page) — replaces the old card grids
   ========================================================================== */

.pro-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.6rem;
}
.pro-list--single { grid-template-columns: 1fr; }

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: center;
}
.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}
.pro-list li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.pro-list li strong {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.pro-list li strong::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex: none;
}
.pro-list li span { color: var(--muted); font-size: 0.9rem; padding-left: 1.25rem; }

.simple-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.6rem;
}
.simple-list li {
  position: relative;
  padding: 0.8rem 0 0.8rem 1.15rem;
  border-bottom: 1px solid var(--line);
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

/* ---------- proof photos ---------- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.proof-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.55);
}
.proof-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.proof-photo figcaption { padding: 0.8rem 1rem; font-family: "Baloo 2", sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--muted); }

.location-banner {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}
.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  background: linear-gradient(120deg, rgba(255, 47, 158, 0.16), rgba(214, 255, 31, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.7em 1.4em;
  border-radius: 999px;
}

/* ==========================================================================
   Video / demo section
   ========================================================================== */

.demo-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.demo-visual { display: flex; justify-content: center; }
.demo-copy .section-lede { margin-inline: 0; }
.demo-copy .section-lede strong { color: var(--lime-ink); }
.demo-proof {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 1.6rem 0 0;
}
.demo-proof img {
  flex: none;
  width: 110px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: 0 20px 36px -16px rgba(0, 0, 0, 0.6);
}
.demo-proof figcaption {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 22ch;
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.faq-list { max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item {
  border: 1px solid var(--dark-line);
  background: var(--dark-surface);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  color: var(--dark-ink);
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  text-align: left;
  cursor: pointer;
}
.faq-q .plus {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--dark-line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.4s var(--ease), background 0.3s ease, border-color 0.3s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--dark-ink);
  transition: transform 0.3s ease;
}
.faq-q .plus::before { width: 12px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 12px; }
.faq-item.is-open .faq-q .plus { transform: rotate(180deg); background: var(--pink); border-color: var(--pink); }
.faq-item.is-open .faq-q .plus::after { transform: scaleY(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a p { margin: 0 1.6rem 1.5rem; color: var(--dark-muted); font-size: 0.98rem; max-width: 68ch; }


/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner {
  position: relative;
  z-index: 1;
  color: #fff8fd;
  border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 6vw, 4.2rem);
  background: linear-gradient(120deg, #2a0a2e, #180a33 45%, #0d1a06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: -40%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 47, 158, 0.35), transparent 55%),
              radial-gradient(circle at 85% 75%, rgba(214, 255, 31, 0.25), transparent 55%);
  z-index: -1;
  animation: float-a 20s ease-in-out infinite;
}
.cta-banner h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.cta-banner p { color: #cbc0e6; max-width: 56ch; margin: 1rem auto 1.8rem; }
.cta-banner .eyebrow { color: var(--lime); }
.cta-banner .journey-step { color: #cbc0e6; }
.cta-banner .journey-arrow { color: #9187ad; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.cta-banner--split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: center;
  text-align: left;
}
.cta-banner--split p { margin-left: 0; }
.cta-banner-media { display: flex; justify-content: center; }
.cta-banner-media img {
  width: 100%;
  max-width: 260px;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { position: relative; z-index: 1; padding: 4rem 0 2.2rem; margin-top: 3rem; background: var(--dark-bg); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand p { color: var(--dark-muted); font-size: 0.94rem; max-width: 32ch; margin-top: 0.9rem; }
.footer h4 {
  font-family: "Baloo 2", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark-muted-2);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { color: var(--dark-muted); font-size: 0.95rem; transition: color 0.25s ease; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--dark-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--dark-muted-2);
  font-size: 0.85rem;
}
.footer-bottom a { transition: color 0.25s ease; }
.footer-bottom a:hover { color: var(--lime); }

/* ==========================================================================
   Policy page (prose)
   ========================================================================== */

.policy-body { max-width: 68ch; margin-inline: auto; }
.policy-body h2 {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  margin: 2.4rem 0 0.8rem;
}
.policy-body h2:first-child { margin-top: 0; }
.policy-body p { color: var(--muted); font-size: 0.98rem; line-height: 1.7; margin: 0 0 1rem; }
.policy-body a { color: var(--lime-ink); text-decoration: underline; text-underline-offset: 2px; }
.policy-list { margin: 0 0 1rem; padding-left: 1.3rem; color: var(--muted); font-size: 0.98rem; line-height: 1.7; }
.policy-list li { margin-bottom: 0.4rem; }
.policy-list strong { color: var(--ink); font-family: "Baloo 2", sans-serif; }

/* ==========================================================================
   Partners page extras
   ========================================================================== */

.page-hero {
  padding: clamp(8rem, 15vw, 11rem) 0 4rem;
  position: relative; z-index: 1;
  text-align: center;
}
.page-hero .section-title { margin-top: 0.5em; }

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: center;
}
.location-copy { order: 2; }
.location-map {
  order: 1;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 44px -16px rgba(0, 0, 0, 0.6);
}
.location-map iframe { width: 100%; height: 100%; display: block; }

.contact-owner {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--lime-ink);
  margin-top: 1rem;
}
.contact-methods { display: flex; flex-direction: column; margin-top: 1.6rem; }
.contact-method {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease);
}
.contact-method:hover { padding-left: 0.4rem; }
.contact-method strong { font-family: "Baloo 2", sans-serif; }
.contact-method span { color: var(--muted); font-size: 0.88rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta-btn { display: none; }
  .nav-cta .nav-lang { display: none; }
  .nav-burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin-inline: auto; }
  .steps-layout { grid-template-columns: 1fr; }
  .steps-copy { order: -1; text-align: center; }
  .steps-copy .section-lede { margin-inline: auto; }
  .steps-copy .steps-grid { text-align: left; }
  .demo-layout { grid-template-columns: 1fr; }
  .demo-copy { order: -1; text-align: center; }
  .demo-copy .section-lede { margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pro-list, .simple-list { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .location-layout { grid-template-columns: 1fr; }
  .split-layout { grid-template-columns: 1fr; }
  .split-media { max-width: 420px; margin-inline: auto; }
  .cta-banner--split { grid-template-columns: 1fr; text-align: center; }
  .cta-banner--split .journey { justify-content: center !important; }
  .cta-banner-media { order: -1; max-width: 300px; margin-inline: auto; }
  .cta-banner--split p { margin-left: auto; }
  .location-copy { order: 1; }
  .location-map { order: 2; aspect-ratio: 16 / 10; }
  .hero-meta.page-hero-stats { justify-content: center; }
}

@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .hero-case-frame { display: none; }
  .nav-cta .btn { padding: 0.65em 1.05em; font-size: 0.88rem; }
  .step-card { padding: 1rem 1.1rem; gap: 0.85rem; border-radius: var(--radius-sm); }
  .step-num { font-size: 1.8rem; }
  .step-icon { font-size: 1.3rem; }
  .step-icon--qr svg { width: 22px; height: 22px; }
  .step-card h3 { font-size: 0.98rem; margin-bottom: 0.2em; }
  .step-card p { font-size: 0.82rem; }
  .phone-mockup { width: min(190px, 68vw); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}
