/* AutismSTEP — landing page styles */

:root {
  --brand-primary: #1dabc4;
  --brand-secondary: #ffffe0;
  --brand-accent: #e6db55;
  --brand-text: #2d2e28;
  --brand-bg: #ffffff;
  --brand-primary-10: color-mix(in srgb, #1dabc4 10%, transparent);
  --brand-primary-15: color-mix(in srgb, #1dabc4 15%, transparent);
  --brand-dark: color-mix(in srgb, #1dabc4 78%, #0f172a);
  --teal-wash: #EEF8FA;
  --yellow-wash: #FFFBD6;
  --cream: #FFFEF5;
  --coral: #f2917a;
  --wa-green: #25D366;
  --wa-green-dark: #1ebe57;
  --r-sm: 14px; --r-md: 22px; --r-lg: 34px; --r-xl: 52px; --r-pill: 999px;
  --shadow-sm: 0 4px 14px rgba(29,171,196,0.09);
  --shadow-md: 0 12px 36px rgba(29,171,196,0.15);
  --shadow-lg: 0 24px 60px rgba(29,171,196,0.2);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --display: 'Fraunces', Georgia, serif;
  --sans: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--sans); color: var(--brand-text); background: var(--brand-bg); line-height: 1.6; font-size: 17px; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.12; letter-spacing: -0.015em; color: var(--brand-text); }
h4 { font-family: var(--sans); font-weight: 700; }
h1 { font-size: clamp(36px, 5.2vw, 60px); }
h2 { font-size: clamp(30px, 3.8vw, 48px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
p { max-width: 65ch; }
h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--brand-primary); position: relative; white-space: nowrap; }
.squiggle-under { position: relative; }
.squiggle-under svg.squiggle { position: absolute; left: 0; right: 0; bottom: -0.18em; width: 100%; height: 0.32em; overflow: visible; }
.squiggle-under svg.squiggle path { stroke: var(--brand-accent); stroke-width: 6; fill: none; stroke-linecap: round; }

/* ---------- Motion library ---------- */
[data-animate] { opacity: 0; transform: translateY(26px); transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out); }
[data-animate="left"] { transform: translateX(-30px); }
[data-animate="right"] { transform: translateX(30px); }
[data-animate="pop"] { transform: scale(0.85); transition: opacity 0.28s var(--ease-out), transform 0.28s var(--bounce); }
[data-animate].is-visible { opacity: 1; transform: none; }
[data-animate][data-delay="1"] { transition-delay: 0.04s; }
[data-animate][data-delay="2"] { transition-delay: 0.08s; }
[data-animate][data-delay="3"] { transition-delay: 0.12s; }
[data-animate][data-delay="4"] { transition-delay: 0.16s; }
[data-animate][data-delay="5"] { transition-delay: 0.2s; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(var(--tilt, 0deg)); } 50% { transform: translateY(-14px) rotate(var(--tilt, 0deg)); } }
@keyframes sway { 0%,100% { transform: rotate(-4deg); } 50% { transform: rotate(5deg); } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes twinkle { 0%,100% { opacity: 0.9; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.72); } }
@keyframes wiggle { 0%,100% { transform: rotate(-2deg); } 25% { transform: rotate(2.5deg); } 75% { transform: rotate(-2.5deg); } }
@keyframes drift { 0% { transform: translateX(0) translateY(0) rotate(8deg); } 50% { transform: translateX(22px) translateY(-16px) rotate(14deg); } 100% { transform: translateX(0) translateY(0) rotate(8deg); } }
.float-el { animation: floaty 3s ease-in-out infinite; }
.float-el.slow { animation-duration: 4.25s; }
.float-el.fast { animation-duration: 2.25s; }
.doodle { position: absolute; pointer-events: none; z-index: 0; }
.wiggle-hover:hover { animation: wiggle 0.25s ease-in-out; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  [data-animate] { opacity: 1; transform: none; }
}

