/* ============================================================
   VICTOIRE CLUB FRANCE — style.css
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy-900: #060e1a;
  --navy-800: #0d1b2a;
  --navy-700: #132337;
  --navy-600: #1a2d4a;
  --navy-500: #223659;
  --navy-400: #2e4a70;

  --gold-500: #d4af37;
  --gold-400: #e0c050;
  --gold-300: #edd87a;
  --gold-600: #b8931e;

  --red-500: #c41230;
  --red-400: #e01535;

  --white: #ffffff;
  --off-white: #f5f3ee;
  --light-200: #e8e4da;
  --gray-400: #8a95a3;
  --gray-300: #aab3bd;
  --gray-200: #c8cdd3;

  --success: #27ae60;
  --warning: #e67e22;
  --error: #c0392b;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.2);
  --shadow-md: 0 4px 20px rgba(0,0,0,.3);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.4);
  --shadow-gold: 0 4px 20px rgba(212,175,55,.25);

  --transition: 250ms cubic-bezier(.4,0,.2,1);
  --transition-slow: 500ms cubic-bezier(.4,0,.2,1);

  --container: 1200px;
  --header-h: 72px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy-800);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-gold { color: var(--gold-500); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-800);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,175,55,.4);
}
.btn--gold:active { transform: translateY(0); }
.btn--outline {
  background: transparent;
  color: var(--gray-200);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn--outline:hover { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn--ghost {
  background: rgba(255,255,255,.08);
  color: var(--gray-200);
  border: 1.5px solid rgba(255,255,255,.12);
}
.btn--ghost:hover { background: rgba(255,255,255,.14); color: var(--white); }
.btn--lg { padding: 18px 36px; font-size: 1.0625rem; }
.btn--sm { padding: 9px 20px; font-size: .875rem; }
.btn--full { width: 100%; justify-content: center; }

body.gate-active { overflow: hidden; }

.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.age-gate.hidden { display: none; }
.age-gate__backdrop {
  position: absolute; inset: 0;
  background: rgba(6,14,26,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.age-gate__card {
  position: relative; z-index: 1;
  background: linear-gradient(160deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 460px; width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(212,175,55,.08);
  animation: scaleIn .35s ease;
}
.age-gate__logo {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 28px;
  font-size: 1.1rem; font-weight: 500;
}
.age-gate__logo strong { color: var(--gold-500); font-weight: 700; }
.age-gate__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-800);
  border-radius: 50%;
  font-size: 1rem; font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-gold);
}
.age-gate__title {
  font-size: 1.75rem; font-weight: 700; margin-bottom: 14px;
}
.age-gate__text {
  color: var(--gray-300); font-size: .9375rem; margin-bottom: 32px; line-height: 1.65;
}
.age-gate__actions {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px;
}
.age-gate__legal { font-size: .8rem; color: var(--gray-400); }
.age-gate__refused { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; }
.age-gate__card--refused { border-color: rgba(196,18,48,.3); }
.refused-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(196,18,48,.15); border: 2px solid var(--red-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--red-400); margin: 0 auto 20px;
}

/* ── Cookie Banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 5000; width: calc(100% - 48px); max-width: 760px;
}
.cookie-banner__inner {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 24px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  animation: slideUp .4s ease;
}
.cookie-banner__text { flex: 1; }
.cookie-banner__text strong { display: block; margin-bottom: 4px; font-size: .9375rem; }
.cookie-banner__text p { font-size: .8125rem; color: var(--gray-300); }
.cookie-banner__text a { color: var(--gold-400); }
.cookie-banner__text a:hover { text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Header / Nav ───────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header--scrolled {
  background: rgba(13,27,42,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 4px 24px rgba(0,0,0,.4);
}
.site-header__inner {
  height: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.125rem; font-weight: 600;
  font-family: var(--font-heading);
  color: var(--white);
}
.site-logo svg { flex-shrink: 0; }
.site-logo__text span { color: var(--gold-500); }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  padding: 8px 14px;
  font-size: .9rem; font-weight: 500;
  color: var(--gray-200);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.site-nav a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.site-nav a.active { color: var(--gold-400); }
.header-age-badge {
  font-size: .75rem; font-weight: 700;
  background: rgba(212,175,55,.15); color: var(--gold-400);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 50px; padding: 4px 10px;
  margin-left: 8px;
}
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .site-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; gap: 4px;
    background: rgba(13,27,42,.97);
    backdrop-filter: blur(16px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-120%);
    transition: transform var(--transition-slow);
    pointer-events: none;
  }
  .site-nav.open { transform: translateY(0); pointer-events: all; }
  .site-nav a { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .header-age-badge { display: none; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  overflow: hidden; padding-top: var(--header-h);
}
#particles-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212,175,55,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(30,60,100,.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2;
  padding: 80px 24px;
  max-width: 760px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.25);
  color: var(--gold-400);
  border-radius: 50px; padding: 8px 18px;
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 24px; letter-spacing: -.01em;
}
.hero__subtitle {
  font-size: 1.0625rem; color: var(--gray-300);
  max-width: 600px; line-height: 1.7;
  margin-bottom: 40px;
}
.hero__cta { margin-bottom: 56px; }
.hero__stats {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.hero__stat strong {
  display: block; font-size: 1.75rem; font-weight: 800;
  font-family: var(--font-heading); color: var(--gold-400);
}
.hero__stat span { font-size: .8125rem; color: var(--gray-400); }
.hero__stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.12); }
.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 14px; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.hero__scroll span {
  display: block; width: 4px; height: 8px;
  background: var(--gold-400); border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

/* ── Section Common ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; margin-bottom: 20px;
}
.section-desc {
  font-size: 1.0625rem; color: var(--gray-300);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* ── Platforms ──────────────────────────────────────────────── */
