/* ===== JeuxFranceClub — Premium comparator theme ===== */
:root {
  --c-bg: #0b1220;
  --c-bg-soft: #111a2e;
  --c-surface: #16213a;
  --c-surface-2: #1c2944;
  --c-border: rgba(148, 163, 184, 0.16);
  --c-border-strong: rgba(148, 163, 184, 0.28);
  --c-text: #e8eefc;
  --c-text-soft: #aebbd6;
  --c-text-mute: #7e8bad;
  --c-primary: #0ea5e9;
  --c-primary-600: #0284c7;
  --c-primary-700: #0369a1;
  --c-accent: #f59e0b;
  --c-accent-600: #d97706;
  --c-success: #22c55e;
  --c-warning: #f59e0b;
  --c-error: #ef4444;
  --c-gold: #fbbf24;
  --c-silver: #cbd5e1;
  --c-bronze: #d97706;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow: 0 12px 32px rgba(2, 6, 23, 0.45);
  --shadow-lg: 0 24px 60px rgba(2, 6, 23, 0.55);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-600));
  color: #fff;
  box-shadow: 0 8px 22px rgba(14, 165, 233, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(14, 165, 233, 0.5); }
.btn--ghost { background: rgba(255, 255, 255, 0.05); color: var(--c-text); border: 1px solid var(--c-border-strong); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }

/* ===== Navbar ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 18, 32, 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--c-border);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.navbar.is-scrolled { background: rgba(11, 18, 32, 0.92); border-bottom-color: var(--c-border-strong); }
.navbar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.navbar__logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.18rem; letter-spacing: -0.01em; }
.navbar__logo-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(14, 165, 233, 0.35));
  transition: transform 0.4s var(--ease);
}
.navbar__logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.navbar__logo:hover .navbar__logo-icon { transform: rotate(-6deg) scale(1.06); }
.navbar__logo-text { color: var(--c-text); }
.navbar__logo-accent { color: var(--c-accent); }
.navbar__nav { display: flex; gap: 6px; }
.navbar__link {
  padding: 8px 14px; border-radius: 999px; font-size: 0.92rem; font-weight: 500;
  color: var(--c-text-soft); transition: color 0.2s, background 0.2s;
}
.navbar__link:hover { color: var(--c-text); background: rgba(255, 255, 255, 0.06); }
.navbar__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.navbar__toggle span { width: 24px; height: 2px; background: var(--c-text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.navbar__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.is-open span:nth-child(2) { opacity: 0; }
.navbar__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; padding: 120px 24px 80px;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.72), rgba(11, 18, 32, 0.9)), url("images/hero.png") center / cover no-repeat;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; background: rgba(11, 18, 32, 0.18); }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; animation: float 18s ease-in-out infinite; }
.hero__blob--1 { width: 480px; height: 480px; background: radial-gradient(circle, #0ea5e9, transparent 70%); top: -120px; left: -80px; }
.hero__blob--2 { width: 420px; height: 420px; background: radial-gradient(circle, #f59e0b, transparent 70%); bottom: -140px; right: -60px; animation-delay: -6s; }
.hero__blob--3 { width: 360px; height: 360px; background: radial-gradient(circle, #22d3ee, transparent 70%); top: 40%; left: 50%; animation-delay: -12s; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero__content { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; text-align: center; }
.hero__badge {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  background: rgba(14, 165, 233, 0.12); border: 1px solid rgba(14, 165, 233, 0.3);
  color: #7dd3fc; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 5.4vw, 4rem); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 22px; }
.hero__subtitle { font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--c-text-soft); max-width: 640px; margin: 0 auto 36px; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.hero__stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero__stat-num { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--c-accent); }
.hero__stat-label { font-size: 0.82rem; color: var(--c-text-mute); text-transform: uppercase; letter-spacing: 0.06em; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
}

/* ===== Sections ===== */
.section { padding: 96px 24px; max-width: var(--maxw); margin: 0 auto; }
.section--alt { background: var(--c-bg-soft); max-width: none; }
.section--alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__eyebrow { display: inline-block; color: var(--c-accent); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.section__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 3.6vw, 2.6rem); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; }
.section__desc { color: var(--c-text-soft); font-size: 1.05rem; }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  position: relative; background: linear-gradient(180deg, var(--c-surface), var(--c-surface-2));
  border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--c-border-strong); }
