/* ============================================================
   LA CENTRALE TP — site.css
   Design system global · Ne pas modifier sans audit
   ============================================================ */

/* === Variables ============================================= */
:root {
  --bg:     #0a0a0a;
  --panel:  #111214;
  --line:   rgba(212,168,83,.28);
  --gold:   #d4a853;
  --text:   #f5f5f5;
  --muted:  #d6d6d6;
  --max:    1180px;
  --radius: 18px;
}

/* === Reset ================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }

/* === Layout ================================================ */
.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

/* === Typography ============================================ */
h1, h2, h3 { line-height: 1.08; margin: 0 0 14px; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: 1.1rem; }

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 14px;
}

.section-lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 22px;
}

.feature-list { margin: 16px 0 0; }
.feature-list li {
  padding: 5px 0 5px 20px;
  position: relative;
  color: var(--muted);
  font-size: .95rem;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* === Header ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.96);
  border-bottom: 1px solid rgba(212,168,83,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand__logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}
.brand__name {
  color: var(--gold);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: .04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  flex: 1;
}
.site-nav a {
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  transition: color .18s;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--gold); }

.btn-call {
  padding: 9px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #000;
  background: var(--gold);
  font-weight: 800;
  font-size: .86rem;
  white-space: nowrap;
  transition: background .18s, color .18s;
}
.btn-call:hover { background: transparent; color: var(--gold); }

/* Bouton appel — hors nav, direct dans header */
a.nav-call-desktop {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 9px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: .86rem;
  white-space: nowrap;
  transition: background .18s, color .18s;
  text-decoration: none;
}
a.nav-call-desktop:hover { background: transparent; color: var(--gold); }

/* Burger (masqué desktop) */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: .2s;
}

/* === Boutons =============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: .88rem;
  transition: background .18s, color .18s, border-color .18s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #090909;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  align-items: center;
}
@media (max-width: 600px) {
  .cta-row { flex-direction: column; }
  .cta-row > * { width: 100%; }
}

/* === Sections ============================================== */
.section {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.section-title { max-width: 900px; }

/* === Hero ================================================== */
.hero {
  padding: 64px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.hero-media img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  max-height: 440px;
}

/* === Cards ================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
  display: flex;
  flex-direction: column;
}
.card:hover { border-color: rgba(212,168,83,.3); }

.card__media {
  aspect-ratio: 16/10;
  background: #0f0f10;
  overflow: hidden;
  flex-shrink: 0;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.card:hover .card__media img { transform: scale(1.03); }

.card__body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__body h3 { margin: 0 0 8px; }
.card__body p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0 0 14px;
  flex: 1;
}

/* === Process steps ========================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.process-step {
  text-align: center;
  padding: 26px 18px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
}
.process-step__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h3 { font-size: .95rem; margin: 0 0 6px; }
.process-step p { font-size: .85rem; color: var(--muted); margin: 0; }

/* === Split 2 colonnes ====================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.info-box {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 28px;
}

/* === Application teaser split ============================== */
.app-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

/* === CTA strip ============================================= */
.cta-strip { padding: 58px 0; border-top: 1px solid rgba(255,255,255,.06); }
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip__copy { max-width: 560px; }

/* === FAQ =================================================== */
.faq-item { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.08); }
.faq-item h3 { font-size: 1rem; margin: 0 0 8px; }
.faq-item p { font-size: .9rem; color: var(--muted); margin: 0; }

/* === Application mockup ==================================== */
.app-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.app-copy { }

.app-mockup {
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 220px;
  background: #141416;
  border: 1.5px solid rgba(212,168,83,.35);
  border-radius: 38px;
  padding: 16px 12px 20px;
  box-shadow: 0 0 48px rgba(212,168,83,.07), inset 0 0 0 1px rgba(255,255,255,.04);
  flex-shrink: 0;
}
.phone-notch {
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  margin: 0 auto 14px;
}
.phone-screen {
  background: var(--bg);
  border-radius: 24px;
  overflow: hidden;
  padding: 14px 12px;
  min-height: 340px;
}
.mock-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mock-logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.mock-label {
  font-size: .6rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .06em;
}
.mock-section-label {
  font-size: .62rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.mock-field {
  min-height: 26px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  margin-bottom: 6px;
  padding: 6px 9px;
  display: flex;
  align-items: center;
  font-size: .58rem;
  color: rgba(255,255,255,.82);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.1;
}
.mock-field--short { width: 65%; }
.mock-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
  margin-bottom: 6px;
}
.mock-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 6px;
  padding: 6px 8px;
}
.mock-item-title {
  font-size: .56rem;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  line-height: 1.15;
}
.mock-item-sub {
  font-size: .48rem;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
  line-height: 1.1;
}
.mock-pill {
  font-size: .48rem;
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
  flex-shrink: 0;
}
.mock-pill--ok {
  background: rgba(74,222,128,.15);
  color: #86d9a2;
  border: 1px solid rgba(74,222,128,.3);
}
.mock-pill--gold {
  background: rgba(212,168,83,.15);
  color: var(--gold);
  border: 1px solid rgba(212,168,83,.35);
}
.mock-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin: 10px 0;
}
.mock-tag {
  font-size: .55rem;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
}
.mock-tag--active {
  background: rgba(212,168,83,.15);
  border-color: rgba(212,168,83,.4);
  color: var(--gold);
}
.mock-btn {
  font-size: .6rem;
  font-weight: 800;
  background: var(--gold);
  color: #090909;
  border-radius: 999px;
  padding: 7px 10px;
  text-align: center;
  margin-top: 10px;
}
.mock-divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 14px 0 10px;
}
.mock-status {
  display: flex;
  align-items: center;
  gap: 7px;
}
.mock-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-dot--green { background: #4ade80; }
.mock-status-text {
  font-size: .58rem;
  color: var(--muted);
  line-height: 1.3;
}

/* === Extension cards (services complémentaires) ============ */
.ext-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.ext-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  transition: border-color .2s;
  text-decoration: none;
}
.ext-card:hover { border-color: rgba(212,168,83,.3); }
.ext-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
}
.ext-icon svg { width: 100%; height: 100%; }
.ext-body h3 { font-size: .95rem; margin: 0 0 6px; }
.ext-body p { font-size: .83rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* === Footer ================================================ */
.site-footer {
  padding: 48px 0 28px;
  border-top: 1px solid rgba(212,168,83,.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 0.8fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-brand-col { }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand img { object-fit: contain; flex-shrink: 0; height: 48px; width: auto; }
.footer-brand__name {
  color: var(--gold);
  font-weight: 900;
  font-size: .88rem;
  letter-spacing: .04em;
}
.footer-tagline {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 200px;
  margin: 0;
}
.footer-col__title {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gold);
  margin: 0 0 12px;
}
.footer-col ul { }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a {
  font-size: .83rem;
  color: var(--muted);
  transition: color .18s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.28);
  margin: 0;
}
.footer-copy a {
  color: rgba(255,255,255,.42);
  text-decoration: underline;
}
.footer-copy a:hover { color: var(--gold); }

/* === Credit signature — footer cliquable premium ============= */
.site-credit-flash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 18px;
  border: 1px solid #d4af37;
  border-radius: 999px;
  background: #000;
  color: #d4af37;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(212,175,55,.28);
  transition: all .3s ease;
  max-width: 100%;
}
.site-credit-flash:hover {
  color: #fff;
  border-color: #fff;
  box-shadow: 0 0 18px rgba(255,255,255,.22), 0 0 22px rgba(212,175,55,.35);
  transform: translateY(-2px);
}
.site-credit-flash:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
@media (max-width: 600px) {
  .site-credit-flash {
    font-size: 13px;
    padding: 9px 14px;
    letter-spacing: 0.6px;
  }
}

/* Portail footer — même crédit, rendu inline compact */
.portal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 12px;
}
.portal-footer .site-credit-flash { margin-left: 6px; }

