@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap");

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── VARIABLES ── */
:root {
  --gold:       #d4a84b;
  --gold-light: #e8c876;
  --gold-dim:   rgba(212,168,75,0.12);
  --bg:         #0c0d0f;
  --bg2:        #131416;
  --bg3:        #1a1c1f;
  --border:     rgba(255,255,255,0.07);
  --text:       #f0ede8;
  --muted:      #8a8580;
  --green:      #4caf50;
  --red:        #e57373;
}

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6%;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,13,15,0.92);
  backdrop-filter: blur(16px);
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.logo .w1 { color: var(--text); }
.logo .w2 { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-back {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--text); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #0c0d0f;
  padding: 0.9rem 2.2rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.9rem 2.2rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--muted); transform: translateY(-1px); }

/* ── SECTION LABELS & TITLES ── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.4rem;
  display: block;
}
.section-title {
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.15;
}

/* ── CALLOUTS ── */
.callout {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.4rem 1.8rem;
  margin: 2rem 0;
  border-radius: 0 4px 4px 0;
}
.callout-title {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.callout p           { margin-bottom: 0; font-size: 0.93rem; }
.callout.warning     { border-left-color: var(--red); }
.callout.warning .callout-title { color: var(--red); }
.callout.tip         { border-left-color: var(--green); }
.callout.tip .callout-title     { color: var(--green); }

/* ── BADGES ── */
.badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
}
.badge-green { background: rgba(76,175,80,0.12);   color: var(--green); }
.badge-red   { background: rgba(229,115,115,0.12); color: var(--red);   }
.badge-gold  { background: var(--gold-dim);         color: var(--gold);  }

/* ── TABLE (base) ── */
.table-wrap { overflow-x: auto; margin: 2rem 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
thead tr  { background: var(--bg3); }
thead th  {
  padding: 1rem 1.2rem;
  text-align: left;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
tbody td         { padding: 1rem 1.2rem; border-bottom: 1px solid var(--border); vertical-align: top; }
tbody tr:hover   { background: var(--bg2); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
}
footer a       { color: var(--muted); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--text); }
.footer-links  { display: flex; gap: 1.5rem; }

/* ── ANIMATION ── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}


/* ══════════════════════════════════════════
   PAGE: HOME  (index.html)
══════════════════════════════════════════ */

/* Hero */
.hero {
  padding: 6rem 6% 5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,168,75,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  border: 1px solid rgba(212,168,75,0.28);
  padding: 0.35rem 0.85rem;
  margin-bottom: 2.2rem;
}
.hero-label-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 760px;
  margin-bottom: 1.6rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-sub strong { color: var(--text); font-weight: 400; }

.divider { height: 1px; background: var(--border); margin: 0 6%; }

/* Articles section */
.articles { padding: 4rem 6% 5rem; }
.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}
.see-all {
  font-size: 0.83rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,168,75,0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.see-all:hover { border-color: var(--gold); }

/* Article card grid */
.articles-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  border: 1px solid var(--border);
  gap: 1px;
  background: var(--border);
}
.article-card {
  background: var(--bg);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  transition: background 0.18s;
}
.article-card:hover           { background: var(--bg2); }
.article-card.featured        { grid-row: span 2; min-height: 400px; }
.card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}
.card-title {
  font-family: "Fraunces", serif;
  line-height: 1.25;
  letter-spacing: -0.015em;
  flex: 1;
}
.featured .card-title                  { font-size: 1.5rem; }
.article-card:not(.featured) .card-title { font-size: 1.05rem; }

.card-excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 0.8rem;
  font-weight: 300;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 1.8rem;
}
.dot {
  width: 3px; height: 3px;
  background: var(--muted);
  border-radius: 50%;
  display: inline-block;
}


/* ══════════════════════════════════════════
   PAGE: COMPARATIF
══════════════════════════════════════════ */

.page-comparatif .page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 5rem;
  align-items: start;
}
.page-comparatif article { padding: 4rem 0 6rem; }

/* Article header */
.article-tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.2rem;
}
.article-title {
  font-family: "Fraunces", serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}
.article-intro {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-weight: 300;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}
.article-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