.card[data-rank="1"]:hover { border-color: rgba(251, 191, 36, 0.5); }
.card__ribbon {
  position: absolute; top: 16px; right: -34px; z-index: 3;
  background: linear-gradient(135deg, var(--c-gold), var(--c-accent-600));
  color: #1a1206; font-weight: 800; font-size: 0.86rem; padding: 7px 40px;
  transform: rotate(45deg); box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4); letter-spacing: 0.04em;
}
.card__ribbon--silver { background: linear-gradient(135deg, #e2e8f0, #94a3b8); color: #1e293b; box-shadow: 0 6px 16px rgba(203, 213, 225, 0.3); }
.card__ribbon--bronze { background: linear-gradient(135deg, #d97706, #92400e); color: #fff5e6; box-shadow: 0 6px 16px rgba(217, 119, 6, 0.4); }
.card__media {
  position: relative; aspect-ratio: 5 / 2; overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #f8fafc 52%, #fde68a);
  border-bottom: 1px solid var(--c-border-strong);
  display: flex; align-items: center; justify-content: center; padding: 18px;
}
.card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s var(--ease); }
.card:hover .card__media img { transform: scale(1.02); }
.card__body { padding: 24px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.card__name { font-family: var(--font-head); font-weight: 700; font-size: 1.32rem; letter-spacing: -0.01em; }
.card__rating { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.card__score { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--c-accent); }
.stars { position: relative; display: inline-block; width: 80px; height: 16px; font-size: 16px; line-height: 1; }
.stars::before { content: '\2605\2605\2605\2605\2605'; color: rgba(148, 163, 184, 0.25); letter-spacing: 1px; }
.stars__fill { position: absolute; top: 0; left: 0; overflow: hidden; white-space: nowrap; color: var(--c-gold); }
.stars__fill::before { content: '\2605\2605\2605\2605\2605'; letter-spacing: 1px; }
.card__bonus { color: var(--c-text-soft); font-size: 0.95rem; }
.card__bonus strong { color: var(--c-text); }
.card__payments { display: flex; flex-wrap: wrap; gap: 8px; }
.card__pay {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 30px; padding: 5px; border-radius: 8px; background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--c-border);
  transition: background 0.2s, border-color 0.2s;
}
.card__pay img { max-width: 100%; max-height: 100%; object-fit: contain; }
.card__pay:hover { background: rgba(255, 255, 255, 0.14); border-color: var(--c-border-strong); }
.card__cta { margin-top: auto; width: 100%; }

/* ===== Features ===== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 28px 24px; transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.feature:hover { transform: translateY(-6px); border-color: rgba(14, 165, 233, 0.4); }
.feature__icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(245, 158, 11, 0.18));
  color: var(--c-primary); margin-bottom: 18px;
}
.feature__title { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; }
.feature__text { color: var(--c-text-soft); font-size: 0.92rem; }

/* ===== Responsible banner ===== */
.responsible { padding: 60px 24px; }
.responsible__banner {
  display: flex; gap: 28px; align-items: center;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(245, 158, 11, 0.12));
  border: 1px solid rgba(239, 68, 68, 0.3); border-radius: var(--radius-lg);
  padding: 36px; max-width: var(--maxw); margin: 0 auto;
}
.responsible__icon {
  flex-shrink: 0; width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-error), var(--c-accent-600));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #fff;
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.35);
}
.responsible__title { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; margin-bottom: 10px; }
.responsible__text { color: var(--c-text-soft); margin-bottom: 16px; }
.responsible__links { display: flex; gap: 10px; flex-wrap: wrap; }
.responsible__link {
  padding: 7px 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--c-border); font-size: 0.85rem; font-weight: 600; color: var(--c-text);
  transition: background 0.2s, transform 0.2s;
}
.responsible__link:hover { background: rgba(14, 165, 233, 0.18); transform: translateY(-2px); }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s; }
.faq__item.is-open { border-color: rgba(14, 165, 233, 0.4); }
.faq__q {
  width: 100%; text-align: left; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--c-text);
  transition: background 0.2s;
}
.faq__q:hover { background: rgba(255, 255, 255, 0.03); }
.faq__icon { position: relative; flex-shrink: 0; width: 22px; height: 22px; }
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; top: 50%; left: 50%; background: var(--c-primary); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.faq__icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a-inner { padding: 0 24px 24px; color: var(--c-text-soft); font-size: 0.98rem; }

