/* ============================================================
   betlance88.com — Main Stylesheet
   Design: professional, trustworthy, sports betting authority
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy:       #1a2e4a;
  --navy-light: #243a5e;
  --gold:       #c9a55a;
  --gold-dark:  #b89244;
  --white:      #ffffff;
  --gray-50:    #f8f9fb;
  --gray-100:   #f1f3f6;
  --gray-200:   #e5e9ef;
  --gray-400:   #9aa3af;
  --gray-600:   #5c6775;
  --gray-800:   #2d3748;
  --text:       #1e2d3d;
  --text-light: #5c6775;
  --border:     #dde3ec;
  --shadow-sm:  0 1px 4px rgba(26,46,74,.07);
  --shadow-md:  0 4px 16px rgba(26,46,74,.10);
  --shadow-lg:  0 8px 32px rgba(26,46,74,.13);
  --radius:     8px;
  --radius-lg:  12px;
  --transition: .22s ease;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5 { line-height: 1.25; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--navy); }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 1.25rem; }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 40px; width: auto; }

/* Navigation */
.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav-menu a {
  font-size: .87rem;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-menu a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-menu a.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BOUTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .65rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .92rem;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201,165,90,.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-lg { padding: .85rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: .45rem 1rem; font-size: .82rem; }
.btn-nav {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
  padding: .45rem 1.1rem !important;
  font-size: .84rem !important;
  border-radius: var(--radius);
  border-bottom: none !important;
  font-weight: 700 !important;
}
.btn-nav:hover {
  background: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
  color: var(--white) !important;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e3a5f 100%);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero .subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-image img { max-width: 300px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(201,165,90,.18);
  border: 1px solid rgba(201,165,90,.4);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 20px;
  margin-bottom: .9rem;
}

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  padding: .65rem 0;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  align-items: center;
  font-size: .82rem;
  color: var(--text-light);
}
.breadcrumb li + li::before { content: '›'; margin-right: .3rem; color: var(--gray-400); }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li:last-child { color: var(--navy); font-weight: 600; }

