/* =============================================
   PARIS GAINS ULTIMATE — style.css
   Palette: deep navy, gold-amber, slate, white
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@600;700;800;900&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-bg:       #07090f;
  --c-bg2:      #0d1120;
  --c-bg3:      #131828;
  --c-surface:  #1a2035;
  --c-border:   rgba(255,255,255,.08);

  --c-gold:     #e8a020;
  --c-gold2:    #f5c842;
  --c-gold-dim: rgba(232,160,32,.15);
  --c-blue:     #1e6fe0;
  --c-blue2:    #4a9eff;
  --c-blue-dim: rgba(30,111,224,.15);

  --c-green:    #22c55e;
  --c-red:      #ef4444;
  --c-warn:     #f59e0b;

  --c-text:     #e8ecf4;
  --c-text2:    #8b95a8;
  --c-text3:    #5c6478;

  --radius:     14px;
  --radius-lg:  22px;
  --shadow:     0 8px 40px rgba(0,0,0,.55);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.35);

  --font-body:  'Inter', system-ui, sans-serif;
  --font-head:  'Montserrat', 'Inter', sans-serif;

  --nav-h:      68px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-surface); border-radius: 99px; }

/* =============================================
   AGE GATE
   ============================================= */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(7,9,15,.92);
  backdrop-filter: blur(18px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  transition: opacity var(--transition);
}
#age-gate.hidden { opacity: 0; pointer-events: none; }

.age-gate__box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
  animation: slideUp .5s var(--transition);
}
.age-gate__logo {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  margin-bottom: 1.8rem;
}
.age-gate__logo svg { width: 40px; height: 40px; }
.age-gate__logo span { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; }
.age-gate__logo span em { color: var(--c-gold); font-style: normal; }
.age-gate__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  background: var(--c-gold-dim);
  border: 2px solid var(--c-gold);
  border-radius: 50%;
  font-family: var(--font-head); font-weight: 900; font-size: 1.6rem;
  color: var(--c-gold);
  margin: 0 auto 1.5rem;
}
.age-gate__title {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
  margin-bottom: .75rem;
}
.age-gate__text { color: var(--c-text2); font-size: .95rem; margin-bottom: 2rem; line-height: 1.6; }
.age-gate__actions { display: flex; flex-direction: column; gap: .85rem; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold2) 100%);
  color: #07090f;
  border: none; border-radius: var(--radius);
  padding: .85rem 1.8rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 4px 20px rgba(232,160,32,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,160,32,.5); filter: brightness(1.08); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--c-text2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: .75rem 1.8rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.btn-secondary:hover { border-color: var(--c-red); color: var(--c-red); }

#age-gate-refused {
  background: var(--c-surface);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 400px; width: 100%;
  text-align: center;
  display: none;
}
#age-gate-refused.visible { display: block; animation: slideUp .4s var(--transition); }
.refused__icon { font-size: 3rem; margin-bottom: 1rem; }
.refused__title { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--c-red); margin-bottom: .75rem; }
.refused__text { color: var(--c-text2); font-size: .9rem; }

/* =============================================
   COOKIE BANNER
   ============================================= */
#cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 9000;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  width: calc(100% - 2rem); max-width: 780px;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  box-shadow: var(--shadow);
  transition: opacity var(--transition), transform var(--transition);
}
#cookie-banner.hidden { opacity: 0; transform: translateX(-50%) translateY(120%); pointer-events: none; }
.cookie-banner__text { flex: 1; font-size: .88rem; color: var(--c-text2); min-width: 200px; }
.cookie-banner__text a { color: var(--c-gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-cookie {
  padding: .55rem 1.2rem; border-radius: var(--radius); font-size: .88rem;
  font-family: var(--font-head); font-weight: 600; cursor: pointer; border: none;
  transition: filter var(--transition), transform var(--transition);
}
.btn-cookie:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-cookie--accept { background: var(--c-gold); color: #07090f; }
.btn-cookie--refuse { background: var(--c-bg3); color: var(--c-text2); border: 1px solid var(--c-border); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky; top: 0; z-index: 500;
  height: var(--nav-h);
  background: rgba(7,9,15,.75);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--c-border);
  transition: background var(--transition);
}
.navbar__inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
}
.navbar__logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  color: var(--c-text);
}
.navbar__logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.navbar__logo em { color: var(--c-gold); font-style: normal; }

