/* ============================================================
   Bel Paryaj — main styles
   mobile-first, no framework
   ============================================================ */

/* skip link — a11y */
.skip{
  position:absolute;
  left:-9999px;
  top:8px;
  background:#fff;
  color:#000;
  padding:8px 14px;
  border-radius:6px;
  z-index:60;
}
.skip:focus{left:8px}

/* generic typography & spacing — sections */
h2{
  font-family:'Bebas Neue',sans-serif;
  font-weight:400;
  letter-spacing:.5px;
  font-size:clamp(28px,5.5vw,42px);
  line-height:1.05;
  margin:0 0 18px;
  text-transform:uppercase;
}
h3{
  font-size:18px;
  font-weight:700;
  margin:0 0 8px;
  letter-spacing:-.01em;
}
p{margin:0 0 14px;color:var(--text-dim)}
p:last-child{margin-bottom:0}
strong{color:var(--text);font-weight:700}
.accent{color:var(--red)}

/* ---- header / nav -------------------- */
.mobile-menu{
  position:fixed;
  inset:64px 0 0 0;
  background:var(--bg);
  padding:24px 18px;
  display:flex;
  flex-direction:column;
  gap:2px;
  z-index:45;
  overflow-y:auto;
}
.mobile-menu[hidden]{display:none}
.mobile-menu a{
  padding:14px 4px;
  border-bottom:1px solid var(--line);
  font-size:17px;
  font-weight:500;
}
.mobile-menu a:last-child{border-bottom:0}

.btn-lg{padding:18px 28px;font-size:16px;min-height:54px}

/* ---- hero -------------------- */
.hero__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(225,29,46,.1);
  color:#ffb1ba;
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:500;
  margin-bottom:28px;
  border:1px solid rgba(225,29,46,.25);
}
.hero__badge .icon{width:14px;height:14px}

/* ---- trust strip -------------------- */
.trust{padding:24px 0 8px}
.trust__grid{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.trust__grid li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px 14px;
}
.trust__grid li .icon-lg{color:var(--red);flex-shrink:0;margin-top:2px}
.trust__grid strong{display:block;font-size:14px;margin-bottom:2px;line-height:1.2}
.trust__grid span{display:block;color:var(--text-dim);font-size:12.5px;line-height:1.35}

@media(min-width:720px){
  .trust__grid{grid-template-columns:repeat(4,1fr)}
}

/* ---- block sections -------------------- */
.block{padding:56px 0}
.block--alt{background:var(--surface)}
.block__head{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-bottom:14px;
}
.block__head h2{margin:0}
.block__head .icon-lg{flex-shrink:0;margin-top:6px;color:var(--red)}

/* bullets */
.bullets{
  list-style:none;
  margin:18px 0 0;
  padding:0;
}
.bullets li{
  position:relative;
  padding:10px 0 10px 26px;
  border-bottom:1px solid var(--line);
  color:var(--text);
  font-size:15px;
}
.bullets li:last-child{border-bottom:0}
.bullets li::before{
  content:"";
  position:absolute;
  left:6px;
  top:18px;
  width:6px;
  height:6px;
  background:var(--red);
  border-radius:1px;
  transform:rotate(45deg);
}

.bullets--check li::before{
  content:"";
  position:absolute;
  left:0;
  top:13px;
  width:16px;
  height:16px;
  background:none;
  border:0;
  transform:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2319a974' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5l10 -10'/></svg>");
  background-size:contain;
  background-repeat:no-repeat;
}

/* chips */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:20px;
}
.chips span{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:999px;
  padding:7px 14px;
  font-size:13px;
  color:var(--text-dim);
  font-weight:500;
}
.block--alt .chips span{background:var(--bg)}

/* cards 3-up */
.cards-3{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:24px;
}
.cards-3 article{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px 18px;
}
.block--alt .cards-3 article{background:var(--bg)}
.cards-3 article h3{color:var(--text)}
.cards-3 article p{font-size:14.5px;margin:0}

@media(min-width:760px){
  .cards-3{grid-template-columns:repeat(3,1fr);gap:18px}
}