/* === Capture lead pro — mini-form filet de sécurité ========= */
.lead-pro-capture {
  background: linear-gradient(180deg, #0e0c09 0%, #07060b 100%);
  border-top: 1px solid rgba(212,175,55,.25);
  border-bottom: 1px solid rgba(212,175,55,.25);
  padding: 56px 0;
  margin-top: 40px;
}
.lead-pro-capture__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}
.lead-pro-form {
  display: block !important;
  margin-top: 24px;
  background: #0a0a0f;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 0 24px rgba(212,175,55,.08);
}
.lead-pro-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--muted);
  margin: 14px 0 18px;
  line-height: 1.5;
}
.lead-pro-form .form-check input { margin-top: 3px; }
.lead-pro-form .form-check a { color: var(--gold); text-decoration: underline; }
.lead-pro-form .btn-primary { width: 100%; padding: 14px 20px; font-size: 1rem; }
.lead-pro-form .form-note { margin-top: 12px; margin-bottom: 0; }
@media (max-width: 640px) {
  .lead-pro-capture { padding: 40px 0; }
  .lead-pro-form { padding: 20px; }
}

/* === Pack closing block =================================== */
.pack-closing {
  margin-top: 40px;
  padding: 32px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(18,18,18,0.8) 0%, rgba(10,10,10,0.9) 100%);
}
.pack-closing__title {
  font-size: 1.5rem;
  margin: 0 0 22px;
  color: var(--gold);
  text-align: center;
}
.pack-closing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pack-closing__card {
  padding: 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: .92rem;
  line-height: 1.5;
}
.pack-closing__card--featured {
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(212, 175, 55, 0.06);
}
.pack-closing__name {
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 12px;
  color: var(--gold);
}
.pack-closing__for,
.pack-closing__lose,
.pack-closing__upgrade {
  margin: 0 0 10px;
}
.pack-closing__note {
  margin-top: 22px;
  font-size: .88rem;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 900px) {
  .pack-closing__grid { grid-template-columns: 1fr; }
  .pack-closing { padding: 22px; }
}

/* === Social proof strip ==================================== */
.social-proof-strip {
  padding: 48px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  border-top: 1px solid rgba(212,175,55,0.25);
  border-bottom: 1px solid rgba(212,175,55,0.25);
}
.social-proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.social-proof-stat {
  text-align: center;
  padding: 20px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.social-proof-stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.social-proof-stat__label {
  font-size: .82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.social-proof-cases {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.social-proof-case {
  padding: 18px;
  border-radius: 10px;
  background: rgba(212,175,55,0.04);
  border-left: 3px solid var(--gold);
  font-size: .92rem;
  line-height: 1.5;
}
.social-proof-case__zone {
  font-weight: 700;
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
@media (max-width: 900px) {
  .social-proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .social-proof-cases { grid-template-columns: 1fr; }
}

/* === Audience grid (À qui s'adresse LCTP) ================== */
.audience-group { margin-top: 28px; }
.audience-group + .audience-group { margin-top: 20px; }
.audience-group__label {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.35);
  margin: 0 0 12px;
  padding-left: 2px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.audience-card {
  padding: 22px 20px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.audience-card:hover { border-color: rgba(212,168,83,.28); }
.audience-grid--single { grid-template-columns: repeat(3, 1fr); }
.audience-card__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gold);
  margin-bottom: 10px;
}
.audience-card h3 { font-size: 1rem; margin: 0 0 8px; }
.audience-card p { font-size: .86rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* === Why grid (Pourquoi passer par LCTP) =================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 26px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.why-item {
  padding: 22px 20px;
  border-right: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}
.why-item:hover { background: var(--panel); }
.why-item:nth-child(3n) { border-right: none; }
.why-item:nth-child(n+4) { border-bottom: none; }
.why-item__num {
  font-size: .72rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.why-item h3 { font-size: .95rem; margin: 0 0 6px; }
.why-item p { font-size: .84rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* === Responsive ============================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 1040px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .ext-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.06); }
  .why-item:nth-child(2n) { border-right: none; }
  .why-item:nth-child(n+5) { border-bottom: none; }
  .why-item:nth-child(n+4) { border-bottom: 1px solid rgba(255,255,255,.06); }
  .site-nav { gap: 10px; }
  .site-nav a { font-size: .82rem; }
}

@media (max-width: 880px) {
  .hero__inner,
  .two-col,
  .app-split { grid-template-columns: 1fr; gap: 28px; }
  .hero-media { order: -1; }
  .cta-strip__inner { flex-direction: column; align-items: stretch; gap: 20px; }
  .app-split { grid-template-columns: 1fr; }
  .app-mockup { order: 2; margin-top: 0; }
}

/* Breakpoint nav : passe en burger dès 1000px pour éviter tout débordement tablette */
@media (max-width: 1000px) {
  /* Logo plus présent dès qu'on bascule en burger */
  .brand__logo { height: 48px; width: auto; }
  .site-header__inner { min-height: 70px; position: relative; flex-wrap: nowrap; gap: 16px; }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,.98);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212,168,83,.12);
    z-index: 99;
  }
  .site-nav.is-open { display: flex; }
  .nav-item { padding: 0 16px; display: flex; align-items: center; height: 44px; }
  .site-nav a { font-size: .95rem; padding: 0; display: block; }
  .btn-call { width: auto; padding: 9px 16px; margin: 8px 16px; text-align: center; }

  /* Bouton appel caché en mobile — burger prend le relais */
  a.nav-call-desktop { display: none !important; }

  .burger { display: flex; }
}