/* Comparatif table */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin: 0 0 3rem; }
.compare-table thead tr { background: var(--bg3); }
.compare-table thead th {
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.compare-table thead th:first-child { width: 160px; }
.compare-table tbody td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  line-height: 1.5;
}
.compare-table tbody tr:hover { background: var(--bg2); }
.compare-table .broker-name { font-family: "Fraunces", serif; font-size: 1rem; font-weight: 700; color: var(--text); }
.compare-table .broker-sub  { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

.check { color: var(--green); font-size: 0.95rem; }
.cross { color: var(--red);   font-size: 0.95rem; }
.half  { color: var(--gold);  font-size: 0.95rem; }

/* Verdict badges */
.verdict-badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}
.v-debutant  { background: rgba(76,175,80,0.12);   color: var(--green); }
.v-classique { background: var(--gold-dim);          color: var(--gold);  }
.v-avance    { background: rgba(229,115,115,0.12);  color: var(--red);   }

/* Article body – h2/h3 headings */
article h2 {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin: 3.5rem 0 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
article h3 {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  margin: 2rem 0 0.8rem;
  letter-spacing: -0.01em;
}
article > p  { margin-bottom: 1.3rem; }
article > ul, article > ol { padding-left: 1.5rem; margin-bottom: 1.3rem; }
article > li { margin-bottom: 0.5rem; font-size: 0.97rem; }

/* Broker cards */
.broker-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 2rem;
  margin: 2.5rem 0;
}
.broker-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.broker-card-name    { font-family: "Fraunces", serif; font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; }
.broker-card-tagline { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* Score bars */
.scores         { margin-bottom: 1.5rem; }
.score-row      { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.6rem; }
.score-row-label { font-size: 0.82rem; color: var(--muted); width: 130px; flex-shrink: 0; }
.score-bar-track { flex: 1; height: 4px; background: var(--bg3); border-radius: 2px; overflow: hidden; }
.score-bar-fill  { height: 100%; background: var(--gold); border-radius: 2px; }
.score-val       { font-size: 0.82rem; color: var(--muted); width: 30px; text-align: right; flex-shrink: 0; }

/* Pros / Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.pros h4, .cons h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }
.pros ul, .cons ul { padding-left: 1rem; list-style: none; }
.pros li, .cons li {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}
.pros li::before { content: '+'; position: absolute; left: 0; color: var(--green); font-weight: 500; }
.cons li::before { content: '−'; position: absolute; left: 0; color: var(--red);   font-weight: 500; }

.broker-cta {
  display: inline-block;
  background: var(--gold);
  color: #0c0d0f;
  padding: 0.75rem 1.8rem;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  font-family: "DM Sans", sans-serif;
}
.broker-cta:hover { background: var(--gold-light); }
.broker-cta-note  { display: block; font-size: 0.75rem; color: var(--muted); margin-top: 0.6rem; }

/* Verdict grid */
.verdict-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 2rem 0;
}
.verdict-item   { background: var(--bg2); padding: 1.8rem; }
.verdict-broker { font-family: "Fraunces", serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 0.6rem; }
.verdict-for    { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* Table of contents */
.toc {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.6rem 2rem;
  margin-bottom: 3rem;
}
.toc-title { font-family: "Fraunces", serif; font-size: 0.95rem; margin-bottom: 1rem; }
.toc ol    { padding-left: 1.2rem; }
.toc li    { margin-bottom: 0.4rem; }
.toc a     { color: var(--muted); font-size: 0.87rem; text-decoration: none; transition: color 0.2s; }
.toc a:hover { color: var(--gold); }

/* Disclaimer */
.disclaimer {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 1.4rem 1.8rem;
  margin-top: 4rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}
.disclaimer strong { color: var(--text); }

/* Sidebar */
.sidebar { padding: 4rem 0; position: sticky; top: 80px; }
.sidebar-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 1.6rem;
  margin-bottom: 1.2rem;
}
.sidebar-card h4 { font-family: "Fraunces", serif; font-size: 0.95rem; margin-bottom: 1rem; }
.sidebar-list    { list-style: none; }
.sidebar-list li { margin-bottom: 0.7rem; }
.sidebar-list a  {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  line-height: 1.5;
  display: block;
  transition: color 0.2s;
}
.sidebar-list a:hover { color: var(--gold); }
.ad-sidebar {
  background: var(--bg2);
  border: 1px dashed rgba(212,168,75,0.2);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  color: rgba(212,168,75,0.3);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}


/* ══════════════════════════════════════════
   PAGE: CONTACT & LEGAL  (shared elements)
══════════════════════════════════════════ */

.page-contact .page-wrap { max-width: 600px; margin: 0 auto; padding: 5rem 5% 6rem; }
.page-legal   .page-wrap { max-width: 720px; margin: 0 auto; padding: 5rem 5% 6rem; }

.page-tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}
.page-title {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.page-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
}