/* ── SECTIONS ───────────────────────────────────────────────── */
.section { padding: 3.5rem 0; }
.section--gray { background: var(--gray-50); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section-title { margin-bottom: 2rem; }
.section-title h2 { margin-bottom: .5rem; }
.section-title p { color: var(--text-light); font-size: 1.05rem; }
.section-title--center { text-align: center; }

/* ── ARTICLE CONTENT ────────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.article-content { min-width: 0; }
.article-content h2 {
  margin: 2rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold);
}
.article-content h3 { margin: 1.5rem 0 .6rem; }
.article-content ul, .article-content ol {
  list-style: none;
  margin: .75rem 0 1rem 0;
}
.article-content ul li { padding-left: 1.4rem; position: relative; margin-bottom: .4rem; }
.article-content ul li::before { content: '›'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.article-content ol { counter-reset: item; }
.article-content ol li { padding-left: 2rem; position: relative; margin-bottom: .5rem; counter-increment: item; }
.article-content ol li::before { content: counter(item); position: absolute; left: 0; background: var(--gold); color: var(--white); width: 1.4rem; height: 1.4rem; border-radius: 50%; font-size: .75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; top: .2rem; }
.article-content table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: .92rem; }
.article-content table th { background: var(--navy); color: var(--white); padding: .65rem 1rem; text-align: left; font-size: .85rem; }
.article-content table td { padding: .6rem 1rem; border-bottom: 1px solid var(--border); }
.article-content table tr:nth-child(even) td { background: var(--gray-50); }

/* ── TOC ────────────────────────────────────────────────────── */
nav.toc {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
nav.toc h3 {
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gold);
  margin-bottom: .75rem;
}
nav.toc ol { counter-reset: toc; }
nav.toc ol li { counter-increment: toc; padding-left: 1.6rem; position: relative; margin-bottom: .35rem; font-size: .88rem; }
nav.toc ol li::before { content: counter(toc) "."; position: absolute; left: 0; color: var(--gold-dark); font-weight: 700; font-size: .8rem; }
nav.toc a { color: var(--text); }
nav.toc a:hover { color: var(--gold); }

/* ── SIDEBAR ────────────────────────────────────────────────── */
.sidebar { position: sticky; top: 88px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h4 {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-card ul li { margin-bottom: .5rem; font-size: .88rem; }
.sidebar-card ul li a { color: var(--text); display: flex; gap: .4rem; align-items: flex-start; }
.sidebar-card ul li a::before { content: '›'; color: var(--gold); flex-shrink: 0; }
.sidebar-card ul li a:hover { color: var(--gold); }
.sidebar-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.sidebar-cta h4 { color: var(--white); font-size: 1rem; margin-bottom: .5rem; }
.sidebar-cta p { color: rgba(255,255,255,.8); font-size: .88rem; margin-bottom: 1.25rem; }
.sidebar-cta .btn { width: 100%; }

/* ── CALLOUT / INFO BOXES ───────────────────────────────────── */
.callout {
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin: 1.5rem 0;
  border-left: 4px solid;
  font-size: .95rem;
}
.callout-info { background: #eef4ff; border-color: #3b82f6; color: #1e40af; }
.callout-warning { background: #fffbeb; border-color: #f59e0b; color: #92400e; }
.callout-danger { background: #fef2f2; border-color: #ef4444; color: #991b1b; }
.callout-success { background: #f0fdf4; border-color: #22c55e; color: #15803d; }
.callout strong { font-weight: 700; display: block; margin-bottom: .25rem; }

/* ── EXAMPLE / CHECKLIST BOXES ─────────────────────────────── */
.example-box {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.example-box strong { color: var(--navy); display: block; margin-bottom: .5rem; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
.checklist-box { margin: 1rem 0; }
.checklist-box li { padding-left: 1.75rem; position: relative; margin-bottom: .4rem; }
.checklist-box li::before { content: '✓'; position: absolute; left: 0; color: #22c55e; font-weight: 700; }

/* ── BROKER RANKING LIST ───────────────────────────────────── */
.classement { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.classement-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.classement-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.classement-card--first {
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.classement-recommended {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .2rem .75rem;
  border-radius: 20px;
}
.classement-rank-col { text-align: center; }
.classement-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
}
.classement-card--first .classement-rank { background: var(--gold); }
.classement-info { min-width: 0; }
.classement-header { display: flex; align-items: center; flex-wrap: wrap; gap: .6rem; margin-bottom: .4rem; }
.classement-name { font-size: 1.05rem; margin: 0; }
.classement-badge {
  background: var(--gray-100);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 20px;
  letter-spacing: .04em;
}
.classement-desc { font-size: .88rem; color: var(--text-light); margin: 0; }
.classement-action { text-align: right; min-width: 150px; }
.classement-prix {
  display: block;
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: .6rem;
  font-weight: 600;
}

/* ── FEATURE CHIPS (broker features) ──────────────────────── */
.feature-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .6rem; }
.feature-chip {
  background: var(--gray-100);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .65rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.feature-chip--gold { background: rgba(201,165,90,.12); border-color: rgba(201,165,90,.4); color: #8b6914; }

/* ── INLINE CTA (mid-article) ───────────────────────────────── */
.inline-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.inline-cta p { color: rgba(255,255,255,.85); margin: 0; font-size: .95rem; }
.inline-cta strong { color: var(--white); display: block; font-size: 1.05rem; margin-bottom: .25rem; }

/* ── CTA BOX ─────────────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 1.5rem;
}
.cta-box h2, .cta-box h3 { color: var(--white); margin-bottom: .75rem; }
.cta-box p { color: rgba(255,255,255,.82); margin-bottom: 1.75rem; font-size: 1.05rem; }
.cta-box .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.cta-box .btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CARDS GRID ─────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon { margin-bottom: 1rem; }
.card h3 { margin-bottom: .6rem; font-size: 1.05rem; }
.card p { font-size: .9rem; color: var(--text-light); margin: 0; }
.card-link { margin-top: 1rem; display: inline-flex; align-items: center; gap: .3rem; font-size: .85rem; font-weight: 700; color: var(--gold); }
.card-link::after { content: '→'; }

/* ── STATS ROW ──────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.stat-item { text-align: center; }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: .3rem; }
.stat-label { font-size: .85rem; color: var(--text-light); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { margin: 1.5rem 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.1rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  gap: 1rem;
}
.faq-toggle {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.1rem;
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── SOURCES ────────────────────────────────────────────────── */
.sources {
  font-size: .8rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
}
.sources strong { display: block; margin-bottom: .5rem; color: var(--navy); font-size: .82rem; }
.sources a { color: var(--text-light); text-decoration: underline; }
.sources a:hover { color: var(--gold); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  margin-top: 4rem;
}
.footer-top { padding: 3.5rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand .logo-footer img { height: 34px; filter: brightness(0) invert(1); margin-bottom: .9rem; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.65; max-width: 260px; }
.footer-col h4 {
  color: var(--white);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col a { font-size: .86rem; color: rgba(255,255,255,.65); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-right { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

/* ── LANGUAGE SWITCHER ──────────────────────────────────────── */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  font-family: inherit;
  padding: .3rem .65rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  line-height: 1.4;
}
.lang-btn:hover { background: rgba(255,255,255,.14); color: var(--white); }
.lang-btn .lang-caret {
  font-size: .5rem;
  opacity: .6;
  transform: rotate(180deg);
  transition: transform var(--transition);
  display: inline-block;
}
.lang-switcher.open .lang-btn .lang-caret { transform: rotate(0deg); }
.lang-flag { font-size: 1rem; line-height: 1; }
.lang-dropdown {
  position: absolute;
  bottom: calc(100% + 6px);
  right: 0;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  min-width: 140px;
  padding: .3rem 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-dropdown li {
  padding: .45rem .9rem;
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.65);
  cursor: default;
}
.lang-dropdown li a {
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: .4rem;
  width: 100%;
}
.lang-dropdown li a:hover { color: var(--gold); }
.lang-dropdown li[aria-selected="true"] { color: var(--white); font-weight: 600; }

/* ── REDIRECT PAGE ──────────────────────────────────────────── */
.redirect-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 68px - 200px);
  padding: 4rem 1.25rem;
}
.redirect-box { max-width: 520px; text-align: center; }
.redirect-box h1 { font-size: 1.5rem; margin-bottom: .75rem; }
.redirect-box p { color: var(--text-light); margin-bottom: 1.5rem; }
.redirect-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .9s linear infinite;
  margin: 0 auto 1.75rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── LEGAL / STATIC PAGES ────────────────────────────────────── */
.legal-content h2 { margin: 2rem 0 .75rem; font-size: 1.2rem; }
.legal-content h3 { margin: 1.5rem 0 .5rem; font-size: 1.05rem; }
.legal-content p, .legal-content li { font-size: .93rem; color: var(--text-light); }
.legal-content ul { list-style: disc; padding-left: 1.5rem; }
.legal-content ul li { margin-bottom: .3rem; }

/* ── INNER PAGE HERO ─────────────────────────────────────────── */
.hero-inner-page {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 3rem 0 2.5rem;
}
.hero-inner-page h1 { color: var(--white); margin-bottom: .75rem; }
.hero-inner-page .subtitle { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.hero-inner-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 2rem;
  align-items: center;
}
.hero-inner-grid .hero-img { display: flex; justify-content: flex-end; }
.hero-inner-grid .hero-img img { max-width: 220px; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-inner-grid { grid-template-columns: 1fr; }
  .hero-inner-grid .hero-img { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .inline-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 680px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 1.5rem 1.25rem;
    overflow-y: auto;
    z-index: 199;
  }
  .nav-menu.open { display: block; }
  .nav-menu ul { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-menu li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-menu a { display: block; padding: .9rem 0; font-size: 1rem; border-bottom: none; }
  .btn-nav { display: inline-block; margin: 1rem 0; width: auto; }
  .menu-toggle { display: flex; }
  .classement-card { grid-template-columns: 44px 1fr; gap: 1rem; }
  .classement-action { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; }
  .footer-grid { grid-template-columns: 1fr; }
  /*.footer-brand { display: none; }*/
  .cta-actions { flex-direction: column; align-items: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero { padding: 2.5rem 0 2rem; }
  .section { padding: 2.5rem 0; }
  .cta-box { margin: 2rem 0; padding: 2.5rem 1.25rem; }
}
@media (max-width: 420px) {
  .stats-row { grid-template-columns: 1fr; }
}
