/* ================================================================
   E-VOLT — Design System v3  (Regulimm-inspired)
   Sobre · Aéré · Institutionnel · Conversion-first
   ================================================================ */

/* RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --navy:       #0A2540;
  --navy-dk:    #061829;
  --ink:        #0D1828;      /* button dark — presque noir */
  --blue:       #0052A3;
  --blue-md:    #0066CC;
  --blue-lt:    #EBF3FB;
  --green:      #1A7A52;
  --green-md:   #22A06B;
  --green-lt:   #EAF5EF;
  --white:      #FFFFFF;
  --warm:       #F7F7F5;      /* fond off-white Regulimm */
  --gray-50:    #F2F2F0;
  --gray-100:   #EBEBEA;
  --gray-200:   #E0E0DD;
  --gray-300:   #C8C8C5;
  --gray-500:   #6B7280;
  --gray-700:   #374151;

  /* Typo */
  --font:       'Barlow Condensed', 'Inter', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;

  /* Espacements */
  --section:    96px;
  --radius:     6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;

  /* Ombres */
  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,.09);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.12);

  --t: 160ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-700);
  background: var(--warm);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: 68px;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* TYPOGRAPHIE
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: .9rem; font-weight: 600; }
p  { color: var(--gray-500); line-height: 1.75; }
.lead { font-size: 1.1rem; color: var(--gray-700); }

/* LAYOUT
   ============================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.section        { padding: var(--section) 0; }
.section--white { background: var(--white); }
.section--gray  { background: var(--gray-50); }
.section--warm  { background: var(--warm); }
.section--navy  { background: var(--navy); }

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.tc   { text-align: center; }
.mt8  { margin-top: 8px; }
.mt16 { margin-top: 16px; }
.mt24 { margin-top: 24px; }
.mt32 { margin-top: 32px; }
.mt48 { margin-top: 48px; }
.mt64 { margin-top: 64px; }
.mb8  { margin-bottom: 8px; }
.mb16 { margin-bottom: 16px; }
.mb24 { margin-bottom: 24px; }

/* NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  transition: box-shadow var(--t);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* LOGO */
.nav-logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Barlow Condensed', 'Inter', system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo img {
  height: 28px;
  width: auto;
  display: block;
}

/* nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links > a,
.nav-dropdown > a {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color var(--t), background var(--t);
}
.nav-links > a:hover,
.nav-links > a.active,
.nav-dropdown:hover > a {
  color: var(--navy);
  background: var(--gray-50);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dropdown > a svg { width: 12px; height: 12px; opacity: .4; transition: transform var(--t); }
.nav-dropdown:hover > a svg { transform: rotate(180deg); opacity: .7; }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  padding-top: 8px;
  background: transparent;
  min-width: 240px;
  z-index: 200;
}
.nav-drop-menu::before {
  content: '';
  display: block;
  position: absolute;
  inset: 8px 0 0 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: -1;
}
.nav-drop-menu > * { position: relative; }
.nav-dropdown:hover .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block;
  color: var(--gray-700) !important;
  background: transparent !important;
  padding: 9px 14px !important;
  font-size: .84rem !important;
  border-radius: var(--radius) !important;
}
.nav-drop-menu a:hover { background: var(--gray-50) !important; color: var(--navy) !important; }
.nav-drop-divider { height: 1px; background: var(--gray-100); margin: 4px 10px; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn:focus-visible { outline: 2px solid var(--blue-md); outline-offset: 2px; }

/* Bouton principal — très sombre, style Regulimm */
.btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-primary:hover { background: #0A1E38; border-color: #0A1E38; }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-dk); border-color: var(--navy-dk); }

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover { background: #155f40; border-color: #155f40; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}
.btn-outline:hover { border-color: var(--navy); background: var(--gray-50); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

/* Style ghost pour fond clair */
.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-200);
}
.btn-ghost:hover { background: var(--gray-50); border-color: var(--gray-300); }

.btn-sm  { padding: 7px 14px; font-size: .8rem; }
.btn-lg  { padding: 14px 28px; font-size: 1rem; }
.btn-xl  { padding: 16px 32px; font-size: 1.05rem; }

.cta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* LABELS / BADGES
   ============================================================ */
.label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.label-blue  { background: var(--blue-lt);  color: var(--blue); }
.label-green { background: var(--green-lt); color: var(--green); }
.label-navy  { background: var(--navy);     color: var(--white); }
.label-gray  { background: var(--gray-100); color: var(--gray-700); }

/* SECTION EYEBROW (style Regulimm "01 — TITRE")
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.eyebrow-num {
  font-size: .65rem;
  font-weight: 700;
  opacity: .7;
}
.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: .4;
}

/* CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow var(--t), border-color var(--t);
}
.card:hover        { box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.card--raised      { box-shadow: var(--shadow-md); }
.card--navy        { background: var(--navy); border-color: rgba(255,255,255,.07); }
.card--navy h3,
.card--navy h4,
.card--navy h5     { color: var(--white); }
.card--navy p      { color: rgba(255,255,255,.55); }

/* IMAGE CARD style Regulimm */
.img-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gray-100);
}
.img-card img { width: 100%; height: 280px; object-fit: cover; display: block; }
.img-card-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

