/* =========================================================
   GUIDE PARIS ELITE — style.css
   ========================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --c-bg:          #050d1a;
  --c-bg-2:        #0A1628;
  --c-bg-3:        #0f1e35;
  --c-bg-card:     #101f38;
  --c-bg-card-2:   #132240;
  --c-border:      rgba(212,168,67,0.12);
  --c-border-2:    rgba(255,255,255,0.06);

  --c-gold:        #D4A843;
  --c-gold-light:  #f0c060;
  --c-gold-dark:   #a07820;
  --c-gold-glow:   rgba(212,168,67,0.18);

  --c-text:        #e8edf5;
  --c-text-2:      #b0bdd0;
  --c-text-3:      #6a7d95;

  --c-success:     #2ecc71;
  --c-warning:     #f39c12;
  --c-error:       #e74c3c;
  --c-info:        #3498db;

  --c-silver:      #C0C8D4;
  --c-bronze:      #CD7F32;

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

  /* Spacing (8px grid) */
  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-6:  3rem;
  --sp-8:  4rem;
  --sp-12: 6rem;
  --sp-16: 8rem;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 32px rgba(212,168,67,0.2);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-normal: 250ms ease;
  --t-slow:   400ms ease;

  /* Navbar */
  --navbar-h: 72px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

/* --- Typography helpers --- */
.text-gradient {
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-light) 50%, var(--c-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-md);
  transition: all var(--t-normal);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Sizes */
.btn--sm  { padding: 0.5rem 1rem;    font-size: 0.8rem; }
.btn--md  { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
.btn--lg  { padding: 0.9rem 2rem;    font-size: 1rem; }
.btn--full { width: 100%; }

/* Variants */
.btn--primary {
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-light) 100%);
  color: #0A1628;
  box-shadow: 0 4px 20px rgba(212,168,67,0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,67,0.45);
  background: linear-gradient(135deg, var(--c-gold-light) 0%, var(--c-gold) 100%);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  border: 1.5px solid var(--c-gold);
  color: var(--c-gold);
  background: transparent;
}
.btn--outline:hover {
  background: var(--c-gold-glow);
  transform: translateY(-1px);
}

.btn--ghost {
  color: var(--c-text-2);
  background: transparent;
  border: 1px solid var(--c-border-2);
}
.btn--ghost:hover {
  color: var(--c-text);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}

.btn--light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--light:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* =========================================================
   AGE GATE
   ========================================================= */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}
.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,13,26,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.age-gate__card {
  position: relative;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  animation: slideUp 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
.age-gate__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: var(--sp-4);
  font-size: 1.2rem;
  color: var(--c-text-2);
}
.age-gate__logo strong { color: var(--c-gold); }
.age-gate__logo .nav-icon { width: 36px; height: 36px; }
.age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-light));
  color: #0A1628;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: var(--r-full);
  margin: 0 auto var(--sp-3);
  box-shadow: var(--shadow-gold);
}
.age-gate__card h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}
.age-gate__card p {
  color: var(--c-text-2);
  margin-bottom: var(--sp-4);
  line-height: 1.7;
}
.age-gate__card strong { color: var(--c-gold); }
.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}
.age-gate__note {
  font-size: 0.75rem;
  color: var(--c-text-3);
  margin: 0 !important;
}

