/* ─── Mojik — pastel storybook (production) ─────────────
   Palette:
     peach   #FFE4D3   coral  #D26B43
     sky     #D7E6FF   cobalt #3B5BCD
     sand    #FFF1D2   sun    #E5A21A
     mint    #D8F0DD   sage   #5B9C66
     lav     #E5DDFF   violet #7A6BD8
     cream   #FFF8EF   ink    #15203A
─────────────────────────────────────────────────────── */
:root {
  --peach: #FFE4D3;   --coral: #D26B43;
  --sky:   #D7E6FF;   --cobalt:#3B5BCD;
  --sand:  #FFF1D2;   --sun:   #E5A21A;
  --mint:  #D8F0DD;   --sage:  #5B9C66;
  --lav:   #E5DDFF;   --violet:#7A6BD8;
  --cream: #FFF8EF;
  --ink:   #15203A;
  --ink-2: #2A2F47;
  --ink-3: rgba(21,32,58,0.7);
  --ink-4: rgba(21,32,58,0.55);
  --line:  rgba(21,32,58,0.10);
  --sunglow: #FFC940;

  --maxw:   1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --r-card: 28px;
  --r-pill: 999px;

  /* Unified elevation system */
  --sh-1: 0 2px 6px -2px rgba(21,32,58,0.08);
  --sh-2: 0 10px 28px -14px rgba(21,32,58,0.18);
  --sh-3: 0 22px 48px -22px rgba(21,32,58,0.28);
  --sh-4: 0 40px 80px -36px rgba(21,32,58,0.32);

  --font-display: 'Manrope', -apple-system, system-ui, sans-serif;
  --font-body:    'Inter',  -apple-system, system-ui, sans-serif;
  --font-serif:   'Instrument Serif', serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--peach);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: 0; cursor: pointer; color: inherit; padding: 0; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-display); color: var(--ink); }
p { margin: 0; }
::selection { background: var(--violet); color: #fff; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
em.ink-coral  { color: var(--coral);  font-family: var(--font-serif); font-style: italic; font-weight: 400; }
em.ink-cobalt { color: var(--cobalt); font-family: var(--font-serif); font-style: italic; font-weight: 400; }
em.ink-orange { color: #C58A1A; font-family: var(--font-serif); font-style: italic; font-weight: 400; }
em.ink-sage   { color: var(--sage);   font-family: var(--font-serif); font-style: italic; font-weight: 400; }
em.ink-violet { color: var(--violet); font-family: var(--font-serif); font-style: italic; font-weight: 400; }
em.ink-sun    { color: var(--sun);    font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.on-dark { color: rgba(255,248,239,0.95) !important; }
.on-dark.lede { color: rgba(255,248,239,0.65) !important; }

.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

/* ─── NAV ──────────────────────────────────────────── */
.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,228,211,0.78);
  backdrop-filter: saturate(170%) blur(20px);
  -webkit-backdrop-filter: saturate(170%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.nav > .brand { justify-self: start; }
.nav > .nav-links { justify-self: center; }
.nav > .nav-right { justify-self: end; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--sunglow);
  box-shadow: 0 4px 12px rgba(255,201,64,0.55);
}
.nav-links {
  display: flex; gap: 6px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--r-pill);
  padding: 5px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 14px; font-weight: 600;
  color: var(--ink-2);
  border-radius: var(--r-pill);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.85); color: var(--ink); }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  transition: transform .25s ease, background .2s ease, box-shadow .25s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--sh-2); }
.btn-primary:hover { transform: translateY(-2px); background: var(--cobalt); box-shadow: var(--sh-3); }
.btn-coral { background: #FF7A45; color: #fff; box-shadow: 0 14px 30px -10px rgba(255,122,69,0.50); }
.btn-coral:hover { transform: translateY(-2px); background: #FF6B30; box-shadow: 0 18px 36px -10px rgba(255,122,69,0.60); }
.btn:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,201,64,0.25) 0%, transparent 70%),
    linear-gradient(180deg, var(--peach) 0%, #FFD0B5 100%);
  padding: clamp(28px, 4vw, 56px) var(--gutter) clamp(48px, 6vw, 88px);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-sparkles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.sparkle {
  position: absolute;
  color: var(--sunglow);
  font-size: 20px;
  opacity: 0.55;
  animation: sparkleTwinkle 3s ease-in-out infinite;
}
.sparkle.s1 { top: 10%;  left: 8%;  font-size: 22px; animation-delay: 0s; }
.sparkle.s2 { top: 20%;  right: 10%; font-size: 16px; animation-delay: 0.8s; }
.sparkle.s3 { top: 55%;  left: 6%;  font-size: 28px; color: var(--coral); animation-delay: 1.2s; }
.sparkle.s4 { top: 70%;  right: 8%;  font-size: 20px; animation-delay: 1.8s; }
.sparkle.s5 { top: 35%;  left: 12%; font-size: 14px; color: var(--cobalt); animation-delay: 2.4s; }
.sparkle.s6 { top: 80%;  right: 12%; font-size: 24px; color: var(--violet); animation-delay: 0.4s; }
@keyframes sparkleTwinkle { 0%,100% { opacity: 0.4; transform: scale(0.9) rotate(0); } 50% { opacity: 1; transform: scale(1.15) rotate(20deg); } }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--coral);
}
.eyebrow-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.9);
  margin-bottom: 28px;
  box-shadow: var(--sh-1);
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 auto 16px;
  max-width: 960px;
  text-wrap: balance;
}
.hero-h1 em { font-style: italic; }

.hero-stage {
  position: relative;
  height: clamp(380px, 42vw, 520px);
  margin: 24px auto 16px;
  max-width: 980px;
}
.hero-glow {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 56%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,201,64,0.55) 0%, rgba(255,201,64,0) 60%);
  filter: blur(20px);
  z-index: 1;
}
.hero-mojik {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(180px, 22vw, 280px);
  z-index: 3;
  filter: drop-shadow(0 28px 40px rgba(180,90,40,0.30));
  animation: mojikBob 4.2s ease-in-out infinite;
  will-change: transform;
}
@keyframes mojikBob {
  0%,100% { transform: translate(-50%, -50%) rotate(0deg); }
  50%     { transform: translate(-50%, -56%) rotate(2deg); }
}

