/* Bonjour Mon Amour — design system
   Warm, trustworthy, conversion-focused. Mobile-first. */

:root {
  --rose: #e0245e;
  --rose-dark: #c01a4c;
  --rose-soft: #fff0f5;
  --ink: #1d2433;
  --muted: #5b6472;
  --line: #ececf1;
  --bg: #ffffff;
  --bg-alt: #faf8fb;
  --gold: #ffb400;
  --green: #1ea672;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 6px 24px rgba(29, 36, 51, .08);
  --shadow-lg: 0 14px 40px rgba(224, 36, 94, .16);
  --maxw: 1100px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }
h1, h2, h3 { line-height: 1.25; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); margin: .2em 0 .4em; }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); margin: 1.8em 0 .6em; }
h3 { font-size: 1.2rem; margin: 1.4em 0 .4em; }
p { margin: 0 0 1em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 24px; height: 64px; }
.logo { font-weight: 800; font-size: 1.25rem; color: var(--ink); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.logo .heart { color: var(--rose); }
.logo-mark { height: 32px; width: auto; display: block; }
.site-nav { display: flex; gap: 22px; margin-left: auto; }
.site-nav a { color: var(--ink); font-weight: 600; font-size: .95rem; }
.site-nav a:hover { color: var(--rose-dark); text-decoration: none; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(160deg, var(--rose-soft), #fff 70%); padding: 56px 0 40px; }
.hero h1 { max-width: 18ch; }
.hero .lede { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }

/* ---------- Buttons / CTA ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--rose); color: #fff; font-weight: 700; font-size: 1.02rem;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  box-shadow: var(--shadow-lg); transition: transform .12s ease, background .12s ease;
  text-align: center;
}
.btn:hover { background: var(--rose-dark); text-decoration: none; transform: translateY(-1px); color: #fff; }
.btn--lg { padding: 17px 34px; font-size: 1.12rem; }
.btn--block { display: flex; width: 100%; }
.btn--ghost { background: #fff; color: var(--rose-dark); border: 2px solid var(--rose); box-shadow: none; }
.btn--ghost:hover { background: var(--rose-soft); color: var(--rose-dark); }
.btn small { font-weight: 500; opacity: .9; }

/* ---------- Trust bar ---------- */
.trustbar { display: flex; flex-wrap: wrap; gap: 22px; color: var(--muted); font-size: .9rem; margin-top: 20px; }
.trustbar span { display: inline-flex; align-items: center; gap: 7px; }
.trustbar .ic { color: var(--green); font-weight: 800; }

/* ---------- Review header card ---------- */
.review-hero { display: grid; grid-template-columns: 1fr; gap: 26px; padding: 36px 0 8px; }
.score-card {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}
.score-badge { display: flex; align-items: baseline; gap: 8px; }
.score-badge .num { font-size: 3rem; font-weight: 800; color: var(--rose); line-height: 1; }
.score-badge .out { color: var(--muted); font-weight: 600; }
.stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 2px; }
.score-rows { margin: 18px 0; display: grid; gap: 10px; }
.score-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; font-size: .93rem; }
.bar { grid-column: 1 / -1; height: 7px; background: #eee; border-radius: 99px; overflow: hidden; }
.bar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--rose), var(--gold)); }

