/* =========================================================================
   TOP 5 partenaires IA : feuille de styles partagée
   Pages : index.html, a-propos.html, confidentialite.html, conditions.html
   ========================================================================= */

:root {
  --bg: oklch(0.155 0.012 318);
  --bg-2: oklch(0.205 0.018 318);
  --bg-3: oklch(0.255 0.022 318);
  --line: oklch(1 0 0 / 0.09);
  --line-strong: oklch(1 0 0 / 0.16);
  --text: oklch(0.965 0.006 320);
  --muted: oklch(0.72 0.018 320);
  --faint: oklch(0.58 0.02 320);
  --rose: oklch(0.74 0.17 350);
  --violet: oklch(0.66 0.17 300);
  --gold: oklch(0.84 0.13 84);
  --grad: linear-gradient(105deg, var(--rose), var(--violet));
  --shadow: 0 30px 70px -30px oklch(0.05 0.05 320 / 0.8);
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 45% at 78% 0%, oklch(0.66 0.17 300 / 0.22), transparent 70%),
    radial-gradient(55% 40% at 12% 8%, oklch(0.74 0.17 350 / 0.16), transparent 70%);
  z-index: 0;
}
.wrap { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; letter-spacing: -0.02em; line-height: 1.04; margin: 0; }

a { color: inherit; text-decoration: none; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Top bar ---------- */
header.topbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: oklch(0.155 0.012 318 / 0.72);
  border-bottom: 1px solid var(--line);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--grad);
  display: grid; place-items: center; font-size: 15px; color: oklch(0.16 0.02 320);
  box-shadow: 0 6px 20px -6px oklch(0.7 0.17 330 / 0.7);
}
.badge-18 {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 12px;
  padding: 5px 10px; border-radius: 999px; border: 1px solid var(--line-strong); color: var(--muted);
}
.topnav { display: flex; align-items: center; gap: 22px; }
.topnav a { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 14.5px; color: var(--muted); }
.topnav a:hover { color: var(--text); }
@media (max-width: 600px) {
  .topbar-inner { gap: 10px; }
  .topnav { gap: 14px; }
  .topnav a { font-size: 13px; }
  .badge-extra { display: none; }
  .brand { font-size: 15.5px; }
}

/* ---------- Hero ---------- */
.hero { padding: 22px 0 8px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--muted); padding: 7px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: oklch(1 0 0 / 0.03);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 10px var(--rose); }
.hero h1 { font-size: clamp(24px, 5vw, 48px); font-weight: 800; margin: 12px auto 0; max-width: 22ch; }
.hero p.lede { font-size: clamp(17px, 2.2vw, 21px); color: var(--muted); max-width: 56ch; margin: 22px auto 0; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; margin-top: 12px; color: var(--faint); font-size: 14px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta b { color: var(--text); font-weight: 600; }
.tick { color: var(--rose); }

/* Badges de confiance (hero) */
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 10px; margin: 14px auto 0; max-width: 660px; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 12.5px; color: var(--text); padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line-strong); background: oklch(1 0 0 / 0.04); }
.hero-badge svg { width: 15px; height: 15px; color: var(--rose); flex: none; }
@media (max-width: 560px) {
  .hero-badges { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; gap: 7px; margin-top: 12px; scrollbar-width: none; }
  .hero-badges::-webkit-scrollbar { display: none; }
  .hero-badge { flex: 0 0 auto; font-size: 11.5px; padding: 6px 11px; }
}

/* Étiquettes de la carte mise en avant (Meilleur choix + réduction, côte à côte) */
.card-badges { position: absolute; top: -14px; left: 26px; z-index: 2; display: flex; flex-wrap: wrap; gap: 8px; }
.badge-best, .badge-discount {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  padding: 7px 16px; border-radius: 999px; white-space: nowrap; color: oklch(0.18 0.02 320);
}
.badge-best { background: linear-gradient(100deg, var(--gold), oklch(0.88 0.1 70)); box-shadow: 0 8px 22px -8px oklch(0.84 0.13 84 / 0.7); }
.badge-discount { background: linear-gradient(100deg, oklch(0.82 0.14 162), oklch(0.86 0.12 196)); box-shadow: 0 8px 22px -8px oklch(0.82 0.14 162 / 0.6); }
@media (max-width: 560px) {
  .card-badges { left: 14px; gap: 6px; }
  .badge-best, .badge-discount { font-size: 10.5px; padding: 5px 11px; }
}

