/* ============================================================
   TIPTOP — Site v2 (one-page) — Charte graphique
   Palette stricte : PRIMAIRE dominante, étendue avec parcimonie.
   Contrainte : AUCUN fond foncé (économie d'encre / impression).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..800;1,9..40,300..800&display=swap');

:root {
  /* ---- PALETTE PRINCIPALE (dominante) ---- */
  --noir: #1D1E1C;          /* Noir TIPTOP */
  --rouge: #E1000F;         /* Rouge Marianne */
  --blanc: #FFFFFF;         /* Blanc pur */
  --noir-50: #8E8F8D;       /* Noir atténué 50% */
  --rouge-50: #F08087;      /* Rouge atténué 50% */

  /* ---- PALETTE ÉTENDUE (parcimonie : pyramide, badges souveraineté, blog) ---- */
  --bleu: #000091;          /* Bleu France */
  --or: #FFCC00;            /* Jaune-Or Europe */

  /* ---- PALETTE VIP / LUXE (bloc VIP uniquement) ---- */
  --ocre: #B8902B;          /* Jaune-Ocre */

  /* ---- NEUTRES dérivés (jamais de fond foncé) ---- */
  --paper: #FFFFFF;
  --paper-alt: #F6F5F2;     /* fond de section alterné, chaud, clair */
  --paper-warm: #FBFAF7;
  --line: #E5E3DD;
  --line-strong: #1D1E1C;
  --ink: #1D1E1C;
  --ink-soft: #5C5D59;
  --ink-faint: #8E8F8D;

  /* ---- Typo ---- */
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;

  /* ---- Mesures ---- */
  --maxw: 1240px;
  --radius: 10px;
  --radius-sm: 6px;
  --section-y: clamp(20px, 2.4vw, 34px);
  --density: 1;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 78px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px){ .wrap { padding: 0 20px; } }

/* ============ TYPO ============ */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.04; color: var(--ink); text-wrap: balance; }
h1 { font-size: clamp(40px, 5.6vw, 78px); letter-spacing: -0.04em; }
h2 { font-size: clamp(30px, 3.8vw, 52px); letter-spacing: -0.03em; }
h3 { font-size: clamp(21px, 2vw, 27px); letter-spacing: -0.02em; }
h4 { font-size: 18px; letter-spacing: -0.01em; }

p { text-wrap: pretty; }
strong { font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 19px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rouge);
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--rouge); display: inline-block; }
.eyebrow.neutral { color: var(--ink-faint); }
.eyebrow.neutral::before { background: var(--ink-faint); }
.section-head.center .eyebrow::after { content: ""; width: 24px; height: 2px; background: currentColor; display: inline-block; }

.lead { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; color: var(--ink-soft); max-width: 60ch; }
.solution-lead { font-size: clamp(20px, 1.9vw, 26px); color: var(--ink-soft); font-weight: 500; max-width: 70ch; letter-spacing: -0.01em; }
.solution-lead strong { font-size: 1.1em; font-weight: 700; }
.kicker-big { font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.3; }

