/* ============================================================
   Sayeba Research — playful pastel build (millions-inspired)
   Sky blue + warm coral · Baloo 2 / Poppins / Caveat
   ============================================================ */

:root{
  --sky-1:   #cfe8ff;
  --sky-2:   #e8f4ff;
  --sky-3:   #f2f9ff;
  --cream:   #fff7ef;
  --ink:     #1a2b45;
  --ink-2:   #45536e;
  --muted:   #4f5871;
  --muted-2: #626c86;
  --coral:   #ff5f3d;
  --coral-d: #ee4a26;
  --coral-x:     #d1401f; /* AA-safe coral for small text on white / white text on coral (4.5:1+) */
  --coral-deep:  #b93a1c; /* extra-safe coral for small text on white/cream (5:1+, margin for AA rendering) */
  --coral-light: #ffab8f; /* AA-safe light coral for text on dark navy backgrounds (7:1+) */
  --yellow:  #ffd166;
  --mint:    #a8ecd0;
  --blue:    #bcdcff;
  --line:    #e7edf6;
  --white:   #ffffff;
  --radius:  26px;
  --shadow:  0 26px 60px -30px rgba(30,60,110,.4);
  --shadow-sm:0 10px 30px -16px rgba(30,60,110,.35);
  --maxw:    1180px;
  --ease:    cubic-bezier(.16,.84,.35,1);
  --font:    "Poppins", system-ui, sans-serif;
  --display: "Baloo 2", "Poppins", sans-serif;
  --hand:    "Caveat", cursive;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; scroll-padding-top:100px; }

/* ---------- skip link ---------- */
.skip-link{ position:fixed; top:-60px; left:1rem; z-index:1000; background:var(--ink); color:#fff; text-decoration:none;
  font-family:var(--display); font-weight:700; padding:.8rem 1.3rem; border-radius:10px; box-shadow:var(--shadow); transition:top .2s var(--ease); }