.bubble {
  position: absolute;
  z-index: 4;
  padding: 12px 16px;
  border-radius: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  box-shadow: 0 10px 24px -8px rgba(21,32,58,0.18);
  border: 1.5px solid rgba(255,255,255,0.7);
  white-space: nowrap;
  transform: rotate(var(--rot, 0deg));
  animation: bubblePop 0.6s cubic-bezier(.5,1.5,.4,1) both, bubbleFloat 6s ease-in-out infinite;
}
.bubble::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -8px;
  width: 14px; height: 14px;
  background: inherit;
  border-right: 1.5px solid rgba(255,255,255,0.7);
  border-bottom: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 0 0 4px 0;
  transform: translateX(-50%) rotate(45deg);
}
/* Orbital layout — 7 bubbles arranged closer to Mojik */
.bubble-1 { left: 28%; top: 20%; background: #FFB4A2; animation-delay: 0.5s, 0s; }
.bubble-2 { right: 28%; top: 18%; background: #FFE3A0; animation-delay: 0.6s, .8s; }
.bubble-3 { left: 16%; top: 45%; background: #D8EEFF; animation-delay: 0.7s, 1.2s; }
.bubble-4 { right: 16%; top: 45%; background: #D6F0DC; animation-delay: 0.8s, 0.4s; }
.bubble-5 { left: 26%; top: 68%; background: #FFE4D3; animation-delay: 0.9s, 1.6s; }
.bubble-6 { right: 26%; top: 68%; background: #FFD0E2; animation-delay: 1.0s, 2.0s; }
.bubble-7 {
  left: 50%; bottom: 4%;
  transform: translateX(-50%) rotate(var(--rot, 0deg));
  background: #E5DDFF;
  animation: bubblePopCenter 0.6s cubic-bezier(.5,1.5,.4,1) 1.1s both, bubbleFloatCenter 6s ease-in-out 2.4s infinite;
}
@keyframes bubblePop {
  0%   { opacity: 0; transform: rotate(var(--rot, 0deg)) scale(0.7); }
  60%  { opacity: 1; transform: rotate(var(--rot, 0deg)) scale(1.06); }
  100% { transform: rotate(var(--rot, 0deg)) scale(1); }
}
@keyframes bubbleFloat {
  0%,100% { transform: rotate(var(--rot, 0deg)) translateY(0); }
  50%     { transform: rotate(var(--rot, 0deg)) translateY(-8px); }
}
@keyframes bubblePopCenter {
  0%   { opacity: 0; transform: translateX(-50%) rotate(var(--rot, 0deg)) scale(0.7); }
  60%  { opacity: 1; transform: translateX(-50%) rotate(var(--rot, 0deg)) scale(1.06); }
  100% { transform: translateX(-50%) rotate(var(--rot, 0deg)) scale(1); }
}
@keyframes bubbleFloatCenter {
  0%,100% { transform: translateX(-50%) rotate(var(--rot, 0deg)) translateY(0); }
  50%     { transform: translateX(-50%) rotate(var(--rot, 0deg)) translateY(-8px); }
}

.hero-sub {
  margin: 8px auto 0;
  max-width: 620px;
  padding: 14px 22px;
  font-size: clamp(15px, 1.4vw, 17.5px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.005em;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--sh-1);
}
.hero-meet {
  margin: 18px auto 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink-2);
  letter-spacing: -0.015em;
  line-height: 1.0;
}
.hero-meet-name {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
  letter-spacing: -0.025em;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.hero-meet-dot {
  display: inline-block;
  width: clamp(14px, 1.6vw, 18px);
  height: clamp(14px, 1.6vw, 18px);
  border-radius: 50%;
  background: var(--sunglow);
  box-shadow: 0 0 16px rgba(255,201,64,0.65);
  margin-left: 4px;
}
.hero-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-cta .btn {
  font-size: clamp(15px, 1.5vw, 18px);
  padding: 20px 40px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.015em;
  position: relative;
  background: linear-gradient(135deg, #FF8A50 0%, #FF6B30 100%);
  color: #fff;
  border: 0;
  box-shadow:
    0 20px 40px -14px rgba(255,107,48,0.55),
    0 0 0 6px rgba(255,138,80,0.10);
  transition: transform .25s ease, box-shadow .3s ease;
}
.hero-cta .btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 28px 50px -14px rgba(255,107,48,0.65),
    0 0 0 8px rgba(255,138,80,0.16);
}
.hero-cta .btn::after {
  content: '→';
  margin-left: 10px;
  display: inline-block;
  transition: transform .25s ease;
}
.hero-cta .btn:hover::after { transform: translateX(4px); }
.hero-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: -0.005em;
}
.hero-cta-note::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(91,156,102,0.20);
  animation: ctaDotPulse 2.4s ease-in-out infinite;
}
@keyframes ctaDotPulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(91,156,102,0.20); }
  50%     { box-shadow: 0 0 0 8px rgba(91,156,102,0.10); }
}
.hero-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-4);
  padding-bottom: 60px;
}

/* ─── WAVE DIVIDER ─────────────────────────────────── */
.wave-divider {
  display: block;
  width: 100%;
  height: clamp(56px, 7vw, 90px);
  margin: 0;
  margin-bottom: -1px;
  position: relative;
  z-index: 2;
}
.wave-divider + .section { margin-top: -1px; }
/* The hero → ages transition gets a bigger, more deliberate curve. */
.wave-divider.wave-divider-lg {
  height: clamp(80px, 10vw, 140px);
  margin-top: -1px;
}