@media (max-width: 768px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 601px) and (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .card-grid,
  .card-grid--4 { grid-template-columns: 1fr; }
  h1 { font-size: 1.85rem; word-break: break-word; }
  .btn { width: 100%; }
  .hero__inner { gap: 20px; padding: 0; }
  .hero-copy { padding: 0; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .ext-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; border: none; }
  .why-item { border: 1px solid rgba(255,255,255,.06); border-radius: 12px; margin-bottom: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero { padding: 40px 0; }
  .section { padding: 44px 0; }
  .express-form { flex-direction: column; gap: 10px; }
  .express-form input, .express-form select { width: 100%; }
  .btn { font-size: .8rem; padding: 10px 16px; }
}

/* === Dropdowns navigation ================================== */

/* Dernier dropdown : s'aligne à droite pour éviter le débordement écran */
.dropdown--right {
  left: auto;
  right: 0;
}

@media (max-width: 1000px) {
  .site-nav.is-open .dropdown--right { right: auto; }
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Entrée menu "cash" — Partenaires est visuellement marquée */
.site-nav a.nav-cash {
  color: var(--gold);
  font-weight: 700;
}
.site-nav a.nav-cash:hover { color: #fff; }
/* Bridge transparent pour combler le gap entre nav-item et dropdown */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-item > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  opacity: .5;
  flex-shrink: 0;
  transition: transform .2s;
}
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: linear-gradient(180deg, #141517 0%, #0d0e10 100%);
  border: 1px solid rgba(212,168,83,.30);
  border-radius: 12px;
  padding: 8px;
  min-width: 246px;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  display: none;
  z-index: 200;
  box-shadow: 0 18px 44px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.04);
}
.dropdown::-webkit-scrollbar { width: 6px; }
.dropdown::-webkit-scrollbar-thumb { background: rgba(212,168,83,.32); border-radius: 3px; }
.dropdown::-webkit-scrollbar-track { background: transparent; }
.nav-item:hover .dropdown,
.nav-item.open .dropdown { display: block; }
/* Desktop touch-only : pas de :hover fiable, on compte sur .open via JS */
@media (hover: none) {
  .nav-item:hover .dropdown { display: none; }
  .nav-item.open .dropdown { display: block; }
}
.dropdown li { list-style: none; margin: 0; padding: 0; }
.dropdown li + li { border-top: 1px solid rgba(255,255,255,.05); }
.dropdown a {
  display: block;
  padding: 10px 14px;
  color: #f5f5f5;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .005em;
  border-radius: 8px;
  transition: color .15s ease, background .15s ease, padding-left .15s ease;
  white-space: nowrap;
}
.dropdown a:hover,
.dropdown a:focus-visible {
  color: var(--gold);
  background: rgba(212,168,83,.09);
  padding-left: 19px;
  outline: none;
}

@media (max-width: 1000px) {
  .site-nav.is-open .nav-item {
    display: block;
    position: static;
    width: 100%;
  }
  .site-nav.is-open .nav-item > a {
    width: 100%;
    justify-content: space-between;
    padding: 6px 0;
  }
  .site-nav.is-open .dropdown {
    position: static;
    display: none;
    max-height: none;
    overflow: visible;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(212,168,83,.35);
    background: rgba(255,255,255,.02);
    padding: 4px 0 6px 14px;
    margin: 2px 0 6px;
    border-radius: 0;
    min-width: auto;
  }
  .site-nav.is-open .dropdown li + li { border-top: none; }
  .site-nav.is-open .nav-item.open > a::after { transform: rotate(180deg); }
  .site-nav.is-open .nav-item.open .dropdown { display: block; }
  .site-nav.is-open .dropdown a {
    padding: 8px 10px;
    font-size: .9rem;
    color: #f5f5f5;
    border-radius: 6px;
  }
  .site-nav.is-open .dropdown a:hover {
    background: rgba(212,168,83,.1);
    padding-left: 14px;
  }
}

/* === Packs pro ============================================= */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
  align-items: stretch;
}
.pack-card {
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pack-card:hover {
  border-color: rgba(212,168,83,.45);
  transform: translateY(-2px);
}
.pack-card--featured {
  border-color: rgba(212,168,83,.55);
  box-shadow: 0 0 0 1px rgba(212,168,83,.2), 0 8px 32px rgba(212,168,83,.08);
}
.pack-card__tag {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.pack-card__eyebrow {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 6px;
}
.pack-card__name {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: .01em;
}
.pack-card__pitch {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  line-height: 1.5;
  margin: 0 0 18px;
  min-height: 3em;
}
.pack-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pack-card__price-label {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}
.pack-card__price-note {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.pack-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
  flex-grow: 1;
}
.pack-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.45;
}
.pack-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.pack-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 800;
  font-size: .86rem;
  transition: background .18s, color .18s, border-color .18s;
  text-align: center;
}
.pack-card__cta:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.pack-card--featured .pack-card__cta { box-shadow: 0 0 0 4px rgba(212,168,83,.08); }