.skip-link:focus{ top:1rem; outline:3px solid var(--coral); outline-offset:2px; }
body{
  font-family:var(--font); color:var(--ink); line-height:1.65; overflow-x:hidden;
  background:linear-gradient(180deg,var(--sky-1) 0%,var(--sky-2) 22%,var(--sky-3) 42%,#ffffff 60%);
  -webkit-font-smoothing:antialiased;
}
img,svg{ display:block; max-width:100%; }
::selection{ background:var(--coral); color:#fff; }
a{ color:inherit; }

/* sky / clouds */
.sky{ position:fixed; inset:0 0 auto 0; height:100vh; z-index:0; pointer-events:none; overflow:hidden; }
.cloud{ position:absolute; background:rgba(255,255,255,.75); border-radius:100px; filter:blur(6px); }
.cloud::before,.cloud::after{ content:""; position:absolute; background:inherit; border-radius:50%; }
.c1{ width:180px; height:44px; top:12%; left:8%; animation:drift 40s linear infinite; }
.c1::before{ width:80px; height:80px; top:-34px; left:26px; } .c1::after{ width:60px; height:60px; top:-20px; left:96px; }
.c2{ width:140px; height:36px; top:22%; right:12%; animation:drift 52s linear infinite reverse; }
.c2::before{ width:64px; height:64px; top:-28px; left:20px; } .c2::after{ width:48px; height:48px; top:-16px; left:74px; }
.c3{ width:120px; height:30px; top:40%; left:22%; opacity:.7; animation:drift 60s linear infinite; }
.c3::before{ width:54px; height:54px; top:-24px; left:16px; } .c3::after{ width:40px; height:40px; top:-12px; left:62px; }
@keyframes drift{ from{ transform:translateX(-60px);} to{ transform:translateX(60px);} }

main, .nav, .footer{ position:relative; z-index:1; }

/* ---------- buttons ---------- */
.btn{ display:inline-flex; align-items:center; gap:.5rem; text-decoration:none; cursor:pointer;
  font-family:var(--display); font-weight:700; border-radius:100px; transition:transform .28s var(--ease), box-shadow .28s var(--ease), background .25s, color .25s; white-space:nowrap; }
.btn-sm{ font-size:.94rem; padding:.6rem 1.15rem; }
.btn-lg{ font-size:1.05rem; padding:.95rem 1.7rem; }
.btn-coral{ background:var(--coral); color:var(--ink); box-shadow:0 14px 26px -12px rgba(255,95,61,.8); }
.btn-coral:hover{ transform:translateY(-3px) rotate(-1deg); box-shadow:0 20px 34px -12px rgba(255,95,61,.9); }
.btn-ghost{ background:#fff; color:var(--ink); box-shadow:var(--shadow-sm); }
.btn-ghost:hover{ transform:translateY(-3px); }
.btn-white{ background:#fff; color:var(--coral-deep); box-shadow:var(--shadow-sm); }
.btn-white:hover{ transform:translateY(-3px) rotate(-1deg); }

/* ---------- NAV ---------- */
.nav{ position:fixed; inset:.9rem 0 auto 0; z-index:900; padding:0 1rem; }
.nav-pill{ max-width:var(--maxw); margin:0 auto; background:rgba(255,255,255,.75); backdrop-filter:blur(14px) saturate(1.5);
  border:1.5px solid rgba(255,255,255,.9); border-radius:100px; box-shadow:var(--shadow-sm);
  display:flex; align-items:center; gap:1.2rem; padding:.55rem .7rem .55rem 1.2rem; transition:box-shadow .3s; }
.nav.scrolled .nav-pill{ box-shadow:0 18px 40px -22px rgba(30,60,110,.5); }
.brand{ display:flex; align-items:center; gap:.55rem; text-decoration:none; }
.brand-mark{ width:38px; height:38px; border-radius:12px; flex:none; display:grid; place-items:center; color:#fff;
  font-family:var(--display); font-weight:800; font-size:1.25rem; background:linear-gradient(150deg,var(--coral-deep),var(--coral-x));
  box-shadow:0 8px 16px -8px rgba(255,95,61,.9); transform:rotate(-4deg); }
.brand-mark svg{ width:22px; height:22px; }
.brand-text{ font-family:var(--display); font-weight:600; font-size:1.16rem; color:var(--ink); letter-spacing:-.01em; }
.brand-text b{ color:var(--coral-x); font-weight:800; }
.nav-links{ display:flex; gap:1.5rem; margin:0 auto; }
.nav-links a{ text-decoration:none; color:var(--ink-2); font-weight:500; font-size:.96rem; position:relative; transition:color .2s; }
.nav-links a:hover{ color:var(--coral-d); }
.nav-links a::after{ content:""; position:absolute; left:0; right:100%; bottom:-4px; height:2px; background:var(--coral); border-radius:2px; transition:right .3s var(--ease); }
.nav-links a:hover::after{ right:0; }
.nav-right{ display:flex; align-items:center; gap:1rem; }
.nav-doodle{ font-family:var(--hand); font-size:1.3rem; color:var(--coral-d); font-weight:700; }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:.5rem; }
.nav-toggle span{ width:24px; height:2.5px; background:var(--ink); border-radius:3px; transition:transform .3s, opacity .3s; }
.nav.open .nav-toggle span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2){ opacity:0; }
.nav.open .nav-toggle span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero{ max-width:var(--maxw); margin:0 auto; padding:9.5rem 1.4rem 5rem; text-align:center; position:relative; min-height:92vh; display:flex; flex-direction:column; justify-content:center; }
.hero-center{ position:relative; z-index:3; max-width:760px; margin:0 auto; }
.pill-tag{ display:inline-block; font-size:.8rem; font-weight:600; color:var(--coral-x); background:#fff; border:1.5px solid #ffd9cd; padding:.5rem 1.1rem; border-radius:100px; margin-bottom:1.6rem; box-shadow:var(--shadow-sm); }
.pill-tag.mini{ margin-bottom:1.1rem; }
.hero-h1{ font-family:var(--display); font-weight:800; font-size:clamp(2.8rem,7vw,5.4rem); line-height:1.02; letter-spacing:-.02em; color:var(--ink); }
.hero-h1 span{ display:block; }
.hero-em{ position:relative; color:var(--coral); font-style:italic; width:max-content; margin:0 auto; padding-bottom:.1em; }
.underline{ position:absolute; left:0; right:0; bottom:-.06em; width:100%; height:auto; color:var(--coral); }
.underline path{ stroke-dasharray:400; stroke-dashoffset:400; }
.hero-em.in .underline path{ animation:draw 1.1s var(--ease) .5s forwards; }
@keyframes draw{ to{ stroke-dashoffset:0; } }
.hero-lead{ font-size:clamp(1.05rem,1.6vw,1.24rem); color:var(--ink-2); max-width:52ch; margin:1.6rem auto 2.2rem; }
.hero-lead b{ color:var(--ink); font-weight:600; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:1rem; justify-content:center; }

/* floating cards */
.polaroid,.photocard,.mini-card{ position:absolute; z-index:2; }
.polaroid{ background:#fff; padding:.7rem .7rem 0; border-radius:10px; box-shadow:var(--shadow); width:210px; transform:rotate(-6deg); }
.polaroid img{ width:100%; height:190px; object-fit:cover; border-radius:6px; }
.polaroid figcaption{ font-family:var(--hand); font-size:1.35rem; font-weight:700; color:var(--ink); padding:.35rem 0 .6rem; position:relative; }
.tape{ position:absolute; top:-1.5rem; left:50%; transform:translateX(-50%) rotate(-4deg); width:70px; height:24px; background:rgba(255,209,102,.7); border:1px dashed rgba(0,0,0,.08); }
.p-left{ left:2%; top:34%; }
.photocard{ width:210px; border-radius:20px; overflow:hidden; box-shadow:var(--shadow); transform:rotate(5deg); }
.photocard img{ width:100%; height:260px; object-fit:cover; }
.like-badge{ position:absolute; bottom:.8rem; left:.8rem; background:#fff; color:var(--coral-x); font-weight:600; font-size:.8rem; padding:.35rem .7rem; border-radius:100px; box-shadow:var(--shadow-sm); }
.p-right{ right:2%; top:30%; }
.mini-card{ background:#fff; border-radius:16px; box-shadow:var(--shadow); padding:.8rem 1rem; }
.mc-verify{ left:11%; bottom:8%; display:flex; align-items:center; gap:.6rem; transform:rotate(-3deg); }
.mc-ic{ width:32px; height:32px; border-radius:50%; background:var(--mint); color:#0a7d51; display:grid; place-items:center; font-weight:800; }
.mc-chart{ right:9%; bottom:6%; width:170px; transform:rotate(3deg); color:var(--coral); text-align:left; }
.mc-t{ font-family:var(--display); font-weight:700; font-size:.92rem; color:var(--ink); }
.mc-s{ font-size:.72rem; color:var(--muted); }
.spark{ height:34px; margin:.2rem 0; }
.polaroid{ animation:bob 6s ease-in-out infinite; }
.photocard{ animation:bob 6s ease-in-out .8s infinite; }
.mc-verify{ animation:bob 5s ease-in-out .4s infinite; }
.mc-chart{ animation:bob 5s ease-in-out 1.2s infinite; }
@keyframes bob{ 0%,100%{ transform:translateY(0) var(--r,rotate(0));} 50%{ transform:translateY(-12px) var(--r,rotate(0));} }
.polaroid{ --r:rotate(-6deg); } .photocard{ --r:rotate(5deg); } .mc-verify{ --r:rotate(-3deg); } .mc-chart{ --r:rotate(3deg); }

/* ---------- WAVY MARQUEE ---------- */
.wave-marquee{ background:var(--coral-x); color:#fff; overflow:hidden; padding:1rem 0; transform:rotate(-2deg) scale(1.04); margin:2rem 0; box-shadow:var(--shadow-sm); }
.wave-track{ display:flex; align-items:center; gap:1.4rem; width:max-content; animation:scrollx 30s linear infinite; font-family:var(--display); font-weight:700; font-size:1.2rem; white-space:nowrap; }
.wave-track i{ color:var(--yellow); font-style:normal; }
@keyframes scrollx{ to{ transform:translateX(-50%);} }

/* ---------- section shell ---------- */
.section{ max-width:var(--maxw); margin:0 auto; padding:clamp(3.5rem,8vw,6.5rem) 1.4rem; }
.sec-head{ text-align:center; max-width:60ch; margin:0 auto clamp(2.4rem,5vw,3.4rem); }
.kicker{ display:inline-block; font-family:var(--hand); font-size:1.5rem; font-weight:700; color:var(--coral-d); margin-bottom:.4rem; }
.h2{ font-family:var(--display); font-weight:800; font-size:clamp(1.9rem,4vw,3.1rem); line-height:1.08; letter-spacing:-.02em; color:var(--ink); }
.h2.center{ text-align:center; }
.h2.light{ color:#fff; }
.ink-coral{ color:var(--coral); }
.hand{ font-family:var(--hand); font-weight:700; color:var(--coral-d); }
.hand.light{ color:var(--yellow); }
.center-sub{ text-align:center; color:var(--muted); margin-top:.8rem; }

/* ---------- KNOW US ---------- */
.know-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(2rem,5vw,4rem); align-items:center; }
.know-photo{ position:relative; }
.know-photo img{ width:100%; border-radius:var(--radius); box-shadow:var(--shadow); aspect-ratio:1/1; object-fit:cover; }
.badge-chip{ position:absolute; bottom:-.9rem; left:-.9rem; background:#fff; border-radius:100px; padding:.6rem 1.1rem; font-weight:600; font-size:.92rem; box-shadow:var(--shadow); display:flex; align-items:center; gap:.5rem; }
.know-copy p{ color:var(--ink-2); margin-bottom:1rem; font-size:1.05rem; }
.know-facts{ list-style:none; display:flex; gap:2rem; margin-top:1.6rem; flex-wrap:wrap; }
.know-facts li{ display:flex; flex-direction:column; }
.know-facts b{ font-family:var(--display); font-weight:800; font-size:1.3rem; color:var(--coral); }
.know-facts span{ font-size:.82rem; color:var(--muted); }

/* ---------- FUN CARDS ---------- */
.fun-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.3rem; }
.fun-card{ border-radius:var(--radius); padding:2rem 1.6rem; box-shadow:var(--shadow-sm); transition:transform .35s var(--ease), box-shadow .35s var(--ease); border:2px solid rgba(255,255,255,.6); }
.fun-card:hover{ transform:translateY(-8px) rotate(-1.5deg); box-shadow:var(--shadow); }
.fun-card.yellow{ background:#fff3d6; } .fun-card.blue{ background:#e0f0ff; }
.fun-card.coral{ background:#ffe4dc; } .fun-card.mint{ background:#d9f7e9; }
.fc-emoji{ font-size:2.4rem; display:block; margin-bottom:1rem; }
.fun-card h3{ font-family:var(--display); font-weight:700; font-size:1.3rem; margin-bottom:.4rem; color:var(--ink); }
.fun-card p{ color:var(--ink-2); font-size:.96rem; }

/* ---------- PROCESS ---------- */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.3rem; }
.step{ background:#fff; border-radius:var(--radius); padding:2rem 1.5rem; box-shadow:var(--shadow-sm); text-align:center; transition:transform .35s var(--ease), box-shadow .35s var(--ease); }
.step:hover{ transform:translateY(-8px); box-shadow:var(--shadow); }
.step-bubble{ width:56px; height:56px; border-radius:50%; display:grid; place-items:center; margin:0 auto 1rem; font-family:var(--display); font-weight:800; font-size:1.5rem; color:#fff; background:linear-gradient(150deg,var(--coral-deep),var(--coral-x)); box-shadow:0 12px 22px -12px rgba(255,95,61,.9); }
.step h3{ font-family:var(--display); font-weight:700; font-size:1.24rem; margin-bottom:.35rem; color:var(--ink); }
.step p{ color:var(--ink-2); font-size:.92rem; }

/* ---------- WHY ---------- */
.why-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(2rem,5vw,4rem); align-items:center; }
.why-list{ list-style:none; display:flex; flex-direction:column; gap:1.1rem; margin-top:1.6rem; }
.why-list li{ display:flex; gap:.9rem; background:#fff; border-radius:18px; padding:1.1rem 1.3rem; box-shadow:var(--shadow-sm); align-items:flex-start; }
.why-list li span{ font-size:1.4rem; flex:none; }
.why-list b{ color:var(--ink); }
.why-list div{ color:var(--ink-2); font-size:.98rem; }
.why-photo{ position:relative; }
.why-photo img{ width:100%; border-radius:var(--radius); box-shadow:var(--shadow); aspect-ratio:3/4; object-fit:cover; max-height:520px; }
.why-photo figcaption{ position:absolute; bottom:1rem; left:50%; transform:translateX(-50%); background:#fff; font-family:var(--hand); font-size:1.3rem; font-weight:700; color:var(--ink); padding:.4rem 1.1rem; border-radius:100px; box-shadow:var(--shadow-sm); white-space:nowrap; }

/* ---------- KNOW motto ---------- */
.know-motto{ margin-top:1.2rem; padding:.9rem 1.2rem; background:#fff; border-radius:16px; box-shadow:var(--shadow-sm); font-size:.98rem; color:var(--ink-2); }
.know-motto b{ color:var(--coral-x); font-family:var(--display); }

/* ---------- FEES ---------- */
.fees{ }
.price-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; align-items:stretch; }
.price-card{ position:relative; background:#fff; border-radius:var(--radius); padding:2.2rem 1.7rem; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; border:2px solid transparent; transition:transform .35s var(--ease), box-shadow .35s var(--ease); }
.price-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow); }
.price-card.featured{ border-color:var(--coral); box-shadow:0 26px 55px -26px rgba(255,95,61,.55); }
.price-card.featured::after{ content:""; position:absolute; inset:0; border-radius:var(--radius); background:linear-gradient(160deg,rgba(255,95,61,.06),transparent 60%); pointer-events:none; }
.pc-flag{ position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--coral); color:#fff; font-family:var(--display); font-weight:700; font-size:.74rem; letter-spacing:.02em; padding:.35rem .9rem; border-radius:100px; white-space:nowrap; box-shadow:0 10px 20px -8px rgba(255,95,61,.8); }
.pc-emoji{ font-size:2.2rem; display:block; margin-bottom:.7rem; }
.price-card h3{ font-family:var(--display); font-weight:700; font-size:1.28rem; color:var(--ink); }
.pc-price{ font-family:var(--display); font-weight:800; font-size:2.3rem; color:var(--coral); letter-spacing:-.02em; margin:.5rem 0 .2rem; }
.pc-price span{ font-size:.9rem; font-weight:600; color:var(--muted); letter-spacing:0; }
.pc-desc{ color:var(--ink-2); font-size:.94rem; margin-bottom:1.2rem; }
.pc-list{ list-style:none; display:flex; flex-direction:column; gap:.7rem; margin-bottom:1.6rem; flex:1; }
.pc-list li{ position:relative; padding-left:1.7rem; font-size:.94rem; color:var(--ink-2); }
.pc-list li::before{ content:"✓"; position:absolute; left:0; top:0; width:20px; height:20px; border-radius:50%; background:var(--mint); color:#0a7d51; font-size:.72rem; font-weight:800; display:grid; place-items:center; }
.price-card .btn{ width:100%; justify-content:center; }
.fees-note{ text-align:center; max-width:60ch; margin:2rem auto 0; font-size:.82rem; color:var(--muted); }

/* ---------- COMPLIANCE JUMP-TO INDEX ---------- */
.c-index{ background:#fff; border:1px solid var(--line); border-radius:18px; padding:1.4rem 1.6rem; margin-bottom:1.6rem; box-shadow:var(--shadow-sm); }
.c-index-head{ font-family:var(--display); font-weight:700; font-size:.95rem; color:var(--ink); margin-bottom:1rem; }
.c-index-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem 1.6rem; }
.c-index-col h4{ font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--coral-x); font-weight:700; margin-bottom:.55rem; }
.c-index-col a{ display:block; color:var(--ink-2); text-decoration:none; font-size:.88rem; padding:.22rem 0; border-radius:4px; transition:color .2s, transform .2s; }
.c-index-col a:hover{ color:var(--coral-x); transform:translateX(3px); }
.c-index-col a:focus-visible{ outline:2px solid var(--coral); outline-offset:2px; }

/* ---------- WHATSAPP INQUIRY ---------- */
.wa-card{ max-width:560px; margin:0 auto; border-radius:24px; overflow:hidden; box-shadow:var(--shadow); background:#efe7de; }
.wa-head{ display:flex; align-items:center; gap:.8rem; background:#075e54; color:#fff; padding:.9rem 1.1rem; }
.wa-avatar{ width:42px; height:42px; flex:none; border-radius:50%; display:grid; place-items:center; background:#25d366; color:#075e54; font-family:var(--display); font-weight:800; font-size:1.2rem; }
.wa-id{ flex:1; }
.wa-name{ font-family:var(--display); font-weight:700; font-size:1.02rem; line-height:1.2; }
.wa-status{ font-size:.76rem; color:rgba(255,255,255,.8); display:flex; align-items:center; gap:.4rem; }
.wa-dot{ width:7px; height:7px; border-radius:50%; background:#25d366; box-shadow:0 0 0 0 rgba(37,211,102,.6); animation:pulse 2.2s infinite; }
.wa-logo{ width:26px; height:26px; fill:rgba(255,255,255,.9); }
.wa-body{ padding:1.2rem; background-image:radial-gradient(rgba(0,0,0,.03) 1px, transparent 1px); background-size:16px 16px; }
.wa-bubble{ background:#fff; border-radius:4px 14px 14px 14px; padding:.8rem 1rem; font-size:.95rem; color:var(--ink); box-shadow:0 2px 6px -3px rgba(0,0,0,.2); max-width:88%; margin-bottom:1.2rem; position:relative; }
.wa-form{ display:flex; flex-direction:column; gap:.8rem; }
.wa-field{ display:flex; flex-direction:column; gap:.3rem; }
.wa-field span{ font-size:.8rem; font-weight:600; color:var(--ink-2); }
.wa-field input, .wa-field select, .wa-field textarea{ font-family:inherit; font-size:.95rem; color:var(--ink); background:#fff; border:1.5px solid #d8ccc0; border-radius:12px; padding:.7rem .9rem; width:100%; transition:border-color .2s, box-shadow .2s; }
.wa-field input:focus, .wa-field select:focus, .wa-field textarea:focus{ outline:none; border-color:#25d366; box-shadow:0 0 0 3px rgba(37,211,102,.18); }
.wa-field textarea{ resize:vertical; min-height:64px; }
.wa-send{ display:inline-flex; align-items:center; justify-content:center; gap:.55rem; cursor:pointer; font-family:var(--display); font-weight:700; font-size:1.02rem; color:var(--ink); background:#25d366; border:none; border-radius:100px; padding:.85rem 1.4rem; margin-top:.3rem; box-shadow:0 12px 24px -12px rgba(37,211,102,.8); transition:transform .28s var(--ease), background .2s; }
.wa-send:hover{ transform:translateY(-2px); background:#1fb457; }
.wa-send svg{ width:20px; height:20px; fill:var(--ink); }
.wa-note{ font-size:.76rem; color:var(--muted); text-align:center; margin-top:.2rem; }
.wa-note strong{ color:var(--ink-2); }
.wa-error{ font-size:.8rem; font-weight:600; color:var(--coral-x); margin-top:-.35rem; }

/* ---------- COMPLIANCE ---------- */
.compliance{ }
.compliance-wrap{ max-width:900px; margin:0 auto; }
.reg-card{ background:#fff; border-radius:var(--radius); box-shadow:var(--shadow-sm); padding:1.8rem; margin-bottom:1.3rem; }
.reg-card h3{ font-family:var(--display); font-weight:700; font-size:1.2rem; margin-bottom:1rem; color:var(--ink); }
.reg-grid{ display:grid; grid-template-columns:1fr 1fr; gap:0 1.8rem; }
.reg-row{ display:flex; justify-content:space-between; gap:1rem; padding:.6rem 0; border-bottom:1px solid var(--line); font-size:.9rem; }
.reg-row dt{ color:var(--muted); } .reg-row dd{ font-weight:600; color:var(--ink); text-align:right; }
.reg-row .hi{ color:var(--coral-deep); }
.warn-strip{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1.8rem; }
.warn-box{ background:#fff4ec; border:1px solid #ffd9c9; border-radius:16px; padding:1.1rem 1.3rem; }
.warn-box strong{ display:block; color:var(--coral-deep); margin-bottom:.3rem; font-family:var(--display); }
.warn-box p{ font-size:.88rem; color:var(--ink-2); }

.cgroup{ margin-bottom:.9rem; }
.cgroup > summary{ list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:1rem; background:linear-gradient(135deg,var(--coral-deep),var(--coral-x)); color:#fff; padding:1rem 1.4rem; border-radius:16px; font-family:var(--display); font-weight:700; font-size:1.12rem; box-shadow:0 12px 24px -14px rgba(255,95,61,.7); }
.cgroup > summary::-webkit-details-marker{ display:none; }
.cgroup > summary::after{ content:"+"; font-size:1.5rem; line-height:1; opacity:.9; }
.cgroup[open] > summary::after{ content:"\2013"; }
.cgroup-inner{ padding:.9rem 0 .3rem; display:flex; flex-direction:column; gap:.55rem; }

.citem{ background:#fff; border:1px solid var(--line); border-radius:14px; }
.citem > summary{ list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.85rem 1.15rem; font-family:var(--display); font-weight:600; font-size:.98rem; color:var(--ink); }
.citem > summary::-webkit-details-marker{ display:none; }
.citem > summary .cnum{ color:var(--coral-deep); font-weight:800; margin-right:.5rem; }
.citem > summary::after{ content:"+"; color:var(--coral-x); font-size:1.25rem; font-weight:700; flex:none; }
.citem[open]{ box-shadow:var(--shadow-sm); }
.citem[open] > summary::after{ content:"\2013"; }
.cbody{ padding:.2rem 1.15rem 1.25rem; font-size:.9rem; color:var(--ink-2); line-height:1.6; }
.cbody h4{ font-family:var(--display); font-weight:700; color:var(--ink); margin:.9rem 0 .35rem; font-size:.98rem; }
.cbody p{ margin-bottom:.6rem; }
.cbody ul{ margin:.2rem 0 .7rem 1.1rem; display:flex; flex-direction:column; gap:.32rem; }
.cbody a{ color:var(--coral-deep); }
.cbody .formula{ background:var(--sky-2); border-radius:10px; padding:.6rem .9rem; font-weight:600; color:var(--ink); }
.cnote{ background:#fff4ec; border:1px solid #ffd9c9; border-radius:12px; padding:.75rem 1rem; font-size:.86rem; margin:.5rem 0 .8rem; }
.tnote{ font-size:.78rem; color:var(--muted); line-height:1.55; margin:.3rem 0 1rem; }
.drive-btn{ margin:.4rem 0 .6rem; font-size:.95rem; padding:.7rem 1.3rem; background:#fff; color:var(--ink); border:1.5px solid var(--coral); box-shadow:var(--shadow-sm); }
.drive-btn:hover{ background:#fff4ec; color:var(--ink); transform:translateY(-2px); }
.ctable{ overflow-x:auto; margin:.5rem 0 .9rem; }
.ctable table{ width:100%; border-collapse:collapse; font-size:.82rem; min-width:520px; }
.ctable th, .ctable td{ border:1px solid var(--line); padding:.45rem .55rem; text-align:left; }
.ctable th{ background:var(--sky-2); font-family:var(--display); font-weight:600; }
.do-dont{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin:.5rem 0; }
.do-dont .col{ background:var(--sky-3); border-radius:12px; padding:1rem 1.1rem; }


/* ---------- FAQ ---------- */
.faq-list{ max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:.9rem; }
.faq-item{ background:#fff; border-radius:20px; box-shadow:var(--shadow-sm); overflow:hidden; }
.faq-item summary{ list-style:none; cursor:pointer; padding:1.25rem 1.6rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; font-family:var(--display); font-weight:700; font-size:1.08rem; color:var(--ink); }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-plus{ position:relative; width:22px; height:22px; flex:none; }
.faq-plus::before,.faq-plus::after{ content:""; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); background:var(--coral); border-radius:2px; transition:transform .3s var(--ease); }
.faq-plus::before{ width:15px; height:2.5px; } .faq-plus::after{ width:2.5px; height:15px; }
.faq-item[open] .faq-plus::after{ transform:translate(-50%,-50%) scaleY(0); }
.faq-a{ padding:0 1.6rem 1.4rem; }
.faq-a p{ color:var(--ink-2); }

/* ---------- CTA ---------- */
.cta-band{ max-width:var(--maxw); margin:0 auto; padding:1rem 1.4rem clamp(3rem,6vw,5rem); }
.cta-inner{ background:linear-gradient(135deg,var(--coral-deep),var(--coral-x)); border-radius:34px; padding:clamp(2.6rem,6vw,4.5rem); text-align:center; color:#fff; position:relative; overflow:hidden; box-shadow:0 30px 60px -30px rgba(255,95,61,.7); }
.cta-inner::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 15% 20%,rgba(255,255,255,.1),transparent 40%),radial-gradient(circle at 85% 85%,rgba(255,255,255,.08),transparent 45%); }
.cta-inner > *{ position:relative; z-index:1; }
.cta-inner h2{ font-family:var(--display); font-weight:800; font-size:clamp(1.8rem,3.6vw,2.8rem); margin-bottom:.7rem; }
.cta-inner p{ color:#fff; font-size:1.1rem; max-width:46ch; margin:0 auto 1.7rem; }

/* ---------- CONTACT ---------- */
.contact-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.3rem; }
.c-card{ background:#fff; border-radius:var(--radius); padding:2rem; text-decoration:none; color:var(--ink); box-shadow:var(--shadow-sm); transition:transform .3s var(--ease), box-shadow .3s var(--ease); text-align:center; }
a.c-card:hover{ transform:translateY(-8px) rotate(-1deg); box-shadow:var(--shadow); }
.c-emoji{ font-size:2.2rem; display:block; margin-bottom:.8rem; }
.c-k{ font-family:var(--hand); font-size:1.3rem; color:var(--coral-x); font-weight:700; }
.c-v{ font-family:var(--display); font-weight:600; font-size:1.02rem; word-break:break-word; }

/* ---------- SPIN BADGE ---------- */
.quick-actions{ display:contents; }
.spin-badge{ position:fixed; right:1.4rem; bottom:1.4rem; width:96px; height:96px; z-index:800; text-decoration:none; display:grid; place-items:center; filter:drop-shadow(0 12px 20px rgba(255,95,61,.5)); }
.spin-badge svg{ position:absolute; inset:0; width:100%; height:100%; animation:spin 12s linear infinite; }
.spin-badge text{ font-family:var(--display); font-weight:700; font-size:8.5px; letter-spacing:.5px; fill:var(--coral-d); }
.spin-badge::before{ content:""; position:absolute; inset:14px; border-radius:50%; background:#fff; box-shadow:inset 0 0 0 2px #ffd9cd; }
.spin-core{ position:relative; z-index:1; font-size:1.6rem; color:var(--coral-d); }
@keyframes spin{ to{ transform:rotate(360deg);} }

/* ---------- FOOTER ---------- */
.footer{ background:#16243a; color:#fff; padding:clamp(3.5rem,6vw,5rem) 1.4rem 2rem; margin-top:2rem; }
.footer-main{ max-width:var(--maxw); margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr; gap:clamp(2rem,5vw,4rem); padding-bottom:2.6rem; border-bottom:1px solid rgba(255,255,255,.1); align-items:start; }
.footer-brand{ margin-bottom:1.1rem; }
.footer-brand .brand-text{ color:#fff; }
.footer-brand .brand-text b{ color:var(--coral-light); }
.footer-desc{ color:rgba(255,255,255,.62); font-size:.95rem; max-width:42ch; margin-bottom:1.4rem; }
.footer-contact{ list-style:none; display:flex; flex-direction:column; gap:.8rem; }
.footer-contact li{ display:flex; align-items:flex-start; gap:.7rem; font-size:.92rem; color:rgba(255,255,255,.72); }
.footer-contact a{ color:rgba(255,255,255,.72); text-decoration:none; transition:color .2s; }
.footer-contact a:hover{ color:var(--coral); }
.fi{ font-size:1.1rem; }
.footer-social{ display:flex; align-items:center; gap:.8rem; margin-top:1.3rem; }
.social-label{ font-size:.82rem; color:rgba(255,255,255,.55); font-weight:500; }
.social-link{ width:38px; height:38px; border-radius:10px; display:grid; place-items:center; color:#fff;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); transition:transform .25s var(--ease), background .25s, border-color .25s; }
.social-link:hover{ transform:translateY(-3px); background:#0a66c2; border-color:#0a66c2; }
.social-link svg{ width:19px; height:19px; fill:currentColor; }

.footer-transparency{ background:rgba(255,255,255,.05); border:1.5px solid rgba(255,95,61,.35); border-radius:22px; padding:1.7rem; }
.ft-badge{ display:inline-block; font-size:.78rem; font-weight:600; color:var(--coral-light); margin-bottom:1rem; }
.footer-transparency h3{ font-family:var(--display); font-weight:700; font-size:1.3rem; margin-bottom:.5rem; }
.footer-transparency p{ color:rgba(255,255,255,.6); font-size:.86rem; margin-bottom:1.3rem; }
.ft-fields{ display:grid; grid-template-columns:1fr 1fr; gap:.9rem; }
.ft-fields > div{ background:rgba(0,0,0,.22); border-radius:12px; padding:.8rem .9rem; }
.ft-fields dt{ font-size:.62rem; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:.3rem; }
.ft-fields dd{ font-family:var(--display); font-weight:700; font-size:.98rem; color:var(--coral); }
.footer-cols{ max-width:var(--maxw); margin:2.4rem auto 0; display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.fcol h4{ font-family:var(--display); font-size:.9rem; letter-spacing:.02em; color:#fff; margin-bottom:.9rem; font-weight:700; }
.fcol a{ display:block; color:rgba(255,255,255,.6); text-decoration:none; font-size:.92rem; padding:.3rem 0; transition:color .2s, transform .2s; }
.fcol a:hover{ color:var(--coral); transform:translateX(4px); }
.disclaimer{ max-width:var(--maxw); margin:2.4rem auto 0; padding-top:1.7rem; border-top:1px solid rgba(255,255,255,.1); }
.disclaimer p{ color:rgba(255,255,255,.62); font-size:.8rem; line-height:1.75; }
.disclaimer strong{ color:rgba(255,255,255,.7); }
.footer-bottom{ max-width:var(--maxw); margin:1.7rem auto 0; padding-top:1.4rem; border-top:1px solid rgba(255,255,255,.1); display:flex; flex-wrap:wrap; gap:.5rem 2rem; justify-content:space-between; color:rgba(255,255,255,.68); font-size:.82rem; }
.footer-bottom strong{ color:rgba(255,255,255,.65); }
.credit-link{ color:var(--coral); text-decoration:none; font-weight:600; border-bottom:1px solid rgba(255,95,61,.4); transition:color .2s; }
.credit-link:hover{ color:#ff8a3d; }
.reg-row dd.pending{ color:var(--muted-2); font-weight:500; }

/* ---------- reveal ---------- */
[data-reveal]{ opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in{ opacity:1; transform:none; }
.polaroid[data-reveal], .photocard[data-reveal], .mini-card[data-reveal]{ transform:translateY(24px); }
.polaroid[data-reveal].in{ transform:rotate(-6deg); } /* handled by anim */
.fun-cards [data-reveal]:nth-child(2),.steps [data-reveal]:nth-child(2),.contact-cards [data-reveal]:nth-child(2){ transition-delay:.08s; }
.fun-cards [data-reveal]:nth-child(3),.steps [data-reveal]:nth-child(3),.contact-cards [data-reveal]:nth-child(3){ transition-delay:.16s; }
.fun-cards [data-reveal]:nth-child(4),.steps [data-reveal]:nth-child(4){ transition-delay:.24s; }

/* ---------- mobile menu ---------- */
.mobile-menu{ position:fixed; inset:0; z-index:890; background:var(--sky-3); display:flex; flex-direction:column; justify-content:center; gap:1rem; padding:2rem 1.6rem; transform:translateY(-100%);
  visibility:hidden; transition:transform .5s var(--ease), visibility 0s .5s; }
.mobile-menu.open{ transform:translateY(0); visibility:visible; transition:transform .5s var(--ease), visibility 0s; }
.mobile-menu a{ font-family:var(--display); font-weight:700; font-size:1.9rem; color:var(--ink); text-decoration:none; }
.mobile-menu a.cta{ color:var(--coral-d); }

/* ---------- responsive ---------- */
@media (max-width:980px){
  .know-grid,.why-grid{ grid-template-columns:1fr; }
  .why-photo{ order:-1; max-width:420px; margin:0 auto; }
  .fun-cards{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:repeat(2,1fr); }
  .price-cards{ grid-template-columns:1fr; max-width:440px; margin:0 auto; }
  .reg-grid, .warn-strip, .do-dont{ grid-template-columns:1fr; }
  .c-index-grid{ grid-template-columns:1fr 1fr; }
  .contact-cards{ grid-template-columns:1fr; }
  .footer-main{ grid-template-columns:1fr; }
  .polaroid,.photocard,.mini-card{ display:none; }
}
@media (max-width:720px){
  .nav-links,.nav-right{ display:none; }
  .nav-toggle{ display:flex; margin-left:auto; }
  .fun-cards,.steps{ grid-template-columns:1fr; }
  .footer-cols{ grid-template-columns:1fr; gap:1.6rem; }
  .hero{ min-height:auto; padding-top:8rem; }
}

@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; transition-duration:.001s !important; }
  [data-reveal]{ opacity:1 !important; transform:none !important; }
  .underline path{ stroke-dashoffset:0 !important; }
  .polaroid{ transform:rotate(-6deg);} .photocard{ transform:rotate(5deg);} .mc-verify{ transform:rotate(-3deg);} .mc-chart{ transform:rotate(3deg);}
}