/* ─── SECTION SHELL ────────────────────────────────── */
.section {
  position: relative;
  padding: clamp(72px, 7.5vw, 112px) 0;
}
.section-sky    { background: var(--sky); }
.section-sand   { background: var(--sand); }
.section-mint   { background: var(--mint); }
.section-lav    { background: var(--lav); }
.section-cream  { background: var(--cream); }
.section-peach  { background: var(--peach); }
.section-ink {
  background:
    radial-gradient(ellipse 60% 50% at 25% 0%, rgba(122,107,216,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(255,201,64,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #1A2347 0%, #15203A 100%);
  color: #FFF8EF;
}
.section-ink h2, .section-ink h3, .section-ink h4, .section-ink h5 { color: #FFF8EF; }

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head.center { text-align: center; }
.section-head .eyebrow { display: inline-block; margin-bottom: 16px; }
.section-head .lede {
  margin-top: 16px;
  font-size: clamp(15px, 1.2vw, 16.5px);
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 580px;
  margin-inline: auto;
}

.lede {
  font-size: clamp(15px, 1.2vw, 16.5px);
  color: var(--ink-3);
  line-height: 1.55;
}

.link-underline {
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 1px;
}
.link-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.1);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background .2s;
}
.link-pill:hover { background: rgba(255,255,255,0.2); }

/* ─── AGE MODES ────────────────────────────────────── */
.age-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.age-card {
  position: relative;
  background: #fff;
  border-radius: 36px;
  padding: 32px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 520px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: var(--sh-2);
}
.age-card:hover { transform: translateY(-8px); box-shadow: var(--sh-3); }
/* Color-tinted gradient bottom behind Mojik */
.age-card::after {
  content: '';
  position: absolute;
  inset: 50% 0 0 0;
  background: linear-gradient(180deg, transparent 0%, var(--card-tint, var(--mint)) 100%);
  z-index: 0;
  pointer-events: none;
}
.age-card > * { position: relative; z-index: 1; }
.age-card:nth-child(1) { --card-tint: #FFE3A0; }
.age-card:nth-child(2) { --card-tint: #FFC0A0; }
.age-card:nth-child(3) { --card-tint: #D6F0DC; }
.age-card:nth-child(1) .age-badge { background: rgba(245,168,42,0.16); color: #C58A1A; }
.age-card:nth-child(2) .age-badge { background: rgba(210,107,67,0.16); color: var(--coral); }
.age-card:nth-child(3) .age-badge { background: rgba(91,156,102,0.16); color: var(--sage); }
.age-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}
.age-card h3 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.age-card p {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0;
}
.tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.tag-row li {
  padding: 5px 12px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(21,32,58,0.06);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
}
.age-img {
  align-self: center;
  margin-top: auto;
  width: 240px;
  margin-bottom: -10px;
  filter: drop-shadow(0 36px 50px rgba(180,90,40,0.30));
  transition: transform .35s ease;
}
.age-card:hover .age-img { transform: translateY(-6px) scale(1.04); }

/* ─── WHAT KIDS DO ─────────────────────────────────── */
.what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.what-card {
  padding: 40px 36px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .35s ease, box-shadow .35s ease;
  border: 2px solid rgba(21,32,58,0.04);
}
.what-card:hover { transform: translateY(-4px); }
.what-card-1 { background: #FFFFFF; border-color: #FFE4D3; }
.what-card-2 { background: linear-gradient(160deg, #FFFFFF 0%, #FFF1D2 100%); }
.what-card-3 { background: linear-gradient(160deg, #FFFFFF 0%, #D8F0DD 100%); }
.what-card-4 { background: linear-gradient(160deg, #FFFFFF 0%, #E5DDFF 100%); }
.what-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--coral);
}
.what-card h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.what-card p {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0;
}

/* ─── FAMILY DAY ───────────────────────────────────── */
.day-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.day-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 0 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 360px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: var(--sh-2);
}
.day-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); }
.day-art {
  margin: 0 -24px;
  height: 150px;
  display: grid;
  place-items: center;
  padding: 16px 24px;
}
.day-art svg { width: 80%; max-width: 120px; height: auto; }
.day-1 .day-art { background: linear-gradient(180deg, #FFE4D3 0%, #FFD0B0 100%); }
.day-2 .day-art { background: linear-gradient(180deg, #FFF1D2 0%, #FFE3A0 100%); }
.day-3 .day-art { background: linear-gradient(180deg, #D7E6FF 0%, #B9D0FF 100%); }
.day-4 .day-art { background: linear-gradient(180deg, #1F2851 0%, #3D3A78 100%); }
.day-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 8px;
}
.day-card p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0;
}
.day-footer {
  margin-top: 48px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink-2);
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.4;
}

/* ─── PARENT APP ───────────────────────────────────── */
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.app-copy .section-head { text-align: left; margin: 0 0 32px; max-width: none; }
.app-copy .section-head .lede { margin-inline: 0; }
.app-feats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
}
.app-feats li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.55);
  border: 1.5px solid rgba(255,255,255,0.85);
  border-radius: 18px;
  padding: 16px 20px;
  transition: background .25s ease, transform .25s ease;
}
.app-feats li:hover { background: rgba(255,255,255,0.85); transform: translateX(2px); }
.app-feats .dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.9);
}
.dot-violet { background: var(--violet); }
.dot-coral  { background: var(--coral); }
.dot-sage   { background: var(--sage); }
.dot-sun    { background: var(--sun); }
.dot-ink    { background: var(--ink); }
.dot-cobalt { background: var(--cobalt); }
.app-feats strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.app-feats span {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}

.phone-stage {
  display: grid;
  place-items: center;
  position: relative;
}
.phone {
  position: relative;
  width: 360px;
  height: 740px;
  background: #fff;
  border-radius: 56px;
  padding: 10px;
  box-shadow: 0 60px 90px -30px rgba(122,107,216,0.35), inset 0 0 0 1.5px rgba(21,32,58,0.12);
  transform: rotate(-3deg);
}
.phone-island {
  position: absolute;
  left: 50%; top: 22px;
  transform: translateX(-50%);
  width: 100px; height: 30px;
  background: #0E0E0E;
  border-radius: 999px;
  z-index: 5;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #FFF7EC 0%, #FFE4D3 100%);
  border-radius: 46px;
  overflow: hidden;
  position: relative;
  padding-top: 16px;
}
.phone-status {
  display: flex; justify-content: space-between;
  padding: 16px 24px 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.battery {
  display: inline-block;
  width: 22px; height: 11px;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  position: relative;
}
.battery > span { display: block; margin: 1px; height: 7px; background: var(--sage); border-radius: 1px; }
.phone-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 22px 14px;
}
.phone-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sunglow);
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.phone-avatar img { width: 60px; margin-top: 8px; }
.phone-head-text { flex: 1; min-width: 0; }
.phone-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.phone-status-line { font-size: 11px; color: var(--ink-4); }
.phone-chat-btn {
  padding: 6px 12px;
  background: #FF7A45;
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.phone-metrics {
  display: flex; gap: 8px;
  padding: 0 22px 14px;
}
.metric {
  flex: 1;
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
}
.metric-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-4);
}
.metric-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  margin-top: 2px;
}
.phone-section-title {
  padding: 0 22px 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--ink);
}
.phone-feed-mask {
  height: 380px;
  overflow: hidden;
  position: relative;
}
.phone-feed-mask::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to top, #FFE4D3, transparent);
  pointer-events: none;
}
.phone-feed {
  display: flex; flex-direction: column; gap: 10px;
  padding: 0 22px 16px;
  animation: phoneTickerUp 14s linear infinite;
}
@keyframes phoneTickerUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.feed-card {
  background: #fff;
  border-radius: 18px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  box-shadow: 0 4px 10px -4px rgba(160,74,45,0.10);
}
.feed-icon {
  width: 36px; height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  flex-shrink: 0;
}
.feed-body { flex: 1; min-width: 0; }
.feed-tag {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.feed-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  margin-top: 2px;
  line-height: 1.2;
}
.feed-sub {
  font-size: 11px;
  color: var(--ink-4);
  margin-top: 2px;
  line-height: 1.35;
}

/* ─── SAFETY (dark) ────────────────────────────────── */
.section-ink .section-head .eyebrow { color: var(--sun); }
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.safety-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .25s, transform .25s, border-color .25s;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.safety-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,201,64,0.20);
  transform: translateY(-3px);
}
.safety-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--sun);
}
.safety-card h4 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #FFF8EF;
  margin: 0;
}
.safety-card p {
  font-size: 14px;
  color: rgba(255,248,239,0.65);
  line-height: 1.55;
  margin: 0;
}
.safety-footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.safety-footer p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(255,248,239,0.85);
  margin: 0;
  max-width: 720px;
  line-height: 1.45;
}