.navbar__links {
  display: flex; align-items: center; gap: .25rem;
  list-style: none;
}
.navbar__links a {
  display: block; padding: .45rem .9rem;
  font-size: .88rem; font-weight: 500; color: var(--c-text2);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.navbar__links a:hover { color: var(--c-text); background: rgba(255,255,255,.06); }

.navbar__cta {
  display: inline-flex; align-items: center;
  background: var(--c-gold-dim);
  border: 1px solid var(--c-gold);
  border-radius: var(--radius);
  padding: .45rem 1.1rem;
  font-size: .88rem; font-family: var(--font-head); font-weight: 700; color: var(--c-gold);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar__cta:hover { background: var(--c-gold); color: #07090f; box-shadow: 0 4px 16px rgba(232,160,32,.35); }

.navbar__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.navbar__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--c-text); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(13,17,32,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 499;
  flex-direction: column; gap: .25rem;
}
.navbar__mobile-menu.open { display: flex; }
.navbar__mobile-menu a {
  display: block; padding: .75rem 1rem;
  font-size: 1rem; font-weight: 500; color: var(--c-text2);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.navbar__mobile-menu a:hover { color: var(--c-text); background: rgba(255,255,255,.06); }
.navbar__mobile-menu .navbar__cta { margin-top: .5rem; justify-content: center; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
}

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,160,32,.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(30,111,224,.14) 0%, transparent 60%),
    linear-gradient(180deg, #07090f 0%, #0d1120 100%);
}

.hero__grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
}

.hero__particles {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.particle {
  position: absolute; border-radius: 50%;
  background: var(--c-gold);
  opacity: .35;
  animation: float linear infinite;
}

.hero__content { position: relative; z-index: 1; max-width: 780px; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--c-gold-dim);
  border: 1px solid rgba(232,160,32,.3);
  border-radius: 99px;
  padding: .35rem 1rem;
  font-size: .82rem; font-weight: 600; color: var(--c-gold);
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__eyebrow svg { width: 14px; height: 14px; }

.hero__title { margin-bottom: 1.25rem; }
.hero__title em { color: var(--c-gold); font-style: normal; }

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-text2); margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto;
}

.hero__actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.btn-hero {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold2) 100%);
  color: #07090f;
  border: none; border-radius: var(--radius);
  padding: 1rem 2rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(232,160,32,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(232,160,32,.55); }
.btn-hero svg { width: 20px; height: 20px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: .95rem 1.8rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.04); }

.hero__stats {
  display: flex; align-items: center; justify-content: center; gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.hero__stat-value {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 900;
  color: var(--c-gold); line-height: 1;
}
.hero__stat-label { font-size: .8rem; color: var(--c-text3); margin-top: .2rem; text-transform: uppercase; letter-spacing: .06em; }
.hero__stat-divider { width: 1px; height: 40px; background: var(--c-border); }

/* =============================================
   SECTIONS COMMONS
   ============================================= */
.section { padding: 6rem 1.5rem; }
.section--alt { background: var(--c-bg2); }
.section__inner { max-width: 1200px; margin: 0 auto; }

.section__header { text-align: center; margin-bottom: 3.5rem; }
.section__eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--c-gold); margin-bottom: .75rem;
}
.section__title { margin-bottom: 1rem; }
.section__title em { color: var(--c-gold); font-style: normal; }
.section__subtitle { color: var(--c-text2); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s var(--transition), transform .6s var(--transition); }
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }

/* =============================================
   PLATFORM CARDS
   ============================================= */
.platforms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.platform-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  border-color: rgba(232,160,32,.2);
}
.platform-card--top { border-color: rgba(232,160,32,.35); box-shadow: 0 8px 40px rgba(232,160,32,.12); }
.platform-card--top:hover { border-color: rgba(232,160,32,.5); box-shadow: 0 20px 60px rgba(232,160,32,.2); }

.platform-card__ribbon {
  position: absolute; top: 18px; left: -8px;
  background: var(--c-gold);
  color: #07090f;
  font-family: var(--font-head); font-size: .8rem; font-weight: 900;
  padding: .3rem .9rem .3rem 1.1rem;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 3px 12px rgba(232,160,32,.4);
  z-index: 2;
}
.platform-card:nth-child(2) .platform-card__ribbon { background: #c0c8d8; color: #1a2035; box-shadow: 0 3px 12px rgba(192,200,216,.3); }
.platform-card:nth-child(3) .platform-card__ribbon { background: #c87533; color: #fff; box-shadow: 0 3px 12px rgba(200,117,51,.3); }

.platform-card__img-wrap {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, var(--c-bg3) 0%, var(--c-bg2) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}
.platform-card__img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  padding: .75rem;
  opacity: .9; transition: opacity var(--transition), transform var(--transition);
}
.platform-card:hover .platform-card__img-wrap img { opacity: 1; transform: scale(1.04); }
.platform-card__img-placeholder {
  font-family: var(--font-head); font-size: 2rem; font-weight: 900;
  color: var(--c-text3); letter-spacing: -.03em;
}

.platform-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 1rem; }