/* ── Pack card — blocs explicatifs ─────────────────────────────── */
.pack-card__block-title {
  margin: 18px 0 6px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold, #d4a853);
  font-weight: 700;
}
.pack-card__list--muted li { color: #9a9a9a; }
.pack-card__list--muted li::before { color: #4a4a4a; content: "—"; }
.pack-card__for {
  margin: 6px 0 14px;
  font-size: .9rem;
  color: #ddd;
  line-height: 1.5;
  font-style: italic;
}

/* ── Écosystème produit — 4 briques ────────────────────────────── */
.product-eco { background: linear-gradient(180deg, rgba(212,168,83,.04), transparent); }
.eco-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.eco-card {
  background: #111114;
  border: 1px solid rgba(212,168,83,.18);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.eco-card--gold { border-color: rgba(212,168,83,.5); }
.eco-card__label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold, #d4a853);
  font-weight: 700;
  margin: 0 0 10px;
}
.eco-card__title {
  margin: 0 0 10px;
  font-size: 1.45rem;
  color: #fff;
  font-family: "Source Code Pro", ui-monospace, monospace;
  letter-spacing: -.01em;
}
.eco-card__body { color: #ccc; line-height: 1.6; margin: 0 0 16px; }
.eco-card__media {
  margin: 0 0 16px;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
}
.eco-card__media img {
  display: block;
  width: 100%;
  height: auto;
}
.eco-card__media figcaption {
  padding: 10px 14px;
  font-size: .8rem;
  color: #888;
  background: #0e0e12;
  border-top: 1px solid #1f1f24;
}
.eco-card__list { list-style: none; padding: 0; margin: 0; }
.eco-card__list li {
  padding: 6px 0 6px 22px;
  color: #ddd;
  font-size: .95rem;
  position: relative;
}
.eco-card__list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--gold, #d4a853);
  font-weight: 700;
}
@media (max-width: 860px) {
  .eco-grid { grid-template-columns: 1fr; }
}

/* ── Tableau comparatif packs ──────────────────────────────────── */
.compare-wrap {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(212,168,83,.18);
}
.compare-title {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 18px;
}
.compare-table-scroll {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(212,168,83,.22);
  background: #0d0d10;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  color: #e8e8ea;
  font-size: .95rem;
  min-width: 760px;
  table-layout: fixed;
}
.compare-table colgroup col:nth-child(1) { width: 34%; }
.compare-table colgroup col:nth-child(2),
.compare-table colgroup col:nth-child(3),
.compare-table colgroup col:nth-child(4) { width: 22%; }

.compare-table thead th {
  background: #161619;
  color: #fff;
  padding: 18px 14px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
  border-bottom: 2px solid rgba(212,168,83,.35);
}
.compare-table thead th:first-child {
  text-align: left;
  background: #0e0e12;
  font-weight: 600;
  color: #c9c9cc;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.compare-table thead th.compare-table__hl {
  color: #0e0e12;
  background: var(--gold, #d4a853);
  position: relative;
}
.compare-table thead th.compare-table__hl::after {
  content: "Recommandé";
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .72;
  margin-top: 2px;
}

.compare-table tbody th {
  font-weight: 500;
  text-align: left;
  padding: 14px 16px;
  color: #d6d6d8;
  background: #0e0e12;
  border-bottom: 1px solid #1c1c20;
  border-right: 1px solid #1c1c20;
  font-size: .9rem;
}
.compare-table tbody td {
  padding: 14px 10px;
  border-bottom: 1px solid #1c1c20;
  vertical-align: middle;
  text-align: center;
  color: #e5e5e7;
}
.compare-table tbody td strong { color: #fff; font-size: 1.05rem; }
.compare-table tbody tr:nth-child(even) th,
.compare-table tbody tr:nth-child(even) td { background-color: #111115; }
.compare-table tbody tr:nth-child(even) td.compare-table__hl { background-color: rgba(212,168,83,.10); }

.compare-table tbody td.compare-table__hl {
  background: rgba(212,168,83,.07);
  color: #f5e4bb;
  border-left: 1px solid rgba(212,168,83,.18);
  border-right: 1px solid rgba(212,168,83,.18);
  font-weight: 500;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }

/* ── Pack card — variation premium ─────────────────────────────── */
.pack-card--premium {
  border-color: rgba(212,168,83,.35);
  background: linear-gradient(180deg, rgba(212,168,83,.05), transparent 60%), #0d0d10;
}
.pack-card__tag--premium {
  background: #111;
  color: var(--gold, #d4a853);
  border: 1px solid rgba(212,168,83,.5);
}

/* ── BLOC 3 — Quand upgrader ───────────────────────────────────── */
.upgrade-guide {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(212,168,83,.18);
}
.upgrade-guide__title {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 20px;
}
.upgrade-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.upgrade-guide__card {
  background: #0e0e12;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 22px 22px 20px;
}
.upgrade-guide__card--hl {
  border-color: rgba(212,168,83,.45);
  background: linear-gradient(180deg, rgba(212,168,83,.08), transparent 80%), #0e0e12;
}
.upgrade-guide__card--premium {
  border-color: rgba(212,168,83,.22);
}
.upgrade-guide__when {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold, #d4a853);
  margin: 0 0 12px;
}
.upgrade-guide__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.upgrade-guide__list li {
  position: relative;
  padding-left: 20px;
  font-size: .92rem;
  line-height: 1.5;
  color: #d6d6d8;
}
.upgrade-guide__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--gold, #d4a853);
  border-bottom: 2px solid var(--gold, #d4a853);
  transform: rotate(-45deg);
}

/* ── BLOC 4 — Ce que vous achetez vraiment ────────────────────── */
.buy-reality {
  margin-top: 48px;
  padding: 32px 32px 28px;
  background: linear-gradient(180deg, rgba(212,168,83,.06), transparent 70%), #0d0d10;
  border: 1px solid rgba(212,168,83,.22);
  border-radius: 16px;
}
.buy-reality__title {
  font-size: 1.55rem;
  color: #fff;
  margin: 4px 0 18px;
  line-height: 1.25;
}
.buy-reality__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.buy-reality__list li {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  line-height: 1.55;
  color: #e5e5e7;
}
.buy-reality__list li strong { color: #fff; }
.buy-reality__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--gold, #d4a853);
  border-bottom: 2px solid var(--gold, #d4a853);
  transform: rotate(-45deg);
}

@media (max-width: 760px) {
  .upgrade-guide__grid { grid-template-columns: 1fr; }
  .buy-reality { padding: 24px 20px 20px; }
}

/* ── Home — entrée partenaires discrète (fin de page) ─────────── */
.partner-thin {
  border-top: 1px solid rgba(212,168,83,.15);
  padding: 22px 0;
  background: #0b0b0d;
}
.partner-thin__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.partner-thin__text {
  margin: 0;
  color: #a8a8ab;
  font-size: .92rem;
  line-height: 1.5;
}
.partner-thin__link {
  color: var(--gold, #d4a853);
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s;
}
.partner-thin__link:hover { border-bottom-color: var(--gold, #d4a853); }
@media (max-width: 640px) {
  .partner-thin__inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}
.compare-note {
  margin-top: 14px;
  font-size: .85rem;
  color: #888;
  line-height: 1.6;
}
.pack-card__badge {
  position: absolute;
  top: -28px;
  right: 18px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.5));
  z-index: 2;
  pointer-events: none;
}
#packs {
  background-image:
    linear-gradient(180deg, rgba(10,10,10,.82), rgba(10,10,10,.92)),
    url('/images/bg-packs-texture.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pack-note {
  margin-top: 18px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  text-align: center;
}

/* Version résumée (bandeau compact) */
.pack-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.pack-strip__item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 16px 18px;
}
.pack-strip__item strong {
  display: block;
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pack-strip__item span {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  line-height: 1.45;
}

@media (max-width: 880px) {
  .pack-grid { grid-template-columns: 1fr; }
  .pack-strip { grid-template-columns: 1fr; }
}

/* === Logo intro animation (home only) ====================== */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.intro-overlay__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 0 0 transparent);
  animation: introLogoIn .5s ease-out .05s forwards;
}
.intro-overlay.is-done {
  animation: introFadeOut .4s ease-in forwards;
}
.intro-overlay.is-skipped { display: none; }

@keyframes introLogoIn {
  0%   { opacity: 0; transform: scale(.85); filter: drop-shadow(0 0 0 transparent); }
  60%  { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 24px rgba(212,168,83,.45)); }
  100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 12px rgba(212,168,83,.2)); }
}
@keyframes introFadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay { display: none; }
}

/* ── Utility overrides — micro-pass ─────────────────────────── */
.hero__inner--top  { align-items: flex-start; }
.info-box--center  { align-self: center; }
.info-box--top     { align-self: flex-start; }
.card__body--lg    { padding: 22px; }
.mt-lg             { margin-top: 28px; }
.link-gold         { color: var(--gold); text-decoration: none; }
.link-gold:hover   { text-decoration: underline; }
.hero-media--flush { margin: 0; }
.hero-media img    { width: 100%; }

/* ── Utility — inline style substituts globaux ──────────────── */
.icon-gold { color: var(--gold); margin-bottom: 12px; }
.mt-sm     { margin-top: 10px; }
.faq-wrap  { max-width: 780px; margin-top: 24px; }
.cta-strip__sub { color: var(--muted); margin-top: 10px; }
.process-grid--mt { margin-top: 28px; }

/* ── Utility — batch 3 ──────────────────────────────────────── */
.text-muted-top  { color: var(--muted); margin-top: 10px; }
.img-full        { border-radius: var(--radius); width: 100%; object-fit: cover; }
.card__body--md  { padding: 20px; }
.text-gold-sm    { color: var(--gold); font-size: .85rem; }
.nowrap          { white-space: nowrap; }
.link-plain      { color: var(--text); text-decoration: none; }
.mt-md           { margin-top: 22px; }
.mt-xl           { margin-top: 32px; }

/* ── Utility — batch 4 : typography muted + spacing ─────────── */
.text-muted-body    { color: var(--muted); font-size: .92rem; line-height: 1.75; }
.text-muted-body-mb { color: var(--muted); font-size: .92rem; line-height: 1.75; margin-bottom: 16px; }
.text-muted-body-mt { color: var(--muted); font-size: .92rem; line-height: 1.75; margin-top: 16px; }
.text-muted-mb20    { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.text-muted-mb16    { color: var(--muted); font-size: .92rem; margin-bottom: 16px; }
.text-muted-mb14    { color: var(--muted); font-size: .92rem; margin-bottom: 14px; }
.text-muted-sm      { color: var(--muted); font-size: .85rem; }
.text-muted-sm-top  { color: var(--muted); font-size: .85rem; margin-top: 14px; }
.text-muted-xs      { color: var(--muted); font-size: .82rem; }
.subhead            { font-size: 1rem; margin-bottom: 8px; }
.mt-12              { margin-top: 12px; }
.mt-16              { margin-top: 16px; }
.mt-14              { margin-top: 14px; }
.mt-18              { margin-top: 18px; }
.mt-20              { margin-top: 20px; }
.text-muted-sm-mb14 { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.text-muted-sm-mb16 { color: var(--muted); font-size: .9rem; margin-bottom: 16px; }
.subhead-sm         { font-size: .95rem; margin-bottom: 8px; }
.mt-4               { margin-top: 4px; }
.mt-8               { margin-top: 8px; }
.mt-24              { margin-top: 24px; }
.text-muted-87      { color: var(--muted); font-size: .87rem; }
.text-muted-88-mb14 { color: var(--muted); font-size: .88rem; margin-bottom: 14px; }
.badge-label        { font-size: .7rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.text-muted-normal  { color: var(--muted); font-weight: 400; }

/* ── engins.html — composants spec-list, accessoire-grid, usage-grid ── */
.spec-list { list-style: none; padding: 0; margin: 10px 0 0; }
.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
  gap: 12px;
}
.spec-list li:last-child { border-bottom: none; }
.spec-list li strong { color: var(--text); white-space: nowrap; }
.accessoire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.accessoire-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.accessoire-card:hover { border-color: rgba(212,168,83,.3); }
.accessoire-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0f0f10;
}
.accessoire-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.accessoire-card:hover .accessoire-card__media img { transform: scale(1.03); }
.accessoire-card__body { padding: 14px 16px; }
.accessoire-card__body h3 { font-size: .95rem; margin: 0 0 6px; }
.accessoire-card__body p { font-size: .82rem; color: var(--muted); margin: 0; }
.usage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.usage-item {
  padding: 18px 16px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
}
.usage-item h3 { font-size: .9rem; margin: 0 0 6px; }
.usage-item p { font-size: .82rem; color: var(--muted); margin: 0; }
@media (max-width: 1040px) {
  .accessoire-grid { grid-template-columns: repeat(2, 1fr); }
  .usage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .accessoire-grid { grid-template-columns: 1fr; }
  .usage-grid { grid-template-columns: 1fr; }
}

/* ── demande-devis.html — formulaire devis complet ────────────────────── */
.type-tabs{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:32px;}
.type-tab{padding:9px 16px;border:1px solid var(--line);border-radius:8px;background:var(--panel);color:var(--muted);cursor:pointer;font-size:.86rem;transition:border-color .2s,color .2s,background .2s;white-space:nowrap;font-family:inherit;}
.type-tab:hover{border-color:var(--gold);color:var(--text);}
.type-tab.active{border-color:var(--gold);color:var(--gold);background:rgba(212,168,83,.08);}
.devis-form{display:none;background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);padding:32px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
@media(max-width:640px){.form-row{grid-template-columns:1fr;}}
.form-group{margin-bottom:18px;}
.form-group label{display:block;font-size:.83rem;color:var(--muted);margin-bottom:6px;letter-spacing:.02em;}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:11px 13px;background:#0d0d0d;border:1px solid var(--line);border-radius:8px;color:var(--text);font-size:.91rem;font-family:inherit;transition:border-color .2s;box-sizing:border-box;}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--gold);}
.form-group select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23bdbdbd' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 13px center;background-color:#0d0d0d;padding-right:36px;}
.form-group textarea{resize:vertical;min-height:90px;}
.form-section-title{font-size:.75rem;text-transform:uppercase;letter-spacing:.12em;color:var(--gold);margin:4px 0 18px;padding-bottom:8px;border-bottom:1px solid var(--line);}
.form-note{font-size:.79rem;color:var(--muted);margin-bottom:18px;}
.form-prompt{color:var(--muted);font-size:.93rem;padding:24px 0;text-align:center;display:none;}
.form-prompt.visible{display:block;}
[data-fields]{display:none;}
.step-item{display:flex;gap:14px;margin-bottom:18px;align-items:flex-start;}
.step-num{min-width:32px;height:32px;border-radius:50%;border:1.5px solid var(--gold);display:inline-flex;align-items:center;justify-content:center;font-weight:700;color:var(--gold);font-size:.88rem;flex-shrink:0;}
.devis-layout{display:grid;grid-template-columns:1fr 340px;gap:32px;align-items:flex-start;}
@media(max-width:900px){.devis-layout{grid-template-columns:1fr;}}
.devis-aside>*+*{margin-top:20px;}
.form-consent{margin:6px 0 10px;}
.consent-label{display:flex;gap:10px;align-items:flex-start;cursor:pointer;color:var(--muted);font-size:.86rem;line-height:1.5;}
.consent-label input{margin-top:3px;accent-color:var(--gold);width:16px;height:16px;flex-shrink:0;}
.consent-label a{color:var(--gold);text-decoration:underline;}
.form-feedback{margin:12px 0 10px;padding:12px 14px;border-radius:8px;font-size:.9rem;display:none;}
.form-feedback.is-success{display:block;border:1px solid rgba(120,200,120,.4);background:rgba(120,200,120,.08);color:#c8e6c8;}
.form-feedback.is-error{display:block;border:1px solid rgba(220,120,120,.4);background:rgba(220,120,120,.08);color:#f5c9c9;}
.hp-field{position:absolute;left:-5000px;top:-5000px;width:1px;height:1px;overflow:hidden;}
.form-sublabel{display:block;font-size:.83rem;color:var(--muted);margin-bottom:10px;letter-spacing:.02em;}
.form-group .radio-group{display:flex;flex-direction:column;gap:10px;}
.form-group .radio-group--inline{flex-direction:row;flex-wrap:wrap;}
.form-group .radio-option{display:flex;gap:10px;align-items:center;padding:11px 14px;border:1px solid var(--line);border-radius:8px;background:#0d0d0d;cursor:pointer;transition:border-color .2s,background .2s;font-size:.9rem;color:var(--text);line-height:1.4;margin:0;}
.form-group .radio-group--inline .radio-option{flex:1 1 180px;}
.form-group .radio-option:hover{border-color:var(--gold);}
.form-group .radio-option:has(input[type="radio"]:checked){border-color:var(--gold);background:rgba(212,168,83,.05);}
.form-group .radio-option input[type="radio"]{accent-color:var(--gold);width:16px;height:16px;margin:0;padding:0;border:0;background:transparent;flex-shrink:0;}
.form-group .radio-option input[type="radio"]:checked+span{color:var(--gold);}
.form-group .checkbox-group{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px;}
.form-group .checkbox-option{display:flex;gap:10px;align-items:center;padding:11px 14px;border:1px solid var(--line);border-radius:8px;background:#0d0d0d;cursor:pointer;transition:border-color .2s,background .2s;font-size:.9rem;color:var(--text);line-height:1.4;margin:0;}
.form-group .checkbox-option:hover{border-color:var(--gold);}
.form-group .checkbox-option:has(input[type="checkbox"]:checked){border-color:var(--gold);background:rgba(212,168,83,.05);}
.form-group .checkbox-option input[type="checkbox"]{accent-color:var(--gold);width:16px;height:16px;margin:0;padding:0;border:0;background:transparent;flex-shrink:0;}
.form-group .checkbox-option input[type="checkbox"]:checked+span{color:var(--gold);}
.file-group input[type="file"]{width:100%;padding:10px 13px;background:#0d0d0d;border:1px solid var(--line);border-radius:8px;color:var(--muted);font-size:.86rem;font-family:inherit;cursor:pointer;box-sizing:border-box;}
.file-group input[type="file"]::-webkit-file-upload-button{background:transparent;border:1px solid var(--line);border-radius:6px;color:var(--gold);padding:6px 12px;margin-right:12px;cursor:pointer;font-family:inherit;font-size:.82rem;transition:border-color .2s,color .2s;}
.file-group input[type="file"]::-webkit-file-upload-button:hover{border-color:var(--gold);color:var(--text);}
.file-group input[type="file"]::file-selector-button{background:transparent;border:1px solid var(--line);border-radius:6px;color:var(--gold);padding:6px 12px;margin-right:12px;cursor:pointer;font-family:inherit;font-size:.82rem;transition:border-color .2s,color .2s;}
.file-group input[type="file"]::file-selector-button:hover{border-color:var(--gold);color:var(--text);}
.field-hint{font-size:.78rem;color:var(--muted);margin:8px 0 0;line-height:1.5;}

/* ── contact.html — formulaire rappel rapide ─────────────────────────── */
.rappel-layout{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;}
@media(max-width:800px){.rappel-layout{grid-template-columns:1fr;gap:32px;}}
.rappel-form{margin-top:24px;}
.rf-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
@media(max-width:560px){.rf-row{grid-template-columns:1fr;}}
.rf-group{display:flex;flex-direction:column;gap:7px;margin-bottom:18px;}
.rf-group label{font-size:.86rem;font-weight:600;color:var(--text);letter-spacing:.03em;}
.rf-group input[type="text"],.rf-group input[type="tel"]{padding:11px 13px;background:#0d0d0d;border:1px solid var(--line);border-radius:8px;color:var(--text);font-size:.93rem;font-family:inherit;outline:none;transition:border-color .2s;width:100%;box-sizing:border-box;}
.rf-group input:focus{border-color:var(--gold);}
.rf-radios{display:flex;gap:10px;flex-wrap:wrap;margin-top:4px;}
.rf-radio{display:flex;gap:9px;align-items:center;padding:10px 14px;border:1px solid var(--line);border-radius:8px;background:#0d0d0d;cursor:pointer;font-size:.88rem;color:var(--text);transition:border-color .2s,background .2s;}
.rf-radio:hover{border-color:var(--gold);}
.rf-radio:has(input:checked){border-color:var(--gold);background:rgba(212,168,83,.05);}
.rf-radio input{accent-color:var(--gold);width:15px;height:15px;margin:0;flex-shrink:0;}
.rf-radio input:checked+span{color:var(--gold);}
.rf-consent{margin-bottom:10px;}
.rf-consent__label{display:flex;gap:10px;align-items:flex-start;cursor:pointer;font-size:.84rem;color:var(--muted);line-height:1.5;}
.rf-consent__label input{margin-top:3px;accent-color:var(--gold);flex-shrink:0;}
.rf-consent__label a{color:var(--gold);}
.rf-note{font-size:.76rem;color:var(--muted);margin:0 0 16px;}
.rappel-feedback{font-size:.88rem;margin-bottom:14px;display:none;padding:10px 14px;border-radius:8px;border-width:1px;border-style:solid;}
.rappel-feedback.is-success{display:block;background:rgba(80,180,100,.08);border-color:rgba(80,180,100,.3);color:#4dc474;}
.rappel-feedback.is-error{display:block;background:rgba(220,80,60,.08);border-color:rgba(220,80,60,.3);color:#e05a46;}
.rf-hp{position:absolute;left:-5000px;top:-5000px;width:1px;height:1px;overflow:hidden;}

/* ── Utility — batch 6 : max-width / max-height / layout helpers ─── */
.mw-640   { max-width: 640px; }
.mw-680   { max-width: 680px; }
.mw-780   { max-width: 780px; }
.mw-600   { max-width: 600px; }
.mw-860   { max-width: 860px; }
.mw-900   { max-width: 900px; }
.mh-360   { max-height: 360px; }
.mh-400   { max-height: 400px; }
.pb-0     { padding-bottom: 0; }
.pt-0     { padding-top: 0; }
.m-0      { margin: 0; }
.btn-block { width: 100%; justify-content: center; padding: 14px; }
.list-reset { padding: 0; list-style: none; margin: 0; }
.section-sep { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--line); }
.fs-135   { font-size: 1.35rem; }
.subhead-mb10 { font-size: 1rem; margin: 0 0 10px; }
.text-muted-mb24 { color: var(--muted); margin-bottom: 24px; }
.cta-row--col { flex-direction: column; gap: 10px; }

/* ── Bandeau Cash partenaires (home + autres) ─────────────── */
.cash-strip {
  background: linear-gradient(180deg, rgba(201,168,76,.10), rgba(201,168,76,.04));
  border-top: 1px solid rgba(201,168,76,.25);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 28px 0;
}
.cash-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cash-strip__body { flex: 1 1 420px; }
.cash-strip__eyebrow {
  font-size: .74rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: .1em; margin: 0 0 6px;
}
.cash-strip__title {
  font-size: 1.15rem; font-weight: 600; color: var(--text);
  margin: 0 0 4px; line-height: 1.4;
}
.cash-strip__title strong { color: var(--gold); }
.cash-strip__sub {
  font-size: .88rem; color: var(--muted); margin: 0;
}
.cash-strip__cta {
  display: flex; gap: 10px; flex-wrap: wrap;
}
@media (max-width: 640px) {
  .cash-strip { padding: 22px 0; }
  .cash-strip__title { font-size: 1rem; }
  .cash-strip__cta .btn { flex: 1 1 45%; }
}

/* Variante info-box cash (section pros sur home) */
.info-box--cash { border-color: rgba(201,168,76,.35); background: rgba(201,168,76,.04); }
.eyebrow--gold  { color: var(--gold); }

/* Cash banner sur hero devenir-partenaire */
.cash-banner {
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 18px 0;
}
.cash-banner__price {
  font-size: .95rem; font-weight: 600; color: var(--text);
}
.cash-banner__price strong { color: var(--gold); }
.cash-banner__sub {
  font-size: .78rem; color: var(--muted); margin-top: 4px;
}

/* ── TRUST BAND ─────────────────────────────────────────────────── */
.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 18px 16px;
}
.trust-item__icon {
  font-size: 1.4rem;
  color: var(--gold, #d4a853);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-item__text {
  font-size: .88rem;
  color: #b8b8b8;
  line-height: 1.5;
  margin: 0;
}
.trust-item__text strong { color: #e5e5e5; }
@media (max-width: 860px) {
  .trust-band { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust-band { grid-template-columns: 1fr; }
}

/* ── HOME PACKS (3 cards inline dans info-box--cash) ────────────── */
.home-packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 28px;
}
.home-pack {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,168,83,.18);
  border-radius: 10px;
  padding: 18px 16px 16px;
}
.home-pack--priorite {
  border-color: rgba(212,168,83,.5);
  background: rgba(212,168,83,.06);
}
.home-pack__label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold, #d4a853);
  font-weight: 700;
  margin: 0 0 6px;
}
.home-pack__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}
.home-pack__line {
  font-size: .88rem;
  color: #b8b8b8;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 680px) {
  .home-packs { grid-template-columns: 1fr; }
}

/* ============================================================
   Interventions associées — maillage croisé pages money
   ============================================================ */
.related-services {
  padding: 48px 0 56px;
  border-top: 1px solid rgba(212,168,83,.18);
  background: #0b0b0b;
}
.related-services__head {
  text-align: left;
  margin-bottom: 22px;
}
.related-services__kicker {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold, #d4a853);
  margin-bottom: 8px;
}
.related-services__title {
  font-size: 1.35rem;
  margin: 0 0 4px;
  color: #f2f2f2;
  letter-spacing: .01em;
}
.related-services__sub {
  color: #9a9a9a;
  margin: 0;
  font-size: .92rem;
  max-width: 60ch;
}
.related-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 6px;
}
.related-services__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(212,168,83,.2);
  border-radius: 10px;
  background: #111214;
  text-decoration: none;
  transition: border-color .18s, transform .18s;
}
.related-services__item:hover,
.related-services__item:focus-visible {
  border-color: rgba(212,168,83,.55);
  transform: translateY(-2px);
  outline: none;
}
.related-services__item-label {
  font-weight: 600;
  color: #f2f2f2;
  font-size: .98rem;
  letter-spacing: .01em;
}
.related-services__item-hint {
  color: #a7a7a7;
  font-size: .82rem;
  line-height: 1.45;
}
.related-services__item-arrow {
  color: var(--gold, #d4a853);
  font-size: .88rem;
  margin-top: auto;
  padding-top: 4px;
}
@media (max-width: 960px) {
  .related-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .related-services__grid { grid-template-columns: 1fr; }
  .related-services { padding: 40px 0 44px; }
}

/* ══════════════════════════════════════════════════════════════════
   GRILLES GLOBALES (v11)
   Remplacent les styles inline sur money pages et devenir-partenaire.
   Usage : <div class="grid-2x2 mt-lg">…</div>
   ══════════════════════════════════════════════════════════════════ */
.grid-2x2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 960px) {
  .grid-3,
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-2x2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
}

/* Chip (badge en hero) */
.chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: none;
  background: rgba(212, 168, 83, 0.12);
  color: #d4a853;
  border: 1px solid rgba(212, 168, 83, 0.35);
}
.chip--gold {
  background: rgba(212, 168, 83, 0.15);
  color: #e8c97e;
}

/* Formulaire express hero (money page) */
.express-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
  margin: 16px 0 8px;
  align-items: stretch;
}
.express-form select,
.express-form input[type="date"],
.express-form input[type="text"] {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: inherit;
  font-size: .92rem;
  font-family: inherit;
  min-height: 42px;
  box-sizing: border-box;
}
.express-form select:focus,
.express-form input:focus {
  outline: 2px solid rgba(212, 168, 83, 0.5);
  outline-offset: 0;
  border-color: rgba(212, 168, 83, 0.6);
}
.express-form .btn {
  padding: 10px 18px;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .express-form { grid-template-columns: 1fr 1fr; gap: 8px; }
  .express-form .btn { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .express-form { grid-template-columns: 1fr; gap: 8px; }
  .express-form .btn { width: 100%; }
  .express-form select, .express-form input { min-height: 44px; font-size: .95rem; }
}

/* Accessibility helper */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* FAQ accordéon natif (details/summary) — global pour toutes pages */
details.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 0;
  background: inherit;
}
details.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  position: relative;
  padding-right: 54px;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 400;
  color: #d4a853;
}
details.faq-item[open] > summary::after { content: "–"; }
details.faq-item > summary > h3 {
  display: inline;
  margin: 0;
  font-size: 1rem;
  font-weight: inherit;
}
details.faq-item > p,
details.faq-item > div { padding: 0 20px 18px; margin: 0; }

/* ── Barre d'appel sticky mobile ─────────────────────────── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: #c9a227;
  padding: 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,.4);
}
.mobile-call-bar a {
  display: block;
  color: #0d0f10;
  font-weight: 900;
  font-size: 1.05rem;
  text-decoration: none;
  text-align: center;
  padding: 14px 20px;
  letter-spacing: .02em;
}
@media (max-width: 1000px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 58px; }
}

/* ═══════════════════════════════════════════════════════════
   AMÉLIORATIONS UI/UX — scoring pass
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Stat strip (chiffres clés après hero) ──────────────── */
.stat-strip {
  border-top: 1px solid rgba(212,168,83,.2);
  border-bottom: 1px solid rgba(212,168,83,.2);
  background: linear-gradient(180deg, rgba(212,168,83,.05) 0%, transparent 100%);
  padding: 20px 0;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 10px 12px;
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
  display: block;
}
.stat-label {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
@media (max-width: 600px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.06); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.06); border-right: none; }
}

/* ── 2. Header tel slot — non utilisé, réservé ──────────────── */

/* ── 3. Mobile call bar : animation pulse ────────────────────── */
@keyframes lctp-pulse {
  0%, 100% { box-shadow: 0 -2px 12px rgba(0,0,0,.45); }
  50%       { box-shadow: 0 -4px 24px rgba(0,0,0,.45), 0 -2px 0 rgba(201,162,39,.55); }
}
@media (max-width: 1000px) {
  .mobile-call-bar { animation: lctp-pulse 3s ease-in-out infinite; }
}

/* ── 4. Hero : fond subtil doré ─────────────────────────────── */
.hero {
  background: linear-gradient(135deg, rgba(212,168,83,.04) 0%, transparent 55%);
}

/* ── 5. Cards : accent doré haut au hover ────────────────────── */
.card {
  border-top: 2px solid transparent;
  transition: border-color .2s, border-top-color .2s, box-shadow .2s;
}
.card:hover {
  border-color: rgba(212,168,83,.28);
  border-top-color: var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}

/* ── 6. Trust band : bordure gauche + tinte dorée ────────────── */
.trust-item {
  border-left: 3px solid rgba(212,168,83,.5);
  background: rgba(212,168,83,.03);
}

/* ── 7. Trust icons SVG inline ──────────────────────────────── */
.trust-icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.trust-icon svg { width: 100%; height: 100%; }

/* ── 8. CTA strip : fond doré subtil ────────────────────────── */
.cta-strip {
  background: linear-gradient(180deg, rgba(212,168,83,.04) 0%, transparent 100%);
}

/* ── 9. Ext-cards : hover plus fort ─────────────────────────── */
.ext-card { transition: border-color .2s, box-shadow .2s, transform .2s; }
.ext-card:hover {
  border-color: rgba(212,168,83,.45);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transform: translateY(-1px);
}

/* ── 10. Process step num : remplissage au hover ─────────────── */
.process-step__num { transition: background .2s, color .2s; }
.process-step:hover .process-step__num {
  background: var(--gold);
  color: #090909;
}

/* === Featured Premium Cards === */
.card--featured {
  position: relative;
  padding: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 8px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card--featured:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.08);
}
.card-badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 83, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(212, 168, 83, 0.2);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.card--featured h3 {
  font-size: 1.35rem;
  color: #ffffff;
  margin: 0 0 6px 0;
}
.card-meta {
  font-size: 0.82rem;
  color: var(--gold);
  opacity: 0.85;
  margin: 0 0 12px 0;
  font-weight: 500;
}
.card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0 0 20px 0;
  flex-grow: 1;
}
.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.card-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* ============================================================
   PREMIUM-ALIGN MODULE — Direction UI/UX validée
   Module additif uniquement. Ne pas modifier les tokens :root.
   ============================================================ */