.text-muted { color: var(--ink-soft); }
.text-rouge { color: var(--rouge); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.hl {
  background-image: linear-gradient(transparent 58%, rgba(225,0,15,0.16) 58%);
  padding: 0 1px;
}
.tip { position: relative; cursor: help; border-bottom: 0; text-decoration: underline; text-decoration-style: dotted; text-decoration-thickness: 1.5px; text-underline-offset: 0.18em; outline: none; }
.tip .tip-box { color: var(--ink) !important;
  position: absolute; left: 50%; bottom: calc(100% + 4px); transform: translateX(-50%) translateY(6px);
  width: 280px; max-width: 78vw; background: #fff; color: var(--ink); border: 1px solid var(--line);
  border-radius: 10px; padding: 14px 16px; font-size: 13.5px; font-weight: 400; line-height: 1.45;
  letter-spacing: 0; text-transform: none; box-shadow: 0 20px 50px -18px rgba(0,0,0,0.45);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s, transform .18s; z-index: 30; text-align: left;
}
.tip .tip-box b { color: var(--rouge) !important; font-weight: 700; }
.tip .tip-box::after { content: ""; position: absolute; left: 50%; top: 100%; transform: translateX(-50%); border: 7px solid transparent; border-top-color: #fff; }
.tip .tip-box::before { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 16px; }
.tip:hover .tip-box, .tip:focus .tip-box, .tip:focus-within .tip-box { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.rotor { display: inline-block; font-weight: inherit; white-space: nowrap; }
.type-caret { display: inline-block; width: 3px; height: 1em; transform: translateY(0.14em); background: currentColor; margin-left: 3px; animation: caretBlink 1.05s steps(1) infinite; }
@keyframes caretBlink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

/* ============ SECTIONS ============ */
section { padding: var(--section-y) 0; position: relative; }
.bg-alt { background: var(--paper-alt); }
.bg-warm { background: var(--paper-warm); }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head .lead { margin-top: 22px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.divider { height: 1px; background: var(--line); border: 0; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  border-radius: 100px; border: 1.5px solid transparent;
  transition: transform .12s ease, background .15s, color .15s, border-color .15s, box-shadow .15s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 16px; height: 16px; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--rouge); color: #fff; border-color: var(--rouge); box-shadow: 0 3px 0 #a0000b, 0 6px 16px -6px rgba(225,0,15,.45); }
.btn-primary:hover { background: #c00009; border-color: #c00009; box-shadow: 0 2px 0 #800008, 0 8px 20px -8px rgba(225,0,15,.55); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 1px 0 #800008, 0 2px 6px -2px rgba(225,0,15,.4); }
.btn-dark { background: var(--noir); color: #fff; border-color: var(--noir); }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ocre { background: var(--ocre); color: #fff; border-color: var(--ocre); }
.btn-ocre:hover { background: #a37d20; border-color: #a37d20; }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-arrow svg { transition: transform .15s; }
.btn:hover .btn-arrow svg { transform: translateX(3px); }

/* ============ PROMO BANNER ============ */
.promo {
  background: var(--noir); color: #fff;
  font-size: 14px; font-weight: 500;
  position: relative; z-index: 60;
}
.promo .wrap { display: flex; align-items: center; justify-content: center; gap: 18px; padding-top: 11px; padding-bottom: 11px; flex-wrap: wrap; }
.promo .promo-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--or); color: var(--noir); padding: 3px 9px; border-radius: 4px;
}
.promo a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; white-space: nowrap; }
.promo .promo-close {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: rgba(255,255,255,.6); font-size: 18px; line-height: 1; padding: 4px;
}
.promo .promo-close:hover { color: #fff; }
.promo.hidden { display: none; }
@media (max-width: 720px){ .promo .promo-close { display: block; } .promo .wrap { display: block; text-align: center; padding-right: 34px; } .promo-tag { float: none; display: inline-block; margin: 0 0 6px; } }
@media (max-width: 820px){
  .reassurance ul { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 24px; }
  .reassurance li { justify-content: center; }
  .reassurance li:nth-child(1){ order: 1; }
  .reassurance li:nth-child(5){ order: 2; }
  .reassurance li:nth-child(2){ order: 3; }
  .reassurance li:nth-child(3){ order: 4; }
  .reassurance li:nth-child(4){ order: 5; }
}

/* ============ HEADER / NAV ============ */
.masthead {
  position: absolute; top: 0; left: 0; right: 0; z-index: 5;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background .25s, box-shadow .2s, border-color .25s;
}
.masthead.scrolled { position: fixed; background: rgba(255,255,255,0.95); backdrop-filter: saturate(1.4) blur(12px); border-bottom-color: var(--line); box-shadow: 0 8px 30px -18px rgba(0,0,0,.18); }
.masthead .nav-logo-img { height: 62px; width: auto; display: block; filter: brightness(0) invert(1); transform-origin: left center; transition: height .35s cubic-bezier(.4,0,.2,1), filter .25s; }
.masthead.scrolled .nav-logo-img { height: 38px; filter: none; }
.brandbar { text-align: center; padding: 18px 0 14px; transition: max-height .25s ease, opacity .2s, padding .25s; overflow: hidden; }
.masthead.scrolled .brandbar { max-height: 0; opacity: 0; padding: 0; pointer-events: none; }
.brand-logo { font-size: 30px; font-weight: 800; letter-spacing: -0.05em; display: inline-flex; align-items: center; gap: 4px; }
.brand-logo-img { height: 50px; width: auto; display: block; }
.nav-mini-logo-img { height: 32px; width: auto; display: block; }
.brand-logo .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--rouge); transform: translateY(-12px); }
.brand-slogan { font-size: 16px; color: rgba(255,255,255,0.78); letter-spacing: 0.01em; margin-top: 5px; font-weight: 500; }
.masthead.scrolled .brand-slogan { color: var(--ink-soft); }

.navbar { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.nav-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav-mini-logo { font-size: 20px; font-weight: 800; letter-spacing: -0.05em; display: none; align-items: center; gap: 3px; }
.nav-mini-logo .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rouge); transform: translateY(-8px); }
.masthead.scrolled .nav-mini-logo { display: inline-flex; }
.navlinks { display: flex; align-items: center; gap: 22px; margin: 0 auto; }
.masthead.scrolled .navlinks { margin: 0 auto; }
.navlinks a { font-size: 14.5px; font-weight: 500; color: #fff; opacity: .85; transition: opacity .15s, color .25s; display: inline-flex; flex-direction: column; align-items: center; line-height: 1.08; text-align: center; }
.navlinks a .n-top { font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.55; margin-bottom: 1px; }
.navlinks a .n-main { font-size: 15px; font-weight: 600; letter-spacing: -0.015em; text-transform: uppercase; }
.navlinks a:hover .n-top { opacity: 0.85; }
.masthead.scrolled .navlinks a { color: var(--ink); }
.navlinks a:hover { opacity: 1; }
.navlinks a.urgence { color: #ff5a63; font-weight: 800; background: rgba(225,0,15,0.12); padding: 9px 16px 6px; border-radius: 10px; border: 1.5px solid #ff5a63; display: inline-flex; align-items: center; gap: 0; opacity: 1; position: relative; top: 4px; line-height: 1; }
.navlinks a.urgence:hover { background: rgba(225,0,15,0.22); }
.navlinks a.urgence .u-top { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--rouge); color: #fff; padding: 2px 9px; border-radius: 100px; font-size: 9.5px; letter-spacing: 0.14em; font-weight: 800; white-space: nowrap; line-height: 1.4; }
.navlinks a.urgence .u-main { font-size: 14px; letter-spacing: -0.01em; text-transform: uppercase; }
.masthead.scrolled .navlinks a.urgence .u-top { background: var(--rouge); color: #fff; }
.masthead.scrolled .navlinks a.urgence { color: var(--rouge); background: rgba(225,0,15,0.07); border-color: var(--rouge); }
.navlinks a.urgence::before { content: none; }
.navlinks a.urgence::after { content: none; }
@keyframes pulse { 0%,100%{ opacity:1; transform: scale(1);} 50%{ opacity:.4; transform: scale(.8);} }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.urgence-mobile { display: none; }
@media (max-width: 1000px){
  .urgence-mobile { display: inline-flex; flex-direction: column; align-items: center; flex-shrink: 0; white-space: nowrap; background: rgba(225,0,15,0.12); color: #ff5a63; font-weight: 800; font-size: 10px; line-height: 1; letter-spacing: 0.03em; padding: 8px 12px 5px; border-radius: 10px; border: 1.5px solid #ff5a63; gap: 0; position: relative; }
  .urgence-mobile .u-top { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--rouge); color: #fff; padding: 2px 8px; border-radius: 100px; font-size: 8px; letter-spacing: 0.14em; font-weight: 800; white-space: nowrap; line-height: 1.4; }
  .urgence-mobile .u-main { font-size: 11px; font-weight: 800; letter-spacing: -0.01em; text-transform: uppercase; line-height: 1.15; }
  .urgence-mobile::before, .urgence-mobile::after { display: none; }
  .nav-logo-img, .nav-toggle { flex-shrink: 0; }
  .nav-logo-img { height: 28px !important; }
  .nav-cta { gap: 10px; }
}
@media (max-width: 420px){
  .urgence-mobile { font-size: 11px; gap: 5px; }
  .nav-cta .btn-primary { padding: 7px 13px; font-size: 12px; line-height: 1.05; }
  .nav-cta .btn-primary { flex-direction: column; gap: 0; }
  .nav-cta .cta-label { display: flex; flex-direction: column; align-items: center; line-height: 1.05; }
  .nav-cta .cta-mon { margin-right: 0; font-size: 8px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; display: block; }
  .nav-logo-img { height: 30px; }
  .nav-cta { gap: 8px; }
}
.nav-toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; display: block; }
.masthead.scrolled .nav-toggle span { background: var(--ink); }

@media (max-width: 1000px){
  .navlinks { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 0; border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px -20px rgba(0,0,0,.2); }
  .navlinks.open { display: flex; }
  .navlinks.open a { color: var(--ink); }
  .navlinks.open a.urgence { color: var(--rouge); background: none; border: 0; padding: 13px 32px; border-radius: 0; }
  .navlinks.open a.urgence .u-top { position: static; transform: none; background: none; color: inherit; padding: 0; font-size: inherit; letter-spacing: inherit; font-weight: inherit; border-radius: 0; margin-right: 0.3em; }
  .navlinks.open a.urgence .u-main { font-size: inherit; font-weight: inherit; }
  .navlinks a { padding: 13px 32px; width: 100%; flex-direction: row; align-items: baseline; gap: 7px; justify-content: flex-start; text-align: left; font-size: 16px; font-weight: 500; letter-spacing: 0; text-transform: none; }
  .navlinks a .n-top { margin-bottom: 0; opacity: 1; font-size: inherit; font-weight: inherit; letter-spacing: inherit; }
  .nav-toggle { display: flex; }
  .navbar { justify-content: space-between; }
  .nav-mini-logo, .masthead.scrolled .nav-mini-logo { display: inline-flex; }
  .brandbar { display: none; }
}

/* ============ HERO ============ */
.hero { padding: 0; }
.hero-stage { position: relative; overflow: hidden; padding: calc(76px + clamp(28px, 4vw, 60px)) 0 clamp(36px, 4vw, 56px);
  background:
    radial-gradient(1100px 560px at 72% 18%, #1a3a86 0%, rgba(26,58,134,0) 60%),
    linear-gradient(160deg, #0c245f 0%, #08184099 40%, #050f2e 100%),
    #061333;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video-overlay { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: linear-gradient(180deg, rgba(6,19,51,0.55) 0%, rgba(6,19,51,0.35) 45%, rgba(6,19,51,0.65) 100%); }
.hero-stage .wrap { position: relative; z-index: 1; }
.hero-stage::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px; background: linear-gradient(to bottom, rgba(5,15,46,0), rgba(5,15,46,0)); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 26px; color: #fff; }
.hero-stage h1 .hl-red { color: var(--rouge); }
.hero-stage h1 .line2-red { color: var(--rouge); }
.hero-h1 { line-height: 1.0; font-weight: 800; letter-spacing: -0.045em; }
.hero-h1 .hl-key { font-weight: 800; }
.hero-h1 .hl-soft { font-weight: 400; opacity: 0.92; }
.hero-h1.v2 { display: flex; flex-direction: column; line-height: 1.0; }
.hero-h1.v2 .k { font-size: clamp(40px, 6vw, 84px); font-weight: 800; letter-spacing: -0.045em; color: #fff; line-height: 0.98; width: fit-content; }
.hero-h1.v2 .k.red { color: var(--rouge); }
.hero-h1.v2 .s { font-size: clamp(19px, 2.3vw, 30px); font-weight: 400; opacity: 0.82; margin: 3px 0 16px; }
.hero-h1.v2 .s:last-child { margin-bottom: 0; }
.hero-h1.v3 { display: flex; flex-direction: column; gap: 8px; padding-left: 24px; border-left: 4px solid var(--rouge); line-height: 1.02; font-size: clamp(32px, 4.2vw, 60px); }
.hero-h1.v3 .line { display: block; }
.hero-h1.v3 b { font-weight: 800; color: #fff; letter-spacing: -0.045em; }
.hero-h1.v3 .soft { font-weight: 400; color: rgba(255,255,255,0.58); letter-spacing: -0.03em; }
.hero-stage h1 .hl-gold { background-image: linear-gradient(var(--or), var(--or)); background-size: 100% 0.16em; background-position: 0 0.92em; background-repeat: no-repeat; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; margin-top: -14px; padding: 7px 16px 7px 8px; border: 1px solid rgba(255,255,255,0.22); border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,0.07); margin-bottom: 26px; }
.hero-badge .hb-flag { width: 22px; height: 15px; border-radius: 2px; flex-shrink: 0; background: linear-gradient(to right, #000091 0 33.3%, #fff 33.3% 66.6%, #E1000F 66.6% 100%); }
.hero .lead { margin-bottom: 34px; color: rgba(255,255,255,0.84); }
.hero-stage .lead strong { color: #fff; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-actions .btn { white-space: nowrap; flex: 1 1 0; justify-content: center; min-width: 0; }
@media (max-width: 559px){ .hero-actions .btn { flex-basis: 100%; } }
@media (min-width: 560px){ .hero-actions { flex-wrap: nowrap; } }
.hero-stage .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.45); }
.hero-stage .btn-ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.1); }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-visual .pyramid-fig { display: flex; flex-direction: column; align-items: center; }
.hero-visual .pyramid-fig .pyr-img { margin: 0 auto; }
.hero-stage .pyr-img { filter: drop-shadow(0 24px 60px rgba(0,0,0,0.5)); }
.hero-pyr-slogan { margin-top: 20px; text-align: center; font-style: italic; font-weight: 700; font-size: clamp(20px, 2.1vw, 28px); color: #fff; letter-spacing: -0.01em; white-space: nowrap; }
@media (max-width: 940px){
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.reassurance {
  margin-top: 0; border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.reassurance ul { list-style: none; display: flex; flex-wrap: wrap; gap: 20px 28px; justify-content: space-between; align-items: center; }
.reassurance li { font-size: 13px; font-weight: 600; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 11px; letter-spacing: -0.01em; }
.reassurance li .trust-emblem { width: 75px; height: 75px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.reassurance li .emblem-seal svg { width: 100%; height: 100%; display: block; }
.reassurance li .trust-txt { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.reassurance li .trust-txt b { color: var(--ink); font-weight: 700; font-size: 13px; }
.reassurance li .trust-txt span { font-size: 11px; font-weight: 500; color: var(--ink-faint); }
.reassurance li .trust-txt-arcep b { font-size: 16px; }
.reassurance li .trust-txt-arcep span { font-size: 13px; }
/* ARCEP placeholder wordmark */
.emblem-arcep { width: auto; height: 30px; padding: 0 10px; border: 1.5px solid var(--bleu); border-radius: 5px; color: var(--bleu); font-weight: 800; font-size: 14px; letter-spacing: 0.04em; }
/* Logos officiels */
.reassurance .logo-img { width: auto; display: block; }
.reassurance .logo-arcep { height: 82px; }
.reassurance .logo-expertcyber { height: 72px; }
.reassurance .logo-17cyber { height: 72px; }
.reassurance .logo-cyber { height: 90px; position: relative; top: 6px; }
/* 20 ans seal */
.emblem-seal { position: relative; }
.emblem-seal svg { width: 48px; height: 48px; }
.reassurance li.plain { gap: 10px; }
.reassurance li.plain::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--rouge); }

/* Anniversaire banner */
.anniv-banner { max-width: 800px; margin: 0 auto; text-align: center; background: #fff; border: 1.5px solid var(--noir); border-radius: var(--radius); padding: clamp(24px, 3vw, 38px) clamp(28px, 4vw, 48px); position: relative; overflow: hidden; }
.anniv-deco { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.anniv-confetti { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.anniv-confetti i { position: absolute; top: -14%; width: 11px; height: 16px; border-radius: 2px; opacity: 0; box-shadow: 0 1px 2px rgba(0,0,0,0.08); animation-name: cotillon; animation-timing-function: linear; animation-iteration-count: infinite; }
@keyframes cotillon {
  0% { transform: translateY(-12px) rotateZ(0deg) rotateX(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(320px) rotateZ(620deg) rotateX(420deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce){ .anniv-confetti i { animation: none; opacity: 0.85; } }
.anniv-banner > *:not(.anniv-confetti):not(.anniv-cake) { position: relative; z-index: 1; }
.anniv-cake { position: absolute; right: 10px; bottom: 0; width: clamp(170px, 26%, 280px); height: auto; opacity: 0.12; z-index: 0; pointer-events: none; }
.anniv-badge { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: var(--rouge); border-radius: 100px; padding: 7px 18px; margin-bottom: 22px; }
.anniv-title { font-size: clamp(28px, 3.6vw, 46px); line-height: 1.08; }
.anniv-title .text-rouge { font-size: 1em; font-weight: 800; }
.anniv-sub { max-width: 56ch; margin: 18px auto 0; color: var(--ink-soft); font-size: 16px; }
.anniv-sub sup { line-height: 0; font-size: 0.7em; vertical-align: 0.35em; }
.anniv-actions { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.anniv-logos { display: flex; align-items: center; justify-content: center; gap: 26px; margin-top: 28px; }
.anniv-logo-tt { height: 46px; width: auto; position: relative; top: -18px; }
.anniv-logo-link { color: var(--rouge); display: inline-flex; align-items: center; position: relative; top: -18px; }
.anniv-logo-link svg { width: 30px; height: 30px; }
.anniv-logo-ads-img { height: 76px; width: auto; position: relative; top: -4px; }
.anniv-actions .btn-ghost:hover { background: var(--noir); color: #fff; border-color: var(--noir); }
@media (max-width: 560px){ .anniv-logos { flex-direction: column; gap: 12px; } .anniv-logo-tt { height: 40px; } .anniv-logo-ads-img { height: 50px; } .anniv-logo-link { transform: rotate(90deg); } }

/* ============ PYRAMIDE SVG ============ */
.pyramid-fig { width: 100%; max-width: 460px; }
.pyramid-fig svg { width: 100%; height: auto; overflow: visible; }
.pyramid-fig .pyr-img { width: 100%; height: auto; }
.sol-grid .pyramid-fig { display: flex; align-items: center; justify-content: flex-end; }
.sol-grid .pyramid-fig .pyr-img { height: 100%; width: auto; max-width: 100%; margin-right: -26px; }
@media (max-width: 760px){ .sol-grid { grid-template-columns: 1fr !important; } .sol-grid .pyramid-fig { order: -1; justify-content: center; } .sol-grid .pyramid-fig .pyr-img { margin-right: 0; max-width: 380px; } }
.ia-note { display: block; text-align: center; margin: 22px auto 0; max-width: 440px; padding: 16px 24px; background: var(--paper-warm); border: 1.5px solid var(--or); border-radius: var(--radius-sm); font-size: 17px; line-height: 1.45; color: var(--ink); box-shadow: 0 8px 24px -14px rgba(184,144,43,.55); }
.ia-note .ia-note-star { color: #9a7b00; font-weight: 800; font-size: 0.78em; vertical-align: super; line-height: 0; margin-right: 3px; }
.ia-note strong { color: #9a7b00; font-weight: 700; }
.pyr-band-label { font-family: var(--sans); font-weight: 700; fill: #fff; letter-spacing: -0.01em; }
.pyr-band-sub { font-family: var(--sans); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.pyr-side-label { font-family: var(--sans); font-size: 13px; font-weight: 600; fill: var(--ink); }
.pyr-side-sub { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.pyr-ia-pill { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* ============ CARDS GENERIC ============ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px){ .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
@media (max-width: 640px){
  .eyebrow { font-size: 13px; gap: 8px; letter-spacing: 0.1em; }
  .eyebrow::before { width: 16px; }
  h2 { font-size: clamp(25px, 7vw, 32px); }
  .section-head .eyebrow { margin-bottom: 14px; }
}

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.card:hover { border-color: var(--noir-50); box-shadow: 0 18px 40px -28px rgba(0,0,0,.25); }
.card .card-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
#methode .card .card-tag { font-size: 16px; letter-spacing: 0.08em; color: var(--rouge); }
#methode .conclusion p { font-size: clamp(22px, 2.4vw, 30px); }
#methode .card h3 { min-height: 2.5em; }
#methode .card p { min-height: 4.5em; }
#methode .conclusion.centered { padding-top: 28px; padding-bottom: 28px; }
.card h3 .card-role { display: block; font-size: 16px; font-weight: 600; color: var(--rouge); letter-spacing: 0; text-transform: none; margin-top: 4px; }
.card-head { display: flex; align-items: center; gap: 16px; }
.card-head .icon-chip { flex-shrink: 0; }
.card-head h3 { margin: 0; }
#pourquoi .grid-2 { align-items: stretch; }
#pourquoi .card { height: 100%; }
#pourquoi .card-head h3 { white-space: nowrap; font-size: clamp(20px, 2vw, 28px); }
.sol-cards .icon-chip { background: var(--noir); border-color: var(--noir); color: #fff; }
.sol-cards .icon-chip.blue { background: var(--bleu); border-color: var(--bleu); color: #fff; }
.sol-cards .icon-chip.red { background: var(--rouge); border-color: var(--rouge); color: #fff; }
#pourquoi .icon-chip { background: var(--rouge); border-color: var(--rouge); color: #fff; }
#pourquoi .grid-2 > .card .icon-chip { background: var(--rouge); border-color: var(--rouge); color: #fff; width: 64px; height: 64px; border-radius: 16px; }
#pourquoi .grid-2 > .card .icon-chip svg { width: 34px; height: 34px; }
.ey-flags { font-size: 1.15em; letter-spacing: 0; display: inline-flex; align-items: center; gap: 5px; }
.flag-svg { width: 18px; height: 12px; border-radius: 2px; display: inline-block; vertical-align: middle; box-shadow: 0 0 0 1px rgba(0,0,0,0.06); }
.eyebrow:has(.ey-flags)::before { display: none; }
.card p { font-size: 15px; color: var(--ink-soft); }

.icon-chip {
  width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--ink); color: var(--ink);
}
.icon-chip svg { width: 22px; height: 22px; }
.icon-chip.red { border-color: var(--rouge); color: var(--rouge); }
.icon-chip.blue { border-color: var(--bleu); color: var(--bleu); }

/* numbered list (problème, méthode) */
.numbered { display: flex; flex-direction: column; gap: 4px; }
.numbered .row { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--line); align-items: start; }
.numbered .row:last-child { border-bottom: 1px solid var(--line); }
.numbered .num { font-size: 34px; font-weight: 800; letter-spacing: -0.04em; color: var(--rouge); line-height: 1; }
.numbered .row h3 { margin-bottom: 8px; }
.numbered .row p { color: var(--ink-soft); font-size: 16px; max-width: 62ch; }
.problem-card { gap: 16px; }
.problem-card .num { font-size: 40px; font-weight: 800; letter-spacing: -0.04em; color: var(--rouge); line-height: 1; }
.problem-card h3 { font-size: 20px; }
.problem-card p { font-size: 15px; color: var(--ink-soft); }
.cta-mon { margin-right: 0; display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; line-height: 1.3; }
.nav-cta .btn-primary .cta-label { display: flex; flex-direction: column; align-items: center; line-height: 1.05; gap: 3px; }
.nav-cta .btn-primary { padding: 6px 14px; }
.problem-head { margin-bottom: 20px; }
.problem-cards-big .problem-card { padding: 18px 18px; gap: 10px; display: flex; flex-direction: column; }
.problem-cards-big .problem-card .card-head { min-height: 3.6em; align-items: flex-start; }
.problem-cards-big .problem-card .card-head h3 { font-size: 22px; line-height: 1.2; }
.problem-cards-big .problem-card p { margin-top: auto; }
.problem-cards-big .problem-card .num { font-size: 52px; line-height: 0.7; color: var(--rouge); flex: 0 0 auto; }
.problem-cards-big .problem-card .card-head { display: flex; align-items: flex-start; gap: 14px; }
.problem-cards-big .problem-card .card-head h3 { margin: 0; flex: 1; }
.problem-cards-big .problem-card .card-head h3 { margin: 0; }
.problem-cards-big .problem-card h3 { font-size: 25px; letter-spacing: -0.02em; }
.problem-cards-big .problem-card p { font-size: 17px; line-height: 1.5; }
.problem-conclusion { margin-top: 44px; text-align: center; }
.problem-illus { margin: 0; max-width: 520px; }
.problem-cards-wrap { position: relative; }
.problem-cards-wrap .problem-illus { position: absolute; inset: -60px -40px; width: calc(100% + 80px); max-width: none; display: flex; align-items: center; justify-content: center; opacity: 0.5; pointer-events: none; z-index: 0; }
.problem-cards-big .problem-card { padding: 18px 18px; gap: 10px; background: rgba(255,255,255,0.62); backdrop-filter: blur(2px); }
.problem-cards-wrap .problem-illus svg { width: 100%; height: 100%; }
.problem-cards-wrap .problem-cards { position: relative; z-index: 1; }
.problem-illus svg { width: 100%; height: auto; display: block; }
.problem-conclusion h2 { font-size: clamp(23px, 2.5vw, 36px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.25; max-width: 30ch; margin: 0 auto; white-space: normal; }
@media (max-width: 760px){ .problem-cards-big .problem-card { padding: 28px 24px; } .problem-conclusion { margin-top: 40px; } .problem-conclusion h2 { min-height: 4.5em; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; } }
@media (max-width: 640px){
  .problem-card { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; row-gap: 8px; align-items: center; }
  .problem-card .num { grid-row: 1; grid-column: 1; }
  .problem-card h3 { grid-row: 1; grid-column: 2; margin: 0; }
  .problem-card p { grid-column: 1 / 3; }
}

/* solution conclusion / method conclusion strip */
.conclusion {
  margin-top: 48px; padding: 36px 40px; border-radius: var(--radius);
  background: #fff; border: 1.5px solid var(--noir);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.conclusion p { font-size: clamp(18px, 1.8vw, 23px); font-weight: 600; letter-spacing: -0.02em; max-width: 46ch; }
.conclusion.centered { flex-direction: column; text-align: center; justify-content: center; gap: 26px; padding: 48px 40px; }
.conclusion.centered p { max-width: 62ch; font-size: clamp(22px, 2.6vw, 32px); margin: 0 auto; }
.totalpro-logo { height: 50px; width: auto; display: inline-block; vertical-align: middle; margin-top: 6px; }
.totalpro-lockup { display: inline-flex; align-items: center; gap: 12px; }
.totalpro-lockup .tp-mark { height: 42px; width: auto; display: block; }
.totalpro-lockup .tp-word { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; color: var(--noir); line-height: 1; }
.totalpro-lockup .tp-pro { color: var(--rouge); }
.totalpro-lockup .tp-spark { width: 22px; height: 22px; display: block; }
#solution .conclusion.centered { padding-top: 32px; padding-bottom: 32px; gap: 20px; }

/* IA encart */
.ia-row { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 24px; align-items: stretch; margin-top: 24px; }
@media (max-width: 760px){ .ia-row { grid-template-columns: 1fr; } }
.ia-row .ia-encart { margin-top: 0; }
.ia-forces { background: var(--paper-warm); border: 1.5px solid var(--or); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; box-shadow: 0 8px 24px -14px rgba(184,144,43,.55); }
.ia-forces-star { color: #9a7b00; font-weight: 800; font-size: 24px; line-height: 1; }
.ia-forces-txt { font-size: 21px; font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; }
.ia-forces-txt strong { color: #9a7b00; font-weight: 700; }
.ia-forces-sub { font-size: 13px; color: var(--ink-soft); }
.ia-encart {
  margin-top: 24px; border-radius: var(--radius); padding: 24px 40px;
  background: var(--paper-warm); border: 3px solid var(--or); position: relative;
  border-left: 4px solid var(--or);
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
}
.ia-encart.ia-merged { display: block; }
.ia-aster { position: absolute; top: -30px; left: -10px; color: #FFCC00; font-weight: 800; font-size: 58px; line-height: 1; background: var(--paper-warm); padding: 6px 10px 0; border-radius: 8px; }
.ia-deftag { position: absolute; top: -15px; left: 28px; background: #FFCC00; color: var(--noir); font-size: 13px; font-weight: 800; letter-spacing: 0.04em; padding: 5px 14px; border-radius: 100px; display: inline-flex; align-items: center; gap: 6px; }
.ia-deftag-star { font-size: 17px; line-height: 0; position: relative; top: 3px; }
.ia-merged .ia-head { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.ia-merged .ia-head .ia-mark { flex-shrink: 0; margin: 0; }
.ia-merged .ia-head h3 { margin: 0; }
.ia-encart .ia-mark {
  width: 64px; height: 64px; border-radius: 16px; background: var(--or); color: var(--noir);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ia-encart .ia-mark svg { width: 64px; height: 64px; }
.ia-encart h3 { margin-bottom: 8px; }
.ia-encart p { color: var(--ink-soft); font-size: 16px; }
.ia-encart strong { color: var(--ink); }
.ia-kicker { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #9a7b00; margin-bottom: 10px; }
.ia-kicker-star { font-size: 1.1em; vertical-align: super; line-height: 0; }
@media (max-width: 640px){ .ia-encart { grid-template-columns: 1fr; } }

/* ============ OFFRE — trio CyberPILOT / TOTALPro / SuperVIP ============ */
.offer-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 20px; max-width: 72ch; }
.offer-bullets li { position: relative; padding-left: 26px; font-size: 17px; line-height: 1.5; color: var(--ink-soft); }
.offer-bullets li strong { color: var(--ink); }
.offer-bullets .ob-dot { position: absolute; left: 0; top: 0.5em; width: 11px; height: 11px; border-radius: 2px; }
.offer-bullets .ob-pilot { background: var(--noir); }
.offer-bullets .ob-pro { background: var(--rouge); }
.offer-bullets .ob-vip { background: var(--ocre); }
.offer-intro { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 22px; max-width: 70ch; }
.offer-intro li { position: relative; padding-left: 26px; font-size: 17px; line-height: 1.5; color: var(--ink-soft); }
.offer-intro li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 9px; height: 9px; border-radius: 2px; background: var(--noir); }
.offer-intro li:nth-child(1)::before { background: var(--noir); }
.offer-intro li:nth-child(2)::before { background: var(--rouge); }
.offer-intro li:nth-child(3)::before { background: var(--ocre); }
.offer-intro .oi-name { font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.offer-intro .oi-pro { color: var(--rouge); }
.offer-intro .oi-vip { color: var(--ocre); }
.offer-trio { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; align-items: stretch; }
@media (max-width: 980px){ .offer-trio { grid-template-columns: 1fr; gap: 28px; } }
.offer-col { background: #fff; border: 3px solid var(--line); border-radius: var(--radius); padding: 36px 28px; display: flex; flex-direction: column; position: relative; }
.offer-col:not(.featured):not(.vip-col) { border-color: var(--noir); }
.offer-col.featured { border: 3px solid var(--rouge); }
.offer-col.vip-col { border-color: var(--ocre); border-width: 3px; }
.offer-col .oc-badge { position: absolute; top: -15px; left: 26px; background: var(--rouge); color: #fff; font-size: 12.5px; font-weight: 800; letter-spacing: 0.04em; padding: 6px 14px; border-radius: 100px; white-space: nowrap; }
.offer-col .oc-badge.oc-badge-dark { background: var(--noir); }
.offer-col .oc-badge.oc-badge-ocre { background: var(--ocre); }
.offer-col .oc-head { padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.offer-col .oc-name { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 10px; }
.offer-col .oc-name .oc-emph { font-weight: 800; -webkit-text-stroke: 0.8px currentColor; letter-spacing: -0.02em; }
.offer-col .oc-tag { font-size: 15px; line-height: 1.45; color: var(--ink-soft); }
.offer-col .oc-tag strong { color: var(--ink); }
.offer-col .oc-layers { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; flex: 1; }
.offer-col .oc-layers li { display: flex; align-items: flex-start; gap: 12px; }
.offer-col .oc-layers .lb { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; margin-top: 4px; }
.offer-col .lb-bleu { background: var(--bleu); } .offer-col .lb-rouge { background: var(--rouge); } .offer-col .lb-noir { background: var(--noir); } .offer-col .lb-or { background: var(--or); } .offer-col .lb-ocre { background: var(--ocre); }
.offer-col .lb-quad { display: grid; grid-template-columns: 7px 7px; grid-template-rows: 7px 7px; gap: 2px; flex-shrink: 0; margin-top: 3px; }
.offer-col .lb-quad .lb { width: 7px; height: 7px; border-radius: 2px; margin: 0; }
.offer-col .lb-base { background: repeating-linear-gradient(45deg, var(--ink-faint) 0 3px, transparent 3px 6px), var(--paper-alt); border: 1px solid var(--line); }
.offer-col .oc-layers li.oc-base strong { color: var(--ink-faint); }
.offer-col .oc-layers li strong { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; display: block; }
.offer-col .oc-layers li span { font-size: 13.5px; color: var(--ink-soft); }
.offer-col .oc-foot { font-size: 16px; color: var(--ink-soft); margin: 0 0 18px; padding-top: 6px; text-align: center; }
.offer-col .oc-cta { align-self: stretch; justify-content: center; margin-top: 0; }
.offer-col .oc-foot strong { color: var(--ink); }
.offer-col .oc-cta { align-self: stretch; justify-content: center; margin-top: auto; }

/* ============ OFFRE — duo (ancien) ============ */
.offer-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
@media (max-width: 880px){ .offer-duo { grid-template-columns: 1fr; gap: 28px; } }
.offer-card-big { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 34px; display: flex; flex-direction: column; position: relative; }
.offer-card-big.featured { border: 3px solid var(--rouge); }
.oc-badge { position: absolute; top: -15px; left: 32px; background: var(--rouge); color: #fff; font-size: 13px; font-weight: 800; letter-spacing: 0.04em; padding: 6px 16px; border-radius: 100px; }
.oc-badge.oc-badge-dark { background: var(--noir); }
.oc-head { padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.oc-name { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
.oc-tag { font-size: 16px; line-height: 1.5; color: var(--ink-soft); }
.oc-tag strong { color: var(--ink); }
.oc-layers { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.oc-layers li { display: flex; align-items: flex-start; gap: 14px; }
.oc-layers .lb { width: 16px; height: 16px; border-radius: 4px; flex-shrink: 0; margin-top: 4px; }
.oc-layers .lb-bleu { background: var(--bleu); } .oc-layers .lb-rouge { background: var(--rouge); } .oc-layers .lb-noir { background: var(--noir); } .oc-layers .lb-or { background: var(--or); }
.oc-layers .lb-base { background: repeating-linear-gradient(45deg, var(--ink-faint) 0 3px, transparent 3px 6px), var(--paper-alt); border: 1px solid var(--line); }
.oc-layers li.oc-base strong { color: var(--ink-faint); }
.oc-layers li strong { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; display: block; }
.oc-layers li span { font-size: 14.5px; color: var(--ink-soft); }
.oc-foot { font-size: 15px; color: var(--ink-soft); margin: auto 0 22px; padding-top: 6px; }
.oc-foot strong { color: var(--ink); }
.oc-cta { align-self: flex-start; }

/* ============ OFFRE — price table Good/Better/Best (ancienne) ============ */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 960px){ .pricing { grid-template-columns: 1fr; gap: 28px; } }
.price-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column; position: relative; transition: transform .15s, box-shadow .15s; }
.price-col.featured { border: 1.5px solid var(--rouge); box-shadow: 0 28px 70px -34px rgba(225,0,15,.4); }
.pc-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--rouge); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; white-space: nowrap; }
.pc-head { padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.pc-line { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--ink-faint); margin-bottom: 6px; }
.price-col.featured .pc-line { color: var(--rouge); }
.pc-rank { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }
.price-col.featured .pc-rank { color: var(--rouge); }
.pc-name { font-size: 25px; margin: 12px 0 8px; letter-spacing: -0.03em; }
.pc-tag { font-size: 14px; color: var(--ink-soft); min-height: 40px; }
.pc-price { display: flex; align-items: baseline; gap: 10px; margin: 20px 0 22px; }
.pc-amount { font-size: 27px; font-weight: 800; letter-spacing: -0.03em; }
.pc-period { font-size: 12.5px; color: var(--ink-faint); }
.pc-cta { width: 100%; }
.pc-feats { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.pc-feats li { font-size: 14.5px; color: var(--ink-soft); padding-left: 28px; position: relative; line-height: 1.4; }
.pc-feats li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--rouge); font-weight: 800; font-size: 15px; }
.pc-feats li strong { color: var(--ink); font-weight: 600; }

.offer-engage { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
@media (max-width: 820px){ .offer-engage { grid-template-columns: 1fr; gap: 20px; } }
.oe-col { padding: 28px 30px; border-radius: var(--radius); background: var(--paper-warm); border: 1.5px solid var(--noir-50); }
.oe-col.oe-strong { background: var(--paper-warm); border: 1.5px solid var(--rouge); }
.oe-k { font-size: 16px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--noir); margin-bottom: 14px; }
.oe-head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.oe-head .oe-k { margin-bottom: 0; }
.oe-ico { width: 52px; height: 52px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--noir); border: 1.5px solid var(--noir); color: #fff; }lor: var(--ink); }
.oe-ico svg { width: 28px; height: 28px; }
.oe-col.oe-strong .oe-ico { background: var(--rouge); border-color: var(--rouge); color: #fff; }
.oe-col.oe-strong .oe-k { color: var(--rouge); }
.oe-col p { font-size: 16px; line-height: 1.55; color: var(--ink-soft); }
.oe-col p strong { color: var(--ink); }
.offer-notes-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 48px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
@media (max-width: 760px){ .offer-notes-strip { grid-template-columns: 1fr; } }
.note { display: grid; grid-template-columns: 26px 1fr; gap: 14px; }
.note .ck { color: var(--rouge); }
.note p { font-size: 15px; color: var(--ink-soft); }
.note strong { color: var(--ink); }
#offre .vip { margin-top: 40px; }

/* VIP encart — charte luxe ocre/noir/blanc, fond clair (pas de fond foncé) */
.vip {
  border-radius: var(--radius); padding: 30px 36px; background: var(--paper-warm);
  border: 1.5px solid var(--ocre); position: relative; overflow: hidden;
}
.vip::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--ocre);
}
.vip-toprow { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
@media (max-width: 560px){ .vip-limit { position: static !important; top: auto; right: auto; } .vip-toprow { gap: 8px; } .vip .vip-tag { white-space: normal; line-height: 1.3; } }
.vip-toprow .vip-tag { margin-bottom: 0; }
.vip-limit { position: absolute; top: 0; right: 0; z-index: 2; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ocre); border: 1.5px solid var(--ocre); border-radius: 100px; padding: 6px 14px; background: var(--paper-warm); }
.vip-limit svg { width: 14px; height: 14px; }
.vip-bigmark { position: absolute; right: -10px; bottom: -14px; width: clamp(120px, 18vw, 180px); height: auto; color: var(--ocre); opacity: 0.14; pointer-events: none; z-index: 0; }
.vip > *:not(.vip-bigmark) { position: relative; z-index: 1; }
.vip .vip-tag { color: #fff; background: var(--ocre); border-radius: 100px; padding: 6px 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.vip .vip-tag svg { width: 16px; height: 16px; }
.vip h3 { margin-bottom: 10px; }
.vip h3 .vip-name { color: var(--ocre); }
.vip p { color: var(--ink-soft); font-size: 15px; max-width: 60ch; }
.vip ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; margin: 16px 0 20px; }
@media (max-width: 600px){ .vip ul { grid-template-columns: 1fr; } }
.vip ul li { font-size: 16px; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.vip ul li::before { content: ""; width: 5px; height: 5px; background: var(--ocre); border-radius: 50%; }

/* ============ BUDGET ============ */
.budget-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 8px 0 32px; }
@media (max-width: 760px){ .budget-2 { grid-template-columns: 1fr; } }
.budget-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--rouge); border-radius: var(--radius); padding: 34px; }
.budget-card .bc-head { display: flex; align-items: center; gap: 18px; margin-bottom: 12px; }
.budget-card .b-mark { font-size: 44px; color: var(--rouge); font-weight: 800; line-height: 1; flex-shrink: 0; }
.budget-card .bc-head h3 { margin: 0; }
.budget-card h3 { margin-bottom: 12px; }
.budget-card p { color: var(--ink-soft); font-size: 15.5px; }

/* ============ ÉTUDE DE CAS (ADS) ============ */
.case-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.case-grid .conclusion { padding: 0; margin-top: 20px; gap: 16px; flex-direction: column; align-items: center; text-align: center; border: 0; background: transparent; }
.case-grid .conclusion p { font-size: 18px; }
@media (max-width: 900px){ .case-grid { grid-template-columns: 1fr; } }
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 32px 0; }
.case-stats .st { border-top: 2px solid var(--noir); padding-top: 14px; }
.case-stats .st .n { font-size: clamp(34px, 4vw, 52px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.case-stats .st .l { font-size: 12px; font-weight: 600; color: var(--ink-soft); margin-top: 8px; letter-spacing: -0.01em; }
.timeline-mini { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.timeline-mini .tm-arrow { width: 76px; display: flex; align-items: center; justify-content: center; margin: 8px 0; }
.timeline-mini .tm-arrow svg { height: 78px; width: 26px; }
.timeline-mini .tm { display: grid; grid-template-columns: 76px 1fr; gap: 18px; }
.timeline-mini .tm .yr { font-size: 22px; font-weight: 800; color: var(--noir); letter-spacing: -0.03em; }
.timeline-mini .tm .yr-dark { color: var(--rouge); }
.timeline-mini .tm p { font-size: 14.5px; color: var(--ink-soft); }

/* quotes */
.ads-rond { float: right; width: 104px; height: 104px; border-radius: 50%; object-fit: contain; background: #fff; border: 1px solid var(--line); padding: 8px; margin: 0 0 10px 18px; box-shadow: 0 10px 28px -14px rgba(0,0,0,.25); }
.preuve-head { max-width: 100%; }
.preuve-head .ads-rond { float: right; width: 184px; height: 184px; margin: 2px 0 20px 40px; }
@media (max-width: 680px){ .preuve-head .ads-rond { float: left; display: block; width: 110px; height: 110px; margin: 2px 18px 8px 0; } }
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 32px 34px; position: relative; overflow: hidden; }
.clients-sec { background: #fff; }
.clients-sec .refs-marquee::before, .clients-sec .refs-marquee::after { background: linear-gradient(90deg, #fff, transparent); }
.clients-sec .testi-track .quote-card { background: #fff; border-color: #f0d9d7; border-top: 4px solid var(--rouge); box-shadow: 0 18px 40px -28px rgba(225,0,15,.3); }
.clients-sec .logo-chip { background: #fff; }
.quote-card::before { content: none; }
.quote-card .q::before { content: "\00AB\00A0"; color: var(--rouge); font-weight: 700; }
.quote-card::after { content: none; }
.quote-card .q::after { content: " \00BB"; color: var(--rouge); font-weight: 700; }
.quote-card .q { font-size: 17px; font-weight: 500; line-height: 1.5; letter-spacing: -0.01em; position: relative; }
.readmore { display: inline-flex; align-items: center; gap: 4px; background: none; border: 0; color: var(--rouge); font-weight: 600; font-size: 0.78em; cursor: pointer; padding: 0 0 0 4px; letter-spacing: 0; vertical-align: baseline; opacity: 0.8; text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; transition: opacity .15s; }
.readmore .rm-ico { display: none; }
.readmore:hover { opacity: 1; background: none; color: var(--rouge); }
.tmodal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.tmodal.open { display: flex; }
.tmodal-backdrop { position: absolute; inset: 0; background: rgba(15,20,40,0.55); backdrop-filter: blur(2px); }
.tmodal-box { position: relative; z-index: 1; background: #fff; border-radius: var(--radius); padding: 40px; max-width: 560px; width: 100%; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.5); }
.tmodal-x { position: absolute; top: 14px; right: 16px; background: none; border: 0; font-size: 26px; line-height: 1; color: var(--ink-faint); cursor: pointer; }
.tmodal-x:hover { color: var(--ink); }
.tmodal-q { font-size: 18px; line-height: 1.6; font-weight: 500; }
.tmodal-q p { margin: 0 0 14px; }
.tmodal-q p:last-child { margin-bottom: 0; }
.tmodal-q p:first-child::before { content: "« "; color: var(--rouge); font-weight: 700; font-size: 1.5em; line-height: 0; vertical-align: -0.3em; }
.tmodal-q p:last-child::after { content: " »"; color: var(--rouge); font-weight: 700; font-size: 1.5em; line-height: 0; vertical-align: -0.3em; }
.tmodal-meta { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
.tmodal-meta .av { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; }
.tmodal-meta .nm { font-weight: 700; font-size: 14.5px; }
.tmodal-meta .rl { font-size: 12.5px; color: var(--ink-soft); }
.quote-card .qmeta { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
.quote-card .qmeta .av { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; }
.quote-card .qmeta .nm { font-weight: 700; font-size: 14.5px; }
.quote-card .qmeta .rl { font-size: 12.5px; color: var(--ink-soft); }
.quote-card.pending { border-style: dashed; background: var(--paper-alt); }
.quote-card.pending .q { color: var(--ink-faint); font-style: italic; }
.car-viewport { overflow: hidden; }
.car-slide { flex: 0 0 100%; width: 100%; box-sizing: border-box; }

/* logo strip */
.logo-strip { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.logo-chip {
  height: 64px; min-width: 150px; flex: 1; border: 1px solid var(--line); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; background: #fff;
  font-size: 13px; font-weight: 600; color: var(--ink-faint); letter-spacing: 0.02em;
}
.logo-chip-img { padding: 3px 10px; overflow: hidden; }
.logo-chip-img img { max-height: 66px; max-width: 100%; width: auto; object-fit: contain; }
.logo-chip-dark { background: var(--noir); border-color: var(--noir); }
.refs-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.refs-grid > * { flex: 0 1 calc((100% - 28px) / 3); }
.refs-grid .logo-chip-img { padding: 3px 6px; }
.refs-grid .logo-chip { min-width: 0; }
@media (max-width: 520px){ .refs-grid > * { flex-basis: calc((100% - 14px) / 2); } .refs-grid .logo-chip-img { padding: 8px 10px; } .refs-grid .logo-chip-img img { max-height: 42px; } }
/* refs marquee */
.refs-marquee { margin-bottom: 56px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.refs-marquee-track { display: flex; gap: 14px; width: max-content; animation: refsScroll 42s linear infinite; }
.refs-marquee:hover .refs-marquee-track { animation-play-state: running; }
.refs-marquee .logo-chip { flex: 0 0 200px; height: 96px; min-width: 0; margin: 0; }
.refs-marquee .logo-chip img { filter: grayscale(1); opacity: 0.7; transition: filter .2s, opacity .2s; }
.refs-marquee .logo-chip:hover img { filter: grayscale(0); opacity: 1; }
.refs-marquee .logo-chip-ads { flex: 0 0 360px; }
.refs-marquee .logo-chip-ads img { max-height: 116px; max-width: 330px; }
@keyframes refsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .refs-marquee-track { animation: none; } }
@media (max-width: 640px){
  .refs-marquee { overflow: visible; -webkit-mask-image: none; mask-image: none; margin-bottom: 40px; }
  .refs-marquee-track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .refs-marquee .refs-marquee-track > *:nth-child(n+10){ display: none; }
  .refs-marquee .logo-chip { flex: 0 0 calc((100% - 10px)/2); height: 76px; padding: 10px 14px; }
  .refs-marquee .logo-chip img { filter: none; opacity: 1; max-height: 46px; }
  .refs-marquee .logo-chip-ads { flex: 0 0 100%; height: 90px; }
  .refs-marquee .logo-chip-ads img { max-height: 70px; max-width: 80%; }
}
.partners-row { display: flex; gap: 40px; align-items: center; justify-content: space-between; flex-wrap: nowrap; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.partners-row > div:first-child { flex: 1 1 auto; }
.partners-logos { flex: 0 0 auto; }
.partners-logos .logo-chip { height: 100px; min-width: 170px; padding: 6px 10px; }
.partners-logos .logo-chip img { max-height: 86px; max-width: 100%; }
@media (max-width: 760px){ .partners-row { flex-wrap: wrap; } }
@media (max-width: 640px){
  .partners-logos { display: flex; flex-direction: row; gap: 12px; width: 100%; }
  .partners-logos .logo-chip { flex: 1; min-width: 0; }
}
.testi-grid .quote-card { height: 100%; }
.testi-viewport { overflow: hidden; }
.testi-track { display: flex; gap: 24px; transition: transform .4s ease; }
.testi-track .quote-card { flex: 0 0 calc((100% - 24px) / 2); }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; }
.testi-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.testi-head .testi-nav { margin-top: 0; }
.testi-dots { display: flex; gap: 7px; margin-left: 8px; }
.testi-nav .btn { color: var(--rouge); border-color: var(--rouge); font-size: 18px; line-height: 1; }
.testi-nav .btn:hover { background: var(--rouge); color: #fff; }
.testi-dots button { width: 11px; height: 11px; border-radius: 50%; border: 1.5px solid var(--rouge); background: transparent; cursor: pointer; padding: 0; transition: background .15s; }
.testi-dots button.on { background: var(--rouge); }
@media (max-width: 760px){ .testi-track .quote-card { flex-basis: 100%; } }
#pourquoi .why .icowrap { color: #fff; }
#pourquoi .why .w:nth-child(1) .icowrap, #pourquoi .why .w:nth-child(2) .icowrap { background: var(--rouge); border-color: var(--rouge); }
#pourquoi .why .w:nth-child(3) .icowrap, #pourquoi .why .w:nth-child(4) .icowrap { background: var(--noir); border-color: var(--noir); }

/* ============ POUR QUI ============ */
.audience-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.audience-card .ac-head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.audience-card .ac-ico { color: var(--rouge); }
.audience-card .ac-ico svg { width: 40px; height: 40px; }
.audience-card .ac-head h4 { margin: 0; font-size: 22px; }
.audience-card h4 { margin-bottom: 8px; }
.audience-card p { font-size: 14.5px; color: var(--ink-soft); }

/* À PROPOS */
@media (max-width: 640px){
  .about-grid .about-body p[style*="color:var(--rouge)"] { margin-bottom: 10px !important; font-size: 18px !important; }
}
@media (max-width: 640px){ #pourqui .ph { height: 240px !important; } #pourqui .photo-caption { font-size: 11px; padding: 5px 12px; max-width: 92%; left: 8px; bottom: 8px; line-height: 1.3; } }
.about-quote { margin: 4px 0 22px; padding: 18px 0 18px 22px; border-left: 4px solid var(--rouge); font-size: 18px; font-weight: 500; line-height: 1.4; color: var(--ink); letter-spacing: -0.01em; }
.about-quote cite { display: block; margin-top: 12px; font-size: 13.5px; font-weight: 700; font-style: normal; color: var(--rouge); }
.photo-caption { position: absolute; bottom: 14px; left: 14px; background: var(--noir); color: #fff; font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em; padding: 6px 18px; border-radius: 100px; max-width: 80%; }
.team-gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 40px; }
.team-gallery img { width: 100%; object-fit: cover; border-radius: var(--radius-sm); display: block; }
.team-gallery img:nth-child(-n+3) { grid-column: span 2; height: 200px; }
.team-gallery img:nth-child(n+4) { grid-column: span 3; height: 230px; }
@media (max-width: 900px){ .team-gallery { grid-template-columns: repeat(2, 1fr); } .team-gallery img:nth-child(-n+3), .team-gallery img:nth-child(n+4) { grid-column: span 1; height: 180px; } }
@media (max-width: 520px){ .team-gallery { grid-template-columns: 1fr; } }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.about-grid > div:first-child .ph { aspect-ratio: auto !important; }
.about-grid > div:first-child .ph img { object-fit: contain !important; }
.about-badge { display: none; }
@media (max-width: 900px){
  .about-grid { display: block; }
  .about-grid > div:first-child { display: none; }
  .about-badge { display: block; float: left; width: 110px; height: 110px; border-radius: 50%; object-fit: cover; object-position: center top; margin: 4px 18px 8px 0; }
  .about-grid .about-body h2 { margin-top: 0 !important; }
}
.about-grid .about-body p { font-size: 16px; color: var(--ink-soft); margin-bottom: 18px; max-width: 64ch; }
.about-grid .about-body p:first-of-type { color: var(--ink); font-size: 17px; }
.sign { display: flex; gap: 24px; align-items: center; margin-top: 8px; flex-wrap: wrap; justify-content: flex-end; }
.sign a { font-size: 13.5px; font-weight: 600; color: var(--ink); display: inline-flex; align-items: flex-end; gap: 7px; line-height: 1; }
.sign a svg { fill: var(--rouge); }

/* ============ SOUVERAINETÉ ============ */
.sov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 820px){ .sov-grid { grid-template-columns: 1fr; } }
.badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; grid-auto-rows: 1fr; }
@media (max-width: 520px){ .badges { grid-template-columns: 1fr; } }
.badge-line {
  display: flex; align-items: center; gap: 18px; padding: 24px 26px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.badge-line .flag { width: 72px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 24px; line-height: 1; }
.badge-line .flag-svg { width: 60px; height: 40px; }
.badge-line .hds-logo { height: 56px; width: auto; display: block; }
.badge-line .rgpd-logo { height: 56px; width: auto; display: block; border-radius: 4px; }
.badge-line .bl-txt { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.badge-line.fr { border-left: 3px solid var(--rouge); }
.badge-line.hds { border-left: 3px solid var(--rouge); }
.badge-line.rgpd { border-left: 3px solid var(--rouge); }
.badge-line.eu { border-left: 3px solid var(--rouge); }

/* ============ CYBERDIAG ============ */
.diag { }
.diag-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 8px; border-top: 2px solid var(--noir); }
.diag-steps .ds { padding: 32px 28px 0; border-right: 1px solid var(--line); position: relative; }
.diag-steps .ds:last-child { border-right: 0; }
.diag-steps .ds::before { content: ""; position: absolute; top: -9px; left: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--rouge); }
.diag-steps .ds .ds-n { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rouge); }
.diag-steps .ds h3 { margin: 12px 0 8px; }
.diag-steps .ds p { font-size: 15px; color: var(--ink-soft); }
@media (max-width: 980px) and (min-width: 761px){
  .diag-steps { grid-template-columns: 1fr 1fr; }
  .diag-steps .ds:nth-child(2){ border-right: 0; }
}
@media (max-width: 760px){
  .diag-steps { grid-template-columns: 1fr; border-top: 0; }
  .diag-steps .ds { border-right: 0; border-top: 0; padding: 0 0 26px 28px; position: relative; }
  .diag-steps .ds:last-child { padding-bottom: 0; }
  .diag-steps .ds::before { content: ""; position: absolute; top: 4px; left: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--rouge); margin: 0; display: block; z-index: 1; }
  .diag-steps .ds::after { content: ""; position: absolute; top: 4px; left: 6px; width: 2px; height: 100%; background: var(--line); }
  .diag-steps .ds:last-child::after { display: none; }
}
.diag-cta { margin-top: 44px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.diag-cta-sub { font-size: 15px; font-weight: 600; color: var(--ink-faint); letter-spacing: 0.02em; }
.diag-cta-links { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: center; }
.diag-cta-links a { font-size: 14px; font-weight: 600; color: var(--rouge); text-decoration: underline; text-underline-offset: 3px; }
.diag-cta-sep { color: var(--ink-faint); font-size: 14px; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 760px){ .contact-grid { grid-template-columns: 1fr; } .contact-col.primary { order: -1; } }
.contact-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; }
.contact-col.primary { border: 3px solid var(--rouge); }
.contact-col h3 { margin-bottom: 8px; }
.cyberdiag-head { display: inline-block; background: var(--rouge); color: #fff; padding: 8px 18px; border-radius: 100px; font-size: 18px; margin-bottom: 14px; animation: cyberblink 1.4s ease-in-out infinite; }
@media (prefers-reduced-motion: no-preference){
  @keyframes cyberblink { 0%,100%{ opacity:1; box-shadow:0 0 0 0 rgba(225,0,15,0.45); } 50%{ opacity:0.78; box-shadow:0 0 0 7px rgba(225,0,15,0); } }
}
.contact-col .col-sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 24px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; padding: 13px 15px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: #fff; color: var(--ink); width: 100%; transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--noir); }
.field textarea { min-height: 96px; resize: vertical; }
.form-feedback { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; margin-bottom: 18px; }
.form-feedback.ok { background: #e8f5ee; color: #1f7a44; border: 1px solid #b7dcc6; }
.form-feedback.ko { background: #fdeaea; color: var(--rouge); border: 1px solid #f3c2c2; }
.captcha-field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-row .field { margin-bottom: 16px; }
.check-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; margin-top: 2px; }
@media (max-width: 520px){ .check-group { grid-template-columns: 1fr; } }
.check { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink); cursor: pointer; padding: 4px 0; line-height: 1.3; }
.check input { appearance: none; -webkit-appearance: none; width: 18px; height: 18px; border: 1.5px solid var(--line); border-radius: 5px; background: #fff; flex-shrink: 0; position: relative; cursor: pointer; transition: border-color .15s, background .15s; }on: border-color .12s, background .12s; }
.check input:hover { border-color: var(--noir-50); }
.check input:checked { background: var(--rouge); border-color: var(--rouge); }
.check input:checked::after { content: ""; position: absolute; left: 50%; top: 46%; width: 5px; height: 10px; border: solid #fff; border-width: 0 2.5px 2.5px 0; transform: translate(-50%, -50%) rotate(45deg); }
.check-vip span { color: var(--ink); font-weight: 400; }
.check-vip input { border-color: var(--ocre); }
.check-vip input:checked { background: var(--ocre); border-color: var(--ocre); }
.check-urg span { color: var(--rouge); font-weight: 700; }
.check-urg input { border-color: var(--rouge); }
.check-urg input:checked { background: var(--rouge); border-color: var(--rouge); }
.urg-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(29,30,28,0.55); padding: 24px; }
.urg-modal.show { display: flex; }
.urg-modal-box { position: relative; background: #fff; border: 3px solid var(--rouge); border-radius: var(--radius); max-width: 440px; width: 100%; padding: 40px 36px 32px; text-align: center; box-shadow: 0 30px 80px -30px rgba(0,0,0,0.5); }
.urg-modal-close { position: absolute; top: 12px; right: 14px; background: none; border: 0; font-size: 26px; line-height: 1; color: var(--ink-faint); cursor: pointer; }
.urg-modal-close:hover { color: var(--ink); }
.urg-modal-ico { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--rouge); display: flex; align-items: center; justify-content: center; }
.urg-modal-ico svg { width: 30px; height: 30px; }
.urg-modal-box h3 { margin-bottom: 10px; }
.urg-modal-box p { font-size: 15px; color: var(--ink-soft); }
.urg-modal-num { display: block; font-size: clamp(28px, 4vw, 38px); font-weight: 800; letter-spacing: -0.03em; color: var(--rouge); margin: 14px 0 6px; }
.urg-modal-meta { font-size: 13px; }
.urg-modal-box .btn { margin-top: 22px; }
.sec-cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.sec-cta-row .chip-cta {
  font-size: 13px; font-weight: 600; padding: 9px 15px; border-radius: 100px; border: 1px solid var(--line);
  display: inline-flex; align-items: center; gap: 7px; transition: border-color .15s, color .15s;
}
.sec-cta-row .chip-cta:hover { border-color: var(--noir); }
.sec-cta-row .chip-cta.urg { border-color: var(--rouge); color: var(--rouge); }
.diag-visit { text-align: center; padding: 22px; border: 1px dashed var(--line); border-radius: var(--radius-sm); background: var(--paper-alt); margin: 18px 0 22px; }
.diag-visit .dv-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 10px; }
.diag-visit .dv-cal { font-size: 13px; color: var(--ink-soft); word-break: break-all; }
.newsletter { margin-top: 20px; display: flex; gap: 10px; }
.newsletter input { flex: 1; }

/* ============ URGENCE CYBER (clair, rouge, pas anxiogène) ============ */
.urgence-box {
  border: 1.5px solid var(--rouge); border-radius: var(--radius); background: #fff; overflow: hidden;
}
.urgence-top { background: var(--rouge); color: #fff; padding: 14px 0 14px 36px; display: flex; align-items: center; gap: 20px; flex-wrap: nowrap; }
.urgence-top .u-ico { width: 44px; height: 44px; flex-shrink: 0; }
.urgence-top h2 { color: #fff; font-size: clamp(20px, 2.4vw, 30px); margin: 0; flex: 1; }
.urgence-illus { margin-left: auto; margin-right: 0; flex-shrink: 0; }
.urgence-illus svg { width: 210px; height: 88px; display: block; }
@media (max-width: 640px){ .urgence-illus { display: none; } }
.urgence-body { padding: 36px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
@media (max-width: 820px){ .urgence-body { grid-template-columns: 1fr; gap: 28px; } }
.reflexes { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.reflexes li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; font-size: 15.5px; align-items: center; }
.reflexes li .rx { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--rouge); color: var(--rouge); font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; line-height: 1; }
.reflexes li strong.shout { background: rgba(225,0,15,.1); color: var(--rouge); padding: 1px 6px; border-radius: 4px; font-weight: 800; }
.hotline { background: var(--paper-alt); border-radius: var(--radius-sm); padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.hotline .hl-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.hotline .hl-num { font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; color: var(--rouge); }
.hotline .hl-meta { font-size: 13.5px; color: var(--ink-soft); }
.hotline .ext { font-size: 13px; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 14px; text-align: center; }

/* ============ FAQ ============ */
.faq-list { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; text-align: left; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: clamp(16px, 1.6vw, 19px); font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.faq-q .ico { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: var(--rouge); transition: transform .2s; }
.faq-q .ico::before { width: 100%; height: 2px; top: 10px; left: 0; }
.faq-q .ico::after { height: 100%; width: 2px; left: 10px; top: 0; }
.faq-item.open .faq-q .ico::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a .faq-a-inner { padding: 0 0 26px; font-size: 16px; color: var(--ink-soft); max-width: 70ch; }
.faq-item.open .faq-a { max-height: 320px; }

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px){ .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .blog-grid { grid-template-columns: 1fr; } }
.blog-card { display: flex; flex-direction: column; gap: 14px; }
.blog-card .thumb { aspect-ratio: 8/3; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card .thumb svg { width: 52px; height: 52px; opacity: 0.95; }
.mark-underline { position: relative; white-space: nowrap; }
.mark-underline::after { content: ""; position: absolute; left: -4%; right: -4%; bottom: -0.16em; height: 0.42em; background: no-repeat center/100% 100% url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 24' preserveAspectRatio='none'><path d='M4 15 C 60 9, 130 7, 296 11 C 210 13, 120 16, 8 19 C 90 17, 200 15, 290 17' fill='none' stroke='%23E1000F' stroke-width='7' stroke-linecap='round'/></svg>"); pointer-events: none; }
.th-infra { background: linear-gradient(135deg, #000091, #2a2ab2); color: #fff; }
.th-cyber { background: linear-gradient(135deg, #E1000F, #ff5a64); color: #fff; }
.th-gouv { background: linear-gradient(135deg, #1D1E1C, #45463f); color: #fff; }
.th-ia { background: linear-gradient(135deg, #B8902B, #e3bd5c); color: #fff; }
.blog-card .blog-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 7px; width: fit-content; }
.blog-card .blog-tag::before { content: ""; width: 8px; height: 8px; border-radius: 2px; }
.blog-tag.t-infra { color: var(--bleu); } .blog-tag.t-infra::before { background: var(--bleu); }
.blog-tag.t-cyber { color: var(--rouge); } .blog-tag.t-cyber::before { background: var(--rouge); }
.blog-tag.t-gouv { color: var(--noir); } .blog-tag.t-gouv::before { background: var(--noir); }
.blog-tag.t-ia { color: #9a7b00; } .blog-tag.t-ia::before { background: var(--or); }
.blog-card h4 { font-size: 17px; line-height: 1.25; }
.blog-card .read { font-size: 13px; font-weight: 600; color: var(--rouge); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }

/* ============ FOOTER (clair) ============ */
.footer { position: relative; background: var(--paper-alt); border-top: 0; padding: 18px 0 32px; }
.footer::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: calc(100% - 64px); max-width: var(--maxw); height: 4px; background: linear-gradient(90deg, var(--bleu) 0 33.3%, #ffffff 33.3% 66.6%, var(--rouge) 66.6% 100%); }
.footer-intro { max-width: 100%; margin-bottom: 48px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: start; }
.footer-qr { display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; }
.footer-qr img { width: 96px; height: 96px; border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 6px; display: block; }
.footer-qr span { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); text-align: center; line-height: 1.3; }
.footer-intro .fi-right { padding-top: 4px; text-align: right; }
.footer-intro .fi-left { display: flex; flex-direction: column; }
.footer-intro .fi-desc { font-size: 15px; color: var(--ink-soft); }
@media (max-width: 760px){ .footer-intro { grid-template-columns: 1fr; gap: 18px; } .footer-qr { flex-direction: row; justify-self: start; } }
.footer-intro .brand-logo { font-size: 26px; margin-bottom: 14px; }
.footer-slogan { font-style: italic; font-size: 22px; font-weight: 700; color: var(--rouge); margin-bottom: 14px !important; letter-spacing: -0.01em; }
.footer-intro p { font-size: 15px; color: var(--ink-soft); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 56px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; padding-left: 0; }
.footer ul li { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; position: relative; padding-left: 16px; }
.footer ul li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 2px; background: var(--rouge); }
.footer .ident { line-height: 1.85; }
.ident-grid { display: flex; flex-direction: column; gap: 7px; line-height: 1.4; }
.ident-grid .id-row { display: grid; grid-template-columns: 70px 1fr; gap: 12px; align-items: baseline; }
.ident-grid .id-k { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.ident-grid .id-v { font-size: 13.5px; color: var(--ink-soft); }
.footer a:hover { color: var(--rouge); }
.footer-bottom { padding-top: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 12px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-faint); }
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============ SIDENAV (puces de sections) ============ */
.sidenav { position: fixed; right: 14px; top: 50%; transform: translateY(-50%) translateX(0); z-index: 45; display: flex; flex-direction: column; gap: 7px; align-items: flex-end; opacity: 1; pointer-events: auto; }
.sidenav.show { opacity: 1; pointer-events: auto; transform: translateY(-50%) translateX(0); transition: opacity .2s; }
.sidenav.show:hover { opacity: 1; }
.sidenav .sn-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-faint); opacity: 0; transition: opacity .25s, background .2s, transform .2s, box-shadow .2s; flex-shrink: 0; }
.sidenav:hover .sn-dot { opacity: 0.45; }
.sidenav a.active .sn-dot { opacity: 0.9; }r-events: none; transition: opacity .3s, transform .3s; }
.sidenav.show { opacity: 0.5; pointer-events: auto; transform: translateY(-50%) translateX(0); transition: opacity .2s; }
.sidenav.show:hover { opacity: 1; }
.sidenav::before { content: ""; position: absolute; right: -6px; top: -9px; width: 20px; height: calc(100% + 18px); background: rgba(225,0,15,0.07); border-radius: 100px; z-index: -1; }
.sidenav a { display: inline-flex; flex-direction: row; align-items: center; gap: 10px; text-decoration: none; }
.sidenav .sn-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-faint); opacity: 0.4; transition: opacity .2s, background .2s, transform .2s, box-shadow .2s; flex-shrink: 0; }
.sidenav a:hover .sn-dot { opacity: 0.85; background: var(--noir); }
.sidenav a.active .sn-dot { opacity: 1; background: var(--rouge); transform: scale(1.6); box-shadow: 0 0 0 3px rgba(225,0,15,0.2); }
.sidenav .sn-label { font-size: 12px; font-weight: 600; color: var(--ink-soft); opacity: 0; transform: translateX(-8px); transition: opacity .18s, transform .18s, font-size .15s, padding .15s; white-space: nowrap; background: #fff; padding: 4px 11px; border-radius: 100px; border: 1px solid var(--line); box-shadow: 0 8px 22px -10px rgba(0,0,0,.25); pointer-events: none; }
.sidenav:hover .sn-label { opacity: 0.55; transform: translateX(0); font-size: 12px; padding: 4px 11px; }
.sidenav a:hover .sn-label { opacity: 1; transform: translateX(0); }
.sidenav:hover a:hover .sn-label { font-size: 12.5px; padding: 5px 13px; color: var(--rouge); border-color: var(--rouge); box-shadow: 0 10px 26px -10px rgba(225,0,15,.35); }
.sidenav a.active .sn-label { color: var(--rouge); border-color: var(--rouge); }
.sidenav a[data-sec="top"].active .sn-label { opacity: 0; }
.sidenav:not(:hover) .sn-label { opacity: 0 !important; }
.sidenav:hover a[data-sec="top"] .sn-label, .sidenav a[data-sec="top"]:hover .sn-label { opacity: 0.55; }

/* --- Rail visible dès le Hero : dots cachés + invitation au survol --- */
.sidenav.show { opacity: 1 !important; }
.sidenav .sn-dot { opacity: 0; }
.sidenav:hover .sn-dot { opacity: 0.5; }
.sidenav a.active .sn-dot { opacity: 0.9; background: var(--rouge); transform: scale(1.6); box-shadow: 0 0 0 3px rgba(225,0,15,0.2); }
.sidenav::after { content: ""; position: absolute; right: 1px; top: 50%; transform: translateY(-50%); width: 4px; height: 64px; border-radius: 100px; background: var(--ink-faint); opacity: 0.28; transition: opacity .25s, height .25s; pointer-events: none; }
.sidenav::after { content: none; }
.sidenav:hover::after { opacity: 0; }
.sidenav::before { opacity: 0; transition: opacity .25s; }
.sidenav:hover::before { opacity: 1; }
@media (prefers-reduced-motion: no-preference){
  .sidenav:not(:hover)::after { animation: railPulse 2.6s ease-in-out infinite; }
}
@keyframes railPulse { 0%,100%{ opacity: 0.22; } 50%{ opacity: 0.5; } }
@media (max-width: 980px){ .sidenav { display: none; } }
.sidenav-hint { position: absolute; top: -56px; right: -1px; display: flex; flex-direction: column; align-items: center; gap: 1px; font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rouge); pointer-events: none; transition: opacity .25s, color .25s; }
.sidenav.on-hero .sidenav-hint { color: var(--rouge); }
.sidenav-hint svg { width: 14px; height: 26px; }
.sidenav:hover .sidenav-hint, .sidenav.menu-engaged .sidenav-hint { opacity: 0; }
@media (prefers-reduced-motion: no-preference){
  .sidenav-hint svg { animation: hintBob 1.6s ease-in-out infinite; }
}
@keyframes hintBob { 0%,100%{ transform: translateY(0) scale(1); opacity: .5; } 50%{ transform: translateY(7px) scale(1.4); opacity: 1; } }
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 50px; height: 50px; border-radius: 50%; background: var(--rouge); color: #fff;
  border: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .15s; box-shadow: 0 10px 30px -10px rgba(0,0,0,.4);
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }
.to-top svg { width: 20px; height: 20px; }

/* ============ PLACEHOLDER ============ */
.ph {
  position: relative; background:
    repeating-linear-gradient(45deg, rgba(29,30,28,.045) 0 1px, transparent 1px 11px), var(--paper-alt);
  border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; overflow: hidden; color: var(--ink-soft);
}
.ph .ph-tag { font-size: 12px; font-weight: 600; background: #fff; border: 1px solid var(--line); padding: 5px 12px; border-radius: 100px; }
.ph .ph-meta { position: absolute; top: 12px; left: 14px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.av.ph { border-radius: 50%; background: var(--paper-alt); }
.av.av-m, .av.av-f { background-repeat: no-repeat; background-position: center bottom; background-size: 100% 100%; }
.av.av-m { background-color: #E6E9F2; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 46 46'%3E%3Ccircle cx='23' cy='17' r='8' fill='%23000091'/%3E%3Cpath d='M8 44c0-9 7-15 15-15s15 6 15 15z' fill='%23000091'/%3E%3C/svg%3E"); }
.av.av-f { background-color: #FBE4E6; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 46 46'%3E%3Cpath d='M23 7c-6 0-9 4-9 10 0 4 2 7 4 8-3 1-5 3-5 6h20c0-3-2-5-5-6 2-1 4-4 4-8 0-6-3-10-9-10z' fill='%23E1000F'/%3E%3Cpath d='M9 44c0-8 6-13 14-13s14 5 14 13z' fill='%23E1000F'/%3E%3C/svg%3E"); }

/* ============ TWEAKS PANEL ============ */
.tweaks { position: fixed; right: 22px; bottom: 22px; z-index: 100; width: 290px; background: #fff; border: 1px solid var(--noir); border-radius: var(--radius); padding: 16px 18px; box-shadow: 0 24px 60px -24px rgba(0,0,0,.3); font-size: 13px; display: none; }
.tweaks.active { display: block; }
.tweaks h5 { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; display: flex; justify-content: space-between; }
.tweaks h5 span { color: var(--rouge); }
.tw-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); }
.tw-row:first-of-type { border-top: 0; }
.tw-row label { font-size: 12px; font-weight: 600; }
.tw-row select, .tw-row input[type=range] { font-size: 12px; }
.tw-switch { width: 36px; height: 21px; background: var(--line); border-radius: 100px; position: relative; cursor: pointer; transition: background .15s; flex-shrink: 0; }
.tw-switch::after { content: ""; position: absolute; width: 15px; height: 15px; background: #fff; border-radius: 50%; top: 3px; left: 3px; transition: transform .15s; }
.tw-switch.on { background: var(--rouge); }
.tw-switch.on::after { transform: translateX(15px); }
