/* ═════════════════════════════════════════════════════════════
   FINAXO ASSOCIATES — Design System v3
   Premium · Fluid type · Layered depth · Choreographed motion
   ═════════════════════════════════════════════════════════════ */

:root {
  /* brand */
  --navy: #0b3a8f;
  --navy-bright: #1553b8;
  --navy-dark: #082c6c;
  --navy-ink: #0a1f44;
  --gold: #f0a722;
  --gold-soft: #f7b944;
  --gold-dark: #cf8d0e;
  --green: #0e8f5e;
  /* neutrals */
  --ink: #16233a;
  --muted: #5d6b82;
  --line: #e6eaf1;
  --bg: #f5f7fa;
  --bg-2: #eef1f6;
  --card: #ffffff;
  /* effects */
  --shadow-sm: 0 1px 2px rgba(10, 31, 68, 0.06), 0 2px 8px rgba(10, 31, 68, 0.05);
  --shadow: 0 2px 6px rgba(10, 31, 68, 0.06), 0 12px 32px rgba(10, 31, 68, 0.09);
  --shadow-lg: 0 4px 12px rgba(10, 31, 68, 0.08), 0 24px 56px rgba(10, 31, 68, 0.14);
  --radius: 16px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --grad-brand: linear-gradient(135deg, #0b3a8f 0%, #1553b8 60%, #2f7be0 100%);
  --grad-gold: linear-gradient(120deg, #f7b944 0%, #f0a722 55%, #e2920f 100%);
}
html[data-theme="dark"] {
  --navy-ink: #e8eef8;
  --ink: #dbe4f2;
  --muted: #94a6c2;
  --line: #1e2b42;
  --bg: #070d18;
  --bg-2: #0a1120;
  --card: #101a2d;
  --navy: #2c63c4;
  --navy-bright: #3f7ae0;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow: 0 2px 6px rgba(0, 0, 0, 0.35), 0 14px 36px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 4px 14px rgba(0, 0, 0, 0.4), 0 28px 64px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, Roboto, "Noto Sans Malayalam", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: var(--navy); }
::selection { background: var(--gold); color: var(--navy-ink); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 6px; }

.container { width: min(1160px, 92%); margin: 0 auto; }
.ml-text { font-size: 0.92em; opacity: 0.85; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--navy-ink); padding: .6rem 1rem; z-index: 200; border-radius: 0 0 10px 0; font-weight: 700; }
.skip-link:focus { left: 0; }

/* scroll progress */
#progressBar { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 120; background: var(--grad-gold); transition: width .08s linear; }

/* ── Icons ── */
svg.ic { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; vertical-align: -0.22em; }

/* ── Top bar ── */
.topbar { background: linear-gradient(90deg, #081a38, #0a1f44 45%, #0b2f6b); color: #cfdcf3; font-size: 0.84rem; position: relative; }
.topbar::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, transparent 0 22px, rgba(255,255,255,0.02) 22px 24px); pointer-events: none; }
.topbar .container { display: flex; justify-content: space-between; gap: 1rem; padding: 0.42rem 0; flex-wrap: wrap; position: relative; z-index: 1; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar span.dot::before { content: "● "; color: var(--gold); }

/* ── Header ── */
.site-header { background: color-mix(in srgb, var(--card) 86%, transparent); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 90; transition: box-shadow .3s var(--ease), background .3s; }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 0.65rem 0; gap: 0.6rem; transition: padding .3s var(--ease); }
.site-header.scrolled .nav-wrap { padding: 0.4rem 0; }
.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.brand-badge { width: 44px; height: 44px; border-radius: 13px; background: var(--grad-brand); color: var(--gold); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(11, 58, 143, 0.35), inset 0 1px 0 rgba(255,255,255,.25); transition: transform .3s var(--ease); }
.brand:hover .brand-badge { transform: rotate(-6deg) scale(1.05); }
.brand-badge svg.ic { width: 1.55rem; height: 1.55rem; stroke-width: 2.1; }
.brand-name { font-weight: 800; color: var(--navy-ink); font-size: 1.14rem; line-height: 1.15; letter-spacing: -0.01em; }
.brand-sub { font-size: 0.7rem; color: var(--muted); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav > a, .nav > .has-sub > a { position: relative; text-decoration: none; color: var(--ink); font-weight: 600; padding: 0.55rem 0.85rem; border-radius: 9px; font-size: 0.95rem; }
.nav > a::after, .nav > .has-sub > a::after { content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.25rem; height: 2.5px; border-radius: 2px; background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav > a:hover::after, .nav > .has-sub > a:hover::after, .nav > a.active::after { transform: scaleX(1); }
.has-sub { position: relative; }
.has-sub > a .chev { display: inline-block; transition: transform .25s var(--ease); font-size: .7rem; color: var(--muted); margin-left: .15rem; }
.has-sub:hover .chev { transform: rotate(180deg); }
/* Dropdown stays hoverable across the gap: panel is always rendered but
   faded out; an invisible ::after bridge covers the space between the
   trigger and the panel so the pointer never leaves .has-sub. */
.sub { position: absolute; top: calc(100% + 8px); left: 0; background: var(--card); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); min-width: 300px; padding: 0.45rem; z-index: 95; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(8px); transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s linear .22s; }
.sub::before { content: ""; position: absolute; top: -5px; left: 26px; width: 10px; height: 10px; background: var(--card); border-left: 1px solid var(--line); border-top: 1px solid var(--line); transform: rotate(45deg); }
.sub::after { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition-delay: 0s; }
@keyframes pop { from { opacity: 0; transform: translateY(6px) scale(.98); } to { opacity: 1; transform: none; } }
.sub a { display: flex; align-items: center; gap: 0.55rem; padding: 0.5rem 0.7rem; font-size: 0.9rem; text-decoration: none; color: var(--ink); border-radius: 9px; }
.sub a:hover { background: var(--bg-2); color: var(--navy); }
.sub a .ic { color: var(--navy); }
.nav-toggle { display: none; background: var(--card); border: 1px solid var(--line); border-radius: 10px; font-size: 1.25rem; padding: 0.25rem 0.7rem; cursor: pointer; color: var(--navy-ink); }
.theme-toggle { background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 0.42rem 0.5rem; cursor: pointer; color: var(--navy-ink); display: inline-flex; transition: transform .25s var(--ease), border-color .2s; }
.theme-toggle:hover { transform: rotate(18deg); border-color: var(--gold); }
.theme-toggle .ic { width: 1.1rem; height: 1.1rem; }
.theme-toggle .sun { display: none; }
html[data-theme="dark"] .theme-toggle .sun { display: block; }
html[data-theme="dark"] .theme-toggle .moon { display: none; }

/* ── Buttons ── */
.btn { position: relative; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.6rem; border-radius: 12px; font-weight: 700; text-decoration: none; font-size: 1rem; border: 2px solid transparent; overflow: hidden; transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease); }
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-gold { background: var(--grad-gold); color: #231603; box-shadow: 0 6px 20px rgba(240, 167, 34, 0.38); }
.btn-gold::after { content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255,255,255,0.55), transparent); transform: skewX(-20deg); animation: shine 3.2s var(--ease) infinite; }
@keyframes shine { 0%, 55% { left: -80%; } 75%, 100% { left: 130%; } }
.btn-outline-light { border-color: rgba(255,255,255,0.55); color: #fff; backdrop-filter: blur(4px); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-navy { background: var(--grad-brand); color: #fff; box-shadow: 0 6px 18px rgba(11, 58, 143, 0.35); }
.btn-wa { background: linear-gradient(120deg, #12a06a, #0e8f5e); color: #fff; box-shadow: 0 6px 18px rgba(14, 143, 94, 0.35); }
.btn-sm { padding: 0.5rem 1.05rem; font-size: 0.9rem; border-radius: 10px; }

/* ── Hero ── */
.hero { position: relative; color: #fff; padding: 4.6rem 0 5rem; overflow: hidden; background: linear-gradient(150deg, #050d1d 0%, #0a1f44 42%, #0b3a8f 100%); }
html[data-theme="dark"] .hero { background: linear-gradient(150deg, #04070f 0%, #0a1428 45%, #0d2f6e 100%); }
/* aurora blobs */
.hero .aurora { position: absolute; inset: 0; pointer-events: none; filter: blur(70px); opacity: .55; }
.hero .aurora i { position: absolute; border-radius: 50%; }
.hero .aurora i:nth-child(1) { width: 480px; height: 480px; left: -140px; top: -160px; background: radial-gradient(circle, rgba(240,167,34,.5), transparent 65%); animation: drift1 16s ease-in-out infinite alternate; }
.hero .aurora i:nth-child(2) { width: 520px; height: 520px; right: -160px; bottom: -220px; background: radial-gradient(circle, rgba(47,123,224,.55), transparent 65%); animation: drift2 20s ease-in-out infinite alternate; }
.hero .aurora i:nth-child(3) { width: 300px; height: 300px; right: 28%; top: -120px; background: radial-gradient(circle, rgba(14,143,94,.35), transparent 65%); animation: drift1 24s ease-in-out infinite alternate-reverse; }
@keyframes drift1 { to { transform: translate(60px, 40px) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-70px, -30px) scale(1.1); } }
/* grid overlay */
.hero .gridlines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%); pointer-events: none; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 3rem; align-items: center; }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.22); padding: 0.34rem 0.95rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; backdrop-filter: blur(6px); }
.hero .eyebrow .ic { color: var(--gold); }
.hero h1 { font-size: clamp(2rem, 1.15rem + 3.4vw, 3.35rem); line-height: 1.13; letter-spacing: -0.022em; font-weight: 800; margin: 1.15rem 0 0.95rem; max-width: 20ch; animation: rise .8s var(--ease) both; }
.hero h1 em { font-style: normal; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.sub { max-width: 56ch; color: #c6d4ee; font-size: 1.1rem; animation: rise .8s .12s var(--ease) both; }
.hero .ml-line { margin-top: 0.75rem; color: var(--gold-soft); font-weight: 600; font-size: 1.03rem; animation: rise .8s .2s var(--ease) both; }
.hero-ctas { display: flex; gap: 0.85rem; margin-top: 1.8rem; flex-wrap: wrap; animation: rise .8s .28s var(--ease) both; }
.hero-badges { display: flex; gap: 0.7rem; margin-top: 1.7rem; flex-wrap: wrap; animation: rise .8s .38s var(--ease) both; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; font-weight: 600; color: #dbe6fa; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); border-radius: 10px; padding: 0.42rem 0.8rem; backdrop-filter: blur(6px); }
.hero-badge .ic { color: var(--gold); }
.hero-note { margin-top: 1.3rem; font-size: 0.86rem; color: #8fa6cc; animation: rise .8s .46s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* status pill */
.status-pill { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.34rem 0.9rem; border-radius: 999px; font-size: 0.82rem; font-weight: 700; }
.status-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; animation: blink 2.4s ease-in-out infinite; }
.status-pill.open { background: rgba(14, 143, 94, 0.16); color: #35d691; border: 1px solid rgba(53, 214, 145, 0.4); }
.status-pill.closed { background: rgba(224, 82, 65, 0.14); color: #ff9d8f; border: 1px solid rgba(255, 157, 143, 0.35); }
@keyframes blink { 50% { opacity: 0.3; } }

/* hero illustration */
.hero-art { display: flex; justify-content: center; perspective: 900px; animation: artIn 1s .2s var(--ease) both; }
@keyframes artIn { from { opacity: 0; transform: translateX(30px) scale(.96); } to { opacity: 1; transform: none; } }
.hero-art svg { width: min(430px, 100%); height: auto; filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.4)); transition: transform .2s ease-out; will-change: transform; }
.f1 { animation: floaty 5.5s ease-in-out infinite; }
.f2 { animation: floaty 7s ease-in-out 0.9s infinite; }
.f3 { animation: floaty 8s ease-in-out 1.7s infinite; }
.ha-ring { animation: spin 60s linear infinite; transform-origin: 210px 210px; }
.ha-ring2 { animation: spin 90s linear infinite reverse; transform-origin: 210px 210px; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Ticker ── */
.ticker { background: #050d1d; color: #b9c9e8; overflow: hidden; padding: 0.7rem 0; border-block: 1px solid rgba(255,255,255,0.07); position: relative; }
.ticker::before, .ticker::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.ticker::before { left: 0; background: linear-gradient(90deg, #050d1d, transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, #050d1d, transparent); }
.ticker-track { display: flex; gap: 2.6rem; width: max-content; animation: ticker 34s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.9rem; white-space: nowrap; letter-spacing: .01em; }
.ticker-item .ic { color: var(--gold); }
.ticker-item::after { content: "•"; color: var(--gold); margin-left: 2.6rem; opacity: .6; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── Sections ── */
section.block { padding: 4.2rem 0; }
section.block.alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.sec-head { max-width: 46rem; margin-bottom: 2.4rem; }
.sec-head .kicker { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--gold-dark); font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; }
.sec-head .kicker::before { content: ""; width: 26px; height: 2.5px; border-radius: 2px; background: var(--grad-gold); }
html[data-theme="dark"] .sec-head .kicker { color: var(--gold); }
.sec-head h2 { font-size: clamp(1.6rem, 1.1rem + 2vw, 2.35rem); color: var(--navy-ink); line-height: 1.2; letter-spacing: -0.018em; font-weight: 800; margin: 0.5rem 0 0.55rem; }
.sec-head p { color: var(--muted); font-size: 1.03rem; }

/* ── Cards / grids ── */
.grid { display: grid; gap: 1.15rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)); }
.card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); display: block; text-decoration: none; color: var(--ink); transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s; overflow: hidden; }
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
a.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
a.card:hover::before { transform: scaleX(1); }
.card .icon { display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--bg-2), var(--bg)); border: 1px solid var(--line); border-radius: 14px; color: var(--navy); margin-bottom: 0.2rem; transition: transform .3s var(--ease), background .3s; }
.card .icon svg.ic { width: 1.7rem; height: 1.7rem; }
a.card:hover .icon { transform: scale(1.08) rotate(-4deg); background: var(--grad-brand); color: var(--gold-soft); border-color: transparent; box-shadow: 0 6px 16px rgba(11, 58, 143, 0.3); }
.card h3 { color: var(--navy-ink); margin: 0.45rem 0 0.25rem; font-size: 1.13rem; font-weight: 750; letter-spacing: -0.01em; }
.card .ml-sub { display: block; font-size: 0.84rem; color: var(--gold-dark); font-weight: 700; margin-top: -0.15rem; }
html[data-theme="dark"] .card .ml-sub { color: var(--gold-soft); }
.card p { color: var(--muted); font-size: 0.95rem; }
.card .more { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--navy); font-weight: 700; font-size: 0.88rem; margin-top: 0.75rem; transition: gap .2s var(--ease); }
a.card:hover .more { gap: 0.55rem; }
.trust-card .icon { background: linear-gradient(135deg, #fdf3df, #fdeec9); border-color: #f3ddb0; color: var(--gold-dark); }
html[data-theme="dark"] .trust-card .icon { background: rgba(240,167,34,0.1); border-color: rgba(240,167,34,0.25); color: var(--gold); }

/* ── How it works ── */
.how-band { background: var(--navy-ink); color: #d7e1f5; position: relative; overflow: hidden; }
html[data-theme="dark"] .how-band { background: #060c19; }
.how-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 15% 0%, rgba(240,167,34,0.12), transparent 60%), radial-gradient(600px 300px at 90% 100%, rgba(47,123,224,0.16), transparent 60%); pointer-events: none; }
.how-band .kicker { color: var(--gold-soft); }
.how-band h2 { color: #fff; }
.how-band p { color: #9fb2d4; }
.how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; position: relative; z-index: 1; }
.how-step { position: relative; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 1.7rem 1.5rem 1.5rem; backdrop-filter: blur(6px); transition: transform .25s var(--ease), background .25s; }
.how-step:hover { transform: translateY(-5px); background: rgba(255,255,255,0.08); }
.how-step .num { position: absolute; top: -1.15rem; left: 1.4rem; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--grad-gold); color: #231603; font-weight: 800; font-size: 1.05rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(240, 167, 34, 0.4); }
.how-step h3 { color: #fff; font-size: 1.08rem; margin: 0.7rem 0 0.3rem; }
.how-step p { color: #9fb2d4; font-size: 0.93rem; }
.how-step .ic { color: var(--gold-soft); width: 1.6rem; height: 1.6rem; }

/* ── Stats ── */
.stats-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.15rem; }
.stat { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.2rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .22s var(--ease), box-shadow .22s; }
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat::after { content: ""; position: absolute; left: 20%; right: 20%; bottom: 0; height: 3px; border-radius: 3px 3px 0 0; background: var(--grad-gold); opacity: .8; }
.stat-num { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.02em; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.15; }
html[data-theme="dark"] .stat-num { background: linear-gradient(135deg, #7fb0ff, #b9d2ff); -webkit-background-clip: text; background-clip: text; }
.stat-label { color: var(--muted); font-weight: 700; font-size: 0.92rem; margin-top: 0.25rem; }

/* ── Quiz ── */
.quiz-box { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.4rem; box-shadow: var(--shadow); overflow: hidden; }
.quiz-box::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 200px at 100% 0%, rgba(240,167,34,0.09), transparent 60%); pointer-events: none; }
.quiz-chips { display: flex; flex-wrap: wrap; gap: 0.65rem; margin: 1.2rem 0 1.5rem; }
.quiz-chip { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.62rem 1.2rem; border-radius: 999px; border: 1.5px solid var(--line); background: var(--bg); color: var(--ink); font-weight: 650; cursor: pointer; font-size: 0.94rem; font-family: inherit; transition: border-color .18s, transform .18s var(--ease), background .18s, box-shadow .18s; }
.quiz-chip:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.quiz-chip.sel { background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: 0 6px 16px rgba(11, 58, 143, 0.32); }
.quiz-results { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; margin-top: 0.6rem; }
.quiz-results:empty::after { content: "Tap a category above — we'll show you exactly what to bring."; color: var(--muted); font-size: 0.95rem; }

/* ── Search ── */
.svc-search { position: relative; max-width: 440px; margin-bottom: 1.5rem; }
.svc-search .ic { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--muted); width: 1.1rem; height: 1.1rem; }
.svc-search input { width: 100%; padding: 0.85rem 1.1rem 0.85rem 2.8rem; border-radius: 13px; border: 1.5px solid var(--line); background: var(--card); color: var(--ink); font: inherit; font-size: 1rem; box-shadow: var(--shadow-sm); transition: border-color .2s, box-shadow .2s; }
.svc-search input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(11, 58, 143, 0.12); }
.svc-search input::placeholder { color: var(--muted); }
#svcEmpty { display: none; color: var(--muted); padding: 1rem 0; }

/* ── Prose / page head ── */
.prose { max-width: 52rem; }
.prose p { margin-bottom: 1rem; }
.page-head { position: relative; background: linear-gradient(150deg, #050d1d, #0a1f44 55%, #0b3a8f); color: #fff; padding: 3.2rem 0; overflow: hidden; }
.page-head::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 85% 85% at 60% 20%, #000 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 85% 85% at 60% 20%, #000 20%, transparent 70%); }
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(1.75rem, 1.2rem + 2.6vw, 2.6rem); line-height: 1.18; letter-spacing: -0.02em; font-weight: 800; }
.page-head .ml-sub-head { color: var(--gold-soft); font-weight: 650; margin-top: 0.3rem; }
.page-head p { color: #c3d2ec; max-width: 62ch; margin-top: 0.55rem; }
.page-head .icon { display: inline-flex; width: 68px; height: 68px; align-items: center; justify-content: center; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.18); border-radius: 18px; margin-bottom: 0.7rem; backdrop-filter: blur(6px); }
.page-head .icon svg.ic { width: 2.1rem; height: 2.1rem; color: var(--gold-soft); }
.breadcrumb { font-size: 0.84rem; margin-bottom: 1rem; color: #93a9d1; }
.breadcrumb a { color: #cddcf6; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.checklist { list-style: none; margin: 1.2rem 0; }
.checklist li { padding: 0.5rem 0 0.5rem 2.1rem; position: relative; }
.checklist li::before { content: "✔"; position: absolute; left: 0; top: 0.5rem; color: var(--green); font-weight: 800; }

/* ── Steps (service pages) ── */
.steps { counter-reset: step; }
.step { position: relative; padding: 1.35rem 1.5rem 1.35rem 4.2rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .22s var(--ease), box-shadow .22s; }
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step::before { counter-increment: step; content: counter(step); position: absolute; left: 1.1rem; top: 1.35rem; width: 2.15rem; height: 2.15rem; border-radius: 12px; background: var(--grad-brand); color: var(--gold-soft); font-weight: 800; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(11, 58, 143, 0.3); }
.step h3 { color: var(--navy-ink); font-size: 1.05rem; margin-bottom: 0.2rem; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ── FAQ ── */
details.faq { background: var(--card); border: 1px solid var(--line); border-radius: 13px; padding: 1.05rem 1.35rem; margin-bottom: 0.75rem; box-shadow: var(--shadow-sm); transition: border-color .2s; }
details.faq:hover { border-color: #c9d4e6; }
details.faq summary { font-weight: 700; color: var(--navy-ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; flex-shrink: 0; width: 1.7rem; height: 1.7rem; border-radius: 50%; background: var(--bg-2); color: var(--gold-dark); font-size: 1.25rem; font-weight: 600; display: flex; align-items: center; justify-content: center; transition: transform .25s var(--ease), background .25s, color .25s; }
html[data-theme="dark"] details.faq summary::after { color: var(--gold); }
details.faq[open] summary::after { transform: rotate(45deg); background: var(--grad-gold); color: #231603; }
details.faq p { margin-top: 0.65rem; color: var(--muted); animation: rise .3s var(--ease) both; }

/* ── Check grid ── */
.check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 0.75rem; }
.check-item { display: flex; gap: 0.6rem; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: 13px; padding: 0.9rem 1.05rem; font-size: 0.94rem; transition: transform .18s var(--ease), border-color .18s; }
.check-item:hover { transform: translateY(-2px); border-color: var(--gold); }
.check-item .ic { color: var(--green); margin-top: 0.18rem; }

/* ── Testimonials ── */
.quote-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.quote-card .stars { color: var(--gold); letter-spacing: 2px; }
.quote-card p { margin: 0.5rem 0 0.8rem; font-style: italic; color: var(--ink); }
.quote-card .who { font-weight: 700; font-size: 0.88rem; color: var(--muted); }

/* ── CTA band (dark premium) ── */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(140deg, #081a38, #0b3a8f); border-radius: var(--radius-lg); padding: 2.8rem; display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; flex-wrap: wrap; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px 200px at 12% 10%, rgba(240,167,34,0.2), transparent 60%), radial-gradient(500px 260px at 95% 90%, rgba(47,123,224,0.25), transparent 60%); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: 1.6rem; letter-spacing: -0.015em; }
.cta-band p { color: #b6c7e6; }
.cta-band .btn-outline-light { border-color: rgba(255,255,255,0.5); }

/* ── Area chips ── */
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip { background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 0.45rem 1.05rem; font-size: 0.9rem; color: var(--navy-ink); font-weight: 600; transition: transform .18s var(--ease), border-color .18s; }
.chip:hover { transform: translateY(-2px); border-color: var(--gold); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.info-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-sm); }
.info-card h3 { color: var(--navy-ink); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.55rem; font-weight: 750; }
.info-card table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.info-card td { padding: 0.5rem 0; vertical-align: top; }
.info-card td:first-child { color: var(--muted); padding-right: 1rem; white-space: nowrap; }
.map-frame { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.map-frame iframe { display: block; width: 100%; height: 360px; border: 0; filter: saturate(0.9); }
html[data-theme="dark"] .map-frame iframe { filter: invert(0.92) hue-rotate(185deg) saturate(0.7); }
.copy-btn { background: var(--bg-2); border: 1px solid var(--line); color: var(--navy); cursor: pointer; display: inline-flex; align-items: center; gap: 0.35rem; font: inherit; font-size: 0.82rem; font-weight: 700; padding: 0.18rem 0.6rem; border-radius: 999px; transition: background .2s, color .2s; }
.copy-btn:hover { background: var(--grad-brand); color: #fff; border-color: transparent; }

/* ── WhatsApp enquiry form ── */
.wa-form { display: grid; gap: 0.95rem; }
.wa-form label { font-weight: 700; font-size: 0.9rem; color: var(--navy-ink); display: block; margin-bottom: 0.32rem; }
.wa-form input, .wa-form select, .wa-form textarea { width: 100%; padding: 0.78rem 1rem; border-radius: 12px; border: 1.5px solid var(--line); background: var(--bg); color: var(--ink); font: inherit; transition: border-color .2s, box-shadow .2s; }
.wa-form input:focus, .wa-form select:focus, .wa-form textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(11, 58, 143, 0.12); }
.wa-form textarea { min-height: 100px; resize: vertical; }
.wa-form .btn { justify-self: start; }

/* ── Footer ── */
.site-footer { background: linear-gradient(180deg, #081a38, #050d1d); color: #a9bbdd; margin-top: 3.5rem; padding: 3.6rem 0 0; font-size: 0.93rem; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .6; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.4rem; padding-bottom: 2.6rem; position: relative; z-index: 1; }
.site-footer h4 { color: #fff; margin-bottom: 0.9rem; font-size: 0.98rem; letter-spacing: 0.02em; }
.site-footer h4::after { content: ""; display: block; width: 28px; height: 2.5px; border-radius: 2px; background: var(--grad-gold); margin-top: 0.4rem; }
.site-footer a { color: #a9bbdd; text-decoration: none; transition: color .18s, padding-left .18s; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer li a:hover { color: var(--gold-soft); padding-left: 4px; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem; }
.footer-brand .brand-badge { width: 40px; height: 40px; border-radius: 11px; }
.footer-brand span { font-weight: 800; color: #fff; font-size: 1.05rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.09); padding: 1.2rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; position: relative; z-index: 1; }
.footer-bottom .legal { color: #7f93b8; max-width: 58ch; }
.install-chip { display: none; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.22); color: #fff; border-radius: 999px; padding: 0.45rem 1rem; cursor: pointer; font: inherit; font-size: 0.86rem; font-weight: 600; transition: background .2s, border-color .2s; }
.install-chip.show { display: inline-flex; }
.install-chip:hover { background: rgba(255,255,255,0.14); border-color: var(--gold); }

/* ── WhatsApp float ── */
.wa-float { position: fixed; right: 1.15rem; bottom: 1.15rem; z-index: 85; width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(140deg, #2ae07a, #1fbd5e); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); transition: transform .2s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float::before { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37, 211, 102, 0.5); animation: wa-pulse 2.2s ease-out infinite; }
@keyframes wa-pulse { 0% { transform: scale(0.9); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
.wa-float svg { width: 31px; height: 31px; fill: #fff; stroke: none; }

/* ── Mobile action bar ── */
.mob-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 88; display: none; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; background: color-mix(in srgb, var(--card) 92%, transparent); backdrop-filter: blur(14px); border-top: 1px solid var(--line); padding: 0.55rem 0.8rem calc(0.55rem + env(safe-area-inset-bottom)); box-shadow: 0 -6px 24px rgba(10, 31, 68, 0.12); }
.mob-btn { display: flex; flex-direction: column; align-items: center; gap: 0.12rem; font-size: 0.71rem; font-weight: 750; text-decoration: none; color: var(--navy-ink); padding: 0.5rem 0.3rem; border-radius: 12px; letter-spacing: .01em; }
.mob-btn .ic { width: 1.35rem; height: 1.35rem; }
.mob-btn.call { background: var(--grad-brand); color: #fff; box-shadow: 0 4px 12px rgba(11, 58, 143, 0.3); }
.mob-btn.wa { background: linear-gradient(140deg, #12a06a, #0e8f5e); color: #fff; box-shadow: 0 4px 12px rgba(14, 143, 94, 0.3); }
.mob-btn.dir { background: var(--grad-gold); color: #231603; box-shadow: 0 4px 12px rgba(240, 167, 34, 0.35); }

/* ── Back to top / toast ── */
.to-top { position: fixed; left: 1.15rem; bottom: 1.25rem; z-index: 80; width: 46px; height: 46px; border-radius: 50%; background: var(--grad-brand); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .25s, transform .25s var(--ease); box-shadow: var(--shadow); }
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
#toast { position: fixed; left: 50%; bottom: 1.6rem; transform: translate(-50%, 16px); background: var(--navy-ink); color: #fff; padding: 0.75rem 1.3rem; border-radius: 12px; font-size: 0.92rem; font-weight: 600; opacity: 0; pointer-events: none; transition: .25s var(--ease); z-index: 110; box-shadow: var(--shadow-lg); }
#toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ── Note ── */
.note { background: #fff8e6; border: 1px solid #f0d9a0; border-radius: 13px; padding: 0.95rem 1.25rem; font-size: 0.9rem; color: #6b5310; margin-bottom: 1.6rem; }
html[data-theme="dark"] .note { background: rgba(240,167,34,0.07); border-color: rgba(240,167,34,0.28); color: #f0d9a0; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.grid .reveal:nth-child(2) { transition-delay: .06s; }
.grid .reveal:nth-child(3) { transition-delay: .12s; }
.grid .reveal:nth-child(4) { transition-delay: .18s; }
.grid .reveal:nth-child(5) { transition-delay: .06s; }
.grid .reveal:nth-child(6) { transition-delay: .12s; }
.grid .reveal:nth-child(7) { transition-delay: .18s; }
.grid .reveal:nth-child(8) { transition-delay: .06s; }
.grid .reveal:nth-child(9) { transition-delay: .12s; }

/* ── Page & theme transitions ── */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vtOut .16s ease both; }
::view-transition-new(root) { animation: vtIn .3s var(--ease) both; }
@keyframes vtOut { to { opacity: 0; transform: translateY(-6px); } }
@keyframes vtIn { from { opacity: 0; transform: translateY(8px); } }

body { animation: pageIn .45s var(--ease) both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
body.page-out { opacity: 0; transform: translateY(-6px); transition: opacity .16s ease-in, transform .16s ease-in; }

/* ink droplet theme reveal (View Transitions path) */
html.theme-ink::view-transition-old(root) { animation: none; }
html.theme-ink::view-transition-new(root) { animation: inkSpread .6s var(--ease) both; }
@keyframes inkSpread {
  from { clip-path: circle(0px at var(--tx, 92%) var(--ty, 5%)); }
  to { clip-path: circle(var(--ink-r, 160vmax) at var(--tx, 92%) var(--ty, 5%)); }
}

/* ink droplet fallback (browsers without View Transitions) */
.ink-drop { position: fixed; z-index: 210; pointer-events: none; border-radius: 50%; transform: translate(-50%, -50%) scale(0); background: radial-gradient(circle, var(--ink-c, #0a1428) 0%, color-mix(in srgb, var(--ink-c, #0a1428) 75%, transparent) 55%, transparent 74%); animation: inkDrop .6s ease-in both; }
.ink-drop::after { content: ""; position: absolute; inset: 14%; border-radius: 50%; border: 2px solid color-mix(in srgb, var(--ink-c, #0a1428) 40%, transparent); animation: inkRing .75s ease-out both; }
@keyframes inkDrop { 0% { transform: translate(-50%, -50%) scale(0); opacity: 1; } 70% { opacity: .92; } 100% { transform: translate(-50%, -50%) scale(1); opacity: 0; } }
@keyframes inkRing { 0% { transform: scale(.55); opacity: .85; } 100% { transform: scale(1.7); opacity: 0; } }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-art { justify-content: center; }
  .hero-art svg { width: min(300px, 74%); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  /* Mobile-first density: breathable, not zoomed-in */
  html { font-size: 16px; }
  body { font-size: 16.5px; line-height: 1.7; padding-bottom: 4.9rem; }
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--card); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; padding: 0.7rem 4% 1rem; box-shadow: var(--shadow-lg); animation: pop .25s var(--ease) both; }
  .nav.open { display: flex; }
  .has-sub > a .chev { display: none; }
  .sub { display: block; position: static; border: 0; box-shadow: none; min-width: 0; padding: 0 0 0 1rem; background: transparent; opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition: none; }
  .sub::before, .sub::after { display: none; }
  .topbar { font-size: 0.78rem; }
  .topbar .container { padding: 0.32rem 0; }
  .nav-wrap { padding: 0.55rem 0; }
  .brand-badge { width: 40px; height: 40px; border-radius: 12px; }
  .brand-name { font-size: 1.02rem; }
  .brand-sub { font-size: 0.62rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .cta-band { padding: 1.8rem 1.5rem; }
  .cta-band h2 { font-size: 1.3rem; }
  .hero { padding: 2.6rem 0 2.8rem; }
  .hero h1 { font-size: clamp(1.7rem, 1.2rem + 2.6vw, 2.2rem); margin: 0.85rem 0 0.7rem; }
  .hero p.sub { font-size: 1rem; margin-top: 0; }
  .hero .ml-line { font-size: 0.95rem; }
  .hero-ctas { gap: 0.7rem; margin-top: 1.3rem; }
  .hero .btn { padding: 0.75rem 1.35rem; }
  .hero-badges { gap: 0.5rem; margin-top: 1.2rem; }
  .hero-badge { font-size: 0.78rem; padding: 0.38rem 0.7rem; }
  .hero-note { display: none; }
  .hero-art svg { width: min(250px, 66%); margin-top: 0.5rem; }
  .hero .aurora i { filter: blur(50px); }
  .ticker { padding: 0.55rem 0; }
  .ticker-item { font-size: 0.82rem; }
  section.block { padding: 2.5rem 0; }
  .sec-head { margin-bottom: 1.6rem; }
  .sec-head h2 { font-size: clamp(1.4rem, 1.1rem + 1.8vw, 1.75rem); }
  .sec-head p { font-size: 0.95rem; }
  .grid { gap: 0.9rem; }
  .grid-3 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .grid-4 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
  .card { padding: 1.25rem 1.15rem; }
  .card .icon { width: 48px; height: 48px; border-radius: 12px; }
  .card .icon svg.ic { width: 1.5rem; height: 1.5rem; }
  .card h3 { font-size: 1.05rem; }
  .card p { font-size: 0.92rem; }
  .stats-band { gap: 0.8rem; }
  .stat { padding: 1.2rem 0.8rem 1rem; }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.82rem; }
  .quiz-box { padding: 1.3rem 1.1rem; }
  .quiz-chip { padding: 0.5rem 0.9rem; font-size: 0.86rem; }
  .quiz-results { grid-template-columns: 1fr; }
  .svc-search input { padding: 0.75rem 1rem 0.75rem 2.6rem; font-size: 0.95rem; }
  .how-step { padding: 1.4rem 1.2rem 1.2rem; }
  .how-step .num { top: -1rem; left: 1.1rem; width: 2.2rem; height: 2.2rem; font-size: 0.95rem; }
  .page-head { padding: 2.2rem 0; }
  .page-head h1 { font-size: clamp(1.55rem, 1.15rem + 2.2vw, 2rem); }
  .page-head p { font-size: 0.95rem; }
  .page-head .icon { width: 56px; height: 56px; border-radius: 15px; }
  .page-head .icon svg.ic { width: 1.8rem; height: 1.8rem; }
  .checklist li { font-size: 0.95rem; }
  .step { padding: 1.2rem 1.2rem 1.2rem 3.6rem; }
  .step::before { left: 0.95rem; top: 1.2rem; width: 1.9rem; height: 1.9rem; }
  details.faq { padding: 0.9rem 1.05rem; }
  .check-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .check-item { padding: 0.75rem 0.85rem; font-size: 0.88rem; }
  .chips { gap: 0.45rem; }
  .chip { padding: 0.38rem 0.85rem; font-size: 0.84rem; }
  .info-card { padding: 1.3rem 1.2rem; }
  .info-card td { font-size: 0.92rem; }
  .wa-form .btn { justify-self: stretch; }
  .wa-form .btn { width: 100%; justify-content: center; }
  .wa-form .btn svg.ic { display: none; }
  .mob-bar { display: grid; }
  body { padding-bottom: 4.9rem; }
  .wa-float { width: 54px; height: 54px; bottom: calc(4.9rem + 0.75rem); }
  .wa-float svg { width: 28px; height: 28px; }
  .to-top { width: 42px; height: 42px; bottom: calc(4.9rem + 0.75rem); left: auto; right: calc(1.1rem + 66px); }
  #toast { bottom: calc(4.9rem + 0.75rem); }
}
@media (max-width: 480px) {
  .container { width: min(1160px, 94%); }
  .check-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; align-items: flex-start; }
  .hero-art svg { width: min(220px, 60%); }
  .stat-num { font-size: 1.8rem; }
  .cta-band { flex-direction: column; align-items: stretch; text-align: center; }
  .cta-band .btn { width: 100%; justify-content: center; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-art svg { transform: none !important; }
  html { scroll-behavior: auto; }
}