/* ---------- Key facts ---------- */
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 26px 0; }
.facts div { background: #fff; padding: 14px 16px; }
.facts dt { font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 3px; }
.facts dd { margin: 0; font-weight: 700; }

/* ---------- Pros / Cons ---------- */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0; }
.proscons .col { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.proscons .pros { background: #f1fbf6; border-color: #cdeedd; }
.proscons .cons { background: #fff6f6; border-color: #f3d6d6; }
.proscons h3 { margin-top: 0; }
.proscons ul { list-style: none; padding: 0; margin: 0; }
.proscons li { padding-left: 28px; position: relative; margin-bottom: 10px; }
.proscons .pros li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.proscons .cons li::before { content: "✕"; position: absolute; left: 0; color: var(--rose); font-weight: 800; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin: 22px 0; }
.plan { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; text-align: center; position: relative; background: #fff; }
.plan.highlight { border-color: var(--rose); box-shadow: var(--shadow-lg); }
.plan .tag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--rose); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 99px; }
.plan .price { font-size: 1.8rem; font-weight: 800; color: var(--rose); }
.plan .per { color: var(--muted); font-size: .85rem; }
.plan ul { list-style: none; padding: 0; margin: 14px 0 0; font-size: .9rem; text-align: left; }
.plan li { padding: 5px 0 5px 20px; position: relative; }
.plan li::before { content: "•"; color: var(--rose); position: absolute; left: 4px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--rose), #ff6a3d); color: #fff; border-radius: var(--radius); padding: 30px 28px; text-align: center; margin: 34px 0; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; margin: 0 0 6px; }
.cta-band p { opacity: .95; margin-bottom: 18px; }
.cta-band .btn { background: #fff; color: var(--rose-dark); }
.cta-band .btn:hover { background: #fff7fa; }

/* ---------- Steps ---------- */
.steps { counter-reset: s; display: grid; gap: 14px; margin: 20px 0; padding: 0; list-style: none; }
.steps li { counter-increment: s; position: relative; padding: 16px 18px 16px 60px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.steps li::before { content: counter(s); position: absolute; left: 16px; top: 16px; width: 30px; height: 30px; background: var(--rose); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 800; }
.steps strong { display: block; }

/* ---------- FAQ ---------- */
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 18px; margin-bottom: 10px; background: #fff; }
.faq summary { cursor: pointer; font-weight: 700; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--rose); font-size: 1.4rem; font-weight: 700; }
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .ans { padding: 14px 0; color: var(--muted); }

/* ---------- Testimonials ---------- */
.testi { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 22px 0; }
.testi figure { margin: 0; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.testi blockquote { margin: 0 0 10px; font-style: italic; }
.testi figcaption { font-weight: 700; font-size: .9rem; color: var(--rose-dark); }

/* ---------- Cards grid ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 24px 0; }
.card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; transition: transform .14s ease, box-shadow .14s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); text-decoration: none; }

/* blog/article cards keep simple styling */
.card .rank { font-size: .8rem; font-weight: 700; color: var(--muted); }
.card h3 { margin: 0; }
.card .score-mini { color: var(--gold); font-weight: 700; }
.card p { color: var(--muted); font-size: .95rem; flex: 1; margin: 0; }

/* ---------- Review card (ranking) ---------- */
.review-card { position: relative; padding: 22px 20px 20px; overflow: hidden; }
.review-card:hover { border-color: #f3c6d6; }
.rc-rank { position: absolute; top: 0; right: 0; background: var(--ink); color: #fff; font-weight: 800; font-size: .82rem; padding: 5px 12px; border-bottom-left-radius: var(--radius); letter-spacing: .02em; }
.review-card .rc-logo { display: flex; align-items: center; height: 50px; margin-bottom: 8px; max-width: 100%; overflow: hidden; }
.review-card .hub-logo { width: 50px; height: 50px; border-radius: 13px; font-size: 1.2rem; box-shadow: none; flex-shrink: 0; }
.review-card .hub-logo.has-img { width: auto; max-width: 100%; height: 50px; padding: 5px 10px; }
.review-card .hub-logo.has-img img { max-height: 38px; max-width: 195px; width: auto; }
.rc-head { display: flex; flex-direction: column; min-width: 0; text-decoration: none; margin-bottom: 2px; }
.rc-head:hover { text-decoration: none; }
.rc-head:hover .rc-brand { color: var(--rose-dark); }
.rc-brand { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rc-brand { font-weight: 800; font-size: 1.2rem; color: var(--ink); line-height: 1.2; letter-spacing: -.01em; }
.rc-cat { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }
.rc-score { display: flex; align-items: center; gap: 7px; font-size: .95rem; }
.rc-score .stars { color: var(--gold); letter-spacing: 1px; }
.rc-score strong { font-size: 1.15rem; color: var(--rose); }
.rc-score .rc-out { color: var(--muted); font-size: .85rem; }
.rc-desc { color: var(--muted); font-size: .92rem; line-height: 1.55; margin: 2px 0 0; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.rc-offer { display: inline-flex; align-items: center; align-self: flex-start; gap: 5px; background: var(--rose-soft); color: var(--rose-dark); font-size: .8rem; font-weight: 700; padding: 5px 11px; border-radius: 99px; }
.rc-top { text-decoration: none; }
.rc-top:hover { text-decoration: none; }
.rc-top:hover .rc-brand { color: var(--rose-dark); }
.rc-actions { margin-top: auto; padding-top: 6px; display: flex; flex-direction: column; gap: 8px; }
.rc-signup { padding: 12px; font-size: .96rem; box-shadow: 0 6px 16px rgba(224,36,94,.22); }
.rc-review { text-align: center; font-weight: 700; color: var(--rose-dark); padding: 9px; border: 2px solid var(--line); border-radius: 999px; transition: border-color .12s ease, background .12s ease; }
.rc-review:hover { border-color: var(--rose); background: var(--rose-soft); text-decoration: none; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: #fff; border-top: 1px solid var(--line); padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); display: none; box-shadow: 0 -6px 20px rgba(0,0,0,.08); }
.sticky-cta .btn { width: 100%; }

/* ---------- TOC ---------- */
.toc { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; margin: 24px 0; }
.toc strong { display: block; margin-bottom: 8px; }
.toc ul { margin: 0; padding-left: 18px; columns: 2; font-size: .95rem; }

/* ---------- Article body ---------- */
.prose { max-width: 760px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 6px; }

/* ---------- Meta / disclosure ---------- */
.disclosure { font-size: .82rem; color: var(--muted); background: var(--bg-alt); border-left: 3px solid var(--rose); padding: 10px 14px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 18px 0; }
.byline { color: var(--muted); font-size: .88rem; margin-bottom: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c7cdd8; margin-top: 60px; padding: 40px 0 28px; font-size: .92rem; }
.site-footer a { color: #fff; }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 28px; }
.site-footer h4 { color: #fff; margin: 0 0 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 7px; }
.site-footer .legal { border-top: 1px solid #333a47; margin-top: 28px; padding-top: 18px; font-size: .8rem; color: #8b93a1; }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: .85rem; color: var(--muted); padding: 14px 0 0; }
.crumb a { color: var(--muted); }

/* ---------- Brand hub hero + tabs ---------- */
.hub-hero { background: linear-gradient(160deg, var(--rose-soft), #fff 75%); border-bottom: 1px solid var(--line); padding: 30px 0 22px; }
.hub-hero-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: center; }
.hub-logo { width: 92px; height: 92px; border-radius: 22px; background: var(--rose); color: #fff; font-size: 2rem; font-weight: 800; display: grid; place-items: center; box-shadow: var(--shadow); overflow: hidden; flex-shrink: 0; letter-spacing: -.02em; }
.hub-logo img { width: 100%; height: 100%; object-fit: cover; }
.hub-logo.sm { width: 48px; height: 48px; border-radius: 12px; font-size: 1.1rem; }
/* image logos: flexible width, fits square AND wide banners */
.hub-logo.has-img { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 8px 14px; width: auto; height: 66px; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; }
.hub-logo.has-img img { width: auto; height: auto; max-height: 48px; max-width: 230px; object-fit: contain; }
.hub-logo.has-img.sm { height: 48px; padding: 5px 9px; border-radius: 10px; box-shadow: none; }
.hub-logo.has-img.sm img { max-height: 34px; max-width: 140px; }
/* clickable content images -> affiliate */
.img-link { display: block; position: relative; cursor: pointer; }
.img-link::after { content: "Visiter le site →"; position: absolute; inset: auto 0 0 0; background: rgba(224,36,94,.92); color: #fff; font-size: .82rem; font-weight: 700; text-align: center; padding: 7px; opacity: 0; transition: opacity .15s ease; border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.img-link:hover::after { opacity: 1; }
.img-link:hover img { filter: brightness(.96); }
/* category-colored app-icon gradients */
.hub-logo.cat-serieuse  { background: linear-gradient(135deg,#7b5cff,#e0245e); }
.hub-logo.cat-libertin  { background: linear-gradient(135deg,#e0245e,#ff6a3d); }
.hub-logo.cat-adultere  { background: linear-gradient(135deg,#b5179e,#7b2ff7); }
.hub-logo.cat-cougar    { background: linear-gradient(135deg,#ff7a00,#e0245e); }
.hub-logo.cat-bdsm      { background: linear-gradient(135deg,#2b2b2b,#e0245e); }
.hub-logo.cat-gay       { background: linear-gradient(135deg,#ff6a3d,#ffb400); }
.hub-logo.cat-asiatique { background: linear-gradient(135deg,#e0245e,#ff4d6d); }
.hub-logo.cat-senior    { background: linear-gradient(135deg,#1ea672,#7b5cff); }

/* promo coupon (code-promo pages) */
.promo-coupon { display: grid; grid-template-columns: 1fr auto; gap: 0; margin: 8px 0 24px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.pc-left { background: linear-gradient(135deg,var(--rose),#ff6a3d); color: #fff; padding: 22px 24px; }
.pc-tag { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; opacity: .92; }
.pc-value { display: block; font-size: 1.9rem; font-weight: 800; margin: 4px 0; }
.pc-sub { font-size: .85rem; opacity: .92; }
.pc-right { background: #fff; border: 2px dashed var(--rose); border-left: 0; padding: 18px 22px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; }
.pc-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }

/* store buttons (application pages) */
.store-btns { display: flex; flex-wrap: wrap; gap: 12px; margin: 6px 0 22px; }
.store-btn { display: inline-flex; align-items: center; gap: 10px; background: #111; color: #fff; padding: 10px 20px; border-radius: 12px; min-width: 180px; transition: transform .12s ease, background .12s ease; }
.store-btn:hover { background: #000; text-decoration: none; transform: translateY(-1px); color: #fff; }
.store-btn .st-ic { font-size: 1.5rem; line-height: 1; }
.store-btn .st-svg { width: 22px; height: 22px; flex-shrink: 0; }
.store-btn .st-txt { display: flex; flex-direction: column; line-height: 1.15; }
.store-btn .st-txt small { font-size: .68rem; opacity: .8; }
.store-btn .st-txt strong { font-size: 1.05rem; }

/* enriched sidebar */
.sc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.sc-brand { font-weight: 800; font-size: 1.1rem; }
.sc-cat { font-size: .82rem; color: var(--muted); }
.offer-box { background: var(--rose-soft); border: 1px solid #f3d6e0; border-radius: var(--radius-sm); padding: 12px 14px; margin: 14px 0; text-align: center; }
.offer-box .offer-tag { display: inline-block; background: var(--rose); color: #fff; font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 99px; text-transform: uppercase; }
.offer-box p { margin: 8px 0 0; font-weight: 800; font-size: 1.15rem; color: var(--rose-dark); }
.sc-trust { list-style: none; padding: 14px 0 0; margin: 14px 0 0; border-top: 1px solid var(--line); display: grid; gap: 8px; font-size: .9rem; }
.sc-trust li { padding-left: 24px; position: relative; }
.sc-trust li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.sc-alt { margin-top: 16px; padding-top: 14px; border-top: 2px dashed var(--line); }
.sc-alt-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-weight: 700; margin-bottom: 8px; }
.sc-alt-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.sc-alt-info { display: flex; flex-direction: column; }
.sc-alt-info strong { font-size: 1.02rem; }
.sc-alt-info .stars { color: var(--gold); font-size: .85rem; }
.prose img { border-radius: var(--radius-sm); margin: 14px 0; }
.cta-inline { margin: 18px 0; }
.hub-meta h1 { margin: 4px 0 6px; font-size: clamp(1.6rem, 4vw, 2.3rem); }
.hub-meta .since { font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.hub-rating { font-size: 1.1rem; }
.hub-rating .stars { color: var(--gold); }
.hub-rating strong { color: var(--rose); font-size: 1.3rem; }
.hub-offer { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); }
.offer-tag { display: inline-block; background: var(--rose-soft); color: var(--rose-dark); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 99px; text-transform: uppercase; }
.offer-txt { font-weight: 700; margin: 8px 0 12px; }
.hub-tabs { position: sticky; top: 64px; z-index: 40; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.hub-tabs .wrap { display: flex; gap: 4px; overflow-x: auto; }
.hub-tabs a { padding: 16px 18px; font-weight: 700; color: var(--muted); white-space: nowrap; border-bottom: 3px solid transparent; }
.hub-tabs a:hover { color: var(--rose-dark); text-decoration: none; }
.hub-tabs a.active { color: var(--rose-dark); border-bottom-color: var(--rose); }
.hub-body { display: grid; grid-template-columns: 320px 1fr; gap: 30px; align-items: start; padding-top: 28px; }
.hub-body .prose { max-width: none; }
.hub-body .score-card { position: sticky; top: 132px; }
.hub-body > .prose:only-child, .hub-body > section.prose:first-child { grid-column: 1 / -1; }
.sub-h1 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-top: 0; }

/* ---------- Avatar / author ---------- */
.avatar { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--rose); color: #fff; font-size: .7rem; font-weight: 800; vertical-align: middle; margin-right: 5px; }
.avatar--lg { width: 84px; height: 84px; font-size: 1.8rem; }
.avatar.has-photo { overflow: hidden; background: none; }
.avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.author-hero { display: flex; align-items: center; gap: 22px; padding: 36px 0 10px; }
.author-hero .role { color: var(--muted); margin: 4px 0; }
.author-card { display: flex; gap: 20px; align-items: flex-start; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; margin: 14px 0; }
.author-card .avatar--lg { flex-shrink: 0; }
.author-card .ac-name { font-weight: 800; font-size: 1.15rem; margin: 0; }
.author-card .ac-role { color: var(--muted); margin: 2px 0 10px; }
.author-card p:last-child { margin-bottom: 0; }
@media (max-width: 600px) { .author-card { flex-direction: column; align-items: center; text-align: center; } }

/* ---------- TL;DR box ---------- */
.tldr-box { background: linear-gradient(135deg, var(--rose-soft), #fff); border: 1px solid #f3d6e0; border-left: 4px solid var(--rose); border-radius: var(--radius-sm); padding: 16px 20px; margin: 4px 0 22px; font-size: 1.02rem; }

/* ---------- Verdict / redflags ---------- */
.verdict-box { background: #f1fbf6; border: 1px solid #cdeedd; border-left: 4px solid var(--green); border-radius: var(--radius-sm); padding: 16px 18px; margin: 18px 0; }
.redflags { list-style: none; padding: 0; }
.redflags li { padding-left: 30px; position: relative; margin-bottom: 10px; }
.redflags li::before { content: "⚠"; position: absolute; left: 0; color: var(--rose); }

/* ---------- Compare table ---------- */
.table-wrap { overflow-x: auto; margin: 22px 0; }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare th, .compare td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.compare thead th { font-size: .8rem; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); }
.compare .ctr { white-space: nowrap; }
.compare .stars { color: var(--gold); }
.compare .btn { padding: 8px 16px; font-size: .85rem; }
.article { max-width: 820px; }
.article-cover { width: 100%; max-height: 380px; object-fit: cover; border-radius: var(--radius); margin: 8px 0 22px; box-shadow: var(--shadow); }
.silo-ranking { margin: 18px 0 30px; }
.silo-ranking-title { margin: 0 0 14px; font-size: 1.4rem; }
.article .prose img { width: 100%; border-radius: var(--radius); margin: 18px 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .95rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 13px; text-align: left; vertical-align: middle; }
.prose thead th, .prose tr:first-child th { background: var(--bg-alt); font-weight: 700; }
.prose tbody tr:nth-child(even) { background: #fbfafc; }
.prose td:not(:first-child), .prose th:not(:first-child) { text-align: center; }
.article .prose blockquote { border-left: 4px solid var(--rose); margin: 18px 0; padding: 8px 18px; background: var(--rose-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--ink); }
.article .prose ol > li { margin-bottom: 6px; }
.article-card { padding: 0; overflow: hidden; }
.article-card .ac-cover { width: 100%; height: 160px; object-fit: cover; }
.article-card .rank, .article-card h3, .article-card p, .article-card .btn { margin-left: 20px; margin-right: 20px; }
.article-card .rank { margin-top: 16px; display: inline-block; }
.article-card .btn { margin-bottom: 18px; }

/* ---------- Brand showcase (editorial pages) ---------- */
.brand-box { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 14px 0 30px; box-shadow: var(--shadow); background: #fff; }
.bb-shot { display: block; max-height: 320px; overflow: hidden; border-bottom: 1px solid var(--line); position: relative; }
.bb-shot img { width: 100%; height: auto; display: block; transition: transform .2s ease; }
.bb-shot:hover img { transform: scale(1.02); }
.bb-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 18px; flex-wrap: wrap; }
.bb-id { display: flex; align-items: center; gap: 12px; }
.bb-id .hub-logo { width: 46px; height: 46px; border-radius: 11px; font-size: 1rem; box-shadow: none; }
.bb-meta { display: flex; flex-direction: column; }
.bb-meta strong { font-size: 1.12rem; }
.bb-meta .stars { color: var(--gold); font-size: .9rem; }
.bb-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.bb-cta .btn { padding: 11px 22px; font-size: .95rem; }
@media (max-width:600px){ .bb-bar{flex-direction:column;align-items:stretch} .bb-cta{flex-direction:column} .bb-cta .btn{width:100%} }

/* ---------- Article listing (groupes/comptes) ---------- */
.listing-box { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin: 8px 0 28px; }
.listing-title { margin: 0 0 16px; font-size: 1.3rem; }
.listing-rows { display: grid; gap: 10px; }
.listing-item { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 16px; transition: box-shadow .12s ease; }
.listing-item:hover { box-shadow: var(--shadow); }
.li-num { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--rose-soft); color: var(--rose-dark); font-weight: 800; font-size: .85rem; display: grid; place-items: center; }
.li-info { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.li-name { font-weight: 700; }
.li-desc { font-size: .88rem; color: var(--muted); }
.li-join { flex-shrink: 0; background: var(--rose); color: #fff; font-weight: 700; font-size: .88rem; padding: 8px 16px; border-radius: 999px; white-space: nowrap; }
.li-join:hover { background: var(--rose-dark); text-decoration: none; color: #fff; }
.listing-discord .li-join { background: #5865F2; }
.listing-discord .li-join:hover { background: #4752c4; }
.listing-telegram .li-join { background: #29a9eb; }
.listing-telegram .li-join:hover { background: #1f8fcc; }
.snap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.snap-chip { display: flex; align-items: center; gap: 6px; justify-content: center; background: #fffbe6; border: 1px solid #ffe26b; color: #8a6d00; font-weight: 700; padding: 11px 12px; border-radius: var(--radius-sm); font-size: .92rem; }
.snap-chip:hover { background: #fff3b0; text-decoration: none; color: #6b5400; }
.listing-note { margin: 16px 0 0; font-size: .9rem; color: var(--muted); background: #fff6f6; border-left: 3px solid var(--rose); padding: 10px 14px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hub-hero-inner { grid-template-columns: auto 1fr; }
  .hub-offer { grid-column: 1 / -1; }
  .hub-body { grid-template-columns: 1fr; }
  .hub-body .score-card { position: static; }
}

@media (max-width: 860px) {
  .proscons { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; gap: 22px; }
  .toc ul { columns: 1; }
}
@media (max-width: 720px) {
  .site-nav { position: fixed; inset: 64px 0 auto 0; background: #fff; flex-direction: column; padding: 16px 18px; border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .25s ease; }
  .site-nav.open { transform: translateY(0); }
  .nav-toggle { display: block; margin-left: auto; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
  .facts { grid-template-columns: 1fr 1fr; }
}