/* Contact */
.contact-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 2rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact-block-left h3 { font-family: "Fraunces", serif; font-size: 1rem; margin-bottom: 0.3rem; }
.contact-block-left p  { font-size: 0.85rem; color: var(--muted); }
.email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0c0d0f;
  padding: 0.75rem 1.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.email-link:hover    { background: var(--gold-light); }
.contact-topics      { margin-top: 2.5rem; }
.contact-topics h2   { font-family: "Fraunces", serif; font-size: 1.1rem; margin-bottom: 1.2rem; color: var(--text); }
.topic-list          { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.topic-list li       { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
.topic-list li::before { content: '→'; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.contact-note {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Legal */
.page-updated   { font-size: 0.82rem; color: var(--muted); margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.legal-section  { margin-bottom: 2.5rem; }
.legal-section h2 { font-family: "Fraunces", serif; font-size: 1.15rem; letter-spacing: -0.01em; margin-bottom: 0.8rem; }
.legal-section p  { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 0.6rem; }
.legal-section p strong { color: var(--text); font-weight: 500; }
.legal-divider  { height: 1px; background: var(--border); margin: 2.5rem 0; }


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 1024px) {
  nav { padding: 1rem 5%; }
  .nav-links { gap: 1.5rem; font-size: 0.8rem; }

  /* Home grid */
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .article-card.featured { grid-row: span 1; min-height: 0; }
  .featured .card-title  { font-size: 1.1rem; }

  /* Comparatif layout */
  .page-comparatif .page-wrap { grid-template-columns: 1fr; gap: 3rem; padding: 0 4%; }
  .sidebar { padding: 0; position: static; }
  .compare-table thead th:first-child { width: auto; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 4%; flex-direction: column; gap: 1rem; }
  .nav-links { gap: 1.2rem; font-size: 0.75rem; }

  /* Hero */
  .hero        { padding: 4rem 5% 3rem; }
  .hero h1     { font-size: clamp(1.8rem, 4vw, 3rem); }
  .hero-sub    { font-size: 0.95rem; margin-bottom: 2rem; }
  .divider     { margin: 0 5%; }

  /* Home */
  .articles         { padding: 3rem 5%; }
  .articles-header  { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .see-all          { width: 100%; display: block; text-align: left; }
  .articles-grid    { grid-template-columns: 1fr; }
  .article-card     { padding: 1.5rem; min-height: 150px; }
  .featured .card-title { font-size: 1rem; }

  /* Comparatif */
  .article-title  { font-size: clamp(1.6rem, 4vw, 2.2rem); }
  .article-intro  { font-size: 0.95rem; padding-left: 1.2rem; }
  article h2      { font-size: 1.3rem; margin: 2.5rem 0 1rem; }
  article h3      { font-size: 1rem; }
  .compare-table  { font-size: 0.78rem; }
  .compare-table thead th { padding: 0.8rem; font-size: 0.7rem; }
  .compare-table tbody td { padding: 0.8rem; }
  .broker-card        { padding: 1.5rem; margin: 2rem 0; }
  .broker-card-name   { font-size: 1.2rem; }
  .pros-cons          { grid-template-columns: 1fr; gap: 1rem; }
  .verdict-grid       { grid-template-columns: 1fr; }
  .sidebar-card       { padding: 1.2rem; }
  .ad-sidebar         { min-height: 150px; }

  /* Contact & Legal */
  .page-contact .page-wrap,
  .page-legal .page-wrap   { padding: 3rem 4% 4rem; }
  .page-title              { font-size: clamp(1.4rem, 4vw, 2rem); }
  .contact-block           { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
  .email-link              { width: 100%; justify-content: center; white-space: normal; }
  .contact-topics h2       { font-size: 1rem; }
  .topic-list li           { font-size: 0.85rem; }
  .legal-section h2        { font-size: 1rem; }
  .legal-section p         { font-size: 0.9rem; }
  .legal-divider           { margin: 2rem 0; }

  /* Shared */
  .section-title { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
  footer         { padding: 1.5rem 4%; flex-direction: column; align-items: flex-start; }
  .footer-links  { flex-direction: column; gap: 0.8rem; }
  .callout       { padding: 1rem 1.2rem; }
  table          { font-size: 0.75rem; }
  thead th, tbody td { padding: 0.8rem; }
}

@media (max-width: 480px) {
  nav { padding: 0.8rem 3%; }
  .logo { font-size: 1.1rem; }
  .nav-links { gap: 0.8rem; font-size: 0.7rem; }
  body { font-size: 15px; }

  /* Hero */
  .hero        { padding: 2rem 4% 2rem; }
  .hero-label  { font-size: 0.65rem; padding: 0.3rem 0.6rem; }
  .hero h1     { font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: 1rem; }
  .hero-sub    { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; }
  .divider     { margin: 0 4%; }

  /* Home */
  .articles     { padding: 2rem 4%; }
  .article-card { padding: 1rem; }
  .section-title { font-size: clamp(1.2rem, 2vw, 1.6rem); }

  /* Comparatif */
  .article-tag    { font-size: 0.65rem; }
  .article-title  { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 1rem; }
  .article-intro  { font-size: 0.9rem; margin-bottom: 1.5rem; padding-left: 1rem; }
  .article-meta   { flex-direction: column; align-items: flex-start; gap: 0.5rem; padding: 1rem 0; }
  article h2      { font-size: 1.1rem; margin: 2rem 0 0.8rem; }
  article h3      { font-size: 0.95rem; margin: 1.5rem 0 0.6rem; }
  article > p, article > li { font-size: 0.9rem; }
  .compare-table           { font-size: 0.65rem; margin: 0 0 2rem; }
  .compare-table thead th  { padding: 0.6rem; font-size: 0.6rem; }
  .compare-table tbody td  { padding: 0.6rem; }
  .broker-card             { padding: 1.2rem; margin: 1.5rem 0; }
  .broker-card-header      { flex-direction: column; margin-bottom: 1.2rem; padding-bottom: 1rem; }
  .broker-card-name        { font-size: 1.1rem; }
  .score-row-label         { width: 100px; font-size: 0.75rem; }
  .score-val               { font-size: 0.75rem; }
  .broker-cta              { padding: 0.65rem 1.2rem; font-size: 0.8rem; display: block; text-align: center; }
  .verdict-item            { padding: 1.2rem; }
  .verdict-broker          { font-size: 0.95rem; }
  .verdict-for             { font-size: 0.8rem; }
  .toc                     { padding: 1.2rem 1.5rem; margin-bottom: 2rem; }
  .toc-title               { font-size: 0.9rem; }
  .toc a                   { font-size: 0.8rem; }
  .disclaimer              { padding: 1.2rem 1.5rem; font-size: 0.75rem; margin-top: 2rem; }
  .sidebar-card            { padding: 1rem; margin-bottom: 1rem; }
  .sidebar-card h4         { font-size: 0.9rem; }
  .sidebar-list a          { font-size: 0.8rem; }
  .ad-sidebar              { min-height: 120px; padding: 1rem; }

  /* Contact & Legal */
  .page-contact .page-wrap,
  .page-legal .page-wrap   { padding: 2rem 4% 3rem; max-width: 100%; }
  .page-tag                { font-size: 0.65rem; }
  .page-title              { font-size: clamp(1.2rem, 3vw, 1.8rem); margin-bottom: 0.8rem; }
  .page-intro              { font-size: 0.9rem; margin-bottom: 2rem; padding-bottom: 1.5rem; }
  .contact-block           { padding: 1.2rem 1rem; gap: 1rem; }
  .contact-block-left h3   { font-size: 0.9rem; }
  .contact-block-left p    { font-size: 0.8rem; }
  .email-link              { padding: 0.65rem 1.2rem; font-size: 0.8rem; }
  .contact-topics          { margin-top: 1.5rem; }
  .contact-topics h2       { font-size: 0.95rem; margin-bottom: 1rem; }
  .topic-list              { gap: 0.5rem; }
  .topic-list li           { font-size: 0.8rem; gap: 0.6rem; }
  .contact-note            { margin-top: 1.5rem; padding-top: 1.5rem; font-size: 0.75rem; }
  .page-updated            { font-size: 0.75rem; margin-bottom: 2rem; padding-bottom: 1.5rem; }
  .legal-section           { margin-bottom: 2rem; }
  .legal-section h2        { font-size: 0.95rem; margin-bottom: 0.6rem; }
  .legal-section p         { font-size: 0.85rem; line-height: 1.7; margin-bottom: 0.5rem; }
  .legal-divider           { margin: 1.5rem 0; }

  /* Shared */
  .badge            { font-size: 0.65rem; padding: 0.2rem 0.5rem; }
  footer            { padding: 1rem 3%; font-size: 0.7rem; }
  .btn-primary,
  .btn-ghost        { padding: 0.7rem 1.5rem; font-size: 0.85rem; }
  table             { font-size: 0.7rem; }
  thead th, tbody td { padding: 0.6rem; }
}