/* Access Denied */
.access-denied {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,13,26,0.97);
  backdrop-filter: blur(12px);
}
.access-denied__card {
  background: var(--c-bg-card);
  border: 1px solid rgba(231,76,60,0.3);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  max-width: 420px;
  text-align: center;
}
.access-denied__icon { font-size: 3rem; margin-bottom: var(--sp-3); }
.access-denied__card h2 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: var(--sp-2); color: var(--c-error); }
.access-denied__card p { color: var(--c-text-2); line-height: 1.7; }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-border);
  padding: var(--sp-3) 0;
  animation: slideInUp 0.35s ease both;
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--c-text-2);
  line-height: 1.6;
}
.cookie-banner__text a { color: var(--c-gold); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: var(--sp-1);
  flex-wrap: wrap;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 700;
  height: var(--navbar-h);
  transition: background var(--t-slow), box-shadow var(--t-slow), border-color var(--t-slow);
}
.navbar.scrolled {
  background: rgba(5,13,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--c-border);
}
.navbar__inner {
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-text);
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}
.navbar__logo:hover { opacity: 0.85; }
.navbar__logo strong { color: var(--c-gold); }
.nav-icon { width: 32px; height: 32px; }
.navbar__brand strong { color: var(--c-gold); }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}
.nav-link {
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-2);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--c-gold);
  background: var(--c-gold-glow);
}
.navbar__cta { margin-left: var(--sp-2); }
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--t-normal);
}
.navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  background: rgba(5,13,26,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--c-border);
  padding: var(--sp-2) var(--sp-4) var(--sp-3);
  flex-direction: column;
  gap: 0.25rem;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile .nav-link { padding: 0.6rem 0.75rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--navbar-h) + var(--sp-8)) 0 var(--sp-16);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,67,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,67,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__orb {
  position: absolute;
  border-radius: var(--r-full);
  filter: blur(80px);
  opacity: 0.25;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #1a3a6b 0%, transparent 70%);
  top: -150px; right: -100px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.4) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation-delay: 3s;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #0d3060 0%, transparent 70%);
  top: 40%; left: 50%;
  animation-delay: 6s;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-gold);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--c-success);
  border-radius: var(--r-full);
  box-shadow: 0 0 8px var(--c-success);
  animation: pulse 2s ease infinite;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--sp-3);
  color: var(--c-text);
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--c-text-2);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: var(--sp-6);
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.hero__cta { align-self: flex-start; }
.hero__trust {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.hero__trust span {
  font-size: 0.85rem;
  color: var(--c-text-2);
  font-weight: 500;
}
.hero__stats {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.hero__stat { display: flex; flex-direction: column; gap: 0.2rem; }
.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
}
.hero__stat-label { font-size: 0.8rem; color: var(--c-text-3); font-weight: 500; }

/* =========================================================
   SECTION COMMON
   ========================================================= */
.section-header { text-align: center; margin-bottom: var(--sp-8); }
.section-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-2);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}
.section-desc {
  font-size: 1rem;
  color: var(--c-text-2);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* =========================================================
   PLATFORM CARDS
   ========================================================= */
.plateformes {
  padding: var(--sp-16) 0;
  background: var(--c-bg-2);
  position: relative;
}
.plateformes::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border), transparent);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  align-items: start;
}

.platform-card {
  position: relative;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-normal), box-shadow var(--t-normal), border-color var(--t-normal);
}
.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,168,67,0.2);
}
.platform-card--featured {
  border-color: rgba(212,168,67,0.3);
  background: linear-gradient(160deg, var(--c-bg-card-2) 0%, var(--c-bg-card) 100%);
  box-shadow: var(--shadow-gold);
}
.platform-card--featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(212,168,67,0.25);
}

/* Ribbon */
.card-ribbon {
  position: absolute;
  top: 0; right: 0;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  z-index: 2;
}
.card-ribbon--gold   { background: linear-gradient(135deg, var(--c-gold), var(--c-gold-light)); color: #0A1628; }
.card-ribbon--silver { background: linear-gradient(135deg, #9ea9b8, var(--c-silver)); color: #0A1628; }
.card-ribbon--bronze { background: linear-gradient(135deg, var(--c-bronze), #e09040); color: #fff; }
.card-ribbon span { transform: translate(8px, -8px); }

.card-header {
  padding: var(--sp-4) var(--sp-4) var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--c-border-2);
  gap: var(--sp-2);
}
.card-platform-img { flex: 1; }
.card-img-placeholder {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-sm);
  padding: 0.5rem;
  border: 1px solid var(--c-border-2);
  overflow: hidden;
}
.card-img-placeholder svg { height: 30px; width: auto; }
.card-logo-img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.card-rating { text-align: right; flex-shrink: 0; }
.rating-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stars { display: flex; gap: 2px; justify-content: flex-end; }
.star { font-size: 0.8rem; color: var(--c-text-3); }
.star--full { color: var(--c-gold); }

.card-body { padding: var(--sp-3) var(--sp-4); }
.card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}
.card-bonus { margin-bottom: var(--sp-3); }
.bonus-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}
.bonus-desc {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.5;
}
.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--sp-3);
}
.card-features li {
  font-size: 0.82rem;
  color: var(--c-text-2);
}
.card-payments {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--c-border-2);
}
.payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 4px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.payment-icon:hover { background: rgba(255,255,255,0.1); }
.payment-icon svg { height: 18px; width: auto; }