/* tables */
.table-wrap{
  margin-top:22px;
  overflow-x:auto;
  border-radius:var(--radius);
  border:1px solid var(--line);
  /* on mobile — horizontal scroll */
  -webkit-overflow-scrolling:touch;
}
table{
  width:100%;
  border-collapse:collapse;
  font-size:14.5px;
  min-width:520px;
}
thead{
  background:var(--surface-2);
  text-align:left;
}
.block--alt thead{background:var(--bg)}
th{
  font-weight:600;
  color:var(--text);
  padding:14px 16px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.5px;
  border-bottom:1px solid var(--line);
}
td{
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  color:var(--text-dim);
}
tr:last-child td{border-bottom:0}
table td:first-child{color:var(--text);font-weight:500}

table.compare td.ok{color:#3dd598;font-weight:600}
table.compare td.ko{color:#888;font-weight:500}

/* steps */
.steps{
  list-style:none;
  margin:24px 0 0;
  padding:0;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  counter-reset:step;
}
.steps li{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px 18px;
  position:relative;
}
.steps__num{
  font-family:'Bebas Neue',sans-serif;
  font-size:32px;
  color:var(--red);
  display:block;
  margin-bottom:6px;
  line-height:1;
  letter-spacing:1px;
}
.steps p{margin:0;font-size:14.5px}

@media(min-width:760px){
  .steps{grid-template-columns:repeat(4,1fr)}
}

/* faq */
.faq{margin-top:18px}
.faq details{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  margin-bottom:10px;
  overflow:hidden;
}
.faq summary{
  list-style:none;
  cursor:pointer;
  padding:18px 50px 18px 20px;
  font-weight:600;
  font-size:15.5px;
  position:relative;
  user-select:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary svg{
  color:var(--text-dim);
  transition:transform .25s ease;
  flex-shrink:0;
}
.faq details[open] summary svg{transform:rotate(180deg)}
.faq details > p{
  padding:0 20px 18px;
  margin:0;
  color:var(--text-dim);
  font-size:14.5px;
  line-height:1.6;
}

/* big CTA strip */
.cta-block{
  padding:64px 0;
  text-align:center;
  background:linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.cta-block h2{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(32px,7vw,54px);
  margin:0 0 12px;
}
.cta-block p{max-width:520px;margin:0 auto 26px}

/* ---- footer -------------------- */
.footer{
  padding:48px 0 24px;
  background:#08080a;
  border-top:1px solid var(--line);
}
.footer__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  margin-bottom:36px;
}
.footer h3{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--text-dim);
  margin:14px 0 14px;
  font-weight:600;
}
.footer__grid ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer__grid a{
  font-size:14.5px;
  color:var(--text-dim);
  transition:color .15s;
}
.footer__grid a:hover{color:var(--text)}
.footer__about{
  margin:14px 0 10px;
  font-size:14px;
  line-height:1.55;
}
.footer__legal{
  font-size:12.5px;
  color:var(--text-dim);
}
.footer__contact li{color:var(--text-dim);font-size:14.5px}
.footer__warning{
  background:rgba(225,29,46,.07);
  border:1px solid rgba(225,29,46,.2);
  padding:16px 18px;
  border-radius:var(--radius);
  font-size:13.5px;
  line-height:1.55;
  color:var(--text-dim);
  margin-bottom:24px;
}
.footer__warning strong{color:#ffb1ba;font-weight:700}

.footer__bottom{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:space-between;
  font-size:13px;
  color:var(--text-dim);
  padding-top:20px;
  border-top:1px solid var(--line);
}
.footer__bottom ul{
  list-style:none;
  margin:0;padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

@media(min-width:760px){
  .footer__grid{grid-template-columns:2fr 1fr 1fr 1fr;gap:42px}
}

/* ---- selection & focus -------------------- */
::selection{background:var(--red);color:#fff}
:focus-visible{outline:2px solid var(--blue);outline-offset:2px;border-radius:4px}

/* reduce motion */
@media(prefers-reduced-motion:reduce){
  *{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important}
}

/* ============================================================
   Phone mockup — wrapper for mobile screenshots
   subtle bezel + soft shadow, no fake notch (les captures
   contiennent déjà la barre OS du téléphone)
   ============================================================ */
.phone{
  position:relative;
  width:100%;
  max-width:280px;
  aspect-ratio:280 / 600;
  margin:0 auto;
  padding:9px;
  background:#08080a;
  border-radius:34px;
  box-shadow:
    0 28px 60px -28px rgba(0,0,0,.85),
    0 6px 18px -8px rgba(0,0,0,.5),
    inset 0 0 0 1px rgba(255,255,255,.06);
}
/* subtle side buttons — décoration, non sémantique */
.phone::before,
.phone::after{
  content:"";
  position:absolute;
  width:2px;
  background:#15151b;
  border-radius:2px;
  pointer-events:none;
}
.phone::before{
  top:84px;
  right:-2px;
  height:52px;
}
.phone::after{
  top:64px;
  left:-2px;
  height:36px;
  box-shadow:0 56px 0 #15151b;
}
.phone img{
  display:block;
  width:100%;
  height:100%;
  border-radius:26px;
  object-fit:cover;
  object-position:top center;
}

/* tilt variant — only for hero, gives a touch of dynamism */
.phone--tilt{transform:rotate(-2deg)}
@media(min-width:880px){
  .phone--tilt{transform:rotate(-3deg) translateY(-6px)}
}

/* ============================================================
   Two-column layout for content+visual blocks
   ============================================================ */
.two-col{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  align-items:center;
}
.two-col__visual{
  display:flex;
  justify-content:center;
  order:2;
}

@media(min-width:880px){
  .two-col{
    grid-template-columns:1fr 320px;
    gap:60px;
  }
  .two-col__visual{order:0}
  .two-col--reverse{grid-template-columns:320px 1fr}
  .two-col--reverse .two-col__text{order:2}
}

/* ============================================================
   Breadcrumbs / fil d'Ariane — utilisé sur les pages internes
   ============================================================ */
.breadcrumbs{
  padding:18px 0 0;
  font-size:13.5px;
}
.breadcrumbs ol{
  list-style:none;
  margin:0;padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  color:var(--text-dim);
}
.breadcrumbs li{display:flex;align-items:center;gap:8px}
.breadcrumbs li + li::before{
  content:"›";
  color:var(--line);
  font-size:14px;
}
.breadcrumbs a{color:var(--text-dim);transition:color .15s}
.breadcrumbs a:hover{color:var(--text)}
.breadcrumbs [aria-current="page"]{color:var(--text)}

/* ============================================================
   Cartes types de paris — section interne paris sportifs
   ============================================================ */
.bet-types{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:26px;
}
.bet-type{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px 20px;
}
.block--alt .bet-type{background:var(--bg)}
.bet-type h3{
  font-size:18px;
  font-weight:700;
  margin:0 0 10px;
  color:var(--text);
}
.bet-type > p{
  margin:0;
  font-size:14.5px;
  color:var(--text-dim);
}
.bet-type__example{
  margin-top:14px;
  padding:12px 14px;
  background:var(--bg);
  border-left:3px solid var(--red);
  border-radius:6px;
  font-size:13.5px;
  color:var(--text-dim);
  line-height:1.55;
}
.block--alt .bet-type__example{background:var(--surface-2)}
.bet-type__example strong{color:var(--ok)}
.bet-type__example strong:first-child{color:var(--text)}

@media(min-width:760px){
  .bet-types{grid-template-columns:1fr 1fr;gap:18px}
}

/* ============================================================
   Steps en colonne — variante pour two-col layouts
   (sur l'index.html steps sont 4 colonnes côte-à-côte)
   ============================================================ */
.steps--vertical{
  grid-template-columns:1fr;
  gap:12px;
}
@media(min-width:760px){
  .steps--vertical{grid-template-columns:1fr}
}

/* ============================================================
   Callout box — пример расчёта / акцентный inline-блок
   ============================================================ */
.callout{
  margin-top:24px;
  background:var(--surface);
  border:1px solid var(--line);
  border-left:4px solid var(--red);
  border-radius:var(--radius);
  padding:20px 22px;
}
.block--alt .callout{background:var(--bg)}
.callout h3{
  margin:0 0 8px;
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--text-dim);
  font-weight:600;
}
.callout p{margin:0;color:var(--text);font-size:15px;line-height:1.6}
.callout strong{color:var(--text)}

/* ============================================================
   Download card — composant spécifique à la page APK
   inspiré du look des pages de download type F-Droid / APKMirror
   ============================================================ */
.download-card{
  background:linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  margin:8px 0 18px;
  max-width:560px;
  display:flex;
  gap:22px;
  align-items:center;
  box-shadow:0 12px 32px -16px rgba(0,0,0,.5);
}
.download-card__icon{
  width:64px;
  height:64px;
  background:var(--red);
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  color:#fff;
}
.download-card__icon svg{width:34px;height:34px}
.download-card__info{flex:1;min-width:0}
.download-card__title{
  font-family:'Bebas Neue',sans-serif;
  font-weight:400;
  font-size:22px;
  letter-spacing:.5px;
  margin:0 0 4px;
  color:var(--text);
  text-transform:uppercase;
}
.download-card__meta{
  font-size:13.5px;
  color:var(--text-dim);
  margin:0 0 14px;
}
.download-card .btn{padding:12px 20px;font-size:14px;min-height:42px}

@media(max-width:560px){
  .download-card{
    flex-direction:column;
    text-align:center;
    padding:22px 18px;
    gap:16px;
  }
  .download-card__info{width:100%}
  .download-card .btn{width:100%;justify-content:center}
}

/* Petit hint-link sous la download-card */
.page-hero__hint{
  font-size:13.5px;
  color:var(--text-dim);
  margin:0;
}
.page-hero__hint a{
  color:var(--text-dim);
  border-bottom:1px dotted var(--line);
  transition:color .15s, border-color .15s;
}
.page-hero__hint a:hover{
  color:var(--text);
  border-bottom-color:var(--text-dim);
}

/* Inline code — pour les noms de fichier .apk dans les instructions */
code{
  font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size:.92em;
  background:var(--surface-2);
  padding:2px 6px;
  border-radius:4px;
  color:var(--text);
}
.block--alt code{background:var(--bg)}

/* ============================================================
   Facts strip — bande de chiffres-clés sous le hero
   utilisée sur les pages de paiement (moncash, natcash)
   ============================================================ */
.facts-strip{
  background:var(--surface);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.facts-strip__grid{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:1fr 1fr;
}
.fact{
  padding:22px 18px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.fact:nth-child(2n){border-right:0}
.fact:nth-last-child(-n+2){border-bottom:0}

.fact__value{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(22px, 4vw, 30px);
  color:var(--red);
  letter-spacing:.5px;
  display:block;
  margin-bottom:4px;
  line-height:1.05;
}
.fact__label{
  font-size:12.5px;
  color:var(--text-dim);
  text-transform:uppercase;
  letter-spacing:.5px;
  display:block;
}

@media(min-width:760px){
  .facts-strip__grid{grid-template-columns:repeat(4,1fr)}
  .fact{border-bottom:0}
  .fact:nth-child(2n){border-right:1px solid var(--line)}
  .fact:last-child{border-right:0}
}

/* ============================================================
   Contact page — grille, info-cards, formulaire, resource-links
   ============================================================ */
.contact-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:36px;
}
@media(min-width:880px){
  .contact-grid{grid-template-columns:1fr 1.15fr;gap:56px;align-items:start}
}

/* Resource links — self-help avant le formulaire */
.resource-links{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:24px;
}
@media(min-width:680px){
  .resource-links{grid-template-columns:1fr 1fr;gap:14px}
}
@media(min-width:1000px){
  .resource-links{grid-template-columns:repeat(3,1fr)}
}
.resource-link{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:16px 18px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  transition:border-color .15s, transform .15s;
}
.resource-link:hover{
  border-color:var(--text-dim);
  transform:translateY(-1px);
}
.resource-link strong{
  color:var(--text);
  font-size:15px;
  font-weight:600;
}
.resource-link span{
  color:var(--text-dim);
  font-size:13px;
  line-height:1.45;
}

/* Info cards — coordonnées côté gauche */
.contact-info h2{margin-bottom:24px}
.info-card{
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px 20px;
  margin-bottom:14px;
}
.info-card h3{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.6px;
  color:var(--text-dim);
  margin:0 0 10px;
  font-weight:600;
}
.info-card p{
  margin:0 0 6px;
  color:var(--text);
  font-size:14.5px;
  line-height:1.5;
}
.info-card p:last-child{margin-bottom:0}
.info-card__email{
  font-size:17px;
  font-weight:600;
  color:var(--red);
  border-bottom:1px dotted rgba(225,29,46,.4);
}
.info-card__email:hover{color:var(--red-2);border-bottom-color:var(--red-2)}
.info-card__note{
  color:var(--text-dim) !important;
  font-size:13px !important;
  margin-top:8px !important;
  line-height:1.5;
}
.socials{
  list-style:none;
  margin:0 0 8px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.socials a{
  color:var(--text);
  font-size:14px;
  border-bottom:1px dotted var(--line);
  padding-bottom:1px;
}
.socials a:hover{color:var(--red);border-bottom-color:var(--red)}

/* Contact form */
.contact-form-wrap h2{margin-bottom:14px}
.contact-form-intro{
  color:var(--text-dim);
  font-size:14px;
  margin-bottom:24px;
}
.contact-form{
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
}

.form-field{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:16px;
}
.form-field label{
  font-size:13.5px;
  font-weight:600;
  color:var(--text);
}
.form-field input,
.form-field textarea,
.form-field select{
  width:100%;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--r-sm);
  padding:12px 14px;
  color:var(--text);
  font-family:inherit;
  font-size:15px;
  line-height:1.4;
  transition:border-color .15s, background .15s;
}
.form-field input::placeholder,
.form-field textarea::placeholder{
  color:#5a5a68;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus{
  outline:none;
  border-color:var(--red);
  background:var(--surface-2);
}
.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown){
  border-color:#7a3030;
}
.form-field textarea{
  min-height:130px;
  resize:vertical;
  font-family:inherit;
}
.form-field select{
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a9aa8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6l6 -6'/></svg>");
  background-repeat:no-repeat;
  background-position:right 12px center;
  background-size:18px;
  padding-right:42px;
}

.form-field--checkbox{
  flex-direction:row;
  align-items:flex-start;
  gap:10px;
  margin-bottom:22px;
}
.form-field--checkbox input{
  width:18px;
  height:18px;
  margin-top:2px;
  flex-shrink:0;
  accent-color:var(--red);
}
.form-field--checkbox label{
  font-size:13.5px;
  font-weight:400;
  color:var(--text-dim);
  line-height:1.5;
}
.form-field--checkbox label a{
  color:var(--text);
  border-bottom:1px dotted var(--line);
}
.form-field--checkbox label a:hover{
  color:var(--red);
  border-bottom-color:var(--red);
}

/* ============================================================
   Pages légales — typographie long-form
   ============================================================ */
.legal-content{
  max-width:760px;
  margin:0 auto;
}
.legal-content h2{
  margin-top:42px;
  margin-bottom:14px;
  font-size:clamp(22px, 3.5vw, 28px);
  letter-spacing:.3px;
}
.legal-content h2:first-child{margin-top:0}
.legal-content h3{
  margin-top:26px;
  margin-bottom:8px;
  font-size:17px;
  font-weight:600;
  color:var(--text);
}
.legal-content p{
  margin:0 0 14px;
  font-size:15.5px;
  line-height:1.7;
  color:var(--text);
}
.legal-content ul.bullets,
.legal-content ol.bullets{
  margin:6px 0 18px;
}
.legal-content ul.bullets li,
.legal-content ol.bullets li{
  font-size:15.5px;
  line-height:1.65;
}
.legal-content a{
  color:var(--red);
  border-bottom:1px solid rgba(225,29,46,.35);
  transition:border-color .15s, color .15s;
}
.legal-content a:hover{
  color:var(--red-2);
  border-bottom-color:var(--red-2);
}

/* Badge "Mise à jour" affiché en haut des pages légales */
.updated-badge{
  display:inline-block;
  background:var(--surface-2);
  border:1px solid var(--line);
  color:var(--text-dim);
  font-size:12.5px;
  letter-spacing:.5px;
  text-transform:uppercase;
  padding:6px 12px;
  border-radius:99px;
  margin-bottom:4px;
}

/* Table of contents pour les pages longues */
.legal-toc{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px 24px;
  margin-bottom:36px;
}
.legal-toc h2{
  margin:0 0 12px !important;
  font-size:14px !important;
  text-transform:uppercase;
  letter-spacing:.6px;
  color:var(--text-dim);
  font-weight:600;
  font-family:'Manrope', sans-serif;
}
.legal-toc ol{
  margin:0;
  padding-left:22px;
  columns:1;
  column-gap:32px;
}
@media(min-width:680px){
  .legal-toc ol{columns:2}
}
.legal-toc li{
  margin:6px 0;
  break-inside:avoid;
  font-size:14.5px;
}
.legal-toc a{
  color:var(--text);
  border-bottom:1px dotted var(--line);
}
.legal-toc a:hover{
  color:var(--red);
  border-bottom-color:var(--red);
}

/* Callout variant accent — pour mettre en évidence un encart important */
.callout--accent{
  background:linear-gradient(160deg, rgba(225,29,46,.08), rgba(225,29,46,.02));
  border-color:rgba(225,29,46,.35);
  border-left-width:4px;
}
.callout--accent h3{color:var(--text)}

/* Ajustements pour anchor targeting — éviter que le titre soit sous le header sticky */
.legal-content h2[id],
.legal-content h3[id]{
  scroll-margin-top:80px;
}
