/* ============================================================
   VPSPLEX — components.css
   Bibliothèque de composants partagée. Les agents doivent
   réutiliser ces classes, pas réinventer des styles inline.
   ============================================================ */

/* ============ BOUTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 0.95rem; line-height: 1;
  padding: 14px 26px; border-radius: var(--r-pill);
  border: 1px solid transparent; text-decoration: none !important;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn svg { width: 16px; height: 16px; flex: none; }

.btn-primary { background: var(--grad); color: var(--acc-ink); box-shadow: var(--shadow-acc); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(232,80,10,.34), 0 12px 36px rgba(232,80,10,.28); }

.btn-ghost { background: var(--surface-1); color: var(--txt-1); border-color: var(--line-2); box-shadow: var(--shadow-1); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--acc); color: var(--acc-deep); }

.btn-ink { background: var(--txt-1); color: var(--bg-0); }
.btn-ink:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }

.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(246, 244, 238, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-1);
}
.nav { display: flex; align-items: center; gap: 28px; height: var(--nav-h); }
.brand { white-space: nowrap; display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.28rem; color: var(--txt-1); text-decoration: none !important; letter-spacing: -0.01em; }
.brand .brand-mark { width: 34px; height: 34px; flex: none; }
.brand em { font-style: normal; color: var(--acc); }
/* Accent typographique de la marque VPSPlex. */
.brand .brand-accent { color: var(--acc); }
@keyframes spin { to { transform: rotate(360deg); } }

.nav-links { display: flex; align-items: center; gap: 4px; margin-inline-start: 8px; }
.nav-links > a, .nav-links > .nav-drop > button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 13px; border-radius: var(--r-pill);
  color: var(--txt-2); font-weight: 500; font-size: 0.92rem;
  text-decoration: none !important; background: none; border: none;
  transition: color .15s, background .15s;
}
.nav-links > a:hover, .nav-links > .nav-drop > button:hover { color: var(--txt-1); background: var(--surface-2); }
.nav-links > a.active { color: var(--acc-deep); background: var(--acc-soft); }

.nav-drop { position: relative; }
.nav-drop-panel {
  position: absolute; top: calc(100% + 10px); inset-inline-start: 0; min-width: 300px;
  background: var(--surface-1); border: 1px solid var(--line-1); border-radius: var(--r-md);
  box-shadow: var(--shadow-2); padding: 10px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: all .18s ease; z-index: 300;
}
.nav-drop:hover .nav-drop-panel, .nav-drop:focus-within .nav-drop-panel { opacity: 1; visibility: visible; transform: none; }
.nav-drop-panel a {
  display: flex; gap: 12px; align-items: flex-start; padding: 11px 12px;
  border-radius: var(--r-sm); text-decoration: none !important;
}
.nav-drop-panel a:hover { background: var(--surface-2); }
.nav-drop-panel .nd-title { font-weight: 600; font-size: 0.92rem; color: var(--txt-1); display: block; }
.nav-drop-panel .nd-desc { font-size: 0.8rem; color: var(--txt-3); display: block; margin-top: 2px; line-height: 1.45; }
.nav-drop-panel .nd-icon { width: 30px; height: 30px; flex: none; border-radius: 8px; background: var(--acc-soft); color: var(--acc-deep); display: grid; place-items: center; }
.nav-drop-panel .nd-icon svg { width: 16px; height: 16px; }

.nav-right { margin-inline-start: auto; display: flex; align-items: center; gap: 12px; }

.lang-switch { position: relative; }
.lang-switch > button {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px;
  border-radius: var(--r-pill); border: 1px solid var(--line-2); background: var(--surface-1);
  color: var(--txt-2); font-size: 0.85rem; font-weight: 500;
}
.lang-switch > button:hover { color: var(--txt-1); border-color: var(--txt-3); }
.lang-switch .lang-flag { width: 17px; height: 12px; border-radius: 2px; object-fit: cover; }
.lang-panel {
  position: absolute; top: calc(100% + 8px); inset-inline-end: 0; width: 320px;
  background: var(--surface-1); border: 1px solid var(--line-1); border-radius: var(--r-md);
  box-shadow: var(--shadow-2); padding: 12px; display: none; z-index: 300;
  grid-template-columns: repeat(2, 1fr); gap: 2px; max-height: 380px; overflow: auto;
}
.lang-switch.open .lang-panel { display: grid; }
.lang-panel button {
  display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: var(--r-sm);
  background: none; border: none; font-size: 0.86rem; color: var(--txt-2); text-align: start;
}
.lang-panel button:hover { background: var(--surface-2); color: var(--txt-1); }
.lang-panel button.on { color: var(--acc-deep); font-weight: 600; background: var(--acc-soft); }