/* ─── OFFLINE ──────────────────────────────────────── */
.offline-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.offline-items {
  display: flex; flex-direction: column; gap: 18px;
  margin-top: 28px;
}
.offline-item {
  background: #fff;
  border-radius: 20px;
  padding: 18px 22px;
  border: 1.5px solid rgba(210,107,67,0.10);
}
.offline-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}
.offline-item span {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}
.offline-scene { position: relative; padding: 20px; }
.scene-card {
  position: relative;
  background: linear-gradient(155deg, #FFF1D2 0%, #FFE4D3 40%, #FFC9A8 100%);
  border-radius: 36px;
  padding: 36px 36px 80px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(210,107,67,0.40);
}
.scene-card::before {
  content: '';
  position: absolute;
  inset: -60% -20% auto -20%;
  height: 120%;
  background: radial-gradient(circle at 50% 80%, rgba(255,201,64,0.55) 0%, transparent 60%);
  pointer-events: none;
}
.scene-card > * { position: relative; z-index: 1; }
.scene-bubble {
  display: inline-block;
  padding: 14px 22px;
  background: #fff;
  border-radius: 22px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 8px 16px rgba(21,32,58,0.06);
}
.scene-bubble::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -8px;
  width: 14px; height: 14px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}
.scene-mojik {
  width: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 32px 50px rgba(180,90,40,0.35));
  animation: mojikBobSmall 4.5s ease-in-out infinite;
  display: block;
}
@keyframes mojikBobSmall {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-10px) rotate(2deg); }
}
.scene-pill {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  padding: 10px 18px;
  background: #fff;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 16px -4px rgba(210,107,67,0.30);
}

/* ─── PITCH ────────────────────────────────────────── */
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.pitch-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid rgba(21,32,58,0.04);
  transition: transform .35s;
}
.pitch-card:hover { transform: translateY(-4px); }
.pitch-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  margin-bottom: 8px;
}
.pitch-1 .pitch-icon { background: #FFE4D3; color: var(--coral); }
.pitch-2 .pitch-icon { background: #D7E6FF; color: var(--cobalt); }
.pitch-3 .pitch-icon { background: #D8F0DD; color: var(--sage); }
.pitch-card h4 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.pitch-card p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ─── EXPERTS ──────────────────────────────────────── */
.experts-block {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.experts-block .eyebrow { display: inline-block; margin-bottom: 18px; }
.experts-block .lede { margin: 20px auto 36px; max-width: 600px; }
.experts-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.expert-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(91,156,102,0.12);
  border: 1.5px solid rgba(91,156,102,0.25);
  border-radius: var(--r-pill);
}
.expert-chip strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--sage);
  letter-spacing: -0.02em;
}
.expert-chip span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}

/* experts pillars — safety emphasis */
.experts-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  text-align: left;
}
.ex-pillar {
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--sh-2);
  border: 1.5px solid rgba(91,156,102,0.10);
  transition: transform .35s ease, box-shadow .35s ease;
}
.ex-pillar:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.ex-ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(91,156,102,0.15);
  color: var(--sage);
  display: grid; place-items: center;
}
.ex-ico svg { width: 26px; height: 26px; }
.ex-pillar strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.ex-pillar span {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
}

.cert-strip {
  margin-top: 40px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(91,156,102,0.10) 0%, rgba(59,91,205,0.10) 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.cert-strip-note {
  font-size: 12.5px;
  color: var(--ink-3);
  max-width: 500px;
  line-height: 1.5;
  font-family: var(--font-serif);
  font-style: italic;
}
.cert-strip-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sage);
}
.cert-strip-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.cert-pill {
  padding: 8px 16px;
  background: #fff;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.04em;
  border: 1.5px solid rgba(21,32,58,0.08);
}

/* ─── FAQ ──────────────────────────────────────────── */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-group { margin-top: 36px; }
.faq-group-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cobalt);
  margin: 0 0 14px 8px;
}
.faq-item {
  background: #fff;
  border-radius: 22px;
  padding: 0;
  margin-bottom: 10px;
  border: 1px solid rgba(59,91,205,0.08);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: rgba(59,91,205,0.20); box-shadow: var(--sh-1); }
.faq-item[open] { border-color: rgba(59,91,205,0.30); box-shadow: var(--sh-2); }
.faq-item summary {
  list-style: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.plus {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(59,91,205,0.10);
  position: relative;
  transition: transform .25s ease, background .25s;
}
.plus::before, .plus::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--cobalt);
  border-radius: 1px;
  transition: transform .25s ease, background .25s;
}
.plus::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.plus::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .plus { background: var(--cobalt); }
.faq-item[open] .plus::before { background: #fff; }
.faq-item[open] .plus::after { background: #fff; transform: translate(-50%, -50%) rotate(90deg); }
.faq-body {
  padding: 0 28px 26px;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.6;
}

/* ─── CTA ──────────────────────────────────────────── */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-hearts {
  position: absolute; inset: 0;
  pointer-events: none;
  color: var(--violet);
  opacity: 0.35;
}
.cta-hearts span {
  position: absolute;
  font-size: 22px;
}
.cta-hearts span:nth-child(1) { left: 8%;  top: 16%; font-size: 20px; animation: heartFloat 5s ease-in-out infinite; }
.cta-hearts span:nth-child(2) { left: 18%; top: 60%; font-size: 28px; animation: heartFloat 7s ease-in-out infinite; }
.cta-hearts span:nth-child(3) { left: 32%; top: 30%; font-size: 16px; animation: heartFloat 6s ease-in-out infinite; }
.cta-hearts span:nth-child(4) { right: 12%; top: 24%; font-size: 24px; animation: heartFloat 8s ease-in-out infinite; }
.cta-hearts span:nth-child(5) { right: 22%; top: 70%; font-size: 18px; animation: heartFloat 5.5s ease-in-out infinite; }
.cta-hearts span:nth-child(6) { left: 50%; top: 8%;  font-size: 20px; animation: heartFloat 6.5s ease-in-out infinite; }
.cta-hearts span:nth-child(7) { right: 6%;  bottom: 30%; font-size: 26px; animation: heartFloat 7.5s ease-in-out infinite; }
.cta-hearts span:nth-child(8) { left: 6%;   bottom: 20%; font-size: 22px; animation: heartFloat 5s ease-in-out infinite; }
@keyframes heartFloat {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%     { transform: translateY(-14px) rotate(4deg); }
}
.cta-inner { text-align: center; }
.cta-inner .eyebrow { color: var(--violet); display: inline-block; margin-bottom: 28px; padding: 8px 18px; background: rgba(255,255,255,0.7); border-radius: var(--r-pill); }
.cta-h2 { font-size: clamp(44px, 7vw, 88px); line-height: 0.95; }
.cta-sub {
  margin: 24px auto 0;
  max-width: 540px;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--ink-3);
  line-height: 1.55;
}

/* form */
.cta-form {
  max-width: 580px;
  margin: 36px auto 0;
  position: relative;
}
.cta-form-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: var(--r-pill);
  padding: 8px 8px 8px 22px;
  box-shadow: 0 20px 50px -22px rgba(122,107,216,0.45),
              0 0 0 1.5px rgba(122,107,216,0.15);
  transition: box-shadow .25s, transform .25s;
}
.cta-form:focus-within .cta-form-row {
  box-shadow: 0 24px 60px -22px rgba(122,107,216,0.55),
              0 0 0 2px var(--violet);
  transform: translateY(-1px);
}
.cta-form-icon {
  width: 24px; height: 24px;
  color: var(--violet);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cta-form-icon svg { width: 22px; height: 22px; }
.cta-form input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  padding: 12px 8px;
  min-width: 0;
  letter-spacing: -0.01em;
}
.cta-form input::placeholder { color: var(--ink-4); }
.cta-form .btn-coral { padding: 14px 24px; font-size: 15px; flex-shrink: 0; }
.cta-form-ok {
  display: none;
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--sage);
  font-size: 15px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cta-form-ok .check {
  width: 26px; height: 26px;
  display: inline-grid; place-items: center;
  background: var(--sage); color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}