/* ---------- Cards ---------- */
.ranking { padding: 8px 0 20px; display: flex; flex-direction: column; gap: 22px; }
.card {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr 220px;
  gap: 28px;
  align-items: center;
  background: linear-gradient(180deg, var(--bg-2), oklch(0.185 0.016 318));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 30px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.card.top {
  border-color: oklch(0.84 0.13 84 / 0.5);
  background:
    linear-gradient(180deg, oklch(0.24 0.03 330), oklch(0.2 0.022 322));
}

.rank-col { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.rank {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: 46px; line-height: 1; color: var(--faint);
  width: 100%; text-align: center;
}
.card.top .rank { color: var(--gold); }


.body-col { min-width: 0; }
.name-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.name-row h3 { font-size: 26px; }
.rating { display: inline-flex; align-items: center; gap: 8px; }
.stars { letter-spacing: 1px; font-size: 15px; color: var(--gold); }
.score { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 14px; color: var(--text); }
.score small { color: var(--faint); font-weight: 500; }
.tagline { color: var(--text); font-weight: 500; margin: 9px 0 14px; font-size: 16.5px; }
.feats { display: flex; flex-wrap: wrap; gap: 8px 9px; margin: 0; padding: 0; list-style: none; }
.feats li {
  font-size: 13.5px; color: var(--muted);
  padding: 6px 12px; border-radius: 999px;
  background: oklch(1 0 0 / 0.04); border: 1px solid var(--line);
}

.cta-col { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-col .btn { width: 100%; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 16px;
  padding: 15px 20px; border-radius: 13px; cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
}
.btn-primary { background: var(--grad); color: oklch(0.16 0.02 320); box-shadow: 0 14px 30px -12px oklch(0.7 0.17 330 / 0.75); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px oklch(0.7 0.17 330 / 0.9); }
.card.top .btn-primary { background: linear-gradient(100deg, var(--gold), oklch(0.88 0.1 70)); box-shadow: 0 14px 30px -12px oklch(0.84 0.13 84 / 0.7); }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--muted); font-size: 13.5px; padding: 10px; }
.btn-ghost:hover { color: var(--text); border-color: var(--text); }
.arrow { transition: transform .15s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }

/* ---------- Pages de contenu (À propos, légales) ---------- */
.page { padding: 64px 0 40px; max-width: 760px; margin: 0 auto; }
.page .eyebrow { margin-bottom: 20px; }
.page h1 { font-size: clamp(32px, 5.5vw, 54px); font-weight: 800; }
.page .updated { color: var(--faint); font-size: 14px; margin-top: 16px; }
.page .lede { font-size: clamp(17px, 2vw, 20px); color: var(--muted); margin: 20px 0 0; }
.page h2 { font-size: 24px; margin: 44px 0 12px; }
.page h3 { font-size: 18px; margin: 28px 0 8px; }
.page p { color: var(--muted); font-size: 16.5px; line-height: 1.78; margin: 12px 0; }
.page ul { margin: 12px 0; padding-left: 22px; }
.page li { color: var(--muted); font-size: 16.5px; line-height: 1.75; margin: 7px 0; }
.page strong { color: var(--text); font-weight: 600; }
.page a.inline { color: var(--rose); text-decoration: underline; text-underline-offset: 2px; }
.page a.inline:hover { color: var(--text); }
.callout {
  margin: 24px 0; padding: 18px 20px; border-radius: 16px;
  border: 1px solid var(--line-strong); background: oklch(1 0 0 / 0.03);
}
.callout p { margin: 6px 0; color: var(--muted); }
.callout strong { color: var(--text); }
.editeur-logo { display: block; max-width: 260px; width: 100%; height: auto; margin: 10px 0; border-radius: 8px; }

/* ---------- Contenu rédactionnel (accueil : « Comment choisir », FAQ) ---------- */
.content { max-width: 760px; margin: 0 auto; padding: 28px 0 8px; }
.content h2 { font-size: clamp(24px, 3.4vw, 30px); margin: 52px 0 14px; }
.content h3 { font-size: 19px; margin: 30px 0 8px; }
.content p { color: var(--muted); font-size: 16.5px; line-height: 1.78; margin: 12px 0; }
.content ul { margin: 14px 0; padding-left: 22px; }
.content li { color: var(--muted); font-size: 16.5px; line-height: 1.75; margin: 9px 0; }
.content li strong, .content p strong { color: var(--text); font-weight: 600; }
.faq { margin-top: 8px; }
.faq-item { border-top: 1px solid var(--line); padding: 4px 0; }
.faq-item h3 { color: var(--text); }

/* ---------- Page Avis (reviews + sidebar Top 3) ---------- */
.reviews-page { padding: 44px 0 16px; }
.reviews-page > h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; }
.ad-disclosure {
  color: var(--faint); font-size: 12px; line-height: 1.55; margin: 8px 0 14px;
  max-width: 80ch; border-left: 2px solid var(--line-strong); padding: 2px 0 2px 12px;
}
.ad-disclosure strong { color: var(--muted); }
@media (max-width: 560px) {
  .ad-disclosure { font-size: 10.5px; line-height: 1.4; margin: 6px 0 10px; padding-left: 10px; }
}