.nav-burger { display: none; width: 42px; height: 42px; border-radius: var(--r-sm); border: 1px solid var(--line-2); background: var(--surface-1); color: var(--txt-1); place-items: center; }
@media (max-width: 1020px) {
  .nav-links { display: none; }
  .nav-burger { display: grid; }
  .nav-cta-hide { display: none; }
}
/* ≤520px : la barre complète (marque + langue + CTA + burger) déborde 390px.
   On retire le CTA du header (le menu mobile mène déjà vers vps.html)
   et on réduit le sélecteur de langue à l'icône. */
@media (max-width: 520px) {
  .nav { gap: 12px; }
  .nav-right { gap: 8px; }
  .nav-right > .btn-primary { display: none; }
  .nav-right .lang-switch > button { padding: 8px 10px; gap: 5px; }
  .nav-right .lang-toggle [data-lang-label] { display: none; }
  /* le panneau de langues (320px fixe) dépasse alors du bord gauche :
     on l'ancre au header, pleine largeur entre les marges .wrap */
  .nav-right .lang-switch { position: static; }
  .nav-right .lang-panel {
    top: calc(100% + 8px); inset-inline: 24px; width: auto; max-width: none;
  }
}
.mobile-menu { display: none; border-top: 1px solid var(--line-1); background: var(--surface-1); padding: 18px 24px 26px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 11px 6px; color: var(--txt-1); font-weight: 500; border-bottom: 1px dashed var(--line-1); text-decoration: none !important; }
.mobile-menu a:last-child { border-bottom: none; }

/* ============ PILLS / BADGES / TAMPONS ============ */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--surface-1); border: 1px solid var(--line-2);
  font-size: 0.8rem; font-weight: 500; color: var(--txt-2);
}
.pill svg { width: 13px; height: 13px; }
.pill-acc { background: var(--acc-soft); border-color: var(--acc-line); color: var(--acc-deep); }
.pill-ok { background: var(--ok-soft); border-color: rgba(30,123,68,.35); color: var(--ok); }
.pill-warn { background: var(--warn-soft); border-color: rgba(148,98,0,.35); color: var(--warn); }
.pill-blue { background: var(--acc-2-soft); border-color: rgba(20,85,123,.3); color: var(--acc-2); }

.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); flex: none; box-shadow: 0 0 0 3px var(--ok-soft); }
.dot.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px var(--ok-soft); } 50% { box-shadow: 0 0 0 6px rgba(30,123,68,.05); } }

/* Tampon circulaire daté façon carte (ex: "since 2021") */
.stamp {
  display: inline-grid; place-items: center; text-align: center;
  width: 86px; height: 86px; border-radius: 50%;
  border: 1.5px dashed var(--acc-line); color: var(--acc-deep);
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: .1em; text-transform: uppercase;
  transform: rotate(-8deg); background: rgba(255,255,255,.5);
  line-height: 1.5; padding: 8px;
}

/* ============ CARTES ============ */
.card {
  background: var(--surface-1); border: 1px solid var(--line-1);
  border-radius: var(--r-md); padding: 28px; box-shadow: var(--shadow-1);
  transition: transform .22s ease, box-shadow .25s ease, border-color .22s ease;
}
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--line-2); }
.card-corner { position: relative; }
.card-corner::before, .card-corner::after {
  content: ""; position: absolute; width: 14px; height: 14px; pointer-events: none;
  border-color: var(--line-2); border-style: solid;
}
.card-corner::before { top: 8px; inset-inline-start: 8px; border-width: 1.5px 0 0 1.5px; }
.card-corner::after { bottom: 8px; inset-inline-end: 8px; border-width: 0 1.5px 1.5px 0; }