/* HERO HOMEPAGE
   ============================================================ */
/* Urgency bar */
.urgency-bar {
  background: #B71C1C;
  color: #fff;
  text-align: center;
  padding: 10px 32px;
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.5;
}
.urgency-bar strong { font-weight: 700; }
.urgency-bar a { color: #fff; font-weight: 700; text-decoration: underline; margin-left: 10px; white-space: nowrap; }
.urgency-dot {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: #FF8A80;
  margin-right: 8px; vertical-align: middle;
  animation: pulse 2s infinite;
}

.hero {
  background:
    linear-gradient(135deg, rgba(10,37,64,0.87) 0%, rgba(0,82,163,0.62) 100%),
    url('hero-bg.jpg') center/cover no-repeat;
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--blue-md) 50%, var(--green-md) 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}
.hero-eyebrow span { color: var(--green); }
.hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero h1 em { color: var(--green); font-style: normal; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.hero-trust-item {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust-item span { color: var(--white); font-weight: 700; }

/* Panel hero droit */
.hero-panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.hero-panel-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.hero-panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .875rem;
}
.hero-panel-row:last-of-type { border-bottom: none; }
.hero-panel-row .key { color: var(--gray-500); }
.hero-panel-row .val { color: var(--navy); font-weight: 700; }
.hero-panel-row .val.green { color: var(--green); }
.hero-panel-note {
  font-size: .7rem;
  color: var(--gray-500);
  margin-top: 16px;
  line-height: 1.5;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  font-style: italic;
}

/* PAGE HERO (pages intérieures)
   ============================================================ */
.page-hero {
  background: var(--warm);
  border-bottom: 1px solid var(--gray-200);
  padding: 60px 0 68px;
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  max-width: 720px;
  margin-top: 0;
}
.page-hero .lead {
  max-width: 580px;
  margin-top: 16px;
  color: var(--gray-500);
  font-size: 1.05rem;
}
.page-hero .cta-row { margin-top: 32px; }

/* BANDEAU CONFIANCE
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-700);
}
.trust-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-md);
  flex-shrink: 0;
}

/* BANDE SOMBRE — style Regulimm (01 — LABEL / grand chiffre / description)
   ============================================================ */
.band-dark {
  background: var(--ink);
  padding: 88px 0;
}
.band-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.band-dark-col {
  padding: 0 48px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.band-dark-col:first-child { padding-left: 0; }
.band-dark-col:last-child  { border-right: none; }
.band-dark-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 24px;
}
.band-dark-eyebrow::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: rgba(255,255,255,.2);
}
.band-dark-val {
  font-size: clamp(3rem, 4vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 20px;
  color: var(--white);
}
.band-dark-val.accent-green { color: var(--green-md); }
.band-dark-val.accent-risk  { color: #E57373; }
.band-dark-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}

/* STATS
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat-label {
  font-size: .8rem;
  color: var(--gray-500);
  margin-top: 6px;
}

/* SECTION INTRO
   ============================================================ */
.section-intro {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-intro .eyebrow { margin-bottom: 12px; }
.section-intro h2      { margin-bottom: 16px; }

/* FEATURE LIST
   ============================================================ */
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.icon-box {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box--blue  { background: var(--blue-lt); }
.icon-box--green { background: var(--green-lt); }
.icon-box--navy  { background: rgba(10,37,64,.07); }
.icon-box svg    { width: 20px; height: 20px; }
.feature-item h4 { margin-bottom: 4px; font-size: .95rem; }
.feature-item p  { font-size: .875rem; margin: 0; }

/* BENEFITS
   ============================================================ */
.benefit-list { display: flex; flex-direction: column; gap: 10px; }
.benefit-item { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--gray-700); line-height: 1.55; }
.benefit-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-lt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  font-size: 10px; color: var(--green); font-weight: 900;
}

/* ÉTAPES / PROCESSUS
   ============================================================ */
.steps { display: flex; flex-direction: column; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  left: 21px; top: 44px; bottom: 44px;
  width: 2px; background: var(--gray-200);
}
.step { display: flex; gap: 20px; align-items: flex-start; padding: 18px 0; position: relative; z-index: 1; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; color: var(--gray-500);
  flex-shrink: 0;
}
.step.active .step-num { background: var(--navy); color: var(--white); border-color: var(--navy); }
.step-body h4 { margin-bottom: 3px; font-size: .95rem; }
.step-body p  { font-size: .875rem; margin: 0; }

/* CERTIFICATIONS
   ============================================================ */
.certif-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.certif-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: .82rem; font-weight: 600; color: var(--navy);
  background: var(--white);
}
.certif-icon {
  width: 26px; height: 26px;
  background: var(--blue-lt);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.certif-icon svg { width: 14px; height: 14px; }

/* TABLEAU COMPARATIF
   ============================================================ */
.table-wrap { overflow-x: auto; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); }
table.cmp { width: 100%; border-collapse: collapse; font-size: .875rem; }
table.cmp th {
  padding: 13px 20px;
  text-align: left;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--gray-50);
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
}
table.cmp th.hl-head { background: var(--navy); color: var(--white); }
table.cmp td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  vertical-align: middle;
}
table.cmp td.hl { background: rgba(0,102,204,.03); font-weight: 600; color: var(--navy); }
table.cmp tr:last-child td { border-bottom: none; }
table.cmp .ok { color: var(--green); font-weight: 600; }
table.cmp .no { color: var(--gray-300); }