/* — Brand tagline (sous logo) ———————————————————— */
.brand { gap: 12px; align-items: center; }
.brand__tag {
  display: inline-block;
  color: rgba(255,255,255,.5);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 18ch;
  border-left: 1px solid rgba(212,168,83,.28);
  padding-left: 12px;
  margin-left: 2px;
}
@media (max-width: 720px) {
  .brand__tag { display: none; }
}

/* — Hero rule (trait or signature sous H1) ————— */
.hero__rule {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 18px 0 22px;
}

/* — H1 mantra (trois lignes, dernière en or) ——— */
.hero__h1--mantra {
  font-weight: 800;
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -.01em;
  margin: 0 0 6px;
  text-wrap: balance;
}
.hero__h1--mantra .text-gold { color: var(--gold); }
.hero__h1--mantra .line { display: block; }

/* — Eyebrow chip (variante or pleine, comme la réf) ————— */
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.chip--gold { background: rgba(212,168,83,.06); }

/* — Trust strip unifiée (4 items, pictos linéaires or) ——— */
.trust-strip {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}
.trust-strip__item { display: flex; gap: 14px; align-items: flex-start; }
.trust-strip__item + .trust-strip__item { border-left: 1px solid rgba(212,168,83,.10); padding-left: 22px; }
.trust-strip__ico { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; color: var(--gold); }
.trust-strip__ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.trust-strip__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.trust-strip__title { color: var(--text); font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin: 0; }
.trust-strip__text { color: var(--muted); font-size: .82rem; line-height: 1.45; margin: 0; }
@media (max-width: 900px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .trust-strip__item:nth-child(2n+1) { border-left: 0; padding-left: 0; }
  .trust-strip__item:nth-child(n+3) { border-left: 0; padding-left: 0; padding-top: 16px; border-top: 1px solid rgba(212,168,83,.10); }
}
@media (max-width: 520px) {
  .trust-strip { grid-template-columns: 1fr; padding: 18px 18px; }
  .trust-strip__item { border-left: 0 !important; padding-left: 0 !important; }
  .trust-strip__item + .trust-strip__item { border-top: 1px solid rgba(212,168,83,.10); padding-top: 16px !important; }
}