.reviews-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 28px; align-items: start; }
.reviews-main { display: flex; flex-direction: column; gap: 22px; }

/* Logo typographique (wordmark) : uniforme, dans notre typo */
.logo-wordmark {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; letter-spacing: -0.02em;
  font-size: 30px; line-height: 1.05; color: var(--text);
}
.logo-wordmark .suf { color: var(--rose); }

.review-card {
  position: relative; display: grid; grid-template-columns: 232px 1fr; gap: 30px;
  align-items: center;
  background: linear-gradient(180deg, var(--bg-2), oklch(0.185 0.016 318));
  border: 1px solid var(--line); border-radius: 22px; padding: 30px 32px; box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease;
}
.review-card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.review-card.top {
  border-color: oklch(0.84 0.13 84 / 0.5);
  background: linear-gradient(180deg, oklch(0.24 0.03 330), oklch(0.2 0.022 322));
}
.review-card.top::before {
  content: "★ Meilleur choix"; position: absolute; top: -13px; left: 32px;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 12.5px;
  color: oklch(0.18 0.02 320);
  background: linear-gradient(100deg, var(--gold), oklch(0.88 0.1 70));
  padding: 6px 14px; border-radius: 999px; box-shadow: 0 8px 22px -8px oklch(0.84 0.13 84 / 0.7);
}

.review-media { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.review-media .stars { font-size: 18px; letter-spacing: 2px; color: var(--gold); }

.btn-visit {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; width: 100%;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 14.5px;
  text-transform: uppercase; letter-spacing: 0.03em;
  padding: 14px 18px; border-radius: 13px; cursor: pointer; border: 1px solid transparent;
  background: var(--grad); color: oklch(0.16 0.02 320);
  box-shadow: 0 14px 30px -12px oklch(0.7 0.17 330 / 0.75);
  transition: transform .15s ease, box-shadow .2s ease;
}
.btn-visit:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px oklch(0.7 0.17 330 / 0.9); }
.review-card.top .btn-visit {
  background: linear-gradient(100deg, var(--gold), oklch(0.88 0.1 70));
  box-shadow: 0 14px 30px -12px oklch(0.84 0.13 84 / 0.7);
}

.review-body p { color: var(--muted); font-size: 16px; line-height: 1.72; margin: 0 0 14px; }
.review-body strong { color: var(--text); font-weight: 700; }
.read-review {
  display: inline-block; color: var(--rose); font-weight: 600; font-size: 14.5px;
  text-decoration: underline; text-underline-offset: 2px;
}
.read-review:hover { color: var(--text); }