/* CAS CLIENTS
   ============================================================ */
.case-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--t);
}
.case-card:hover { box-shadow: var(--shadow-md); }
.case-header {
  background: var(--navy);
  padding: 22px 26px;
}
.case-sector {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 4px;
}
.case-name { font-size: .95rem; font-weight: 700; color: var(--white); }
.case-body { padding: 22px 26px; }
.case-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--gray-100);
  font-size: .82rem;
}
.case-row:last-child { border-bottom: none; }
.case-row .key { color: var(--gray-500); }
.case-row .val { font-weight: 600; color: var(--navy); }
.case-result {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.case-result-label { font-size: .82rem; color: var(--gray-500); font-weight: 500; }
.case-result-val { font-size: 1.2rem; font-weight: 800; color: var(--green); }
.case-note { font-size: .72rem; color: var(--gray-500); margin-top: 8px; line-height: 1.5; }

/* FAQ / ACCORDÉON
   ============================================================ */
.faq-list { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; cursor: pointer;
  font-weight: 600; color: var(--navy); font-size: .95rem;
  background: var(--white);
  transition: background var(--t);
}
.faq-q:hover { background: var(--gray-50); }
.faq-toggle {
  width: 24px; height: 24px;
  border-radius: 50%; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .75rem; transition: all var(--t);
  color: var(--gray-700);
}
.faq-item.open .faq-toggle { background: var(--navy); color: var(--white); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: .875rem; color: var(--gray-500); line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* OFFRES
   ============================================================ */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.offer-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--t);
}
.offer-card:hover { box-shadow: var(--shadow-md); }
.offer-card.featured { border-color: transparent; box-shadow: var(--shadow-lg); }
.offer-head {
  padding: 28px 32px;
  border-bottom: 1px solid var(--gray-100);
}
.offer-head.navy-bg { background: var(--ink); border-color: transparent; }
.offer-name {
  font-size: .7rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.offer-name.green { color: var(--green-md); }
.offer-head.navy-bg .offer-name { color: rgba(255,255,255,.4); }
.offer-head.navy-bg h3 { color: var(--white); }
.offer-price {
  font-size: 2.4rem; font-weight: 800;
  color: var(--navy); line-height: 1;
  letter-spacing: -.02em; margin: 10px 0 4px;
}
.offer-head.navy-bg .offer-price { color: var(--white); }
.offer-price-unit { font-size: .82rem; color: var(--gray-500); }
.offer-head.navy-bg .offer-price-unit { color: rgba(255,255,255,.4); }
.offer-desc { font-size: .875rem; color: var(--gray-500); margin-top: 14px; line-height: 1.65; }
.offer-head.navy-bg .offer-desc { color: rgba(255,255,255,.5); }
.offer-body { padding: 24px 32px; }
.offer-recommended {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px;
}

/* SUPERVISION CARDS (split view)
   ============================================================ */
.sup-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sup-panel { background: var(--white); padding: 40px; }
.sup-panel.dark { background: var(--navy); }
.sup-panel.dark h3,
.sup-panel.dark h4 { color: var(--white); }
.sup-panel.dark p { color: rgba(255,255,255,.55); }
.sup-panel.dark .benefit-item { color: rgba(255,255,255,.75); }
.sup-panel.dark .benefit-check { background: rgba(34,160,107,.15); }

/* FORMULAIRE
   ============================================================ */
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--gray-700); margin-bottom: 6px;
}
input, select, textarea {
  width: 100%; padding: 10px 13px;
  font-family: var(--font-body); font-size: .875rem;
  color: var(--navy); background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); outline: none;
  transition: border-color var(--t);
}
input:focus, select:focus, textarea:focus { border-color: var(--navy); }
input::placeholder, textarea::placeholder { color: var(--gray-300); }
textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .75rem; color: var(--gray-500); margin-top: 8px; display: flex; align-items: center; gap: 6px; }