.card-footer {
  padding: var(--sp-3) var(--sp-4) var(--sp-4);
  border-top: 1px solid var(--c-border-2);
}
.card-disclaimer {
  text-align: center;
  font-size: 0.7rem;
  color: var(--c-text-3);
  margin-top: 0.5rem;
}

/* =========================================================
   POURQUOI NOUS
   ========================================================= */
.apropos {
  padding: var(--sp-16) 0;
  background: var(--c-bg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.feature-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  transition: transform var(--t-normal), border-color var(--t-normal), box-shadow var(--t-normal);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-border);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 48px; height: 48px;
  margin-bottom: var(--sp-2);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}
.feature-card p { font-size: 0.875rem; color: var(--c-text-2); line-height: 1.7; }

/* =========================================================
   RESPONSIBLE BANNER
   ========================================================= */
.responsible-banner {
  padding: var(--sp-8) 0;
  background: linear-gradient(135deg, #0d1f38 0%, #122040 100%);
  border-top: 1px solid rgba(46,204,113,0.15);
  border-bottom: 1px solid rgba(46,204,113,0.15);
}
.responsible-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.responsible-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  color: var(--c-success);
  opacity: 0.85;
}
.responsible-icon svg { width: 100%; height: 100%; }
.responsible-content { flex: 1; min-width: 260px; }
.responsible-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}
.responsible-content p { font-size: 0.9rem; color: var(--c-text-2); line-height: 1.7; }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: var(--sp-16) 0;
  background: var(--c-bg-2);
}
.accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--sp-2); }
.accordion__item {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-normal);
}
.accordion__item.open { border-color: var(--c-border); }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
  transition: color var(--t-fast), background var(--t-fast);
}
.accordion__trigger:hover { color: var(--c-gold); background: rgba(212,168,67,0.03); }
.accordion__trigger[aria-expanded="true"] { color: var(--c-gold); }
.accordion__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--t-normal);
  color: var(--c-text-3);
}
.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(180deg);
  color: var(--c-gold);
}
.accordion__panel {
  padding: 0 var(--sp-4) var(--sp-3);
  font-size: 0.9rem;
  color: var(--c-text-2);
  line-height: 1.75;
}
.accordion__panel a { color: var(--c-gold); text-decoration: underline; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #030a17;
  border-top: 1px solid var(--c-border);
  padding: var(--sp-12) 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
  transition: opacity var(--t-fast);
}
.footer__logo:hover { opacity: 0.8; }
.footer__logo strong { color: var(--c-gold); }
.footer__logo .nav-icon { width: 32px; height: 32px; }
.footer__desc { font-size: 0.875rem; color: var(--c-text-3); line-height: 1.75; margin-bottom: var(--sp-3); }
.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(231,76,60,0.08);
  border: 1px solid rgba(231,76,60,0.2);
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  color: var(--c-text-3);
}
.badge-18 {
  background: var(--c-error);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 2px 7px;
  border-radius: var(--r-sm);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-gold);
  margin-bottom: var(--sp-2);
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a {
  font-size: 0.85rem;
  color: var(--c-text-3);
  transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--c-gold); }