/* Sidebar Top 3 (sticky) */
.reviews-sidebar {
  position: sticky; top: 84px;
  background: linear-gradient(180deg, var(--bg-2), oklch(0.185 0.016 318));
  border: 1px solid var(--line); border-radius: 22px; padding: 26px 24px 28px; box-shadow: var(--shadow);
}
.sidebar-title {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 22px;
  text-align: center; margin: 0 0 6px; line-height: 1.12;
}
.top-item { display: flex; flex-direction: column; align-items: center; gap: 13px; padding: 22px 0; border-top: 1px solid var(--line); }
.top-item:first-of-type { border-top: 0; padding-top: 14px; }
.top-item .logo-wordmark { font-size: 23px; }
.top-item .score {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 15px; color: var(--text);
  background: oklch(1 0 0 / 0.06); border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px;
}
.top-item .score::after { content: "★"; color: var(--gold); }

@media (max-width: 920px) {
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-sidebar { position: static; }
}
@media (max-width: 620px) {
  .review-card { grid-template-columns: 1fr; gap: 20px; padding: 28px 22px; }
}

/* ---------- Page Avis détaillée (review-detail) ---------- */
.review-detail { padding: 34px 0 16px; }
.breadcrumb { font-size: 14px; color: var(--faint); margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: var(--text); }
.review-detail .review-title { font-size: clamp(30px, 4.5vw, 46px); font-weight: 800; margin: 4px 0 18px; }

.review-hero {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px;
  background: linear-gradient(180deg, var(--bg-2), oklch(0.185 0.016 318));
  border: 1px solid var(--line); border-radius: 22px; padding: 26px 30px; box-shadow: var(--shadow);
  margin-bottom: 26px;
}
.review-hero .logo-wordmark { font-size: 30px; margin-right: auto; }
.review-hero .rating { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.review-hero .rating .stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; }
.review-hero .stars-label { color: var(--faint); font-size: 12.5px; }
.score-circle {
  width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 25px; color: var(--text);
  border: 3px solid transparent;
  background: linear-gradient(var(--bg-3), var(--bg-3)) padding-box, var(--grad) border-box;
}
.review-hero .btn-visit { width: auto; min-width: 210px; }

.review-detail .reviews-main h2 { font-size: 24px; margin: 40px 0 12px; }
.review-detail .reviews-main h3 { font-size: 18px; margin: 26px 0 10px; }
.review-detail .reviews-main p { color: var(--muted); font-size: 16px; line-height: 1.72; margin: 12px 0; }
.review-detail .reviews-main p strong { color: var(--text); }
.review-detail .reviews-main p.intro { font-size: 17px; line-height: 1.76; margin: 0 0 24px; }
.review-detail .reviews-main p.verdict { border-left: 3px solid var(--rose); padding-left: 16px; font-size: 16.5px; line-height: 1.76; }
.review-detail .reviews-main p.plan-note { font-size: 13.5px; color: var(--faint); margin: 8px 0; }
.review-detail .reviews-main p.data-note { font-size: 12.5px; color: var(--faint); margin-top: 22px; }

.facts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 22px 0; }
.fact { background: oklch(1 0 0 / 0.03); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; }
.fact-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); margin-bottom: 5px; }
.fact-value { color: var(--text); font-weight: 600; font-size: 15px; }

.features-list, .perks { list-style: none; margin: 14px 0; padding: 0; display: grid; gap: 10px; }
.features-list li, .perks li { position: relative; padding-left: 28px; color: var(--muted); font-size: 15.5px; line-height: 1.5; }
.features-list li::before, .perks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--rose); font-weight: 700; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0; }
.plan { background: oklch(1 0 0 / 0.03); border: 1px solid var(--line); border-radius: 16px; padding: 18px 16px; text-align: center; }
.plan-label { display: block; font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--faint); margin-bottom: 8px; }
.plan-price { display: block; font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 20px; color: var(--text); }
.plan-sub { display: block; font-size: 12.5px; color: var(--faint); margin-top: 6px; line-height: 1.4; }