.platforms {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-700) 100%);
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.platform-card {
  background: linear-gradient(160deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.platform-card--featured {
  border-color: rgba(212,175,55,.3);
  box-shadow: 0 0 0 1px rgba(212,175,55,.1), var(--shadow-md);
  transform: translateY(-8px) scale(1.01);
}
.platform-card--featured:hover { transform: translateY(-14px) scale(1.01); }

.platform-card__ribbon {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .875rem;
  box-shadow: var(--shadow-md);
}
.rank-1 { background: linear-gradient(135deg, #ffd700, #b8860b); color: #3d2200; }
.rank-2 { background: linear-gradient(135deg, #c0c0c0, #808080); color: #1a1a1a; }
.rank-3 { background: linear-gradient(135deg, #cd7f32, #8b4513); color: #fff; }

.platform-card__image {
  height: 180px; position: relative; overflow: hidden;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 20px 24px;
}
.platform-card__img {
  max-width: 100%; max-height: 140px;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
}
.platform-card__img-overlay,
.platform-card__logo-wrap,
.platform-card__image--netbet,
.platform-card__image--pmu,
.platform-card__image--winamax { display: none; }

.platform-card__body { padding: 20px; }
.platform-card__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.stars { display: flex; gap: 3px; }
.star { color: var(--gold-500); font-size: 1.1rem; }
.platform-card__score {
  font-family: var(--font-heading); font-size: 1.625rem; font-weight: 700;
  color: var(--white);
}
.platform-card__score small { font-size: .8rem; color: var(--gray-400); }

.platform-card__bonus { margin-bottom: 16px; }
.bonus-label {
  display: block; font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold-500); margin-bottom: 6px;
}
.bonus-text {
  font-size: .9rem; color: var(--off-white); line-height: 1.5;
  font-weight: 500;
}

.platform-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.platform-card__tags span {
  font-size: .75rem; color: var(--gray-200);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
}

.platform-card__payments { display: flex; gap: 6px; margin-bottom: 20px; flex-wrap: wrap; }
.pay-badge {
  padding: 4px 9px; border-radius: var(--radius-sm);
  font-size: .7rem; font-weight: 700; letter-spacing: .03em;
}
.pay-visa { background: #1a1f71; color: #fff; }
.pay-mc { background: #eb001b; color: #fff; }
.pay-pp { background: #003087; color: #fff; }
.pay-sk { background: #852b8c; color: #fff; }

.card-disclaimer {
  font-size: .7rem; color: var(--gray-400); text-align: center; margin-top: 10px;
}
.platforms-note {
  text-align: center; margin-top: 40px;
  font-size: .8125rem; color: var(--gray-400);
  max-width: 700px; margin-left: auto; margin-right: auto;
}

@media (max-width: 1024px) {
  .platforms-grid { grid-template-columns: 1fr 1fr; }
  .platform-card--featured { transform: none; }
}
@media (max-width: 640px) {
  .platforms-grid { grid-template-columns: 1fr; }
}

/* ── Why Us ─────────────────────────────────────────────────── */
.why-us {
  padding: 100px 0;
  background: var(--navy-800);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.why-card {
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: transform var(--transition), border-color var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,.2);
}
.why-card__icon {
  width: 60px; height: 60px; border-radius: var(--radius-md);
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 1.0625rem; font-weight: 600; margin-bottom: 12px;
}
.why-card p { font-size: .875rem; color: var(--gray-300); line-height: 1.65; }

.methodology {
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.methodology__title {
  font-size: 1.125rem; font-weight: 600; margin-bottom: 28px;
  color: var(--gold-400);
}
.methodology__bars { display: flex; flex-direction: column; gap: 20px; }
.methodology__item {}
.methodology__label {
  display: flex; justify-content: space-between;
  font-size: .875rem; color: var(--gray-200); margin-bottom: 8px;
}
.methodology__track {
  height: 8px; background: rgba(255,255,255,.08);
  border-radius: 4px; overflow: hidden;
}
.methodology__fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .methodology { padding: 24px; }
}

/* ── Responsible Banner ─────────────────────────────────────── */
.resp-banner {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--navy-700) 0%, var(--navy-800) 100%);
}
.resp-banner__inner {
  background: linear-gradient(135deg, rgba(39,174,96,.08) 0%, rgba(39,174,96,.04) 100%);
  border: 1px solid rgba(39,174,96,.2);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex; align-items: flex-start; gap: 32px;
}
.resp-banner__icon {
  color: #27ae60; flex-shrink: 0;
  width: 80px; height: 80px;
  background: rgba(39,174,96,.1);
  border: 1px solid rgba(39,174,96,.25);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.resp-banner__body { flex: 1; }
.resp-banner__body h2 {
  font-size: 1.625rem; font-weight: 700; margin-bottom: 12px;
}
.resp-banner__body p {
  color: var(--gray-300); font-size: .9375rem; line-height: 1.7;
  margin-bottom: 24px;
}
.resp-banner__links { display: flex; flex-wrap: wrap; gap: 12px; }
.resp-link {
  padding: 8px 18px;
  background: rgba(39,174,96,.1);
  border: 1px solid rgba(39,174,96,.25);
  color: #5dce88;
  border-radius: 50px;
  font-size: .875rem; font-weight: 500;
  transition: var(--transition);
}
.resp-link:hover {
  background: rgba(39,174,96,.2);
  color: #7de0a0;
}
.resp-banner__badge {
  font-size: 1.25rem; font-weight: 800;
  background: rgba(212,175,55,.1);
  border: 2px solid rgba(212,175,55,.3);
  color: var(--gold-400);
  border-radius: 50%; width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .resp-banner__inner { flex-direction: column; padding: 32px 24px; }
  .resp-banner__icon { width: 60px; height: 60px; }
  .resp-banner__icon svg { width: 36px; height: 36px; }
  .resp-banner__badge { align-self: flex-start; }
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq {
  padding: 100px 0;
  background: var(--navy-800);
}
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(212,175,55,.2); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px;
  font-size: .9375rem; font-weight: 600; color: var(--white);
  text-align: left;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold-400); }
.faq-item.open .faq-q { color: var(--gold-400); }
.faq-chevron { flex-shrink: 0; transition: transform var(--transition); color: var(--gray-400); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--gold-400); }
.faq-a {
  padding: 0 24px;
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-a.open {
  max-height: 500px;
  padding: 0 24px 22px;
}
.faq-a p { color: var(--gray-300); font-size: .9rem; line-height: 1.75; }
.faq-a a { color: var(--gold-400); }
.faq-a a:hover { text-decoration: underline; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--gold-500); }
.footer-about {
  font-size: .875rem; color: var(--gray-400);
  line-height: 1.7; margin-bottom: 20px;
}
.footer-disclaimer {
  font-size: .75rem; color: var(--gray-400);
  line-height: 1.6; padding: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
}
.footer-col h4 {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gray-300);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  font-size: .875rem; color: var(--gray-400);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-400); }
.footer-help { display: flex; flex-direction: column; gap: 10px; }
.footer-help a {
  display: flex; align-items: center; gap: 8px;
  font-size: .8125rem; color: var(--gray-400);
  transition: color var(--transition);
}
.footer-help a::before {
  content: ''; display: block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-600); flex-shrink: 0;
}
.footer-help a:hover { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copyright { font-size: .8125rem; color: var(--gray-400); }
.footer-18 {
  font-size: .75rem; font-weight: 700;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.25);
  color: var(--gold-500);
  padding: 3px 10px; border-radius: 50px;
}
.footer-bottom-right { font-size: .8125rem; color: var(--gray-400); }
.footer-bottom-right a { color: var(--gray-300); }
.footer-bottom-right a:hover { color: var(--gold-400); }

@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Sub-page layout ────────────────────────────────────────── */
.subpage-hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.subpage-hero__inner {
  display: flex; align-items: flex-start; gap: 16px; flex-direction: column;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8125rem; color: var(--gray-400);
}
.breadcrumb a { color: var(--gold-400); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--gray-400); }
.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .875rem; color: var(--gold-400);
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 50px; padding: 9px 18px;
  transition: var(--transition);
  margin-bottom: 16px;
}
.back-btn:hover { background: rgba(212,175,55,.14); }
.subpage-hero__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
}
.subpage-hero__meta { font-size: .8125rem; color: var(--gray-400); margin-top: 8px; }
.subpage-content {
  padding: 72px 0 100px;
  background: var(--navy-800);
}
.subpage-content .prose {
  max-width: 760px;
}
.prose h2 {
  font-size: 1.5rem; font-weight: 700; color: var(--gold-400);
  margin: 40px 0 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.125rem; font-weight: 600; margin: 28px 0 10px; }
.prose p {
  font-size: .9375rem; color: var(--gray-300); line-height: 1.8;
  margin-bottom: 16px;
}
.prose ul { margin: 0 0 16px 20px; }
.prose ul li {
  font-size: .9375rem; color: var(--gray-300); line-height: 1.7;
  margin-bottom: 8px; list-style: disc;
}
.prose a { color: var(--gold-400); }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--white); font-weight: 600; }
.prose .highlight-box {
  background: rgba(212,175,55,.07);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: var(--radius-md);
  padding: 20px 24px; margin: 24px 0;
}
.prose .highlight-box p { margin-bottom: 0; }
.prose .warning-box {
  background: rgba(196,18,48,.07);
  border: 1px solid rgba(196,18,48,.2);
  border-radius: var(--radius-md);
  padding: 20px 24px; margin: 24px 0;
}
.prose .warning-box p { color: #e07080; margin-bottom: 0; }

/* ── Reveal Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Keyframes ──────────────────────────────────────────────── */
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: .4; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Responsive tweaks ──────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .hero__content { padding: 60px 24px; }
  .hero__stats { gap: 20px; }
  .hero__stat-div { height: 28px; }
  .hero__title { font-size: 2.2rem; }
  .platforms { padding: 72px 0; }
  .why-us { padding: 72px 0; }
  .faq { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }
}
@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 16px; }
  .hero__stat-div { display: none; }
  .cookie-banner { bottom: 12px; width: calc(100% - 24px); }
  .cookie-banner__inner { flex-direction: column; gap: 16px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}