.platform-card__header { display: flex; align-items: center; justify-content: space-between; }
.platform-card__name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; }

.platform-card__rating { display: flex; align-items: center; gap: .5rem; }
.platform-card__score {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 900; color: var(--c-gold);
}
.stars { display: flex; gap: 2px; }
.star { width: 14px; height: 14px; color: var(--c-gold); }
.star svg { width: 100%; height: 100%; fill: currentColor; }

.platform-card__bonus {
  background: var(--c-gold-dim);
  border: 1px solid rgba(232,160,32,.2);
  border-radius: var(--radius);
  padding: .8rem 1rem;
}
.platform-card__bonus-label {
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--c-gold); margin-bottom: .3rem;
}
.platform-card__bonus-value { font-family: var(--font-head); font-size: .97rem; font-weight: 700; color: var(--c-text); }

.platform-card__payments { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.platform-card__payment-label { font-size: .78rem; color: var(--c-text3); margin-right: .25rem; }
.payment-icon {
  display: inline-flex; align-items: center; justify-content: center;
  height: 26px; padding: 0 .55rem;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--c-border);
  border-radius: 5px;
  font-size: .72rem; font-weight: 700; color: var(--c-text2);
  letter-spacing: .03em;
}

.btn-cta {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold2) 100%);
  color: #07090f;
  border: none; border-radius: var(--radius);
  padding: .9rem;
  font-family: var(--font-head); font-weight: 800; font-size: .97rem;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 18px rgba(232,160,32,.3);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  margin-top: auto;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,32,.5); filter: brightness(1.07); }
.btn-cta svg { width: 16px; height: 16px; }

.platform-card__top-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--c-gold-dim);
  border: 1px solid rgba(232,160,32,.3);
  border-radius: 99px;
  padding: .25rem .75rem;
  font-size: .75rem; font-weight: 600; color: var(--c-gold);
}
.platform-card__top-badge svg { width: 12px; height: 12px; }

/* =============================================
   POURQUOI NOUS
   ============================================= */
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(232,160,32,.2); }
.why-card__icon {
  width: 56px; height: 56px;
  background: var(--c-gold-dim);
  border: 1px solid rgba(232,160,32,.25);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.why-card__icon svg { width: 28px; height: 28px; color: var(--c-gold); }
.why-card__title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.why-card__text { font-size: .88rem; color: var(--c-text2); line-height: 1.6; }

/* =============================================
   RESPONSIBLE / BANNER
   ============================================= */
.responsible {
  background: linear-gradient(135deg, rgba(245,158,11,.1) 0%, rgba(239,68,68,.08) 100%);
  border-top: 1px solid rgba(245,158,11,.2);
  border-bottom: 1px solid rgba(245,158,11,.2);
}
.responsible__inner {
  max-width: 900px; margin: 0 auto;
  text-align: center; padding: 4rem 1.5rem;
}
.responsible__icon {
  width: 64px; height: 64px;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.responsible__icon svg { width: 32px; height: 32px; color: var(--c-warn); }
.responsible__title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.responsible__text { color: var(--c-text2); font-size: .97rem; margin-bottom: 2rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.responsible__links { display: flex; align-items: center; justify-content: center; gap: .75rem; flex-wrap: wrap; }
.responsible__link {
  display: inline-flex; align-items: center; gap: .4rem;
  border: 1px solid rgba(245,158,11,.3);
  border-radius: var(--radius);
  padding: .55rem 1.1rem;
  font-size: .85rem; font-weight: 600; color: var(--c-warn);
  transition: background var(--transition), border-color var(--transition);
}
.responsible__link:hover { background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.5); }
.responsible__link svg { width: 14px; height: 14px; }

/* =============================================
   FAQ
   ============================================= */
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }

.faq__item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item.open { border-color: rgba(232,160,32,.3); }

.faq__question {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600; font-size: .97rem;
  transition: color var(--transition);
  user-select: none;
}
.faq__question:hover { color: var(--c-gold); }
.faq__item.open .faq__question { color: var(--c-gold); }
.faq__icon {
  flex-shrink: 0; width: 24px; height: 24px;
  background: var(--c-bg3); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.faq__icon svg { width: 14px; height: 14px; color: var(--c-text2); transition: color var(--transition); }
.faq__item.open .faq__icon { background: var(--c-gold-dim); transform: rotate(45deg); }
.faq__item.open .faq__icon svg { color: var(--c-gold); }

.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s;
  padding: 0 1.5rem;
}
.faq__answer p { color: var(--c-text2); font-size: .93rem; line-height: 1.7; padding-bottom: 1.25rem; }
.faq__item.open .faq__answer { max-height: 500px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  padding: 4rem 1.5rem 2rem;
}
.footer__inner { max-width: 1200px; margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--c-border);
}
.footer__brand .navbar__logo { margin-bottom: 1rem; }
.footer__desc { font-size: .875rem; color: var(--c-text3); line-height: 1.7; margin-bottom: 1.25rem; }
.footer__disclaimer {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .8rem; color: var(--c-text3); line-height: 1.6;
}
.footer__col-title { font-family: var(--font-head); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--c-text3); margin-bottom: 1.1rem; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer__links a { font-size: .88rem; color: var(--c-text3); transition: color var(--transition); }
.footer__links a:hover { color: var(--c-gold); }

