/* Lava Tower Adventure — Archetype "Glass Dark", epic adventure variant
   Graphite #11141a · glass cards · cool ice-cyan accent + warm summit-gold (lava glow)
   Sora display + Inter body. Bespoke palette: icy Kilimanjaro summit + the logo's lava-orange.
   Mobile-first, weak-net safe (backdrop-blur desktop only). */
:root {
  --bg: #11141a;
  --bg2: #161c26;
  --bg3: #0c0f15;
  --cyan: #4cc6e6;        /* ice-cyan — glacier / sky */
  --cyan-deep: #1f8fb0;
  --cyan-soft: #9fe4f5;
  --gold: #f0a945;        /* warm summit-gold / lava — from the logo */
  --gold-deep: #cf8526;
  --gold-soft: #ffc878;
  --ink: #10151c;
  --paper: #f4f6f9;
  --muted: #5d6b7c;
  --glass: rgba(255,255,255,.06);
  --glass-2: rgba(255,255,255,.085);
  --glass-line: rgba(255,255,255,.15);
  --line: #e2e7ee;
  --wa: #1faa54;
  --wa-dark: #168a44;
  --radius: 18px;
  --display: "Sora", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: #fff; line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); line-height: 1.12; font-weight: 700; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: -.018em; }
.kicker { font-weight: 700; font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .9rem; }
.kicker--cyan { color: var(--cyan); }

/* Topbar */
.topbar { background: var(--bg3); color: #c2ccd8; font-size: .8rem; display: flex; justify-content: center; gap: 1.4rem; flex-wrap: wrap; padding: .5rem 1rem; }
.topbar p { display: flex; align-items: center; gap: .5rem; }
.topbar__sep { opacity: .4; }
.topbar__dot { width: 9px; height: 9px; border-radius: 50%; background: #7a8a82; display: inline-block; }
.topbar__dot.is-open { background: #4be37a; box-shadow: 0 0 0 3px rgba(75,227,122,.22); }
.topbar__phone { font-weight: 700; color: var(--gold-soft); }
.topbar__phone:hover { text-decoration: underline; }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(17,20,26,.9); border-bottom: 1px solid rgba(255,255,255,.07); }
@media (min-width: 901px) { .header { backdrop-filter: blur(12px); } }
.header__in { max-width: 1200px; margin: 0 auto; padding: .55rem 1.25rem; display: flex; align-items: center; gap: 1.25rem; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand__logo { height: 40px; width: 40px; border-radius: 9px; background: #fff; padding: 3px; }
.brand__name { font: 800 1.18rem var(--display); color: #fff; line-height: 1; letter-spacing: .04em; }
.brand__name small { display: block; font: 500 .54rem var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); margin-top: .3rem; }
.nav { display: flex; gap: 1.4rem; font-weight: 500; font-size: .92rem; margin-left: auto; color: #d3dce6; }
.nav a:hover { color: var(--cyan); }
.header__actions { display: flex; align-items: center; gap: .8rem; }
.lang { display: flex; border: 1.5px solid rgba(255,255,255,.18); border-radius: 9px; overflow: hidden; }
.lang__btn { border: 0; background: transparent; font: 600 .76rem var(--sans); padding: .35rem .55rem; cursor: pointer; color: #a7b5c4; }
.lang__btn.is-active { background: var(--cyan); color: #04222b; }
.nav-toggle { display: none; border: 0; background: none; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 22px; height: 2.5px; background: #fff; margin: 4.5px 0; border-radius: 2px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font: 600 .95rem var(--sans); padding: .72rem 1.4rem; border-radius: 999px; transition: transform .12s, background .15s, color .15s, box-shadow .2s, filter .15s; white-space: nowrap; border: 0; cursor: pointer; }
.btn:active { transform: scale(.97); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-dark); }
.btn--gold { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #2a1800; box-shadow: 0 8px 26px rgba(240,169,69,.3); }
.btn--gold:hover { filter: brightness(1.05); }
.btn--cyan { background: var(--cyan); color: #04222b; box-shadow: 0 8px 26px rgba(76,198,230,.26); }
.btn--cyan:hover { background: var(--cyan-soft); }
.btn--glass { background: rgba(255,255,255,.08); color: #fff; border: 1.6px solid rgba(255,255,255,.4); }
@media (min-width: 901px) { .btn--glass { backdrop-filter: blur(8px); } }
.btn--glass:hover { background: rgba(255,255,255,.16); }
.btn--ghost-light { border: 1.6px solid rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); }
.btn--block { width: 100%; }
.btn--lg { padding: .98rem 1.8rem; font-size: 1.05rem; }
.btn--sm { padding: .55rem 1rem; font-size: .85rem; margin-top: .8rem; }

/* Hero */
.hero { position: relative; min-height: 94vh; display: flex; align-items: center; overflow: hidden; background: var(--bg); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 30s ease-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.15) translate(-1.5%, -1%); } }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(100deg, rgba(8,11,16,.92) 0%, rgba(8,11,16,.62) 48%, rgba(31,143,176,.16) 100%),
  linear-gradient(0deg, rgba(8,11,16,.8), rgba(0,0,0,0) 55%); }
.hero__in { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 5rem 1.25rem; width: 100%; }
.hero__copy { color: #fff; max-width: 42rem; }
.hero .kicker { color: var(--gold-soft); }
.hero__title { font-size: clamp(2.3rem, 6vw, 4.1rem); color: #fff; font-weight: 800; letter-spacing: -.025em; text-shadow: 0 4px 32px rgba(0,0,0,.4); }
.hero__title em { font-style: normal; color: var(--gold); }
.hero__sub { margin-top: 1.2rem; max-width: 36rem; font-size: 1.08rem; color: #d8e0ea; }
.hero__ctas { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero__trust { list-style: none; display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2.2rem; font-size: .85rem; color: #b9c4cf; }
.hero__trust strong { color: var(--gold-soft); display: block; font-family: var(--display); font-size: 1.3rem; }

/* Marquee */
.marquee { background: linear-gradient(90deg, var(--bg3), var(--bg2)); color: #cfd9e4; overflow: hidden; padding: .7rem 0; border-top: 2px solid var(--gold); border-bottom: 1px solid rgba(255,255,255,.06); }
.marquee__track { display: flex; white-space: nowrap; font: 700 .8rem var(--sans); letter-spacing: .16em; animation: marquee 46s linear infinite; }
.marquee__track span { padding-right: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Intro / stat band */
.intro { background: var(--bg); color: #fff; }
.intro__in { max-width: 1000px; margin: 0 auto; padding: clamp(3rem, 7vw, 4.8rem) 1.4rem; text-align: center; }
.intro .kicker { color: var(--gold-soft); }
.intro h2 { color: #fff; max-width: 22ch; margin: 0 auto; }
.intro__t { color: #c7d1dc; max-width: 48rem; margin: 1.1rem auto 0; font-size: 1.06rem; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.8rem; }
.stat { min-width: 0; padding: .4rem .5rem; border-left: 1px solid rgba(255,255,255,.12); }
.stat:first-child { border-left: 0; }
.stat__num { display: block; font-family: var(--display); font-size: clamp(1.9rem, 5.5vw, 2.8rem); color: var(--cyan); line-height: 1; text-shadow: 0 0 24px rgba(76,198,230,.3); }
.stat__label { display: block; margin-top: .55rem; font-size: .8rem; font-weight: 500; color: #aeb9c5; }

/* Sections */
.section { max-width: 1200px; margin: 0 auto; padding: clamp(3rem, 6.5vw, 4.8rem) 1.4rem; }
.section--paper { max-width: none; background: var(--paper); }
.section--paper > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section--night { max-width: none; background: var(--bg); color: #e6edf5; }
.section--night > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section__head { text-align: center; max-width: 48rem; margin: 0 auto 2.6rem; }
.section__head p:last-child { color: var(--muted); margin-top: .65rem; }
.section__head--light h2 { color: #fff; }
.section--night .section__head p:last-child { color: #9eafc0; }
.section__head--light p:last-child { color: #b6c5d4; }

/* Cards (tours/safaris) */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-7px); box-shadow: 0 24px 54px rgba(16,21,28,.18); border-color: var(--gold); }
.card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.1rem 1.15rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card__body h3 { font-size: 1.15rem; }
.card__body > p { font-size: .9rem; color: var(--muted); flex: 1; }
.card__foot { margin-top: .5rem; display: flex; flex-direction: column; gap: .65rem; }
.card__price { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.card__price s { color: #aab3bd; font-weight: 400; font-size: .82rem; margin-right: .15rem; }
.card__price b { color: var(--gold-deep); }
.card__price small { font-family: var(--sans); font-weight: 500; font-size: .72rem; color: var(--muted); }
.card__price[data-i18n="ask"] { font-family: var(--sans); font-weight: 600; font-size: .86rem; color: var(--cyan-deep); }
.card__foot .btn { font-size: .88rem; padding: .66rem .9rem; }
/* sticker badge */
.card__sticker { position: absolute; top: .85rem; left: .85rem; z-index: 2; background: #fff; color: var(--ink); border-radius: 10px; padding: .34rem .7rem; box-shadow: 0 6px 16px rgba(0,0,0,.22); transform: rotate(-3deg); font-weight: 700; line-height: 1; border: 2px solid var(--ink); }
.card__sticker small, .card__sticker strong { font: 700 .74rem var(--sans); text-transform: uppercase; letter-spacing: .04em; }
.card__sticker--hot { background: var(--gold); border-color: #2a1800; color: #2a1800; transform: rotate(3deg); }
/* dark variant for safari band */
.card--dark { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.13); }
@media (min-width: 901px) { .card--dark { backdrop-filter: blur(6px); } }
.card--dark:hover { border-color: var(--cyan); box-shadow: 0 24px 54px rgba(0,0,0,.45); }
.card--dark .card__body h3 { color: #fff; }
.card--dark .card__body > p { color: #c2ccd8; }
.card--dark .card__price { color: #fff; }
.card--dark .card__price b { color: var(--gold-soft); }
.card--dark .card__price[data-i18n="ask"] { color: var(--cyan-soft); }

.prod-note { text-align: center; color: var(--muted); font-size: .86rem; margin-top: 1.9rem; max-width: 52rem; margin-left: auto; margin-right: auto; }
.prod-note--light { color: #93a3b4; }

/* Safari band */
.safaris { background: var(--graphite, #16191a); background: var(--bg); color: #fff; position: relative; }
.safaris__in { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) 1.4rem; }

/* Zanzibar feature */
.zanzibar { background: linear-gradient(135deg, var(--bg), var(--bg2)); color: #e6edf5; position: relative; }
.zanzibar__in { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: clamp(3rem, 7vw, 5.2rem) 1.4rem; display: grid; grid-template-columns: .95fr 1.05fr; gap: 3rem; align-items: center; }
.zanzibar h2 { color: #fff; margin-bottom: 1.1rem; }
.zanzibar__copy > p { color: #c4d0dd; max-width: 36rem; }
.zan-list { list-style: none; margin: 1.5rem 0; display: grid; gap: .65rem; }
.zan-list li { padding-left: 1.7rem; position: relative; font-weight: 500; font-size: .96rem; color: #dbe4ee; }
.zan-list li::before { content: ""; position: absolute; left: 0; top: .5em; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px rgba(76,198,230,.7); }
.zan-gallery { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; gap: .8rem; }
.zan-g { border-radius: 14px; overflow: hidden; border: 1px solid var(--glass-line); aspect-ratio: 4/3; }
.zan-g--wide { grid-column: span 2; aspect-ratio: 16/7; }
.zan-g img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.zan-g:hover img { transform: scale(1.06); }

/* Why us */
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.8rem; align-items: center; }
.why__photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 16px 44px rgba(16,21,28,.14); }
.why__photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.why__info h2 { margin: .3rem 0 1.4rem; }
.why-list { list-style: none; display: grid; gap: 1.3rem; }
.why-list li { display: flex; gap: 1rem; align-items: flex-start; }
.why__num { flex: none; font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: #2a1800; background: linear-gradient(135deg, var(--gold-soft), var(--gold)); width: 2.4rem; height: 2.4rem; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(240,169,69,.3); }
.why-list h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.why-list p { font-size: .92rem; color: var(--muted); }

/* Reviews */
.rating-badge { display: inline-flex; align-items: center; gap: .6rem; background: var(--glass-2); border: 1px solid var(--glass-line); color: #fff; border-radius: 999px; padding: .48rem 1.15rem; margin-bottom: 1rem; }
.rating-badge strong { color: var(--gold-soft); font-family: var(--display); }
.rating-badge span { font-size: .82rem; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.rev { background: var(--glass-2); border: 1px solid var(--glass-line); border-radius: var(--radius); padding: 1.6rem; }
@media (min-width: 901px) { .rev { backdrop-filter: blur(8px); } }
.rev__st { color: var(--gold); letter-spacing: .12em; margin-bottom: .7rem; }
.rev blockquote { font-size: 1.02rem; color: #eef3f8; }
.rev figcaption { margin-top: .85rem; font-size: .82rem; font-weight: 600; color: var(--cyan); }

/* CTA band */
.cta-band { position: relative; color: #fff; text-align: center; padding: clamp(3.4rem, 8vw, 5.2rem) 1.4rem; overflow: hidden; background: var(--bg3); }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,11,16,.92), rgba(12,15,21,.82) 55%, rgba(240,169,69,.3)); }
.cta-band__in { position: relative; z-index: 1; max-width: 46rem; margin: 0 auto; }
.cta-band h2 { color: #fff; margin-bottom: .65rem; }
.cta-band p { color: #c8d2de; margin-bottom: 1.7rem; font-size: 1.05rem; }
.cta-band__alt { margin-top: 1.4rem; font-size: .92rem; font-weight: 600; }
.cta-band__alt a { color: var(--gold-soft); }
.cta-band__alt a:hover { text-decoration: underline; }

/* Footer */
.footer { background: var(--bg3); color: #9eafc0; font-size: .9rem; }
.footer__in { max-width: 1200px; margin: 0 auto; padding: 3rem 1.4rem 2rem; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer__brand { display: flex; align-items: center; gap: .55rem; font: 800 1.3rem var(--display); color: #fff; margin-bottom: .7rem; letter-spacing: .03em; }
.footer__logo { background: #fff; border-radius: 8px; padding: 3px; }
.footer__brand small { font: 500 .62rem var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); }
.footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .7rem; font-family: var(--sans); }
.footer a { color: var(--cyan); }
.footer a:hover { text-decoration: underline; }
.footer p { color: #aab6c3; }
.footer__legal { border-top: 1px solid rgba(255,255,255,.1); max-width: 1200px; margin: 0 auto; padding: 1.1rem 1.4rem 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .78rem; color: #69788a; }
.footer__demo { font-style: italic; }

/* WhatsApp FAB */
.wa-fab { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: var(--wa); color: #fff; display: none; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(0,0,0,.35); }
.wa-fab::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--wa); opacity: .6; animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 70% { transform: scale(1.5); opacity: 0; } 100% { opacity: 0; } }

/* Responsive */
@media (max-width: 1080px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 980px) {
  .zanzibar__in, .why-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .why__photo { max-width: 560px; }
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid rgba(255,255,255,.1); flex-direction: column; gap: 0; padding: .5rem 0; }
  .nav.is-open { display: flex; }
  .nav a { padding: .85rem 1.5rem; border-top: 1px solid rgba(255,255,255,.08); }
  .nav-toggle { display: block; }
  .header__actions .btn--wa { display: none; }
  .brand__name { font-size: 1.05rem; }
  .topbar { font-size: .72rem; gap: .5rem; }
  .cards, .cards--3 { grid-template-columns: 1fr; }
  .footer__in { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .stat:nth-child(3) { border-left: 0; }
  .hero__trust { gap: 1.3rem; }
  .wa-fab { display: flex; }
}
@media (max-width: 460px) {
  .footer__in { grid-template-columns: 1fr; }
  .zan-gallery { grid-template-columns: 1fr; }
  .zan-g--wide { aspect-ratio: 16/9; }
}

/* Motion / data-saver */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__media img, .marquee__track, .wa-fab::after { animation: none; }
  .btn, .card, .card__media img, .zan-g img { transition: none; }
}
.save-data .hero__media img, .save-data .marquee__track, .save-data .wa-fab::after { animation: none; }

/* ===== WOW EFFECTS ===== */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 70; background: linear-gradient(90deg, var(--cyan), var(--gold)); transition: width .1s linear; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
/* hero accent-word shimmer (lava-gold) */
.hero__title em { background: linear-gradient(100deg, var(--gold) 28%, #fff3da 50%, var(--gold) 72%); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: shimmer 5.5s linear infinite; }
@keyframes shimmer { to { background-position: -220% 0; } }
/* cursor spotlight */
.spot { position: relative; }
.spot::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; background: radial-gradient(420px circle at var(--mx, 35%) var(--my, 35%), rgba(76,198,230,.15), transparent 60%); transition: background .15s ease; }
.spot > * { position: relative; z-index: 1; }
/* aurora glow behind dark bands */
.aurora { position: relative; overflow: hidden; }
.aurora::before { content: ""; position: absolute; inset: -45%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(42% 38% at 18% 26%, rgba(76,198,230,.2), transparent 62%),
    radial-gradient(40% 36% at 82% 28%, rgba(159,228,245,.12), transparent 62%),
    radial-gradient(46% 40% at 62% 80%, rgba(240,169,69,.16), transparent 64%);
  filter: blur(8px);
  animation: aurora 17s ease-in-out infinite alternate; }
.aurora > * { position: relative; z-index: 1; }
@keyframes aurora {
  0% { transform: translate(-5%, -4%) scale(1) rotate(0deg); opacity: .85; }
  50% { opacity: 1; }
  100% { transform: translate(5%, 4%) scale(1.14) rotate(4deg); opacity: .9; }
}
.hero.aurora::before { mix-blend-mode: screen; }
/* stat pop */
.stats.in .stat__num { animation: pop .6s ease; }
@keyframes pop { 0% { transform: scale(.6); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__title em { animation: none; -webkit-text-fill-color: var(--gold); }
  .aurora::before, .stats.in .stat__num { animation: none; }
}
.save-data .aurora::before { animation: none; }

/* ===== FAQ accordion ===== */
.faq__list { max-width: 51rem; margin: 0 auto; display: grid; gap: .75rem; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 6px 22px rgba(16,21,28,.05); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.08rem 1.35rem; font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-deep); }
.faq__mark { position: relative; flex: none; width: 18px; height: 18px; }
.faq__mark::before, .faq__mark::after { content: ""; position: absolute; background: var(--gold-deep); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.faq__mark::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq__mark::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__item[open] .faq__mark::after { transform: rotate(90deg); opacity: 0; }
.faq__item > p { padding: 0 1.35rem 1.2rem; margin: 0; color: var(--muted); font-size: .94rem; max-width: 46rem; }
@media (prefers-reduced-motion: reduce) { .faq__mark::before, .faq__mark::after { transition: none; } }