.icon-chip {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: var(--acc-soft); color: var(--acc-deep);
  display: grid; place-items: center; margin-bottom: 18px;
}
.icon-chip svg { width: 21px; height: 21px; }
.icon-chip.blue { background: var(--acc-2-soft); color: var(--acc-2); }

/* ============ CARTES PLANS VPS (configurateur / pricing) ============ */
.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1080px) { .plan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .plan-grid { grid-template-columns: 1fr; } }

.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface-1); border: 1.5px solid var(--line-1);
  border-radius: var(--r-md); padding: 26px 24px;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--line-2); }
.plan.selected { border-color: var(--acc); box-shadow: var(--glow-acc); }
.plan.popular { border-color: var(--acc); }
.plan .plan-flag {
  position: absolute; top: -11px; inset-inline-start: 22px;
  background: var(--grad); color: #fff; font-size: 0.66rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: var(--r-pill);
  font-family: var(--font-mono);
}
.plan-name { font-family: var(--font-head); font-size: 1.18rem; font-weight: 700; }
.plan-loc { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--txt-3); margin-top: 3px; }
.plan-price { display: flex; align-items: baseline; gap: 5px; margin: 16px 0 4px; }
.plan-price .amount { font-family: var(--font-head); font-size: 2.15rem; font-weight: 700; color: var(--txt-1); letter-spacing: -0.02em; }
.plan-price .per { color: var(--txt-3); font-size: 0.85rem; }
.plan-specs { list-style: none; margin: 16px 0 20px; display: grid; gap: 8px; }
.plan-specs li { display: flex; gap: 9px; align-items: center; font-size: 0.88rem; color: var(--txt-2); }
.plan-specs li svg { width: 14px; height: 14px; color: var(--acc); flex: none; }
.plan .btn { margin-top: auto; }

/* ============ SÉLECTEUR PAYS (configurateur) ============ */
.country-row { display: flex; flex-wrap: wrap; gap: 12px; }
.country-card {
  display: flex; align-items: center; gap: 11px; padding: 12px 18px 12px 12px;
  background: var(--surface-1); border: 1.5px solid var(--line-1); border-radius: var(--r-pill);
  cursor: pointer; transition: all .18s ease; text-align: start;
}
.country-card:hover { border-color: var(--line-2); transform: translateY(-2px); box-shadow: var(--shadow-1); }
.country-card.selected { border-color: var(--acc); background: var(--acc-soft); box-shadow: var(--glow-acc); }
.country-card .flag { width: 34px; height: 24px; border-radius: 4px; object-fit: cover; flex: none; box-shadow: 0 0 0 1px var(--line-1); }
.country-card .cc-name { font-weight: 600; font-size: 0.92rem; color: var(--txt-1); line-height: 1.2; }
.country-card .cc-tag { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--txt-3); display: block; }

.flag { width: 28px; height: 20px; border-radius: 3px; object-fit: cover; }

/* ============ SECTION CONFIGURATEUR (homepage) ============ */
.deploy-panel {
  background: var(--surface-1); border: 1.5px solid var(--line-2);
  border-radius: var(--r-lg); box-shadow: var(--shadow-2);
  padding: clamp(22px, 4vw, 44px); position: relative; overflow: hidden;
}
.deploy-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(to right, rgba(20,34,44,.035) 1px, transparent 1px), linear-gradient(to bottom, rgba(20,34,44,.035) 1px, transparent 1px);
  background-size: 38px 38px;
}
.deploy-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; position: relative; }
.deploy-price-live { font-family: var(--font-mono); font-size: 0.8rem; color: var(--acc-deep); font-weight: 600; }

/* ============ PILIERS / FEATURES ============ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-item { padding: 26px; border: 1px solid var(--line-1); border-radius: var(--r-md); background: var(--surface-1); transition: all .2s ease; }
.feature-item:hover { border-color: var(--line-2); box-shadow: var(--shadow-1); transform: translateY(-2px); }
.feature-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-item p { font-size: 0.9rem; }

/* ============ FAQ ============ */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--surface-1); border: 1px solid var(--line-1); border-radius: var(--r-md); overflow: hidden; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px; cursor: pointer; list-style: none; font-weight: 600; font-size: 0.99rem; color: var(--txt-1);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; width: 10px; height: 10px; flex: none; border-inline-end: 2px solid var(--txt-3); border-bottom: 2px solid var(--txt-3);
  transform: rotate(45deg) translateY(-2px); transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(225deg) translateY(-2px); border-color: var(--acc); }