.footer__help-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer__help-links a {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--c-text3); transition: color var(--transition);
}
.footer__help-links a:hover { color: var(--c-warn); }
.footer__help-links a svg { width: 13px; height: 13px; flex-shrink: 0; }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem;
}
.footer__bottom-left { display: flex; align-items: center; gap: 1rem; }
.footer__age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 2px solid rgba(239,68,68,.5);
  border-radius: 50%;
  font-family: var(--font-head); font-size: .78rem; font-weight: 900; color: var(--c-red);
}
.footer__copyright { font-size: .82rem; color: var(--c-text3); }
.footer__legal { font-size: .78rem; color: var(--c-text3); max-width: 520px; text-align: right; }

/* =============================================
   SUBPAGE LAYOUT
   ============================================= */
.subpage-wrapper { max-width: 820px; margin: 0 auto; padding: 5rem 1.5rem 6rem; }
.subpage-back {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: .6rem 1.2rem;
  font-size: .88rem; font-weight: 600; color: var(--c-text2);
  margin-bottom: 2.5rem;
  transition: border-color var(--transition), color var(--transition);
}
.subpage-back:hover { border-color: var(--c-gold); color: var(--c-gold); }
.subpage-back svg { width: 16px; height: 16px; }

.subpage-header { margin-bottom: 3rem; }
.subpage-eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--c-gold); margin-bottom: .75rem;
}
.subpage-title { font-family: var(--font-head); font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 900; margin-bottom: 1rem; }
.subpage-meta { font-size: .88rem; color: var(--c-text3); }

.subpage-content { font-size: .97rem; line-height: 1.8; color: var(--c-text2); }
.subpage-content h2 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--c-text); margin: 2.5rem 0 .75rem; }
.subpage-content h3 { font-size: 1rem; font-weight: 700; color: var(--c-text); margin: 1.5rem 0 .5rem; }
.subpage-content p { margin-bottom: 1rem; }
.subpage-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.subpage-content ul li { margin-bottom: .4rem; }
.subpage-content a { color: var(--c-gold); text-decoration: underline; }
.subpage-content a:hover { color: var(--c-gold2); }

.subpage-toc {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.subpage-toc__title { font-family: var(--font-head); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--c-text3); margin-bottom: 1rem; }
.subpage-toc__list { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.subpage-toc__list a { font-size: .88rem; color: var(--c-text2); padding: .25rem 0; display: block; transition: color var(--transition); }
.subpage-toc__list a:hover { color: var(--c-gold); }

.highlight-box {
  background: var(--c-gold-dim); border: 1px solid rgba(232,160,32,.25);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box p { color: var(--c-text); margin: 0; }

.warn-box {
  background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.25);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.warn-box p { color: var(--c-text2); margin: 0; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes float {
  0%   { transform: translateY(0) translateX(0); opacity: .35; }
  50%  { opacity: .15; }
  100% { transform: translateY(-120vh) translateX(30px); opacity: 0; }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1/-1; }
}

@media (max-width: 700px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__legal { text-align: left; }

  .platforms__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }

  .hero__stats { gap: 1.5rem; }
  .hero__stat-divider { display: none; }

  #cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .why__grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 1rem; }
}