/* ===== Footer ===== */
.footer { background: var(--c-bg-soft); border-top: 1px solid var(--c-border); padding: 64px 24px 28px; }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--c-border); }
.footer__brand { max-width: 380px; }
.footer__about { color: var(--c-text-soft); font-size: 0.92rem; margin-top: 16px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__heading { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-text-mute); margin-bottom: 4px; }
.footer__link { color: var(--c-text-soft); font-size: 0.92rem; transition: color 0.2s, transform 0.2s; }
.footer__link:hover { color: var(--c-accent); transform: translateX(3px); }
.footer__disclaimer { max-width: var(--maxw); margin: 0 auto; padding: 28px 0; }
.footer__disclaimer p { color: var(--c-text-mute); font-size: 0.85rem; line-height: 1.6; }
.footer__bottom { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--c-border); font-size: 0.85rem; color: var(--c-text-mute); }
.footer__age { font-family: var(--font-head); font-weight: 800; color: var(--c-accent); border: 2px solid var(--c-accent); border-radius: 8px; padding: 2px 10px; }

/* ===== Age gate ===== */
.agegate { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 24px; }
.agegate.is-hidden { display: none; }
.agegate__backdrop { position: absolute; inset: 0; background: rgba(7, 11, 22, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.agegate__card, .agegate__refused-card { position: relative; z-index: 1; max-width: 460px; width: 100%; text-align: center; background: linear-gradient(180deg, var(--c-surface), var(--c-surface-2)); border: 1px solid var(--c-border-strong); border-radius: var(--radius-xl); padding: 44px 36px; box-shadow: var(--shadow-lg); animation: cardIn 0.5s var(--ease); }
.agegate__refused { position: relative; z-index: 1; }
.agegate__logo { display: flex; justify-content: center; margin-bottom: 22px; }
.agegate__title { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; margin-bottom: 14px; }
.agegate__text { color: var(--c-text-soft); font-size: 0.98rem; margin-bottom: 28px; }
.agegate__actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.agegate__btn { padding: 14px 24px; border-radius: 12px; font-weight: 600; font-size: 1rem; transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s; }
.agegate__btn--primary { background: linear-gradient(135deg, var(--c-primary), var(--c-primary-600)); color: #fff; box-shadow: 0 8px 22px rgba(14, 165, 233, 0.35); }
.agegate__btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(14, 165, 233, 0.5); }
.agegate__btn--ghost { background: rgba(255, 255, 255, 0.05); color: var(--c-text-soft); border: 1px solid var(--c-border-strong); }
.agegate__btn--ghost:hover { background: rgba(239, 68, 68, 0.12); color: var(--c-text); border-color: rgba(239, 68, 68, 0.4); }
.agegate__notice { font-size: 0.8rem; color: var(--c-text-mute); }
.agegate__refused-icon { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--c-error); margin-bottom: 18px; }
.agegate__refused-title { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; margin-bottom: 14px; }
.agegate__refused-text { color: var(--c-text-soft); margin-bottom: 22px; }
.agegate__refused-link { color: var(--c-primary); font-weight: 600; border-bottom: 1px solid currentColor; }
@keyframes cardIn { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ===== Cookie banner ===== */
.cookiebanner { position: fixed; bottom: 18px; left: 18px; right: 18px; z-index: 9000; max-width: 720px; margin: 0 auto; animation: slideUp 0.5s var(--ease); }
.cookiebanner.is-hidden { display: none; }
.cookiebanner__inner { display: flex; align-items: center; gap: 20px; background: rgba(22, 33, 58, 0.96); backdrop-filter: blur(12px); border: 1px solid var(--c-border-strong); border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow); }
.cookiebanner__text { color: var(--c-text-soft); font-size: 0.88rem; flex: 1; }
.cookiebanner__text strong { color: var(--c-text); }
.cookiebanner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookiebanner__btn { padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 0.86rem; transition: transform 0.2s, background 0.2s; }
.cookiebanner__btn--primary { background: linear-gradient(135deg, var(--c-primary), var(--c-primary-600)); color: #fff; }
.cookiebanner__btn--primary:hover { transform: translateY(-2px); }
.cookiebanner__btn--ghost { background: rgba(255, 255, 255, 0.05); color: var(--c-text-soft); border: 1px solid var(--c-border); }
.cookiebanner__btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Subpages ===== */
.page { max-width: 820px; margin: 0 auto; padding: 120px 24px 80px; }
.page__head { margin-bottom: 40px; padding-bottom: 28px; border-bottom: 1px solid var(--c-border); }
.backhome { display: inline-flex; align-items: center; gap: 6px; color: var(--c-primary); font-weight: 600; font-size: 0.92rem; margin-bottom: 18px; transition: transform 0.2s; }
.backhome:hover { transform: translateX(-4px); }
.page__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 10px; }
.page__updated { color: var(--c-text-mute); font-size: 0.9rem; }
.page__content h2 { font-family: var(--font-head); font-weight: 700; font-size: 1.32rem; margin: 36px 0 14px; letter-spacing: -0.01em; }
.page__content p, .page__content ul { color: var(--c-text-soft); margin-bottom: 16px; }
.page__content ul { padding-left: 22px; list-style: disc; }
.page__content li { margin-bottom: 8px; }
.page__content a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }
.page__content a:hover { color: var(--c-accent); }
.responsible-hero { display: flex; gap: 22px; align-items: center; background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(245, 158, 11, 0.12)); border: 1px solid rgba(239, 68, 68, 0.3); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 32px; }
.responsible-hero__badge { flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--c-error), var(--c-accent-600)); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; color: #fff; }
.responsible-hero__text { color: var(--c-text-soft); }
.help-list li { margin-bottom: 12px; }
.help-list a { font-weight: 600; }

/* ===== Reveal animations ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .responsible__banner { flex-direction: column; text-align: center; }
}
@media (max-width: 720px) {
  .navbar__nav {
    position: fixed; top: 64px; left: 0; right: 0; flex-direction: column; gap: 4px;
    background: rgba(11, 18, 32, 0.98); backdrop-filter: blur(16px); border-bottom: 1px solid var(--c-border);
    padding: 16px 24px; transform: translateY(-120%); transition: transform 0.35s var(--ease); z-index: -1;
  }
  .navbar__nav.is-open { transform: translateY(0); }
  .navbar__toggle { display: flex; }
  .hero { min-height: auto; padding: 100px 20px 60px; }
  .hero__stats { gap: 24px; }
  .section { padding: 64px 20px; }
  .features { grid-template-columns: 1fr; }
  .cookiebanner__inner { flex-direction: column; align-items: stretch; text-align: left; }
  .cookiebanner__actions { justify-content: flex-end; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