/* — Cartes icônes (pictos or, no photo, badge 01..06) —— */
.card--icon {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: border-color .25s ease, transform .25s ease;
}
.card--icon:hover { border-color: rgba(212,168,83,.35); transform: translateY(-2px); }
.card__num {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255,255,255,.28);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
}
.card__ico { width: 44px; height: 44px; color: var(--gold); margin-bottom: 18px; display: grid; place-items: center; }
.card__ico svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.card--icon h3 { font-size: 1.18rem; font-weight: 700; margin: 0 0 10px; color: var(--text); }
.card--icon p { color: var(--muted); font-size: .92rem; line-height: 1.55; margin: 0 0 18px; flex: 1; }
.card--icon__link {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s ease;
}
.card--icon__link:hover { gap: 12px; }

/* — Grille services 3x2 ————————————————————— */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

/* — Trust band sobre (mots-clés métier, pas de logos) — */
.trust-band--text {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.trust-band--text .trust-band__lead { color: var(--muted); font-size: .92rem; margin: 0; max-width: 360px; }
.trust-band--text .trust-band__chips { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-band--text .trust-band__chips span {
  border: 1px solid var(--line);
  color: var(--gold);
  background: rgba(212,168,83,.04);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* — CTA strip variante chat (pastille or + bouton or) — */
.cta-strip--chat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-strip--chat .cta-strip__pastille {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(212,168,83,.12);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.cta-strip--chat .cta-strip__pastille svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.cta-strip--chat .cta-strip__msg { flex: 1; min-width: 240px; }
.cta-strip--chat .cta-strip__title { color: var(--text); font-size: 1.05rem; font-weight: 700; margin: 0 0 4px; }
.cta-strip--chat .cta-strip__sub { color: var(--muted); font-size: .88rem; margin: 0; }
@media (max-width: 720px) {
  .cta-strip--chat { padding: 18px; }
  .cta-strip--chat .btn { width: 100%; text-align: center; }
}

/* — FAQ sobre (séparateurs fins, + à droite) ————— */
.faq--sober { border-top: 1px solid var(--line); }
.faq--sober .faq-item {
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.faq--sober .faq-item > summary { padding: 18px 36px 18px 0; font-weight: 600; color: var(--text); }
.faq--sober .faq-item > summary::after { right: 0; color: var(--gold); }
.faq--sober .faq-item > p,
.faq--sober .faq-item > div { padding: 0 0 18px; color: var(--muted); font-size: .94rem; line-height: 1.6; }

/* — Section spacing rythmé ————————————————————— */
.section--quiet { padding-top: 56px; padding-bottom: 56px; }
.section--breathe { padding-top: 72px; padding-bottom: 72px; }

/* — Voir tous outline btn ——————————————————— */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: transparent;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,168,83,.04); }

/* — Helpers ————————————————————————————————— */
.center { text-align: center; }
.text-gold { color: var(--gold); }
.mw-560 { max-width: 560px; }

/* ═══ FRONT-CARD-READABILITY-PASS — contraste, hiérarchie, harmonisation ═══
   Objectif : cartes lisibles (texte/fond), bordures présentes, CTA visibles,
   hover et espacements harmonisés. Aucune refonte — surcouche ciblée. */

/* Bordures de cartes plus présentes — les cartes ne flottent plus dans le fond */
.card,
.process-step,
.card--featured,
.why-item,
.ext-card,
.faq-item {
  border-color: rgba(255,255,255,.14);
}

/* Texte secondaire des cartes : contraste relevé (lisible sur fond sombre) */
.card__body p,
.card--icon p,
.process-step p,
.trust-strip__text,
.faq-item p {
  color: #d8d8d8;
}
.card-desc { color: rgba(255,255,255,.88); }

/* Badge numéro de carte : visible sans être criard */
.card__num { color: rgba(255,255,255,.45); }

/* Titres de cartes : bien blancs, hiérarchie nette */
.card__body h3,
.card--icon h3,
.process-step h3 { color: #ffffff; }

/* CTA de cartes : un cran plus présents */
.card--icon__link,
.card-link { font-size: .82rem; }
.card--icon__link:hover,
.card-link:hover { color: #e7c98a; }

/* Hover de carte harmonisé (léger soulèvement + accent doré) */
.card--icon:hover,
.process-step:hover,
.ext-card:hover {
  border-color: rgba(212,168,83,.40);
  box-shadow: 0 6px 22px rgba(0,0,0,.28);
}

/* Hauteurs de cartes homogènes dans une grille */
.card-grid > .card,
.svc-grid > .card,
.grid-3 > .card,
.grid-4 > .card { height: 100%; }

/* ─── Passe correctifs front (scope location) ─── */

/* Largeurs de boutons homogènes dans les cartes */
.card .btn,
.card--featured .btn { width: 100%; }

/* Contraste de section alterné */
.section--alt { background: #0c0c0d; }

/* Barre d'appel mobile — boutons (transfert.html, demande-devis.html) */
.mobile-call-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 10px;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 8px;
  text-decoration: none;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.mobile-call-bar__btn--cta {
  background: var(--gold);
  color: #0a0a0a;
  border: 1px solid var(--gold);
}



/* ============================================================
   MEGA-DROPDOWN PREMIUM + TOPBAR — global design unification
   ============================================================ */

/* === Topbar ================================================= */
.topbar {
  background: #060607;
  border-bottom: 1px solid rgba(212,168,83,.10);
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 7px 0;
  font-size: .77rem;
  flex-wrap: wrap;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  font-weight: 700;
}
.topbar__sep { color: rgba(255,255,255,.2); }
.topbar__phone {
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.topbar__phone:hover { color: #fff; }
.topbar__badges {
  display: flex;
  gap: 14px;
  margin-left: auto;
  color: rgba(255,255,255,.38);
  font-size: .73rem;
}
.topbar__badges span { white-space: nowrap; }
.topbar__badges span::before { content: '✓ '; color: rgba(212,168,83,.7); }

/* === Mega-drop: nav item resets ============================= */
.has-mega {
  position: static !important;
}

/* === Mega-drop: panel ======================================= */
.mega-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  background: #111214;
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 28px 56px rgba(0,0,0,.7), 0 4px 12px rgba(0,0,0,.4);
  animation: megaIn .15s ease;
}
@keyframes megaIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* show triggers */
.has-mega:hover .mega-drop,
.has-mega.open .mega-drop { display: block; }
@media (hover: none) {
  .has-mega:hover .mega-drop { display: none; }
  .has-mega.open .mega-drop { display: block; }
}

/* === Mega-drop: inner layout ================================ */
.mega-drop__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 0;
  padding: 28px 0 24px;
}

.mega-col {
  padding: 0 26px 0 0;
  border-right: 1px solid rgba(255,255,255,.05);
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child  { border-right: none; padding-right: 0; }

.mega-col__title {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212,168,83,.18);
}

.mega-col ul { list-style: none; margin: 0; padding: 0; }
.mega-col li { margin: 0; padding: 0; }
.mega-col li a {
  display: block;
  padding: 5px 0;
  font-size: .875rem;
  color: rgba(255,255,255,.62);
  transition: color .12s, padding-left .12s;
  border: none;
  background: none;
  border-radius: 0;
}
.mega-col li a:hover { color: #fff; padding-left: 5px; background: none; }

/* === Mega-drop: footer strip ================================ */
.mega-drop__foot {
  border-top: 1px solid rgba(255,255,255,.05);
  background: rgba(0,0,0,.28);
}
.mega-drop__foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  font-size: .82rem;
  gap: 20px;
}
.mega-drop__foot-inner > span { color: rgba(255,255,255,.4); }
.mega-drop__foot-inner > a   { color: var(--gold); font-weight: 700; white-space: nowrap; }
.mega-drop__foot-inner > a:hover { color: #fff; }

/* === Header nav CTA ========================================= */
.nav-cta-desktop {
  flex-shrink: 0;
  padding: 9px 18px;
  font-size: .84rem;
}

/* === Direct nav links (no dropdown) ========================= */
a.nav-link {
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  white-space: nowrap;
  transition: color .15s;
  padding: 4px 0;
}
a.nav-link:hover { color: var(--gold); }

/* === Mobile: mega-drop collapse ============================= */
@media (max-width: 1000px) {
  .topbar { display: none; }

  .mega-drop {
    position: static !important;
    border: none;
    box-shadow: none;
    background: rgba(255,255,255,.02);
    border-left: 2px solid rgba(212,168,83,.35);
    padding: 4px 0 6px 14px;
    margin: 2px 0 6px;
    animation: none;
    display: none;
  }
  .site-nav.is-open .nav-item.open .mega-drop { display: block; }

  .mega-drop__inner {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }
  .mega-col {
    padding: 8px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .mega-col:last-child { border-bottom: none; }
  .mega-col__title { font-size: .7rem; margin-bottom: 8px; }
  .mega-col li a { font-size: .9rem; padding: 7px 10px; }
  .mega-drop__foot { display: none; }
  .nav-cta-desktop { display: none !important; }
}