/* ---------- Layout ---------- */
section { padding: 88px 64px; position: relative; }
.container { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
@media (min-width: 1441px) { section { padding: 96px 100px; } }
@media (max-width: 1024px) { section { padding: 56px 32px; } }
@media (max-width: 720px)  { section { padding: 40px 18px; } }
.section-head { text-align: center; max-width: 800px; margin: 0 auto 56px; position: relative; }
.section-head p { margin: 14px auto 0; color: color-mix(in srgb, var(--brand-text) 70%, transparent); font-size: 18px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 18px; background: #fff; color: var(--brand-primary); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; border-radius: var(--r-pill); margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.eyebrow svg { width: 14px; height: 14px; }

/* Flowing section dividers */
.flow-divider { display: block; width: 100%; height: 70px; margin-bottom: -1px; }
.flow-divider path { transition: d 0.4s; }
@media (max-width: 720px) { .flow-divider { height: 42px; } }

/* ---------- Header ---------- */
.sticky-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,254,0.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 12px 40px; transition: box-shadow 0.3s; }
.sticky-header.nav-scrolled { box-shadow: 0 6px 24px rgba(29,171,196,0.12); }
body { padding-top: 72px; }
.header-row { display: flex; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; gap: 24px; }
.header-logo img { height: 40px; max-width: 160px; object-fit: contain; }
.header-nav { display: flex; gap: 30px; }
.header-nav a { font-size: 14px; font-weight: 500; position: relative; padding-bottom: 3px; }
.header-nav a::after { content: ''; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--brand-accent); border-radius: 3px; transition: width 0.3s var(--ease-out); }
.header-nav a:hover::after { width: 100%; }
.header-nav a:hover { color: var(--brand-primary); }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.header-phone:hover { color: var(--brand-primary); }
.header-phone svg { width: 18px; height: 18px; }
.wa-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--wa-green); color: #fff; padding: 12px 22px; border-radius: var(--r-pill); font-weight: 700; font-size: 14px; transition: all 0.25s var(--ease-out); box-shadow: 0 6px 20px rgba(37,211,102,0.28); }
.wa-btn:hover { background: var(--wa-green-dark); transform: translateY(-3px) rotate(-1deg); box-shadow: 0 12px 30px rgba(37,211,102,0.42); }
.wa-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.wa-btn.large { padding: 18px 34px; font-size: 16px; min-height: 56px; }
.wa-btn.xl { padding: 20px 40px; font-size: 17px; min-height: 60px; }
@media (max-width: 980px) { .header-nav { display: none; } }
@media (max-width: 720px) {
  .sticky-header { padding: 20px 26px; }
  body { padding-top: 56px; }
  .header-logo img { height: 32px; }
  .header-phone span { display: none; }
  .wa-btn { padding: 10px 16px; font-size: 13px; }
  .wa-btn.header-cta span { display: none; }
}

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--teal-wash) 0%, #fff 100%); padding-top: 64px; padding-bottom: 20px; overflow: hidden; }
.hero-container { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; background: var(--brand-primary); padding: 16px 34px; font-size: 18px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: #fff; margin-bottom: 26px; rotate: -1.4deg; clip-path: polygon(1.5% 8%, 4% 0, 97% 2%, 99% 18%, 96.5% 38%, 100% 58%, 97.5% 78%, 99% 96%, 50% 100%, 3.5% 97%, 0.5% 76%, 3% 52%, 0 30%); }
.hero-eyebrow svg { width: 22px; height: 22px; animation: bob 2.5s ease-in-out infinite; flex-shrink: 0; }
@media (max-width: 720px) { .hero-eyebrow { font-size: 13.5px; padding: 12px 22px; } }
.hero h1 { margin-bottom: 22px; }
.hero-sub { font-size: clamp(16px, 1.5vw, 19px); color: color-mix(in srgb, var(--brand-text) 76%, transparent); line-height: 1.65; margin-bottom: 30px; max-width: 52ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 26px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.sticker-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; background: #fff; padding: 9px 16px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); transition: transform 0.25s var(--bounce); }
.sticker-chip:nth-child(1) { transform: rotate(-1.5deg); }
.sticker-chip:nth-child(2) { transform: rotate(1deg); }
.sticker-chip:nth-child(3) { transform: rotate(-0.8deg); }
.sticker-chip:hover { transform: rotate(0deg) scale(1.06); }
.sticker-chip svg { width: 17px; height: 17px; color: var(--brand-primary); }
.hero-visual { position: relative; z-index: 1; }
.hero-visual .img-placeholder { border-radius: 54% 46% 52% 48% / 48% 54% 46% 52%; min-height: 480px; }
.hero-rainbow { position: absolute; top: -46px; right: -30px; width: 210px; z-index: 0; opacity: 0.9; }
.hero-float-card { position: absolute; background: #fff; padding: 14px 20px; border-radius: var(--r-md); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; z-index: 2; transition: transform 0.3s var(--bounce); }
.hero-float-card:hover { transform: scale(1.07) rotate(-1deg); }
.hero-float-card.top-left { top: 26px; left: -26px; animation: bob 2.5s ease-in-out infinite; }
.hero-float-card.bot-right { bottom: 34px; right: -22px; animation: bob 3s ease-in-out 0.4s infinite; }
.hero-float-card .num { font-family: var(--display); font-size: 28px; font-weight: 600; color: var(--brand-primary); line-height: 1; }
.hero-float-card .lbl { font-size: 11px; color: color-mix(in srgb, var(--brand-text) 62%, transparent); text-transform: uppercase; letter-spacing: 0.1em; }
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual .img-placeholder { min-height: 340px; }
  .hero-float-card.top-left { left: 4px; }
  .hero-float-card.bot-right { right: 4px; }
  .hero-rainbow { width: 130px; top: -28px; right: 0; }
}

/* First-words ticker */
.word-ticker { background: var(--brand-primary); color: #fff; padding: 14px 0; overflow: hidden; position: relative; }
.word-ticker .track { display: flex; gap: 48px; width: max-content; animation: tickerMove 32s linear infinite; }
.word-ticker:hover .track { animation-play-state: paused; }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.word-ticker .word { display: inline-flex; align-items: center; gap: 48px; font-family: var(--display); font-style: italic; font-size: 20px; white-space: nowrap; }
.word-ticker .word svg { width: 14px; height: 14px; color: var(--brand-accent); flex-shrink: 0; }

/* ---------- CTA strips ---------- */
.cta-strip { padding: 30px 64px; display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-strip.teal { background: var(--brand-primary); color: #fff; }
.cta-strip.cream { background: var(--yellow-wash); }
.cta-strip.wash { background: var(--teal-wash); }
.cta-strip-text { font-family: var(--display); font-style: italic; font-size: clamp(18px, 2vw, 24px); font-weight: 500; line-height: 1.3; position: relative; z-index: 1; }
.cta-strip .doodle { opacity: 0.5; }
@media (max-width: 1024px) { .cta-strip { padding: 24px 32px; } }
@media (max-width: 720px)  { .cta-strip { padding: 20px 16px; gap: 14px; } .cta-strip-text { font-size: 17px; text-align: center; } }

/* ---------- Problem: chat thread ---------- */
.problem { background: var(--cream); overflow: hidden; }
.problem-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.problem-visual { position: relative; }
.problem-visual .img-placeholder { min-height: 440px; border-radius: 47% 53% 50% 50% / 52% 46% 54% 48%; }
.worry-wall { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 22px; z-index: 1; }
.worry-note { position: relative; padding: 28px 22px 20px; border-radius: 3px 16px 12px 8px; box-shadow: 0 10px 24px rgba(45,46,40,0.11); font-family: var(--display); font-style: italic; font-size: 17px; line-height: 1.5; color: color-mix(in srgb, var(--brand-text) 90%, transparent); transition: transform 0.3s var(--bounce), rotate 0.3s var(--bounce), box-shadow 0.3s; }
.worry-note::before { content: ''; position: absolute; top: -9px; left: 50%; margin-left: -8px; width: 17px; height: 17px; border-radius: 50%; box-shadow: inset -2px -3px 4px rgba(0,0,0,0.25), 0 3px 5px rgba(0,0,0,0.2); }
.worry-note.w1 { background: #FFF9C9; rotate: -2.4deg; }
.worry-note.w2 { background: #fff; rotate: 1.9deg; margin-top: 16px; }
.worry-note.w3 { background: var(--teal-wash); rotate: 2.1deg; }
.worry-note.w4 { background: #FDEAE3; rotate: -1.7deg; margin-top: 12px; }
.worry-note.w1::before { background: var(--coral); }
.worry-note.w2::before { background: var(--brand-primary); }
.worry-note.w3::before { background: var(--brand-accent); }
.worry-note.w4::before { background: var(--brand-primary); }
.worry-note:hover { rotate: 0deg; transform: scale(1.05) translateY(-4px); box-shadow: 0 18px 40px rgba(45,46,40,0.17); z-index: 2; }
.worry-sign { font-family: var(--sans); font-style: normal; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: color-mix(in srgb, var(--brand-text) 45%, transparent); margin-top: 12px; }
.worry-note .scribble { position: absolute; bottom: 12px; right: 12px; width: 18px; height: 18px; opacity: 0.55; }
.worry-stamp { grid-column: 1 / -1; background: var(--brand-primary); color: #fff; border-radius: 24px; padding: 26px 30px; font-family: var(--display); font-style: italic; font-size: 19px; line-height: 1.45; rotate: 0deg; box-shadow: var(--shadow-md); position: relative; display: flex; gap: 18px; align-items: center; margin-top: 8px; }
.worry-stamp::after { content: ''; position: absolute; inset: 7px; border: 2px dashed rgba(255,255,255,0.4); border-radius: 17px; pointer-events: none; }
.worry-stamp svg { width: 46px; height: 46px; flex-shrink: 0; }
.worry-stamp[data-animate] { opacity: 0; transform: scale(1.5); rotate: -9deg; transition: opacity 0.2s var(--ease-out), transform 0.3s var(--bounce), rotate 0.3s var(--bounce); }
.worry-stamp[data-animate].is-visible { opacity: 1; transform: none; rotate: 0deg; }
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; gap: 40px; } .problem-visual .img-placeholder { min-height: 320px; } }
@media (max-width: 480px) {
  .worry-wall { grid-template-columns: 1fr; gap: 20px; }
  .worry-note.w2, .worry-note.w4 { margin-top: 0; }
  .worry-stamp { flex-direction: column; text-align: center; padding: 24px 22px; }
}

/* ---------- Solution: notebook cards + aurora ---------- */
.solution { background: #fff; overflow: hidden; }
.aurora { position: absolute; inset: -12%; pointer-events: none; z-index: 0; animation: hueSpin 2.2s linear infinite; }
.aurora i { position: absolute; border-radius: 50%; filter: blur(64px); }
.aurora .a1 { width: 46vw; height: 32vw; background: #ff9a9e; opacity: 0.5; top: -4%; left: -8%; animation: aur1 1.6s ease-in-out infinite; }
.aurora .a2 { width: 40vw; height: 30vw; background: #ffd166; opacity: 0.52; top: 12%; right: -6%; animation: aur2 1.4s ease-in-out infinite; }
.aurora .a3 { width: 44vw; height: 30vw; background: #8ee6a2; opacity: 0.48; bottom: -6%; left: 6%; animation: aur1 1.9s ease-in-out 0.25s infinite; }
.aurora .a4 { width: 48vw; height: 34vw; background: #7fd8f0; opacity: 0.5; bottom: 6%; right: 8%; animation: aur2 1.75s ease-in-out 0.12s infinite; }
.aurora .a5 { width: 36vw; height: 26vw; background: #c6a4f8; opacity: 0.48; top: 36%; left: 30%; animation: aur1 1.5s ease-in-out 0.2s infinite; }
.aurora-veil { position: absolute; inset: 0; background: rgba(255,255,255,0.52); }
@keyframes aur1 { 0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); } 33% { transform: translate(16vw, 7vh) scale(1.25) rotate(18deg); } 66% { transform: translate(-6vw, 13vh) scale(0.9) rotate(-14deg); } }
@keyframes aur2 { 0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); } 33% { transform: translate(-15vw, 9vh) scale(1.2) rotate(-16deg); } 66% { transform: translate(8vw, -9vh) scale(0.95) rotate(12deg); } }
@keyframes hueSpin { to { filter: hue-rotate(360deg); } }
.solution-intro-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; margin-bottom: 76px; }
.solution-intro-visual { position: relative; }
.solution-intro-visual .img-placeholder { min-height: 400px; border-radius: var(--r-xl) 60px var(--r-xl) 60px; }
.solution-lede { margin-top: 20px; font-size: 19px; line-height: 1.65; color: color-mix(in srgb, var(--brand-text) 76%, transparent); max-width: 46ch; }
.solution-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
.notebook-card { position: relative; background: #fff; background-image: repeating-linear-gradient(180deg, transparent 0 30px, var(--brand-primary-10) 30px 31px); padding: 44px 30px 32px; border-radius: 6px 22px 22px 22px; box-shadow: var(--shadow-md); transition: transform 0.35s var(--bounce), box-shadow 0.35s; }
.notebook-card:nth-child(1) { transform: rotate(-1.4deg); }
.notebook-card:nth-child(2) { transform: rotate(0.9deg); margin-top: 18px; }
.notebook-card:nth-child(3) { transform: rotate(-0.6deg); }
.notebook-card:hover { transform: rotate(0deg) translateY(-8px); box-shadow: var(--shadow-lg); z-index: 2; }
.washi { position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-3deg); width: 110px; height: 28px; background: color-mix(in srgb, var(--brand-accent) 75%, #fff); opacity: 0.85; border-radius: 3px; box-shadow: 0 2px 6px rgba(0,0,0,0.08); }
.notebook-card:nth-child(2) .washi { background: color-mix(in srgb, var(--brand-primary) 45%, #fff); transform: translateX(-50%) rotate(2deg); }
.notebook-card:nth-child(3) .washi { background: color-mix(in srgb, var(--coral) 62%, #fff); transform: translateX(-50%) rotate(-2deg); }
.sol-illo { width: 92px; height: 92px; margin: 0 auto 20px; color: var(--brand-primary); }
.notebook-card h3 { text-align: center; margin-bottom: 12px; }
.notebook-card p { font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--brand-text) 78%, transparent); text-align: center; margin: 0 auto 14px; }
.notebook-card .why { display: block; margin-top: 14px; padding-top: 14px; border-top: 2px dashed color-mix(in srgb, var(--brand-primary) 28%, transparent); font-size: 13px; font-weight: 600; color: var(--brand-dark); text-align: center; }
@media (max-width: 900px) {
  .solution-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .solution-cards { grid-template-columns: 1fr; gap: 34px; }
  .notebook-card:nth-child(2) { margin-top: 0; }
  .solution-intro-visual .img-placeholder { min-height: 300px; }
}

/* ---------- What we help with ---------- */
.helps { background: var(--yellow-wash); overflow: hidden; }
.helps-rows { max-width: 1120px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.helps-head-row, .helps-row { display: grid; grid-template-columns: 1fr 96px 1fr; gap: 20px; align-items: center; }
.helps-col-title { font-family: var(--display); font-style: italic; font-size: 22px; text-align: center; margin-bottom: 6px; }
.say-bubble { display: flex; align-items: center; gap: 12px; background: #fff; padding: 15px 36px 15px 22px; font-size: 15px; font-weight: 500; clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%); filter: drop-shadow(0 5px 9px rgba(45,46,40,0.13)); transition: transform 0.25s var(--bounce), rotate 0.25s var(--bounce), filter 0.25s; }
.say-bubble:hover { transform: scale(1.04); filter: drop-shadow(0 10px 16px rgba(45,46,40,0.2)); }
.say-bubble svg { width: 20px; height: 20px; color: var(--coral); flex-shrink: 0; }
.win-chip { display: flex; align-items: center; gap: 12px; background: var(--brand-primary); color: #fff; padding: 15px 30px 15px 34px; font-size: 15px; font-weight: 600; clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 50%, 100% 100%, 0 100%, 15px 50%); filter: drop-shadow(0 5px 9px rgba(45,46,40,0.13)); transition: transform 0.25s var(--bounce), rotate 0.25s var(--bounce), filter 0.25s; }
.helps-row:nth-child(odd) .win-chip { background: #fff; color: var(--brand-text); }
.win-chip:hover { transform: scale(1.04); filter: drop-shadow(0 10px 16px rgba(45,46,40,0.2)); }
.win-chip svg { width: 20px; height: 20px; color: var(--brand-accent); flex-shrink: 0; }
.helps-row:nth-child(odd) .win-chip svg { color: var(--brand-primary); }
.row-flow { display: flex; align-items: center; justify-content: center; color: var(--brand-primary); }
.row-flow svg { width: 88px; height: 26px; overflow: visible; }
.flow-line { stroke: currentColor; stroke-width: 3; fill: none; stroke-linecap: round; stroke-dasharray: 6 8; animation: flowDash 0.9s linear infinite; }
.flow-head { stroke: currentColor; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.helps-row:hover .row-flow { color: var(--coral); }
.helps-row:hover .flow-line { animation-duration: 0.35s; }
@keyframes flowDash { to { stroke-dashoffset: -28; } }
.helps-methods { max-width: 900px; margin: 56px auto 0; text-align: center; }
.helps-methods h3 { font-size: 22px; margin-bottom: 6px; }
.helps-methods > p { margin: 0 auto; font-size: 15px; color: color-mix(in srgb, var(--brand-text) 70%, transparent); }
.tool-rack { position: relative; margin-top: 30px; padding-top: 16px; }
.tool-line { position: absolute; top: 0; left: -3%; width: 106%; height: 46px; color: var(--brand-primary); opacity: 0.5; pointer-events: none; }
.tool-line path { stroke: currentColor; stroke-width: 2.5; fill: none; stroke-linecap: round; }
.tool-tags { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 20px 16px; }
.tool-tag { --sw: 1.6deg; position: relative; background: #fff; border-radius: 3px 12px 12px 12px; padding: 14px 18px 12px; box-shadow: 0 8px 20px rgba(45,46,40,0.13); font-size: 13.5px; font-weight: 700; display: inline-flex; align-items: center; gap: 9px; transform-origin: top center; animation: swing 2.4s ease-in-out infinite; }
.tool-tag::before { content: ''; position: absolute; top: -12px; left: 50%; margin-left: -7px; width: 14px; height: 19px; border-radius: 4px; background: var(--brand-accent); box-shadow: 0 2px 4px rgba(0,0,0,0.16); rotate: -3deg; }
.tool-tag:nth-child(2)::before { background: var(--coral); rotate: 4deg; }
.tool-tag:nth-child(3)::before { background: var(--brand-primary); rotate: -2deg; }
.tool-tag:nth-child(4)::before { background: var(--coral); rotate: 3deg; }
.tool-tag:nth-child(5)::before { background: var(--brand-primary); rotate: -4deg; }
.tool-tag svg { width: 17px; height: 17px; color: var(--brand-primary); flex-shrink: 0; }
.tool-tag:nth-child(1) { margin-top: 21px; --sw: 1.4deg; animation-duration: 2.6s; }
.tool-tag:nth-child(2) { margin-top: 24px; animation-delay: 0.4s; }
.tool-tag:nth-child(3) { margin-top: 6px; animation-delay: 0.8s; animation-duration: 2.2s; }
.tool-tag:nth-child(4) { margin-top: 26px; animation-delay: 0.2s; }
.tool-tag:nth-child(5) { margin-top: 12px; animation-delay: 0.6s; animation-duration: 2.8s; }
.tool-tag:hover { animation-duration: 0.7s; }
@keyframes swing { 0%, 100% { transform: rotate(calc(-1 * var(--sw))); } 50% { transform: rotate(var(--sw)); } }
@media (max-width: 900px) {
  .helps-head-row { display: none; }
  .helps-rows { gap: 18px; }
  .helps-row {
    grid-template-columns: 1fr;
    gap: 0;
    background: #fff;
    border-radius: var(--r-md);
    padding: 18px 16px 20px;
    box-shadow: 0 6px 18px rgba(45,46,40,0.08);
  }
  .say-bubble {
    clip-path: none;
    border-radius: var(--r-sm);
    filter: none;
    box-shadow: none;
    background: var(--yellow-wash);
  }
  .row-flow { margin: 10px 0; }
  .row-flow svg { width: 24px; height: 24px; transform: rotate(90deg); }
  .row-flow::after {
    content: 'becomes';
    display: block;
    text-align: center;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--brand-text) 45%, transparent);
    margin-top: 4px;
  }
  /* Force a single consistent outcome color on mobile, overriding the desktop alternation */
  .win-chip,
  .helps-row:nth-child(odd) .win-chip {
    clip-path: none;
    border-radius: var(--r-sm);
    filter: none;
    box-shadow: none;
    background: var(--brand-primary);
    color: #fff;
  }
  .win-chip svg,
  .helps-row:nth-child(odd) .win-chip svg {
    color: var(--brand-accent);
  }
}
@media (max-width: 720px) {
  .tool-line { display: none; }
  .tool-tag { margin-top: 8px !important; }
}

/* ---------- Process: hopscotch path ---------- */
.process { background: var(--teal-wash); overflow: hidden; }
.process-path-wrap { position: relative; padding: 30px 0 10px; }
.process-path-svg { position: absolute; top: 46px; left: 3%; width: 94%; height: 190px; z-index: 0; pointer-events: none; }
.process-path-svg path { stroke: var(--brand-primary); stroke-width: 3.5; fill: none; stroke-linecap: round; stroke-dasharray: 9 12; opacity: 0.55; }
.process-path-wrap.is-visible .process-path-svg path { animation: dashMove 13s linear infinite; }
@keyframes dashMove { to { stroke-dashoffset: -420; } }
.process-steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.proc-step { text-align: center; padding: 0 6px; }
.proc-step:nth-child(odd) { margin-top: 46px; }
.proc-scene { width: 112px; height: 96px; margin: 0 auto 16px; position: relative; display: flex; align-items: flex-end; justify-content: center; transition: transform 0.3s var(--bounce); }
.proc-step:hover .proc-scene { transform: scale(1.1); }
.proc-step:hover .proc-scene svg.pose { animation: wiggle 0.25s ease-in-out; transform-origin: bottom center; }
.proc-scene svg.pose { color: var(--brand-primary); flex-shrink: 0; }
.proc-scene::after { content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); width: 62%; height: 9px; border-radius: 50%; background: color-mix(in srgb, var(--brand-primary) 14%, transparent); }
.proc-num { position: absolute; top: -6px; right: 6px; width: 27px; height: 27px; border-radius: 50%; background: var(--brand-accent); color: var(--brand-text); font-family: var(--display); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); z-index: 1; }
.proc-step h4 { font-size: 17px; margin-bottom: 8px; }
.proc-step p { font-size: 14px; line-height: 1.55; color: color-mix(in srgb, var(--brand-text) 72%, transparent); margin: 0 auto; }
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr; gap: 26px; }
  .process-path-svg { display: none; }
  .proc-step, .proc-step:nth-child(odd) { margin-top: 0; display: grid; grid-template-columns: 92px 1fr; gap: 6px 18px; text-align: left; align-items: center; }
  .proc-scene { width: 92px; height: 78px; margin: 0; grid-row: 1 / 3; }
  .proc-scene svg.pose { max-height: 66px; width: auto !important; }
  .proc-step h4 { grid-column: 2; margin: 0; align-self: end; }
  .proc-step p { grid-column: 2; margin: 0; align-self: start; }
}

/* ---------- Benefits: mindmap ---------- */
.benefits { background: #fff; overflow: hidden; }
.mindmap { position: relative; max-width: 1150px; margin: 0 auto; height: 640px; }
.mindmap-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.mindmap-lines path { stroke: var(--brand-primary); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-dasharray: 6 9; opacity: 0.45; }
.mm-center { position: absolute; left: calc(50% - 125px); top: calc(50% - 125px); width: 250px; height: 250px; border-radius: 50%; background: var(--brand-primary); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 26px; box-shadow: var(--shadow-lg); z-index: 2; }
.mm-center .mm-kid { width: 74px; height: 74px; margin-bottom: 8px; }
.mm-center h3 { color: #fff; font-size: 21px; line-height: 1.2; }
.mm-node { position: absolute; width: 300px; background: var(--cream); padding: 20px 22px; border-radius: var(--r-md); box-shadow: var(--shadow-sm); z-index: 1; transition: transform 0.3s var(--bounce), box-shadow 0.3s; }
.mm-node:hover { transform: scale(1.06) rotate(-1deg); box-shadow: var(--shadow-sm); z-index: 3; }
.mm-node::before, .mm-node::after, .mm-center::before, .mm-center::after { content: ''; position: absolute; left: 50%; top: 50%; width: 6px; height: 6px; margin: -3px 0 0 -3px; border-radius: 50%; opacity: 0; pointer-events: none; }
.mm-node:hover::before, .mm-center:hover::before { animation: fw1 0.7s ease-out; }
.mm-node:hover::after, .mm-center:hover::after { animation: fw2 0.85s ease-out 0.1s; }
.mm-center:hover { transform: scale(1.03); }
@keyframes fw1 {
  0% { opacity: 1; box-shadow: 0 0 0 0 #e6db55, 0 0 0 0 #f2917a, 0 0 0 0 #1dabc4, 0 0 0 0 #e6db55, 0 0 0 0 #1dabc4, 0 0 0 0 #f2917a; }
  60% { opacity: 1; }
  100% { opacity: 0; box-shadow: -54px -40px 0 -1px #e6db55, 50px -34px 0 -1px #f2917a, 62px 22px 0 -1px #1dabc4, -56px 28px 0 -1px #e6db55, 10px -58px 0 -1px #1dabc4, -20px 54px 0 -1px #f2917a; }
}
@keyframes fw2 {
  0% { opacity: 1; box-shadow: 0 0 0 0 #f2917a, 0 0 0 0 #1dabc4, 0 0 0 0 #e6db55, 0 0 0 0 #f2917a, 0 0 0 0 #e6db55, 0 0 0 0 #1dabc4; }
  60% { opacity: 1; }
  100% { opacity: 0; box-shadow: 40px -50px 0 0 #f2917a, -44px -18px 0 0 #1dabc4, 24px 52px 0 0 #e6db55, -34px 46px 0 0 #f2917a, 58px 6px 0 0 #e6db55, -60px -32px 0 0 #1dabc4; }
}
.mm-node .mm-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.mm-node .mm-icon { width: 40px; height: 40px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; color: var(--brand-primary); flex-shrink: 0; }
.mm-node .mm-icon svg { width: 22px; height: 22px; }
.mm-node h4 { font-size: 15.5px; line-height: 1.25; }
.mm-node p { font-size: 13.5px; line-height: 1.5; color: color-mix(in srgb, var(--brand-text) 72%, transparent); margin: 0; }
.mm-node.n1 { left: 2%; top: 6%; transform: rotate(-1.6deg); background: var(--yellow-wash); }
.mm-node.n2 { right: 2%; top: 4%; transform: rotate(1.4deg); }
.mm-node.n3 { left: 0; top: 42%; transform: rotate(1deg); }
.mm-node.n4 { right: 0; top: 40%; transform: rotate(-1.2deg); background: var(--teal-wash); }
.mm-node.n5 { left: 6%; bottom: 4%; transform: rotate(1.8deg); background: var(--teal-wash); }
.mm-node.n6 { right: 6%; bottom: 6%; transform: rotate(-1.4deg); background: var(--yellow-wash); }
@media (max-width: 980px) {
  .mindmap { height: auto; display: flex; flex-direction: column; gap: 18px; padding-left: 26px; }
  .mindmap-lines { display: none; }
  .mindmap::before { content: ''; position: absolute; left: 8px; top: 20px; bottom: 20px; width: 3px; border-radius: 3px; background: repeating-linear-gradient(180deg, var(--brand-primary) 0 8px, transparent 8px 17px); opacity: 0.4; }
  .mm-center { position: static; transform: none; width: 100%; height: auto; border-radius: var(--r-lg); flex-direction: row; gap: 16px; text-align: left; padding: 22px 24px; order: -1; }
  .mm-center .mm-kid { width: 56px; height: 56px; margin: 0; flex-shrink: 0; }
  .mm-node { position: static; width: 100%; transform: none !important; }
}

/* ---------- Gallery: fridge door ---------- */
.gallery { background: var(--cream); overflow: hidden; }
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 26px; max-width: 1200px; margin: 0 auto; }
.g-tile { position: relative; background: #fff; padding: 12px 12px 14px; border-radius: 4px; box-shadow: 0 8px 24px rgba(45,46,40,0.12); transition: transform 0.4s var(--bounce), box-shadow 0.4s, z-index 0s; }
.g-tile:hover { transform: scale(1.05) rotate(0deg) !important; box-shadow: 0 20px 48px rgba(45,46,40,0.2); z-index: 5; }
.g-tile .img-placeholder { border-radius: 2px; height: 100%; min-height: 100%; }
.g-tape { position: absolute; top: -12px; left: 50%; transform: translateX(-50%) rotate(-4deg); width: 92px; height: 26px; background: color-mix(in srgb, var(--brand-accent) 62%, #fff); opacity: 0.9; border-radius: 2px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); z-index: 2; }
.g-tile:nth-child(even) .g-tape { transform: translateX(-50%) rotate(3deg); background: color-mix(in srgb, var(--brand-primary) 38%, #fff); }
.g-tile { grid-column: span 2; }
.g-tile-1 { transform: rotate(-1.6deg); }
.g-tile-2 { transform: rotate(1.2deg); margin-top: 14px; }
.g-tile-3 { transform: rotate(-1deg); }
.g-tile-4 { transform: rotate(0.8deg); }
.g-tile-5 { transform: rotate(-0.7deg); margin-top: 12px; }
.g-tile-6 { transform: rotate(1.6deg); }
.g-tile-1 .img-placeholder, .g-tile-2 .img-placeholder, .g-tile-3 .img-placeholder { min-height: 270px; }
.g-tile-4 .img-placeholder, .g-tile-5 .img-placeholder, .g-tile-6 .img-placeholder { min-height: 235px; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .g-tile { grid-column: span 1 !important; grid-row: span 1 !important; }
  .g-tile-6 { grid-column-start: auto !important; }
  .g-tile .img-placeholder { min-height: 190px !important; }
}
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Proof ---------- */
.proof { background: #fff; overflow: hidden; }
.wa-chat { max-width: 940px; margin: 0 auto 56px; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); background: #f2ece3; }
.wa-chat-header { background: var(--brand-dark); color: #fff; padding: 14px 20px; display: flex; align-items: center; gap: 14px; }
.wa-chat-avatar { width: 44px; height: 44px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 5px; flex-shrink: 0; }
.wa-chat-title { font-weight: 700; font-size: 16px; line-height: 1.2; }
.wa-chat-sub { font-size: 12px; opacity: 0.82; margin-top: 2px; }
.wa-body { padding: 22px 18px 12px; display: flex; flex-direction: column; background-image: radial-gradient(color-mix(in srgb, var(--brand-primary) 8%, transparent) 1.5px, transparent 1.5px); background-size: 24px 24px; }
.wa-day { align-self: center; background: #fff; border-radius: 8px; padding: 5px 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: color-mix(in srgb, var(--brand-text) 58%, transparent); box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.wa-msg { position: relative; background: #fff; border-radius: 14px; border-top-left-radius: 4px; padding: 11px 16px 22px; max-width: 76%; align-self: flex-start; margin-bottom: 14px; box-shadow: 0 1px 3px rgba(45,46,40,0.14); font-size: 15.5px; line-height: 1.55; transition: transform 0.25s var(--bounce), opacity 0.45s var(--ease-out); }
.wa-msg.out { align-self: flex-end; background: #d9fdd3; border-top-left-radius: 14px; border-top-right-radius: 4px; }
.wa-msg:hover { transform: scale(1.015) rotate(-0.3deg); }
.wa-prep .wa-msg { opacity: 0; transform: translateY(16px) scale(0.95); }
.wa-msg.shown { opacity: 1 !important; transform: none !important; }
.wa-sender { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.wa-sender small { font-weight: 500; opacity: 0.6; font-size: 11px; margin-left: 6px; }
.wa-sender.c1 { color: #b85c9e; } .wa-sender.c2 { color: #c2762a; } .wa-sender.c3 { color: #4a7dbd; } .wa-sender.c4 { color: var(--brand-dark); }
.wa-meta { position: absolute; right: 11px; bottom: 6px; display: flex; align-items: center; gap: 4px; font-size: 10.5px; color: color-mix(in srgb, var(--brand-text) 45%, transparent); }
.wa-meta svg { width: 15px; height: 15px; color: #53bdeb; }
.wa-react { position: absolute; left: -9px; bottom: -11px; width: 30px; height: 30px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; color: #cfcfcf; transition: transform 0.25s var(--bounce), color 0.25s; z-index: 1; }
.wa-msg.out .wa-react { left: auto; right: -9px; }
.wa-react svg { width: 15px; height: 15px; }
.wa-react:hover { transform: scale(1.25); color: var(--coral); }
.wa-react.reacted { color: var(--coral); animation: heartPop 0.2s var(--bounce); }
@keyframes heartPop { 0% { transform: scale(0.5); } 60% { transform: scale(1.4); } 100% { transform: scale(1); } }
.wa-typing { display: none; align-self: flex-start; background: #fff; border-radius: 14px; border-top-left-radius: 4px; padding: 15px 17px; margin-bottom: 14px; box-shadow: 0 1px 3px rgba(45,46,40,0.14); }
.wa-typing.on { display: flex; gap: 5px; }
.wa-typing span { width: 7px; height: 7px; border-radius: 50%; background: #b9b9b9; animation: typBounce 0.55s ease-in-out infinite; }
.wa-typing span:nth-child(2) { animation-delay: 0.15s; } .wa-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typBounce { 0%, 60%, 100% { transform: none; opacity: 0.5; } 30% { transform: translateY(-5px); opacity: 1; } }
.wa-input { display: flex; align-items: center; gap: 10px; padding: 10px 14px 12px; background: #f7f4ef; }
.wa-input-field { flex: 1; background: #fff; border-radius: var(--r-pill); padding: 13px 20px; font-size: 14px; color: color-mix(in srgb, var(--brand-text) 55%, transparent); box-shadow: var(--shadow-sm); }
.wa-send { width: 46px; height: 46px; border-radius: 50%; background: var(--wa-green); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 6px 16px rgba(37,211,102,0.35); transition: transform 0.25s var(--bounce); }
.wa-send svg { width: 20px; height: 20px; }
.wa-input:hover .wa-send { transform: scale(1.12) rotate(-10deg); }
@media (max-width: 720px) { .wa-msg { max-width: 92%; } }

/* Block-tower stats */
.tower-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; align-items: end; padding: 44px 48px 36px; background: var(--teal-wash); border-radius: var(--r-xl) var(--r-xl) var(--r-xl) 12px; margin-bottom: 44px; position: relative; overflow: hidden; }
.tower { text-align: center; position: relative; z-index: 1; }
.tower-blocks { display: flex; flex-direction: column-reverse; align-items: center; gap: 5px; margin-bottom: 14px; min-height: 150px; justify-content: flex-start; }
.tblock { width: 58px; height: 30px; border-radius: 7px; box-shadow: 0 3px 8px rgba(29,171,196,0.18); opacity: 0; transform: translateY(-24px) scale(0.7); transition: opacity 0.2s var(--ease-out), transform 0.25s var(--bounce); display: flex; align-items: center; justify-content: center; color: #fff; }
.tblock svg { width: 15px; height: 15px; opacity: 0.9; }
.tblock:nth-child(odd) { background: var(--brand-primary); transform: translateY(-24px) scale(0.7) rotate(-3deg); }
.tblock:nth-child(even) { background: var(--brand-accent); color: var(--brand-text); transform: translateY(-24px) scale(0.7) rotate(3deg); }
.tblock:nth-child(3n) { background: var(--coral); color: #fff; }
.tower-row.is-visible .tblock { opacity: 1; transform: translateY(0) scale(1) rotate(var(--tw, -2deg)); }
.tower-row.is-visible .tblock:nth-child(even) { --tw: 2.5deg; }
.tower-row.is-visible .tblock:nth-child(1) { transition-delay: 0.03s; }
.tower-row.is-visible .tblock:nth-child(2) { transition-delay: 0.09s; }
.tower-row.is-visible .tblock:nth-child(3) { transition-delay: 0.16s; }
.tower-row.is-visible .tblock:nth-child(4) { transition-delay: 0.22s; }
.tower-row.is-visible .tblock:nth-child(5) { transition-delay: 0.29s; }
.tower-num { font-family: var(--display); font-size: clamp(34px, 4vw, 52px); font-weight: 600; color: var(--brand-primary); line-height: 1; margin-bottom: 6px; }
.tower-lbl { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: color-mix(in srgb, var(--brand-text) 66%, transparent); }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.trust-badge { display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; background: #fff; border-radius: var(--r-pill); font-size: 13px; font-weight: 700; box-shadow: var(--shadow-sm); transition: transform 0.25s var(--bounce); }
.trust-badge:hover { transform: translateY(-4px) rotate(-1.2deg); }
.trust-badge svg { width: 18px; height: 18px; color: var(--brand-primary); }
@media (max-width: 900px) {
  .tower-row { grid-template-columns: repeat(2, 1fr); padding: 32px 20px; gap: 34px 16px; }
}

/* ---------- Team ---------- */
.team { background: var(--cream); overflow: hidden; }
.team-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.team-visual { position: relative; }
.team-visual .img-placeholder { min-height: 460px; border-radius: 50% 50% 48% 52% / 55% 52% 48% 45%; }
.team-lede { margin-top: 20px; font-size: 17px; line-height: 1.65; color: color-mix(in srgb, var(--brand-text) 78%, transparent); }
.badge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; max-width: 560px; }
.badge-card { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 18px; box-shadow: var(--shadow-sm); transition: transform 0.28s var(--bounce), box-shadow 0.28s; }
.badge-card:nth-child(1) { background: var(--teal-wash); transform: rotate(-1deg); }
.badge-card:nth-child(2) { background: var(--yellow-wash); transform: rotate(0.8deg); }
.badge-card:nth-child(3) { background: #fff; transform: rotate(0.6deg); }
.badge-card:nth-child(4) { background: var(--teal-wash); transform: rotate(-0.8deg); }
.badge-card:hover { transform: rotate(0deg) translateY(-4px); box-shadow: var(--shadow-md); }
.badge-icon { width: 52px; height: 52px; border-radius: 15px; background: #fff; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; color: var(--brand-primary); flex-shrink: 0; transition: transform 0.3s var(--bounce); }
.badge-icon svg { width: 32px; height: 32px; }
.badge-card:hover .badge-icon { transform: rotate(-8deg) scale(1.1); }
.badge-card .txt { font-size: 14px; font-weight: 700; line-height: 1.3; }
@media (max-width: 520px) { .badge-grid { gap: 10px; } .badge-card { padding: 12px 12px; gap: 10px; } }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; gap: 40px; } .team-visual .img-placeholder { min-height: 320px; } }

/* ---------- FAQ: flashcard wall ---------- */
.faq { background: #fff; overflow: hidden; }
.faq-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }
.ff-chip { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: var(--r-pill); background: #fff; box-shadow: var(--shadow-sm); font-weight: 700; font-size: 14px; color: color-mix(in srgb, var(--brand-text) 72%, transparent); transition: all 0.25s var(--bounce); }
.ff-chip svg { width: 17px; height: 17px; }
.ff-chip:hover { transform: translateY(-3px) rotate(-1deg); }
.ff-chip.active { background: var(--brand-primary); color: #fff; box-shadow: var(--shadow-md); }
.faq-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 24px; max-width: 1050px; margin: 0 auto; align-items: start; }
.faq-card { border-radius: var(--r-md) var(--r-md) var(--r-md) 8px; padding: 26px 24px 22px; box-shadow: var(--shadow-sm); position: relative; transition: transform 0.3s var(--bounce), box-shadow 0.3s; }
.faq-card[data-cat="start"] { background: var(--yellow-wash); transform: rotate(-0.6deg); }
.faq-card[data-cat="care"] { background: var(--teal-wash); transform: rotate(0.6deg); }
.faq-card[data-cat="grow"] { background: var(--cream); transform: rotate(-0.4deg); }
.faq-card:hover { transform: rotate(0deg) translateY(-4px); box-shadow: var(--shadow-md); z-index: 1; }
.faq-card.is-hidden { display: none; }
.faq-tag { position: absolute; top: -13px; right: 18px; display: inline-flex; align-items: center; gap: 6px; background: #fff; padding: 6px 14px; border-radius: var(--r-pill); font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; box-shadow: var(--shadow-sm); color: var(--brand-dark); }
.faq-tag svg { width: 13px; height: 13px; color: var(--coral); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; gap: 14px; font-size: 16.5px; font-weight: 700; padding: 0; color: var(--brand-text); }
.faq-q:hover { color: var(--brand-dark); }
.faq-icon { width: 48px; height: 48px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--brand-primary); transition: transform 0.3s var(--bounce); }
.faq-icon svg { width: 24px; height: 24px; }
.faq-q:hover .faq-icon { transform: rotate(-8deg) scale(1.08); }
.faq-q > .q-text { flex: 1; line-height: 1.35; }
.faq-chev { width: 24px; height: 24px; flex-shrink: 0; color: var(--brand-primary); transition: transform 0.35s var(--bounce); }
.faq-q[aria-expanded="true"] .faq-chev { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.45s var(--ease-out); }
.faq-q[aria-expanded="true"] + .faq-a { max-height: 900px; }
.faq-a-inner { padding: 16px 4px 2px 62px; }
.faq-a-inner p { font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--brand-text) 80%, transparent); max-width: none; }
@media (max-width: 860px) {
  .faq-cards { grid-template-columns: 1fr; }
  .faq-a-inner { padding-left: 0; }
}

/* ---------- Final CTA ---------- */
.final { background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark)); color: #fff; overflow: hidden; text-align: center; }
.final-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.final .eyebrow { background: rgba(255,255,255,0.16); color: #fff; box-shadow: none; }
.final h2 { color: #fff; margin-bottom: 22px; }
.final h2 em { color: var(--brand-accent); }
.final-body { font-size: 18px; line-height: 1.65; margin: 0 auto 28px; opacity: 0.94; max-width: 620px; }
.risk-reversal { background: rgba(255,255,255,0.12); padding: 22px 30px; border-radius: 26px 26px 26px 6px; font-size: 15px; line-height: 1.55; max-width: 620px; margin: 0 auto 32px; }
.final-microcopy { margin-top: 22px; font-size: 13px; opacity: 0.92; display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
.final-microcopy span { display: inline-flex; align-items: center; gap: 6px; }
.final-microcopy svg { width: 14px; height: 14px; }
.confetti { position: absolute; border-radius: 3px; opacity: 0.55; pointer-events: none; }

/* ---------- Footer ---------- */
footer { background: var(--brand-text); color: #fff; padding: 56px 64px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; max-width: 1280px; margin: 0 auto 36px; }
.footer-brand img { height: 44px; background: #fff; padding: 8px 12px; border-radius: var(--r-sm); margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.6; opacity: 0.75; max-width: 42ch; }
footer h4 { color: #fff; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links, .footer-contact { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact li { font-size: 14px; opacity: 0.82; line-height: 1.55; }
.footer-links a:hover, .footer-contact a:hover { opacity: 1; color: var(--brand-accent); }
.footer-contact a { border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.15); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 12px; opacity: 0.65; }
@media (max-width: 900px) { footer { padding: 44px 24px 22px; } .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Mobile sticky CTA ---------- */
.mobile-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--wa-green); color: #fff; padding: 14px 20px; display: none; align-items: center; justify-content: center; gap: 10px; font-weight: 700; font-size: 15px; box-shadow: 0 -8px 24px rgba(0,0,0,0.15); }
.mobile-sticky-cta svg { width: 20px; height: 20px; }
.mobile-sticky-cta.is-visible { display: flex; }
@media (min-width: 721px) { .mobile-sticky-cta { display: none !important; } }
@media (max-width: 720px) { body { padding-bottom: 60px; } }

/* ---------- Exit popup ---------- */
.exit-pop { position: fixed; inset: 0; z-index: 2000; background: rgba(45,46,40,0.55); display: none; align-items: center; justify-content: center; padding: 20px; }
.exit-pop.show { display: flex; }
.exit-card { background: #fff; max-width: 440px; width: 100%; border-radius: var(--r-lg); padding: 40px 34px 34px; text-align: center; position: relative; box-shadow: var(--shadow-lg); animation: popIn 0.25s var(--bounce); }
@keyframes popIn { from { transform: scale(0.8) translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }
.exit-close { position: absolute; top: 14px; right: 16px; font-size: 26px; line-height: 1; color: color-mix(in srgb, var(--brand-text) 45%, transparent); padding: 6px; }
.exit-close:hover { color: var(--brand-text); }
.exit-card h3 { font-size: 24px; margin: 14px 0 10px; }
.exit-card p { font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--brand-text) 75%, transparent); margin: 0 auto 22px; }
.exit-card .exit-illo { width: 92px; height: 92px; margin: 0 auto; }

/* ---------- Image placeholder ---------- */
.img-placeholder { background: linear-gradient(135deg, color-mix(in srgb, var(--brand-primary) 10%, transparent), color-mix(in srgb, var(--brand-accent) 18%, transparent)); border: 2px dashed color-mix(in srgb, var(--brand-primary) 30%, #d1d5db); display: flex; align-items: center; justify-content: center; border-radius: var(--r-lg); overflow: hidden; position: relative; }
.placeholder-inner { max-width: 420px; text-align: center; padding: 32px; }
.placeholder-label { display: inline-block; background: var(--brand-primary); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 14px; border-radius: 20px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.15em; }
.ph-num { font-family: var(--display); font-size: 64px; font-weight: 600; color: color-mix(in srgb, var(--brand-primary) 50%, transparent); line-height: 1; }
.placeholder-prompt { color: color-mix(in srgb, var(--brand-primary) 75%, #333); font-size: 13px; line-height: 1.6; font-style: italic; margin: 0; }
:focus-visible { outline: 3px solid var(--brand-accent); outline-offset: 3px; border-radius: 4px; }

/* ──────────────── */

.hero-image-bg .placeholder-prompt,
.hero-image-bg .placeholder-label,
.package-card-bg .placeholder-prompt,
.package-card-bg .placeholder-label,
[class$="-bg"] .img-placeholder .placeholder-prompt,
[class$="-bg"] .img-placeholder .placeholder-label {
  display: none !important;
}

/* ──────────────── */

.hero { position: relative; isolation: isolate; }
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/hero-1786081295077.webp') center/cover no-repeat; opacity: 0.35; }
.helps { position: relative; isolation: isolate; }
.helps::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/helps-1786081340310.webp') center/cover no-repeat; opacity: 0.05; }
.benefits { position: relative; isolation: isolate; }
.benefits::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/benefits-1786081371452.webp') center/cover no-repeat; opacity: 0.2; }
.proof { position: relative; isolation: isolate; }
.proof::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/proof-1786081641660.webp') center/cover no-repeat; opacity: 0.2; }
.faq { position: relative; isolation: isolate; }
.faq::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/faq-1786081633894.webp') center/cover no-repeat; opacity: 0.15; }
.final { position: relative; isolation: isolate; }
.final::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/final-1786081840569.webp') center/cover no-repeat; opacity: 0.05; }
.problem { position: relative; isolation: isolate; }
.problem::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/problem-1786081947363.webp') center/cover no-repeat; opacity: 0.1; }
.gallery { position: relative; isolation: isolate; }
.gallery::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/gallery-1786081955210.webp') center/cover no-repeat; opacity: 0.1; }

.final-form-wrap { max-width: 460px; margin: 28px auto 0; text-align: left; background: rgba(255,255,255,0.1); border-radius: var(--r-lg); padding: 28px 26px; }
.ff-row { margin-bottom: 16px; }
.ff-row label { display: block; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 6px; opacity: 0.9; }
.ff-row input, .ff-row textarea { width: 100%; padding: 12px 14px; border-radius: var(--r-sm); border: none; font-size: 15px; font-family: var(--sans); resize: vertical; }
.ff-row input:focus-visible, .ff-row textarea:focus-visible { outline: 3px solid var(--brand-accent); outline-offset: 2px; }
.final-form-submit { width: 100%; justify-content: center; }
.form-success { display: none; margin-top: 16px; background: rgba(255,255,255,0.16); color: #fff; padding: 14px 18px; border-radius: var(--r-sm); font-size: 14px; text-align: center; }
.form-success.show { display: block; }

@media (max-width: 980px) {
  .mindmap { height: auto; display: flex; flex-direction: column; gap: 18px; padding-left: 26px; }
  .mindmap-lines { display: none; }
  .mindmap::before { content: ''; position: absolute; left: 8px; top: 20px; bottom: 20px; width: 3px; border-radius: 3px; background: repeating-linear-gradient(180deg, var(--brand-primary) 0 8px, transparent 8px 17px); opacity: 0.4; }
  .mm-center { position: static; transform: none; width: 100%; height: auto; border-radius: var(--r-lg); flex-direction: row; gap: 16px; text-align: left; padding: 22px 24px; order: -1; }
  .mm-center .mm-kid { width: 56px; height: 56px; margin: 0; flex-shrink: 0; }

  .mm-node {
    position: static;
    width: 100%;
    transform: none !important;
    background: var(--cream) !important;
    padding: 18px 20px;
  }
  .mm-node h4 { font-size: 15px; }
  .mm-node p { font-size: 13.5px; }
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .g-tile { grid-column: span 1 !important; grid-row: span 1 !important; padding: 8px 8px 10px; }
  .g-tile-6 { grid-column-start: auto !important; }
  .g-tile .img-placeholder { min-height: 150px !important; }
  .g-tape { width: 60px; height: 18px; top: -8px; }
}

@media (max-width: 720px) {
  .trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .trust-badge {
    justify-content: center;
    text-align: center;
    padding: 12px 10px;
  }
	
}
@media (max-width: 720px) {
  .wa-btn.header-cta {
    padding: 10px 30px; /* adjust to taste — this only affects mobile */
  }
	  .wa-btn.header-cta svg {
    width: 22px;
    height: 22px;
  }
}