.cta-form.is-sent .cta-form-row { display: none; }
.cta-form.is-sent .cta-form-ok { display: inline-flex; }

/* trust mini-cards under form */
.cta-trust {
  margin: 36px auto 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: left;
}
.cta-trust li {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 16px 14px;
  border: 1.5px solid rgba(122,107,216,0.10);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cta-trust li:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -18px rgba(122,107,216,0.35); }
.cta-trust-ico {
  width: 36px; height: 36px;
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cta-trust-ico svg { width: 20px; height: 20px; }
.cta-trust-1 .cta-trust-ico { background: #FFE4D3; color: var(--coral); }
.cta-trust-2 .cta-trust-ico { background: #D8F0DD; color: var(--sage); }
.cta-trust-3 .cta-trust-ico { background: #D7E6FF; color: var(--cobalt); }
.cta-trust-4 .cta-trust-ico { background: #FFF1D2; color: #C58A1A; }
.cta-trust strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.cta-trust div {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.4;
}
.cta-trust > li > div:last-child { font-size: 12px; color: var(--ink-3); }
/* pitch-art thematic illustrations */
.pitch-card { padding: 0 28px 28px; overflow: hidden; }
.pitch-art {
  margin: 0 -28px 8px;
  height: 130px;
  display: grid;
  place-items: center;
}
.pitch-1 .pitch-art { background: linear-gradient(180deg, #FFE4D3 0%, #FFD0B0 100%); }
.pitch-2 .pitch-art { background: linear-gradient(180deg, #D7E6FF 0%, #B9D0FF 100%); }
.pitch-3 .pitch-art { background: linear-gradient(180deg, #D8F0DD 0%, #B6E0BF 100%); }
.pitch-art svg { width: 70%; max-width: 130px; height: auto; }
.pitch-card > h4 { margin-top: 16px; }

/* CTA multi-step form */
.cta-form-progress {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}
.cta-step-dot {
  width: 28px; height: 4px;
  border-radius: 4px;
  background: rgba(122,107,216,0.20);
  transition: background .3s ease, width .3s ease;
}
.cta-step-dot.is-active { background: var(--violet); width: 36px; }
.cta-step-dot.is-done { background: rgba(122,107,216,0.60); }

.cta-form-step { display: none; animation: stepIn .4s ease-out both; }
.cta-form-step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.cta-form-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 8px 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.cta-form-label span {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-age-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.cta-age-btn {
  background: #fff;
  border-radius: 22px;
  padding: 24px 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  box-shadow: 0 12px 30px -18px rgba(122,107,216,0.40), 0 0 0 1.5px rgba(122,107,216,0.15);
  transition: transform .25s, box-shadow .25s, background .25s;
}
.cta-age-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -18px rgba(122,107,216,0.55), 0 0 0 2px var(--violet); background: #FAF8FF; }
.cta-age-btn.is-selected { background: var(--violet); color: #fff; box-shadow: 0 18px 40px -18px rgba(122,107,216,0.65); }

.cta-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  background: transparent;
  padding: 4px 8px;
}
.cta-back:hover { color: var(--violet); }
.cta-step-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px;
}
.cta-skip {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-skip:hover { color: var(--violet); }

.cta-form-ok {
  display: none;
  margin: 18px auto 0;
  padding: 20px 24px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 40px -18px rgba(91,156,102,0.45);
  align-items: center;
  gap: 16px;
  text-align: left;
  max-width: 480px;
}
.cta-form.is-sent .cta-form-step,
.cta-form.is-sent .cta-form-progress { display: none; }
.cta-form.is-sent .cta-form-ok { display: flex; }
.cta-form-ok .check {
  width: 36px; height: 36px;
  display: inline-grid; place-items: center;
  background: var(--sage); color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.ok-title { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--ink); }
.ok-sub { font-size: 13px; color: var(--ink-3); margin-top: 2px; }

/* Single big mojik in CTA — replaces cta-mojiks */
.cta-mojik-wrap {
  display: grid; place-items: center;
  margin-top: 64px;
}
.cta-mojik-c-new {
  width: clamp(280px, 32vw, 420px);
  filter: drop-shadow(0 40px 60px rgba(122,107,216,0.45));
  animation: mojikBobBig 4.5s ease-in-out infinite;
}
@keyframes mojikBobBig {
  0%,100% { transform: translateY(0) rotate(0); }
  50%     { transform: translateY(-14px) rotate(3deg); }
}
/* Override old absolute-positioned cta-mojik-c when inside cta-mojik-wrap */
.cta-mojik-wrap .cta-mojik-c {
  position: static;
  transform: none;
  left: auto; top: auto;
  width: clamp(280px, 32vw, 420px);
  filter: drop-shadow(0 40px 60px rgba(122,107,216,0.45));
  animation: mojikBobBig 4.5s ease-in-out infinite;
}

/* ─── TRUST STRIP ──────────────────────────────────── */
.trust-section {
  padding: 64px 0;
  background: var(--cream);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  padding: 24px 22px;
  background: rgba(21,32,58,0.04);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--violet);
}
.trust-item h5 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.trust-item p {
  font-size: 13px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.5;
}

/* ─── FOOTER (creative) ─────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,248,239,0.85);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer .brand { color: #FFF8EF; }

.foot-deco { position: absolute; inset: 0; pointer-events: none; }
.foot-spark {
  position: absolute;
  color: var(--sunglow);
  opacity: 0.45;
  font-size: 20px;
  animation: footTwinkle 4s ease-in-out infinite;
}
.foot-spark.s1 { left: 8%;  top: 14%; font-size: 22px; }
.foot-spark.s2 { left: 28%; top: 52%; font-size: 14px; animation-delay: .6s; }
.foot-spark.s3 { right: 22%; top: 18%; font-size: 26px; color: var(--coral); animation-delay: 1.0s; }
.foot-spark.s4 { right: 8%; top: 64%; font-size: 22px; color: var(--violet); opacity: .55; animation-delay: 1.4s; }
.foot-spark.s5 { left: 12%; bottom: 28%; font-size: 18px; animation-delay: 2.0s; }
.foot-spark.s6 { right: 14%; top: 36%; font-size: 14px; animation-delay: 2.4s; }
.foot-spark.s7 { left: 44%; bottom: 14%; font-size: 16px; color: #FF8E70; opacity: .55; animation-delay: 1.8s; }
@keyframes footTwinkle {
  0%,100% { opacity: 0.35; transform: scale(0.9) rotate(0); }
  50%     { opacity: 1;    transform: scale(1.2) rotate(15deg); }
}

/* Top: tagline + Mojik mascot */
.foot-top-creative {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 32px;
  position: relative;
  z-index: 2;
}
.foot-headline { max-width: 560px; }
.foot-h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #FFF8EF;
  margin: 0 0 18px;
}
.foot-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #FFC940;
  letter-spacing: -0.015em;
}
.foot-headline p {
  font-size: 15px;
  color: rgba(255,248,239,0.65);
  line-height: 1.55;
  max-width: 460px;
  margin: 0 0 28px;
}
.foot-mini-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,248,239,0.08);
  border: 1.5px solid rgba(255,248,239,0.16);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 22px;
  max-width: 460px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.foot-mini-form:focus-within {
  border-color: var(--sunglow);
  box-shadow: 0 0 0 4px rgba(255,201,64,0.18);
}
.foot-mini-form input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0;
  color: #FFF8EF;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 4px;
  min-width: 0;
}
.foot-mini-form input::placeholder { color: rgba(255,248,239,0.40); }
.foot-mini-form .btn-coral { padding: 12px 20px; font-size: 13px; }
.foot-mini-ok {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(91,156,102,0.20);
  border-radius: var(--r-pill);
  color: #B8EAC4;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
}
.foot-mini-form.is-sent .foot-mini-ok { display: flex; }
.foot-mini-form.is-sent input,
.foot-mini-form.is-sent .btn-coral { visibility: hidden; }

.foot-mojik {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
}
.foot-mojik img {
  width: clamp(180px, 22vw, 260px);
  filter: drop-shadow(0 30px 50px rgba(255,201,64,0.25));
  animation: footMojikBob 4.5s ease-in-out infinite;
}
@keyframes footMojikBob {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-10px) rotate(2deg); }
}
.foot-mojik-bubble {
  position: absolute;
  top: 8%;
  right: -12%;
  background: #FFF8EF;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 18px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transform: rotate(6deg);
  box-shadow: 0 14px 30px rgba(0,0,0,0.30);
  animation: footBubbleFloat 4s ease-in-out infinite;
}
.foot-mojik-bubble::after {
  content: '';
  position: absolute;
  left: 18%; bottom: -8px;
  width: 14px; height: 14px;
  background: #FFF8EF;
  border-radius: 0 0 4px 0;
  transform: rotate(45deg);
}
.foot-mojik-bubble span { color: var(--coral); }
@keyframes footBubbleFloat {
  0%,100% { transform: rotate(6deg) translateY(0); }
  50%     { transform: rotate(6deg) translateY(-6px); }
}

/* Nav as pills, grouped */
.foot-nav-creative {
  padding: 40px 0 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.brand-foot {
  font-size: 26px;
}
.foot-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.foot-pill-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.foot-pill-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,248,239,0.45);
  margin-bottom: 4px;
}
.foot-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,248,239,0.06);
  border: 1px solid rgba(255,248,239,0.08);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,248,239,0.85);
  letter-spacing: -0.005em;
  transition: background .2s, transform .2s, border-color .2s, color .2s;
}
.foot-pill:hover {
  background: rgba(255,248,239,0.12);
  border-color: rgba(255,248,239,0.18);
  transform: translateY(-1px);
  color: #FFF8EF;
}
.foot-pill-ig:hover { color: #F77;
  border-color: rgba(255,140,140,0.35);
  background: rgba(255,140,140,0.10); }
.foot-pill-tt:hover { color: #4FE8E0;
  border-color: rgba(79,232,224,0.35);
  background: rgba(79,232,224,0.10); }
.foot-pill-yt:hover { color: #FF6B6B;
  border-color: rgba(255,107,107,0.35);
  background: rgba(255,107,107,0.10); }

/* bottom: legal */
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 32px;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,248,239,0.45);
  position: relative;
  z-index: 2;
}
.foot-handwave {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,248,239,0.85);
  font-size: 14px;
}
.foot-copy-line { font-family: var(--font-display); font-weight: 600; }
.foot-legal { display: flex; gap: 24px; }
.foot-legal a {
  color: rgba(255,248,239,0.7);
  border-bottom: 1px solid rgba(255,248,239,0.16);
  padding-bottom: 1px;
  font-family: var(--font-display);
  font-weight: 600;
}
.foot-legal a:hover { color: #FFF8EF; border-color: #FFF8EF; }

/* big wordmark — slight gradient + slight peek-through */
.foot-wordmark-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.foot-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(140px, 26vw, 380px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, rgba(255,201,64,0.12) 0%, rgba(255,248,239,0.04) 60%, rgba(255,248,239,0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  margin: 8px auto 0;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  padding-bottom: 16px;
}

/* ─── REVEAL ANIMATIONS ────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
  }
  .reveal.is-in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .age-grid, .what-grid, .safety-grid, .pitch-grid { grid-template-columns: 1fr 1fr; }
  .day-grid { grid-template-columns: 1fr 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .offline-grid { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr; }
  .cta-trust { grid-template-columns: 1fr 1fr; }
  .phone { transform: rotate(0) scale(0.85); transform-origin: center top; margin: 0 auto; }
}
@media (max-width: 640px) {
  .age-grid, .what-grid, .safety-grid, .pitch-grid, .day-grid, .cta-trust { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .hero-stage { height: 440px; }
  .bubble { font-size: 10px; padding: 8px 12px; }
  .bubble-1, .bubble-2 { font-size: 9px; }
  .age-img { width: 200px; }
  .scene-mojik { width: 220px; }
  .cta-photo { display: none; }
  .cta-form-row { flex-direction: column; padding: 8px; border-radius: 24px; align-items: stretch; }
  .cta-form-icon { display: none; }
  .cta-form input { padding: 14px 16px; }
}


/* ─── LANGUAGE SWITCHER ────────────────────────────── */
.nav-right { display: flex; align-items: center; gap: 8px; position: relative; }
.lang-switch {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: background .2s, transform .2s;
}
.lang-switch:hover { background: #fff; transform: translateY(-1px); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 16px;
  padding: 6px;
  min-width: 180px;
  box-shadow: var(--sh-3);
  border: 1px solid rgba(21,32,58,0.06);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 200;
}
.lang-menu.is-open { display: flex; }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
  background: transparent;
  text-align: left;
  transition: background .15s, color .15s;
}
.lang-menu button:hover { background: var(--peach); color: var(--ink); }
.lang-menu button > span:first-child {
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--peach);
  font-size: 11px;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* ─── COUNTRY SELECT ───────────────────────────────── */
.cta-select {
  flex: 1; border: 0; background: transparent; outline: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  padding: 14px 8px;
  min-width: 0;
  letter-spacing: -0.01em;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'><path d='M3 4.5l3 3 3-3' stroke='%237A6BD8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

/* ─── POPUP OVERLAY ────────────────────────────────── */
.popup-overlay {
  position: fixed; inset: 0;
  display: grid; place-items: center;
  background: rgba(21,32,58,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.popup-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.popup-card {
  position: relative;
  width: min(600px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(180deg, var(--lav) 0%, #F1ECFF 100%);
  border-radius: 32px;
  padding: 44px clamp(24px, 5vw, 44px) 32px;
  box-shadow: 0 50px 100px -30px rgba(21,32,58,0.45);
  border: 1.5px solid rgba(255,255,255,0.8);
  transform: scale(0.95) translateY(20px);
  transition: transform .4s cubic-bezier(.2,1.4,.4,1);
  text-align: center;
}
.popup-overlay.is-open .popup-card { transform: scale(1) translateY(0); }
.popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(21,32,58,0.06);
  color: var(--ink-3);
  transition: background .2s, color .2s;
}
.popup-close:hover { background: #fff; color: var(--ink); }
.popup-close svg { width: 16px; height: 16px; }
.popup-h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  margin: 12px 0 14px;
}
.popup-sub {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 460px;
  margin: 0 auto 20px;
}
.popup-form { margin-top: 16px; }
.popup-dismiss {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 6px 10px;
  border-radius: 12px;
  transition: color .2s;
}
.popup-dismiss:hover { color: var(--violet); }
.popup-form .cta-form-row {
  box-shadow: 0 14px 32px -16px rgba(122,107,216,0.40),
              0 0 0 1.5px rgba(122,107,216,0.18);
}

/* ─── RESPONSIVE OVERHAUL ──────────────────────────── */

/* Ultra-wide: cap container, scale gutters reasonably */
@media (min-width: 1601px) {
  :root { --maxw: 1340px; --gutter: clamp(40px, 4vw, 96px); }
  .hero-h1 { font-size: clamp(56px, 5.4vw, 92px); }
  .display { font-size: clamp(40px, 4vw, 60px); }
}
@media (min-width: 1920px) {
  :root { --maxw: 1440px; }
}

/* Desktop / large laptop */
@media (max-width: 1280px) {
  .age-grid { gap: 18px; }
  .what-grid { gap: 18px; }
}

/* Small laptop */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .age-grid, .what-grid, .safety-grid, .pitch-grid { grid-template-columns: 1fr 1fr; }
  .day-grid { grid-template-columns: 1fr 1fr; }
  .experts-pillars { grid-template-columns: 1fr 1fr; }
  .app-grid { grid-template-columns: 1fr; gap: 40px; }
  .offline-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-top-creative { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .foot-mojik { justify-self: center; }
  .foot-headline { max-width: none; margin-inline: auto; }
  .foot-mini-form { max-width: 520px; margin-inline: auto; }
  .cta-trust { grid-template-columns: 1fr 1fr; }
  .phone { transform: rotate(0) scale(0.9); transform-origin: center top; margin: 0 auto; }
}

/* Tablet */
@media (max-width: 820px) {
  :root { --r-card: 24px; }
  .hero-h1 { font-size: clamp(36px, 9vw, 64px); }
  .display { font-size: clamp(30px, 6vw, 44px); }
  .age-card { min-height: 460px; }
  .age-img { width: 200px; }
  .foot-pills { grid-template-columns: 1fr; gap: 14px; }
  .foot-pill-group { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 6px; }
  .foot-pill-label { margin-right: 6px; margin-bottom: 0; }
  .nav { padding: 12px var(--gutter); }
  .nav .brand { font-size: 18px; }
}

/* Large phone */
@media (max-width: 640px) {
  .age-grid, .what-grid, .safety-grid, .pitch-grid, .day-grid, .cta-trust, .experts-pillars {
    grid-template-columns: 1fr;
  }
  .bubble { font-size: 10px; padding: 8px 12px; }
  .bubble-1, .bubble-2 { font-size: 9px; }
  .hero-stage { height: 380px; }
  .hero-mojik { width: clamp(180px, 50vw, 240px); }
  .age-img { width: 180px; }
  .scene-mojik { width: 220px; }
  .day-art { height: 120px; }
  .day-art svg { max-width: 96px; }
  .cta-form-row { flex-direction: column; padding: 8px; border-radius: 22px; align-items: stretch; }
  .cta-form-icon { display: none; }
  .cta-form input, .cta-select { padding: 14px 16px; }
  .cta-form .btn-coral, .popup-form .btn-coral { width: 100%; }
  .popup-card { padding: 36px 20px 28px; border-radius: 28px; max-height: 96vh; }
  .popup-close { top: 12px; right: 12px; width: 32px; height: 32px; }
  .popup-h2 { font-size: 26px; }
  .lang-switch { width: 36px; height: 36px; font-size: 12px; }
  .nav-right .btn-primary { padding: 10px 14px; font-size: 13px; }
  .day-card { min-height: 320px; }
}

/* Small phone */
@media (max-width: 380px) {
  .hero-h1 { font-size: 34px; }
  .display { font-size: 26px; }
  .nav-right .btn-primary span,
  .nav-right .btn-primary { padding-inline: 12px; font-size: 12.5px; }
  .age-card h3, .what-card h3, .pitch-card h4 { font-size: 18px; }
}

/* Touch devices — disable hover transforms */
@media (hover: none) {
  .age-card:hover, .what-card:hover, .day-card:hover,
  .safety-card:hover, .pitch-card:hover, .ex-pillar:hover,
  .review-card:hover, .biz-card:hover, .sol-card:hover { transform: none; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .bubble, .hero-mojik, .sparkle, .cta-mojik-c, .foot-mojik img, .scene-mojik {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─── COOKIE BANNER ─────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 800;
  display: none;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.96);
  border-radius: 22px;
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border: 1px solid rgba(21,32,58,0.08);
  box-shadow: 0 24px 60px -25px rgba(21,32,58,0.30);
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-body);
  animation: cookieIn .45s cubic-bezier(.2,1.4,.4,1) both;
}
.cookie-banner.is-visible { display: flex; }
.cookie-icon { font-size: 28px; flex-shrink: 0; }
.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-3);
  letter-spacing: -0.005em;
}
.cookie-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.015em;
  margin-bottom: 2px;
}
.cookie-text a {
  color: var(--violet);
  border-bottom: 1px solid rgba(122,107,216,0.30);
  padding-bottom: 1px;
}
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.005em;
  transition: background .2s, transform .15s;
}
.cookie-decline {
  background: transparent;
  color: var(--ink-3);
  border: 1px solid rgba(21,32,58,0.18);
}
.cookie-decline:hover { background: var(--surface, rgba(21,32,58,0.05)); color: var(--ink); }
.cookie-accept {
  background: var(--ink);
  color: #fff;
}
.cookie-accept:hover { background: var(--cobalt); transform: translateY(-1px); }
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── FORM CONSENT + HONEYPOT ─────────────────────── */
.cta-consent {
  margin-top: 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.55);
  border-radius: 18px;
  border: 1px solid rgba(122,107,216,0.18);
}
.cta-consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
  cursor: pointer;
}
.cta-consent-row input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--violet);
  cursor: pointer;
}
.cta-consent-row a {
  color: var(--violet);
  border-bottom: 1px solid rgba(122,107,216,0.30);
  padding-bottom: 1px;
}
.cta-form.is-sent .cta-consent { display: none; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.foot-cookie-settings {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,248,239,0.7);
  border-bottom: 1px solid rgba(255,248,239,0.20);
  padding: 0 0 1px;
  cursor: pointer;
  background: transparent;
}
.foot-cookie-settings:hover { color: #FFF8EF; }

/* ─── FORM ERROR STATE ─────────────────────────────── */
.cta-form .form-error {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(244,67,54,0.10);
  border: 1px solid rgba(244,67,54,0.25);
  color: #B33;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  display: none;
}
.cta-form .form-error.is-shown { display: block; }

@media (max-width: 720px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: left; padding: 16px; }
  .cookie-actions { flex-direction: row; }
  .cookie-actions .cookie-btn { flex: 1; }
}