/* MODAL
   ============================================================ */
.overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(6,24,41,.6); backdrop-filter: blur(4px);
  z-index: 500; align-items: center; justify-content: center; padding: 24px;
}
.overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; width: 100%; max-width: 500px;
  max-height: 90vh; overflow-y: auto;
  position: relative; box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; border: none;
  background: var(--gray-100); border-radius: 50%;
  cursor: pointer; font-size: .8rem; color: var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
}
.modal-close:hover { background: var(--gray-200); }
.modal h3 { margin-bottom: 8px; }
.modal > p { font-size: .875rem; margin-bottom: 24px; }

/* CTA SECTION
   ============================================================ */
.cta-section {
  background:
    linear-gradient(135deg, rgba(10,37,64,0.93) 0%, rgba(0,82,163,0.82) 100%),
    url('cta-bg.jpg') center/cover no-repeat;
  border-top: none;
  border-bottom: none;
  padding: 96px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.72); max-width: 540px; margin: 0 auto 32px; }
.cta-section .btn-outline { border-color: rgba(255,255,255,.4); color: var(--white); }
.cta-section .btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.cta-reassurance { display:flex; gap:28px; justify-content:center; margin-top:24px; flex-wrap:wrap; }
.cta-reassurance-item { display:flex; align-items:center; gap:7px; font-size:.8rem; color:rgba(255,255,255,.6); }
.cta-section .cta-row { justify-content: center; }

.cta-section-navy {
  background: var(--ink);
  padding: 80px 0;
  text-align: center;
}
.cta-section-navy h2 { color: var(--white); margin-bottom: 16px; }
.cta-section-navy p  { color: rgba(255,255,255,.5); max-width: 520px; margin: 0 auto 32px; }
.cta-section-navy .cta-row { justify-content: center; }

/* FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 24px;
}
.footer-brand .nav-logo { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,.4); font-size: .875rem; margin-top: 14px; line-height: 1.7; max-width: 260px; }
.footer h5 {
  color: rgba(255,255,255,.3);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.footer ul { display: flex; flex-direction: column; gap: 9px; }
.footer ul a { color: rgba(255,255,255,.5); font-size: .875rem; transition: color var(--t); }
.footer ul a:hover { color: var(--white); }
.footer-certif {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  font-size: .7rem; font-weight: 600;
  color: rgba(255,255,255,.4);
  margin-top: 18px; width: fit-content;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.25); }
.footer-bottom a:hover { color: rgba(255,255,255,.5); }
.footer-bottom-links { display: flex; gap: 20px; }

/* SIMULATEUR D'ESTIMATION
   ============================================================ */
.sim-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin: 0 auto;
}

/* Onglets mode */
.sim-tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
}
.sim-tab {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: var(--gray-50);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: all var(--t);
  border-right: 1px solid var(--gray-200);
}
.sim-tab:last-child { border-right: none; }
.sim-tab.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: inset 0 -2px 0 var(--navy);
}

/* Corps */
.sim-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Zone inputs */
.sim-inputs {
  padding: 32px;
  border-right: 1px solid var(--gray-200);
}
.sim-input-group {
  margin-bottom: 24px;
}
.sim-input-group:last-child { margin-bottom: 0; }
.sim-input-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.sim-input-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700);
}
.sim-input-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  min-width: 60px;
  text-align: right;
}

/* Slider */
.sim-range {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--gray-200);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  transition: transform var(--t);
}
.sim-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.sim-range::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.sim-range-marks {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: .7rem;
  color: var(--gray-300);
}

/* Selector type borne */
.sim-select-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sim-select-btn {
  flex: 1;
  min-width: 0;
  padding: 8px 4px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-500);
  text-align: center;
  transition: all var(--t);
}
.sim-select-btn.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* Zone résultats */
.sim-results {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--warm);
}
.sim-result-main {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.sim-result-main-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 8px;
}
.sim-result-main-val {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.03em;
}
.sim-result-main-val.positive { color: var(--green-md); }

.sim-result-rows { display: flex; flex-direction: column; gap: 12px; }
.sim-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .85rem;
}
.sim-result-row-label { color: var(--gray-500); font-weight: 500; }
.sim-result-row-val { font-weight: 700; color: var(--navy); }
.sim-result-row-val.green { color: var(--green); }
.sim-result-row-val.muted { color: var(--gray-500); }