.footer__disclaimer {
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--c-border-2);
  border-bottom: 1px solid var(--c-border-2);
  font-size: 0.78rem;
  color: var(--c-text-3);
  line-height: 1.75;
  text-align: center;
}
.footer__bottom {
  padding: var(--sp-3) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.8rem; color: var(--c-text-3); }
.footer__anr a {
  font-size: 0.8rem;
  color: var(--c-gold);
  font-weight: 600;
  opacity: 0.7;
  transition: opacity var(--t-fast);
}
.footer__anr a:hover { opacity: 1; }

/* =========================================================
   SUBPAGES
   ========================================================= */
.subpage {
  padding-top: calc(var(--navbar-h) + var(--sp-8));
  min-height: 100vh;
}
.subpage-hero {
  background: linear-gradient(135deg, var(--c-bg-2) 0%, var(--c-bg-3) 100%);
  padding: var(--sp-12) 0 var(--sp-8);
  border-bottom: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,67,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,67,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.subpage-hero__inner { position: relative; z-index: 1; }
.subpage-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--c-text-3);
  margin-bottom: var(--sp-3);
  transition: color var(--t-fast);
}
.subpage-back:hover { color: var(--c-gold); }
.subpage-back svg { width: 16px; height: 16px; }
.subpage-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
  display: block;
}
.subpage-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}
.subpage-date {
  font-size: 0.82rem;
  color: var(--c-text-3);
}
.subpage-content {
  padding: var(--sp-12) 0;
  max-width: 800px;
  margin: 0 auto;
}
.subpage-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-text);
  margin: var(--sp-6) 0 var(--sp-2);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--c-border-2);
}
.subpage-content h2:first-child { margin-top: 0; }
.subpage-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--c-gold); margin: var(--sp-4) 0 var(--sp-1); }
.subpage-content p { font-size: 0.95rem; color: var(--c-text-2); line-height: 1.8; margin-bottom: var(--sp-2); }
.subpage-content ul, .subpage-content ol {
  padding-left: var(--sp-4);
  margin-bottom: var(--sp-3);
}
.subpage-content li { font-size: 0.95rem; color: var(--c-text-2); line-height: 1.8; margin-bottom: 0.4rem; }
.subpage-content a { color: var(--c-gold); text-decoration: underline; }
.subpage-content strong { color: var(--c-text); }
.subpage-content .highlight-box {
  background: rgba(212,168,67,0.06);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  margin: var(--sp-4) 0;
}
.subpage-content .highlight-box p { margin: 0; }
.subpage-content .warning-box {
  background: rgba(231,76,60,0.06);
  border: 1px solid rgba(231,76,60,0.2);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  margin: var(--sp-4) 0;
}
.subpage-content .warning-box p { margin: 0; color: #e8a0a0; }

/* Responsible page specific */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-3);
  margin: var(--sp-4) 0;
}
.help-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-md);
  padding: var(--sp-3);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.help-card:hover { border-color: var(--c-border); transform: translateY(-2px); }
.help-card__name { font-weight: 700; color: var(--c-text); margin-bottom: 0.3rem; }
.help-card__desc { font-size: 0.82rem; color: var(--c-text-3); margin-bottom: 0.5rem; line-height: 1.6; }
.help-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--c-gold);
  font-weight: 600;
  text-decoration: none;
}
.help-card a:hover { text-decoration: underline; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   UTILITY
   ========================================================= */
.hidden { display: none !important; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes slideInUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer__nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --navbar-h: 64px; }
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__stats { gap: var(--sp-4); }
  .responsible-inner { flex-direction: column; text-align: center; }
  .responsible-icon { margin: 0 auto; }
  .cookie-banner__inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-2); }
  .hero { padding-bottom: var(--sp-12); }
  .hero__trust { flex-direction: column; gap: 0.5rem; }
  .footer__nav { grid-template-columns: 1fr; }
  .age-gate__card { padding: var(--sp-6) var(--sp-3); }
}