/* Mobile hero bubbles — pull away from Mojik */
@media (max-width: 640px) {
  .hero-stage { height: clamp(420px, 90vw, 520px); }
  .hero-mojik { width: clamp(150px, 38vw, 200px); }
  .bubble {
    font-size: 10px !important;
    padding: 7px 10px !important;
    max-width: 110px;
    white-space: normal;
    text-align: center;
  }
  .bubble-1 { left: 4% !important;  top: 4% !important; }
  .bubble-2 { right: 4% !important; top: 4% !important; }
  .bubble-3 { left: 2% !important;  top: 32% !important; }
  .bubble-4 { right: 2% !important; top: 32% !important; }
  .bubble-5 { left: 4% !important;  top: 66% !important; }
  .bubble-6 { right: 4% !important; top: 66% !important; }
  .bubble-7 {
    left: 50% !important; bottom: 0 !important; top: auto !important;
    transform: translateX(-50%) rotate(var(--rot, 0deg)) !important;
  }
}
@media (max-width: 380px) {
  .bubble { font-size: 9px !important; padding: 6px 8px !important; max-width: 88px; }
}


/* Consent — visible only on final step, compact */
.cta-consent {
  display: none;
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.55);
  border-radius: 14px;
  border: 1px solid rgba(122,107,216,0.18);
  text-align: left;
}
.cta-form-step[data-step="5"].is-active ~ .cta-consent,
.cta-form:has(.cta-form-step[data-step="5"].is-active) .cta-consent { display: block; }
.cta-consent-row {
  display: flex; gap: 8px; align-items: flex-start;
  font-family: var(--font-body);
  font-size: 12px; color: var(--ink-2);
  line-height: 1.4; cursor: pointer;
}
.cta-consent-row input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 1px; flex-shrink: 0;
  accent-color: var(--violet); cursor: pointer;
}
.cta-consent-row a { color: var(--violet); border-bottom: 1px solid rgba(122,107,216,0.30); padding-bottom: 1px; font-weight: 600; }
.cta-consent-row a:hover { color: var(--cobalt); }
.cta-form.is-sent .cta-consent { display: none !important; }