@media (max-width: 620px) {
  .facts-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .review-hero { justify-content: center; text-align: center; }
  .review-hero .logo-wordmark { margin-right: 0; width: 100%; }
  .review-hero .btn-visit { width: 100%; }
}

/* ---------- Bandeau cookies (RGPD) ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 760px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px;
  background: linear-gradient(180deg, var(--bg-2), oklch(0.185 0.016 318));
  border: 1px solid var(--line-strong); border-radius: 16px;
  padding: 16px 20px; box-shadow: var(--shadow);
}
.cookie-text { flex: 1 1 300px; margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.cookie-text a { color: var(--rose); text-decoration: underline; text-underline-offset: 2px; }
.cookie-text a:hover { color: var(--text); }
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-btn { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 13.5px; padding: 10px 16px; border-radius: 10px; cursor: pointer; border: 1px solid var(--line-strong); transition: transform .15s ease, color .15s ease, border-color .15s ease; }
.cookie-refuse { background: transparent; color: var(--muted); }
.cookie-refuse:hover { color: var(--text); border-color: var(--text); }
.cookie-accept { background: var(--grad); color: oklch(0.16 0.02 320); border-color: transparent; }
.cookie-accept:hover { transform: translateY(-1px); }
@media (max-width: 560px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; flex-direction: column; align-items: stretch; gap: 8px; padding: 10px 12px; border-radius: 12px; }
  .cookie-text { flex: none; font-size: 12px; line-height: 1.4; }
  .cookie-actions { gap: 8px; }
  .cookie-btn { flex: 1; padding: 9px 10px; font-size: 12.5px; }
}

/* Bouton désactivé (lien d'affiliation pas encore disponible) */
.btn-disabled { background: var(--bg-3); color: var(--faint); box-shadow: none; border-color: var(--line); cursor: not-allowed; pointer-events: none; }

/* ---------- Footer ---------- */
footer { margin-top: 64px; border-top: 1px solid var(--line); padding: 40px 0 60px; }
.foot-grid { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: start; }
.disclaimer { max-width: 62ch; color: var(--faint); font-size: 13px; line-height: 1.7; }
.disclaimer b { color: var(--muted); }
.foot-brand { display: flex; align-items: center; gap: 11px; font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; }
.foot-brand .mark { width: 26px; height: 26px; border-radius: 8px; font-size: 13px; }
.foot-nav { display: flex; flex-direction: column; gap: 12px; }
.foot-nav .foot-nav-title { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--faint); }
.foot-nav a { color: var(--muted); font-size: 14.5px; }
.foot-nav a:hover { color: var(--text); }

@media (max-width: 880px) {
  .card { grid-template-columns: 72px 1fr; grid-template-areas: "rank body" "cta cta"; padding: 24px 22px 22px; gap: 18px 20px; }
  .rank-col { grid-area: rank; }
  .body-col { grid-area: body; }
  .cta-col { grid-area: cta; flex-direction: row; align-items: center; margin-top: 4px; }
  .cta-col .btn-primary { flex: 1; width: auto; }
  .rank { font-size: 36px; }
}
@media (max-width: 560px) {
  .hero { padding: 14px 0 6px; }
  /* Cartes facon concurrent (mobile uniquement) */
  .card { grid-template-columns: 1fr; grid-template-areas: "body" "cta"; padding: 24px 20px; }
  .rank-col { display: none; }
  .name-row h3 { font-size: 22px; }
  .name-row { padding-right: 62px; min-height: 56px; }
  .card .score-circle { position: absolute; top: 24px; right: 18px; width: 56px; height: 56px; font-size: 19px; }
  .cta-col { flex-direction: column; margin-top: 6px; }
  .tagline { font-weight: 700; font-size: 18px; line-height: 1.3; margin: 6px 0 12px; }
  .feats { flex-direction: column; flex-wrap: nowrap; gap: 9px; margin: 12px 0 0; }
  .feats li { position: relative; padding: 0 0 0 26px; background: none; border: 0; border-radius: 0; font-size: 15px; line-height: 1.45; }
  .feats li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--rose); font-weight: 800; }
}