.sim-disclaimer {
  padding: 14px 32px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  font-size: .72rem;
  color: var(--gray-500);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.sim-disclaimer svg { flex-shrink: 0; margin-top: 2px; }

/* Responsive simulateur */
@media (max-width: 768px) {
  .sim-body { grid-template-columns: 1fr; }
  .sim-inputs { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .sim-result-main-val { font-size: 2.2rem; }
}

/* SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0ms; }
.d2 { transition-delay: 80ms; }
.d3 { transition-delay: 160ms; }
.d4 { transition-delay: 240ms; }

/* RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .hero h1 { font-size: 2.6rem; }
  .grid4 { grid-template-columns: repeat(2,1fr); }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .offer-grid { grid-template-columns: 1fr; }
  .band-dark-grid { grid-template-columns: 1fr; gap: 48px; }
  .band-dark-col { padding: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: 40px; }
  .band-dark-col:last-child { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 768px) {
  :root { --section: 60px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .grid2 { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: 1fr; }
  .grid4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sup-split { grid-template-columns: 1fr; }

  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px;
    gap: 2px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links > a,
  .nav-dropdown > a { color: var(--gray-700); padding: 10px 14px; width: 100%; }
  .nav-drop-menu {
    position: static; box-shadow: none;
    background: var(--gray-50); border: none;
    padding: 4px 0 4px 16px;
    display: block !important;
  }
  .nav-drop-menu a { color: var(--gray-700) !important; padding: 7px 12px !important; }
  .nav-toggle { display: flex; }
  .nav-actions .btn { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .trust-bar-inner { gap: 16px; }
  .cta-row { flex-direction: column; align-items: flex-start; }
  .cta-section .cta-row { align-items: center; }
  .modal { padding: 28px 20px; }
  .certif-row { gap: 10px; }
  .band-dark { padding: 56px 0; }
  .band-dark-val { font-size: 2.8rem; }
}

/* ================================================================
   RGPD — Bannière & Panneau cookies
   ================================================================ */

/* --- Bannière --- */
#evolt-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: 0;
  transform: translateY(100%);
  transition: transform 340ms cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
}
#evolt-cookie-banner.ecb-visible { transform: translateY(0); }

.ecb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.ecb-text { flex: 1 1 400px; }
.ecb-text strong { font-size: .95rem; font-weight: 700; display: block; margin-bottom: 4px; }
.ecb-text p { font-size: .8rem; color: rgba(255,255,255,.78); margin: 0; line-height: 1.5; }
.ecb-text a { color: var(--green-md); text-decoration: underline; }
.ecb-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

/* Boutons bannière */
.ecb-btn {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: opacity var(--t), background var(--t);
}
.ecb-btn--primary { background: var(--green); color: var(--white); }
.ecb-btn--primary:hover { background: var(--green-md); }
.ecb-btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.ecb-btn--outline:hover { border-color: var(--white); }
.ecb-btn--ghost { background: transparent; color: rgba(255,255,255,.7); }
.ecb-btn--ghost:hover { color: var(--white); }

/* --- Panneau de préférences --- */
#evolt-cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}
#evolt-cookie-panel.ecp-visible {
  opacity: 1;
  pointer-events: all;
}

.ecp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,37,64,.55);
  backdrop-filter: blur(3px);
}
.ecp-modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 92%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  padding: 0;
}
.ecp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--gray-100);
}
.ecp-head h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0; }
.ecp-close {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--gray-500);
  padding: 4px 8px;
  border-radius: var(--radius);
  transition: color var(--t), background var(--t);
}
.ecp-close:hover { background: var(--gray-100); color: var(--navy); }

.ecp-body { padding: 20px 24px; }
.ecp-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ecp-category-info { flex: 1; }
.ecp-category-info strong { display: block; font-size: .9rem; color: var(--navy); margin-bottom: 4px; }
.ecp-category-info p { font-size: .78rem; color: var(--gray-500); margin: 0; line-height: 1.5; }

.ecp-divider { border: none; border-top: 1px solid var(--gray-100); margin: 16px 0; }

/* Toggle verrouillé */
.ecp-toggle--locked { text-align: right; flex-shrink: 0; }
.ecp-toggle-label { font-size: .75rem; font-weight: 600; color: var(--gray-500); }

/* Toggle switch */
.ecp-toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.ecp-toggle-switch input { opacity: 0; width: 0; height: 0; }
.ecp-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-300);
  border-radius: 24px;
  cursor: pointer;
  transition: background .2s;
}
.ecp-slider::before {
  content: '';
  position: absolute;
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.ecp-toggle-switch input:checked + .ecp-slider { background: var(--green); }
.ecp-toggle-switch input:checked + .ecp-slider::before { transform: translateX(20px); }

.ecp-foot {
  padding: 16px 24px;
  border-top: 1px solid var(--gray-100);
}
.ecp-foot .ecb-btn { width: 100%; text-align: center; justify-content: center; font-size: .875rem; padding: 11px; }

.ecp-legal {
  padding: 12px 24px 16px;
  font-size: .72rem;
  color: var(--gray-500);
  line-height: 1.5;
  text-align: center;
}
.ecp-legal a { color: var(--blue); }

@media (max-width: 600px) {
  .ecb-inner { padding: 16px 20px; gap: 16px; }
  .ecb-actions { width: 100%; justify-content: flex-end; }
  .ecb-text { flex-basis: 100%; }
}