/* Hero CTA — SAVE 30% badge */
.hero-cta-wrap {
  position: relative;
  display: inline-block;
}
.hero-cta-badge {
  position: absolute;
  top: -14px; right: -22px;
  background: linear-gradient(135deg, #FFC940 0%, #FF8855 100%);
  color: #15203A;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 22px -8px rgba(255,107,48,0.55);
  border: 2px solid #fff;
  transform: rotate(8deg);
  white-space: nowrap;
  animation: badgeBob 3.2s ease-in-out infinite;
  z-index: 4;
}
@keyframes badgeBob {
  0%,100% { transform: rotate(8deg) translateY(0); }
  50%     { transform: rotate(8deg) translateY(-3px); }
}
@media (max-width: 640px) {
  .hero-cta-badge { top: -12px; right: -10px; font-size: 10.5px; padding: 6px 10px; }
}

/* Popup discount line */
.popup-discount {
  margin: 14px auto 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(255,201,64,0.18), rgba(255,136,85,0.18));
  border: 1px solid rgba(255,136,85,0.30);
  border-radius: 999px;
  font-family: var(--font-display);
}
.popup-discount-badge {
  background: linear-gradient(135deg, #FFC940, #FF8855);
  color: #15203A;
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -4px rgba(255,107,48,0.40);
}
.popup-discount-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}

/* Emphasised final-CTA trust card #4 */
.cta-trust-hero {
  background: linear-gradient(135deg, rgba(255,201,64,0.14), rgba(255,136,85,0.14)) !important;
  border-color: rgba(255,136,85,0.40) !important;
  position: relative;
  overflow: visible;
}
.cta-trust-hero::before {
  content: 'SAVE 30%';
  position: absolute;
  top: -12px;
  right: 12px;
  background: linear-gradient(135deg, #FFC940, #FF8855);
  color: #15203A;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 8px 18px -6px rgba(255,107,48,0.45);
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
}
@media (max-width: 640px) {
  .cta-trust-hero::before { top: -10px; right: 10px; font-size: 9.5px; padding: 4px 10px; }
}
.cta-trust-hero .cta-trust-ico {
  background: linear-gradient(135deg, #FFE3A0, #FFC9A8) !important;
  color: #C58A1A !important;
}
.cta-trust-hero strong { color: var(--coral) !important; }