.faq-item .faq-body { padding: 0 22px 20px; font-size: 0.93rem; color: var(--txt-2); }

/* ============ TÉMOIGNAGES ============ */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }
.quote {
  background: var(--surface-1); border: 1px solid var(--line-1); border-radius: var(--r-md);
  padding: 26px; display: flex; flex-direction: column; gap: 16px;
}
.quote blockquote { font-size: 0.95rem; color: var(--txt-1); line-height: 1.65; }
.quote blockquote::before { content: "“"; font-family: var(--font-head); font-size: 2.4rem; line-height: 0; color: var(--acc); display: block; margin-bottom: 14px; }
.quote .quote-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote .avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--grad-soft); border: 1px solid var(--line-2);
  display: grid; place-items: center; font-family: var(--font-mono); font-weight: 600; font-size: 0.78rem; color: var(--acc-deep);
}
.quote .who-name { font-weight: 600; font-size: 0.9rem; color: var(--txt-1); }
.quote .who-role { font-size: 0.78rem; color: var(--txt-3); }
.stars { display: inline-flex; gap: 2px; color: var(--acc); }
.stars svg { width: 14px; height: 14px; }

/* ============ STATS / BANDEAUX CHIFFRES ============ */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 820px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 24px 14px; border: 1px dashed var(--line-2); border-radius: var(--r-md); }
.stat .stat-num { font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: var(--txt-1); letter-spacing: -0.02em; }
.stat .stat-num em { font-style: normal; color: var(--acc); }
.stat .stat-label { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--txt-3); margin-top: 6px; }

/* ============ TABLEAU COMPARATIF (vs) ============ */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; background: var(--surface-1); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-1); }
.compare-table th { padding: 16px; text-align: start; border-bottom: 2px solid var(--line-2); }
.compare-table th:first-child { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--txt-3); }
.compare-table th .th-brand { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; }
.compare-table th .th-brand.us { color: var(--acc-deep); }
.compare-table td { padding: 13px 16px; border-bottom: 1px solid var(--line-1); color: var(--txt-2); }
.compare-table td:first-child { font-weight: 500; color: var(--txt-1); }
.compare-table td.us-cell { background: var(--acc-soft); color: var(--txt-1); font-weight: 500; }
.compare-table .yes { color: var(--ok); font-weight: 600; }
.compare-table .no { color: var(--danger); }

/* ============ BLOCS CODE (guides) ============ */
.code-block {
  background: #14222C; color: #D9E2E8; border-radius: var(--r-md);
  font-family: var(--font-mono); font-size: 0.85rem; line-height: 1.7;
  padding: 20px 22px; overflow-x: auto; margin: 20px 0; position: relative;
  box-shadow: var(--shadow-1);
}
.code-block .code-label {
  position: absolute; top: 0; inset-inline-end: 0; padding: 5px 14px;
  background: rgba(255,255,255,.08); border-end-start-radius: var(--r-sm);
  font-size: 0.64rem; letter-spacing: .12em; text-transform: uppercase; color: #8fa3b0;
}
.code-block .c { color: #6E8390; } /* commentaires */
.code-block .p { color: #F0A35E; } /* prompt/chaînes clés */
.copy-btn { position: absolute; bottom: 10px; inset-inline-end: 10px; background: rgba(255,255,255,.08); border: none; color: #8fa3b0; font-size: .68rem; font-family: var(--font-mono); padding: 5px 10px; border-radius: 6px; letter-spacing: .08em; }
.copy-btn:hover { background: rgba(255,255,255,.16); color: #fff; }

/* ============ ARTICLE / GUIDE (typo longue) ============ */
.prose { max-width: 760px; }
.prose h2 { margin: 44px 0 16px; }
.prose h3 { margin: 32px 0 12px; }
.prose p { margin-bottom: 16px; font-size: 1.0rem; }
.prose ul, .prose ol { margin: 0 0 18px 22px; color: var(--txt-2); }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-inline-start: 3px solid var(--acc); background: var(--acc-soft);
  padding: 16px 20px; border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: 22px 0;
}
[dir="rtl"] .prose blockquote { border-radius: var(--r-sm) 0 0 var(--r-sm); }
.prose blockquote p { color: var(--txt-1); font-size: .95rem; margin: 0; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: var(--r-md); border: 1px solid var(--line-1); margin: 22px 0; }

/* Mise en page article : toc latéral sur desktop */
.article-layout { display: grid; grid-template-columns: 1fr 250px; gap: 56px; align-items: start; }
@media (max-width: 980px) { .article-layout { grid-template-columns: 1fr; } }
.toc { position: sticky; top: calc(var(--nav-h) + 28px); border-inline-start: 2px solid var(--line-1); padding-inline-start: 18px; }
.toc .mono-label { display: block; margin-bottom: 12px; }
.toc a { display: block; padding: 5px 0; font-size: 0.84rem; color: var(--txt-3); text-decoration: none !important; }
.toc a:hover, .toc a.on { color: var(--acc-deep); }

/* En-tête d'article */
.article-head { max-width: 760px; margin-bottom: 40px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin: 18px 0 0; font-size: 0.82rem; color: var(--txt-3); }
.article-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--line-2); }

/* ============ FOOTER ============ */
.site-footer { background: var(--bg-1); border-top: 1px solid var(--line-1); margin-top: 90px; position: relative; }
.site-footer::before {
  content: ""; display: block; height: 3px;
  background: repeating-linear-gradient(90deg, var(--acc) 0 24px, transparent 24px 36px);
  opacity: .55;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 36px; padding-block: 56px 40px; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--txt-3); margin-bottom: 16px; }
.footer-col a { display: block; padding: 5px 0; font-size: 0.88rem; color: var(--txt-2); text-decoration: none !important; }
.footer-col a:hover { color: var(--acc-deep); }
.footer-brand p { font-size: 0.88rem; margin-top: 14px; max-width: 300px; }
.footer-bottom { border-top: 1px solid var(--line-1); padding-block: 20px; display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 0.8rem; color: var(--txt-3); }
.footer-payments { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-chip { font-family: var(--font-mono); font-size: 0.66rem; font-weight: 600; letter-spacing: .06em; padding: 5px 10px; border-radius: var(--r-sm); border: 1px solid var(--line-2); color: var(--txt-2); background: var(--surface-1); }

/* ============ ANNONCES / BANDEAUX ============ */
.notice-bar {
  background: var(--txt-1); color: var(--bg-0); text-align: center;
  font-size: 0.82rem; padding: 9px 16px; font-weight: 500;
}
.notice-bar strong { color: #FFD9C4; }
.notice-bar a { color: #FFD9C4; font-weight: 600; }

/* Bandeau page (en-tête compact interne) */
.page-head { padding-block: 56px 36px; border-bottom: 1px solid var(--line-1); }
.page-head h1 { max-width: 780px; }
.page-head .lead { margin-top: 14px; max-width: 680px; font-size: 1.05rem; }
.crumbs { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: .06em; color: var(--txt-3); margin-bottom: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a { color: var(--txt-3); text-decoration: none !important; }
.crumbs a:hover { color: var(--acc-deep); }
.crumbs .sep { opacity: .5; }

/* CTA final de page */
.cta-band {
  background: var(--txt-1); color: var(--bg-0); border-radius: var(--r-lg);
  padding: clamp(34px, 5vw, 60px); text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band h2 em { font-style: normal; color: #F0862B; }
.cta-band p { color: rgba(255,255,255,.75); margin: 14px auto 26px; max-width: 520px; position: relative; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .08; pointer-events: none;
  background-image: linear-gradient(to right, #fff 1px, transparent 1px), linear-gradient(to bottom, #fff 1px, transparent 1px);
  background-size: 44px 44px;
}

/* Étapes numérotées (how it works) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 26px; background: var(--surface-1); border: 1px solid var(--line-1); border-radius: var(--r-md); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-mono); font-weight: 600; font-size: 0.78rem; letter-spacing: .1em;
  color: var(--acc); display: block; margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; }

/* --- divers --- */
.check-list { list-style: none; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; color: var(--txt-2); }
.check-list li svg { width: 17px; height: 17px; color: var(--acc); flex: none; margin-top: 3px; }
.check-list li strong { color: var(--txt-1); }

.divider-dash { border: none; border-top: 1.5px dashed var(--line-2); margin-block: 36px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
