/* ============================================================
   AUREC / E-VOIR PROTECT — Institutional Editorial Design
   CSS global — Palette fermée, aucune exception
   ============================================================ */

/* ---------- 1. VARIABLES ---------- */
:root {
  /* Palette fermée */
  --navy:      #0E2841;
  --orange:    #FF8C00;
  --white:     #FFFFFF;
  --black:     #0E2841;   /* plus aucun noir : le "texte principal" est navy */
  --border:    #0E2841;   /* bordures navy — jamais de noir */
  --navy-10:   rgba(14, 40, 65, 0.10);
  --navy-60:   rgba(14, 40, 65, 0.60);
  --navy-02:   rgba(14, 40, 65, 0.02);
  --white-70:  rgba(255, 255, 255, 0.70);
  --white-15:  rgba(255, 255, 255, 0.15);

  /* Typographie */
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Courier Prime', monospace;

  /* Layout */
  --max-width: 1280px;
  --gutter: 24px;
  --pad-x: 80px;
  --section-y: 120px;
  --nav-h: 86px;
}

/* ---------- 2. RESET ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ---------- 3. TYPOGRAPHIE ---------- */
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h1 {
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
}

h2 {
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
}

h3 {
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
}

p {
  font-size: clamp(16px, 1.1vw, 18px);
}

.mono {
  font-family: var(--font-mono);
}

/* Label / Tag */
.label,
.tag {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

/* Tag bloc (rectangle) */
.tag-block {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 7px 14px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--border);
}

.tag-block.is-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.tag-block.is-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--border);
}

/* Donnée chiffrée */
.data {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* ---------- 4. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  border-bottom: 2px solid var(--border);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--black {
  background: var(--black);
  color: var(--white);
}

.section--tint {
  background: var(--navy-02);
}

.section-head {
  margin-bottom: 56px;
}

.section-head .label {
  display: block;
  color: var(--orange);
  margin-bottom: 16px;
}

/* Grilles utilitaires */
.grid {
  display: grid;
  gap: var(--gutter);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 5. BOUTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 16px 28px;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  text-align: center;
}

.btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.btn--secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--black);
}

.btn--secondary:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn--orange {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

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

.btn--on-dark.btn--secondary {
  border-color: var(--white);
  color: var(--white);
}

.btn--on-dark.btn--secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- 6. NAVIGATION (Pages 1 & 3) ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 2px solid var(--border);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav__logo span {
  color: var(--orange);
  font-weight: 700;
}

.nav__logo img {
  height: 62px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .nav__logo img { height: 50px; }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 9px 14px;
  border-radius: 4px;
  transition: background 200ms ease, color 200ms ease;
}

.nav__links a:hover {
  background: var(--orange);
  color: var(--navy);
}

.nav__links a.is-active {
  background: var(--navy);
  color: var(--white);
}

/* FAQ nav active = soulignement orange */
.nav__links.nav__links--underline a.is-active {
  background: transparent;
  color: var(--black);
  box-shadow: inset 0 -3px 0 var(--orange);
  border-radius: 0;
}

/* Hamburger */
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--border);
  background: var(--white);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--black);
  transform: translateX(-50%);
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav__burger span { top: 50%; transform: translate(-50%, -50%); }
.nav__burger span::before { top: -6px; left: 0; transform: none; }
.nav__burger span::after  { top: 6px; left: 0; transform: none; }

.nav__burger.is-open span { background: transparent; }
.nav__burger.is-open span::before { top: 0; transform: rotate(45deg); }
.nav__burger.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* Overlay mobile */
.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, visibility 250ms ease;
}

.nav__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav__overlay a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
}

.nav__overlay a:hover { color: var(--orange); }

/* Décale le contenu sous la nav fixe */
.page {
  padding-top: var(--nav-h);
}

/* ---------- 7. INDICATEUR PULSE ---------- */
.pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pulse__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  position: relative;
  flex-shrink: 0;
}

.pulse__dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-ring 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ============================================================
   PAGE 1 — index.html
   ============================================================ */

/* Hero */
.hero {
  border-bottom: 2px solid var(--border);
}

.hero__grid {
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: stretch;
  gap: 0;
}

.hero__left {
  padding: 80px 64px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__left .label {
  display: block;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero__left h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.04;
  margin-bottom: 28px;
}

.hero__left h1::after {
  content: '';
  display: block;
  width: 76px;
  height: 5px;
  background: var(--orange);
  margin-top: 24px;
}

.hero__mission {
  max-width: 46ch;
  margin-bottom: 40px;
  color: var(--navy-60);
}

.hero__mission strong {
  color: var(--black);
  font-weight: 600;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.pillar {
  border-left: 4px solid var(--orange);
  padding-left: 20px;
}

.pillar__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}

.pillar h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.pillar p {
  font-size: 15px;
  color: var(--navy-60);
  line-height: 1.6;
}

.hero__right {
  background: var(--navy);
  color: var(--white);
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  border-left: 2px solid var(--border);
}

.hero__right .tag-block {
  margin-bottom: 36px;
}

.hero__sigle {
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
  border-left: 5px solid var(--orange);
  padding-left: 20px;
}

.hero__sigle .accent { color: var(--orange); }

.hero__right p {
  color: var(--white-70);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 34ch;
}

.hero__right .pulse { color: var(--white); margin-bottom: 28px; }

.hero__tagline {
  color: var(--orange) !important;
  font-weight: 800;
  font-size: 17px !important;
  margin-bottom: 14px !important;
  max-width: none !important;
}

/* Soutiens */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--border);
  border-left: 2px solid var(--border);
}

.support {
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.support .label {
  color: var(--orange);
  margin-bottom: 14px;
}

.support h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.support p {
  font-size: 15px;
  color: var(--navy-60);
  line-height: 1.6;
}

.support--feature {
  background: var(--navy);
  color: var(--white);
  grid-column: span 1;
}

.support--feature .label { color: var(--orange); }
.support--feature h3 { font-size: 24px; }
.support--feature p { color: var(--white-70); }

.support__badge {
  margin-top: auto;
  padding-top: 20px;
}

.support__badge .tag-block {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
  white-space: normal;
  line-height: 1.5;
}

/* Preuve d'exécution */
.proof {
  text-align: center;
}

.proof .label {
  color: var(--orange);
  display: block;
  margin-bottom: 24px;
}

.proof__counter {
  font-weight: 900;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.proof__counter .unit {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 700;
  color: var(--orange);
}

.proof__bar {
  max-width: 640px;
  margin: 32px auto 16px;
  height: 14px;
  background: var(--white-15);
  border: 2px solid var(--white);
  border-radius: 4px;
  overflow: hidden;
}

.proof__bar-fill {
  height: 100%;
  width: 0;
  background: var(--orange);
  transition: width 1.6s ease-out;
}

.proof__goal {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-70);
  margin-bottom: 36px;
}

.proof__text {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--white-70);
}

/* Vision */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 2px solid var(--border);
  border-left: 2px solid var(--border);
}

.vision {
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 40px 36px;
}

.vision__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 40px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 20px;
}

.vision h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.vision p {
  font-size: 15px;
  color: var(--navy-60);
  line-height: 1.65;
}

/* Fondateurs */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 2px solid var(--border);
  border-left: 2px solid var(--border);
}

.founder {
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 44px 40px;
}

.founder h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.founder .tag-block.is-orange {
  margin-bottom: 24px;
}

.founder__contact {
  margin-bottom: 24px;
}

.founder__contact a {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  transition: color 200ms ease;
}

.founder__contact a:hover { color: var(--orange); }

.founder__bio {
  font-size: 15px;
  color: var(--navy-60);
  line-height: 1.6;
  margin-bottom: 24px;
}

.founder__label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 12px;
}

.recognitions li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--navy-60);
  margin-bottom: 6px;
}

.recognitions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--orange);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--border);
}

.contact__info {
  background: var(--black);
  color: var(--white);
  padding: 56px 48px;
}

.contact__info h2 {
  margin-bottom: 24px;
}

.contact__info > p {
  color: var(--white-70);
  margin-bottom: 40px;
}

.contact__block {
  margin-bottom: 28px;
}

.contact__block .founder__label { color: var(--orange); }

.contact__block .name {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
}

.contact__block a {
  display: block;
  font-size: 15px;
  color: var(--white-70);
  transition: color 200ms ease;
}

.contact__block a:hover { color: var(--orange); }

.contact__form {
  background: var(--white);
  color: var(--black);
  padding: 56px 48px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.field label .req { color: var(--orange); }

.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  transition: border-color 200ms ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.form__status {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  min-height: 18px;
}

.form__status.is-sent { color: var(--orange); }
.form__status.is-error { color: var(--black); }

.contact__form .btn-row {
  margin-top: 28px;
  flex-direction: column;
}

.contact__form .btn { width: 100%; }

/* ============================================================
   PAGE 2 — evoir-protect.html
   ============================================================ */
.tabnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 2px solid var(--border);
}

.tabnav__inner {
  display: flex;
  align-items: stretch;
  min-height: var(--nav-h);
}

.tabnav__back {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  color: var(--orange);
  padding: 0 22px;
  border-right: 2px solid var(--white-15);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 200ms ease, color 200ms ease;
}

.tabnav__back:hover { background: var(--orange); color: var(--navy); }

.tabnav__tabs {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
}

.tabnav__tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: transparent;
  border: none;
  border-right: 1px solid var(--white-15);
  padding: 0 18px;
  white-space: nowrap;
  cursor: pointer;
  scroll-snap-align: start;
  transition: background 200ms ease, color 200ms ease;
}

.tab-btn:hover { background: var(--orange); color: var(--navy); }

.tab-btn.is-active {
  background: var(--orange);
  color: var(--black);
}

.tab-panel {
  display: none;
  animation: fadeTab 200ms ease;
}

.tab-panel.is-active {
  display: block;
}

@keyframes fadeTab {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Onglet 1 — Dispositif */
.lead {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 30ch;
  margin-bottom: 48px;
}

.quote-block {
  background: var(--navy);
  color: var(--white);
  border-left: 6px solid var(--orange);
  padding: 32px 36px;
  margin-bottom: 32px;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
}

.quote-block .quote-src {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 16px;
}

.disp-text {
  max-width: 70ch;
  margin-bottom: 16px;
  color: var(--navy-60);
}

.disp-text:last-of-type { margin-bottom: 48px; }

.three-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--white-15);
  border-left: 2px solid var(--white-15);
  margin-bottom: 48px;
}

.fpillar {
  background: var(--navy);
  color: var(--white);
  border-right: 2px solid var(--white-15);
  border-bottom: 2px solid var(--white-15);
  padding: 40px 32px;
}

.fpillar__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
}

.fpillar__icon svg { width: 100%; height: 100%; }

.fpillar h3 {
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 12px;
}

.fpillar p {
  color: var(--white-70);
  font-size: 15px;
  line-height: 1.6;
}

/* Onglet 2 — Enjeux */
.enjeux-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
}

.enjeu {
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  padding: 40px 32px;
}

.enjeu h3 {
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 16px;
}

.enjeu p {
  color: var(--white-70);
  font-size: 16px;
  line-height: 1.6;
}

.enjeux-intro {
  max-width: 60ch;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 48px;
}

/* Onglet 3 — Le Problème */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 2px solid var(--border);
  border-left: 2px solid var(--border);
}

.stat {
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
}

.stat:nth-child(1) { grid-column: span 3; background: var(--navy); color: var(--white); }
.stat:nth-child(2) { grid-column: span 3; background: var(--orange); color: var(--black); }
.stat:nth-child(3) { grid-column: span 2; background: var(--white); color: var(--black); }
.stat:nth-child(4) { grid-column: span 2; background: var(--orange); color: var(--black); }
.stat:nth-child(5) { grid-column: span 2; background: var(--navy); color: var(--white); }

.stat__num {
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.stat__label {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.stat__src {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.stats-conclusion {
  margin-top: 40px;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  max-width: 40ch;
  border-left: 4px solid var(--orange);
  padding-left: 20px;
}

/* Onglet 4 — Mécanisme */
.mechanism {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.mech-step {
  padding: 0 24px;
  position: relative;
}

.mech-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.mech-step:not(:last-child) .mech-step__num::after {
  content: '→';
  position: absolute;
  right: -34px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 22px;
  font-weight: 700;
}

.mech-step__num {
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.mech-step h3 {
  font-size: 20px;
  margin-bottom: 16px;
  min-height: 2.4em;
}

.mech-step ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--navy-60);
  line-height: 1.5;
  margin-bottom: 8px;
}

.mech-step ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--orange);
}

/* Onglet 5 — Garanties */
.guarantees {
  display: grid;
  gap: 0;
  margin-bottom: 48px;
  border-top: 2px solid var(--border);
}

.guarantee {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  border-bottom: 2px solid var(--border);
  border-left: 4px solid var(--orange);
  padding: 32px 32px 32px 28px;
}

.guarantee__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
}

.guarantee h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.guarantee p {
  font-size: 16px;
  color: var(--navy-60);
  line-height: 1.6;
}

.kenya-block {
  background: var(--navy);
  color: var(--white);
  padding: 44px 40px;
  border-left: 6px solid var(--orange);
}

.kenya-block .tag-block.is-orange {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
  margin-bottom: 20px;
}

.kenya-block h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.kenya-block p {
  color: var(--white-70);
  font-size: 17px;
  line-height: 1.6;
  max-width: 70ch;
  margin-bottom: 20px;
}

.kenya-block .badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 8px 14px;
  border-radius: 4px;
}

/* Onglet 6 — Économie */
.eco-tag {
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}

.eco-tag .accent { color: var(--orange); }

.eco-intro {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  margin-bottom: 48px;
  max-width: 60ch;
}

.eco-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--border);
  border-left: 2px solid var(--border);
  margin-bottom: 48px;
}

.eco-point {
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 36px 32px;
}

.eco-point__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.eco-point__icon svg { width: 100%; height: 100%; }

.eco-point h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.eco-point p {
  font-size: 15px;
  color: var(--navy-60);
  line-height: 1.55;
}

.proj-caption {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 16px;
}

.table-wrap {
  overflow-x: auto;
  border: 2px solid var(--border);
  margin-bottom: 20px;
}

table.projection {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

table.projection th,
table.projection td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

table.projection thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

table.projection tbody tr:nth-child(even) {
  background: var(--navy-10);
}

table.projection tbody td {
  font-weight: 600;
}

table.projection tbody td.num {
  font-weight: 700;
}

.table-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--navy-60);
  letter-spacing: 0.04em;
}

/* Onglet 7 — Impacts */
.impacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--border);
  border-left: 2px solid var(--border);
}

.impact {
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 36px 32px;
  transition: background 200ms ease, color 200ms ease;
}

.impact__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--navy);
  transition: color 200ms ease;
}

.impact__icon svg { width: 100%; height: 100%; }

.impact h3 {
  font-size: 19px;
  margin-bottom: 16px;
}

.impact ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--navy-60);
  line-height: 1.5;
  margin-bottom: 7px;
  transition: color 200ms ease;
}

.impact ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--orange);
}

.impact:hover {
  background: var(--navy);
  color: var(--white);
}

.impact:hover .impact__icon { color: var(--white); }
.impact:hover ul li { color: var(--white-70); }

/* Onglet 8 — Déploiement */
.deploy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--border);
  margin-bottom: 40px;
}

.deploy__left {
  padding: 44px 40px;
  border-right: 2px solid var(--border);
}

.deploy__right {
  padding: 44px 40px;
}

.deploy h3 {
  font-size: 18px;
  margin-bottom: 28px;
}

.institutions li {
  position: relative;
  padding: 14px 0 14px 22px;
  font-size: 16px;
  border-bottom: 1px solid var(--navy-10);
  transition: background 200ms ease, padding-left 200ms ease;
}

.institutions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 21px;
  width: 8px;
  height: 8px;
  background: var(--orange);
}

.institutions li:hover {
  background: var(--navy);
  color: var(--white);
  padding-left: 30px;
}

.roadmap {
  position: relative;
  padding-left: 36px;
}

.roadmap::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--orange);
}

.phase {
  position: relative;
  padding-bottom: 28px;
}

.phase:last-child { padding-bottom: 0; }

.phase__dot {
  position: absolute;
  left: -36px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phase h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.phase p {
  font-size: 14px;
  color: var(--navy-60);
}

/* ============================================================
   PAGE 3 — faq.html
   ============================================================ */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.faq-hero {
  padding: 80px 0 56px;
  border-bottom: 2px solid var(--border);
}

.faq-hero .label {
  display: block;
  color: var(--orange);
  margin-bottom: 16px;
}

.faq-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
}

.faq-block {
  position: relative;
  padding: 64px 0;
  border-bottom: 2px solid var(--border);
}

.faq-block__watermark {
  position: absolute;
  top: 24px;
  right: -10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(120px, 22vw, 240px);
  line-height: 1;
  color: var(--orange);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.faq-block h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(26px, 3vw, 36px);
  border-left: 4px solid var(--orange);
  padding-left: 20px;
  margin-bottom: 32px;
}

.accordion {
  position: relative;
  z-index: 1;
}

.qa {
  border-bottom: 1px solid var(--border);
}

.qa__q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 22px 8px;
  cursor: pointer;
  transition: background 200ms ease;
}

.qa__q:hover { background: var(--navy-10); }

.qa__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1.5;
}

.qa__text {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.45;
  flex: 1;
}

.qa__arrow {
  font-family: var(--font-mono);
  color: var(--orange);
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.5;
  transition: transform 200ms ease;
}

.qa__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
  background: var(--navy-02);
}

.qa.is-open .qa__a {
  max-height: 800px;
}

.qa__a-inner {
  padding: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
}

.qa__a-inner .btn {
  margin-top: 20px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 12px 20px;
}

.faq-final {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.faq-final__inner {
  max-width: 480px;
  margin: 0 auto;
}

.faq-final h3 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 16px;
}

.faq-final p {
  color: var(--white-70);
  margin-bottom: 32px;
}

.faq-final .btn { min-width: 240px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--white);
  border-top: 2px solid var(--border);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 20px;
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-60);
}

.footer__inner a { transition: color 200ms ease; }
.footer__inner a:hover { color: var(--orange); }
.footer__inner .sep { color: var(--orange); }

/* ============================================================
   AOS fallback (au cas où le CDN ne charge pas)
   ============================================================ */
[data-aos] {
  opacity: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --pad-x: 40px; --section-y: 90px; }

  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat:nth-child(1) { grid-column: span 2; }
  .stat:nth-child(2) { grid-column: span 2; }
  .stat:nth-child(3) { grid-column: span 2; }
  .stat:nth-child(4) { grid-column: span 2; }
  .stat:nth-child(5) { grid-column: span 4; }

  .mechanism { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .mech-step:not(:last-child)::after,
  .mech-step:not(:last-child) .mech-step__num::after { display: none; }
}

@media (max-width: 768px) {
  :root { --pad-x: 20px; --section-y: 72px; --nav-h: 72px; }

  body { font-size: 16px; }

  /* Nav mobile */
  .nav__links { display: none; }
  .nav__burger { display: block; }

  /* Hero */
  .hero__grid { grid-template-columns: 1fr; }
  .hero__left { padding: 48px 0; }
  .hero__right { border-left: none; border-top: 2px solid var(--border); padding: 56px 32px; }
  .pillars { grid-template-columns: 1fr; }

  /* Grilles → 1 colonne */
  .support-grid,
  .vision-grid,
  .founders-grid,
  .three-pillars,
  .enjeux-grid,
  .eco-points,
  .impacts-grid { grid-template-columns: 1fr; }

  .contact-grid,
  .deploy-grid { grid-template-columns: 1fr; }

  .deploy__left { border-right: none; border-bottom: 2px solid var(--border); }

  /* Stats → 2 colonnes */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(n) { grid-column: span 1; }
  .stat:nth-child(5) { grid-column: span 2; }
  .stat { min-height: 180px; padding: 32px 24px; }

  .contact__info,
  .contact__form { padding: 40px 28px; }

  .founder,
  .vision,
  .support { padding: 32px 24px; }

  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .hero__right .btn,
  .faq-final .btn { width: auto; }
}

@media (max-width: 375px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat:nth-child(5) { grid-column: span 1; }
}

/* ============================================================
   NAV — état "page courante"
   ============================================================ */
.nav__links a[aria-current="page"],
.nav__links a.is-active {
  background: var(--navy);
  color: var(--white);
}
.nav__links a[aria-current="page"]:hover {
  background: var(--orange);
  color: var(--navy);
}
.nav__overlay a[aria-current="page"] { color: var(--orange); }

/* ============================================================
   SECTION DISPOSITIF ACTUEL (Page 1) — E-VOIR PROTECT
   ============================================================ */
.proto-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border: 2px solid var(--border);
}

.proto__left {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proto__left .label { display: block; color: var(--orange); margin-bottom: 16px; }
.proto__left h2 {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.15;
  margin-bottom: 20px;
  overflow-wrap: break-word;
  hyphens: auto;
}
.proto__left p { color: var(--navy-60); max-width: 52ch; margin-bottom: 32px; }
.proto__left p strong { color: var(--navy); font-weight: 600; }

.proto__right {
  background: var(--navy);
  color: var(--white);
  padding: 56px 48px;
  border-left: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proto__right .tag-block { margin-bottom: 28px; align-self: flex-start; }

.proto__right h3 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.proto__keys { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }

.proto__key {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  border-left: 4px solid var(--orange);
  padding-left: 14px;
}

.proto__right .pulse { color: var(--white); }

/* ============================================================
   MODALE "DÉMONSTRATION BIENTÔT DISPONIBLE"
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(14, 40, 65, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.modal.is-open { opacity: 1; visibility: visible; }

.modal__card {
  background: var(--white);
  border: 2px solid var(--border);
  border-top: 6px solid var(--orange);
  max-width: 460px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  transform: translateY(24px) scale(0.96);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal.is-open .modal__card { transform: translateY(0) scale(1); }

.modal__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--navy-10);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.modal__icon svg { width: 34px; height: 34px; stroke: var(--orange); }

.modal__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--orange);
  animation: modal-ring 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes modal-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.modal__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 14px;
}

.modal__title { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.modal__text { color: var(--navy-60); line-height: 1.65; margin-bottom: 28px; }

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 2px solid var(--border);
  background: var(--white);
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: background 200ms ease, color 200ms ease;
}
.modal__close:hover { background: var(--orange); color: var(--navy); border-color: var(--orange); }

/* ============================================================
   BOUTON RETOUR HAUT DE PAGE
   ============================================================ */
.to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--white);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 250ms ease, visibility 250ms ease, transform 250ms ease, background 200ms ease, color 200ms ease;
}

.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--orange); color: var(--navy); border-color: var(--orange); }
.to-top svg { width: 22px; height: 22px; }

/* ============================================================
   CTA LUMINEUX — clignote lentement en orange pour attirer l'œil
   ============================================================ */
.btn--glow { animation: cta-glow 2.4s ease-in-out infinite; }
.btn--glow:hover { animation: none; }

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.0); transform: scale(1); }
  50%      { box-shadow: 0 0 24px 3px rgba(255, 140, 0, 0.65); transform: scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  .btn--glow { animation: none; }
}

@media (max-width: 768px) {
  .proto-grid { grid-template-columns: 1fr; }
  .proto__right { border-left: none; border-top: 2px solid var(--border); }
  .proto__left, .proto__right { padding: 40px 28px; }
  .to-top { bottom: 20px; right: 20px; width: 46px; height: 46px; }
  .modal__card { padding: 40px 26px; }
}

/* ============================================================
   HERO BOX — carte d'identité pleine largeur (Page 1, 1re slide)
   ============================================================ */
.hero-box {
  padding-top: 64px;
  padding-bottom: 72px;
}

.hero-box__inner {
  max-width: 820px;
}

.hero-box__tag {
  background: transparent;
  border: 2px solid var(--white-15);
  color: var(--white);
  margin-bottom: 32px;
}

.hero-box .hero__sigle {
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-box .hero__tagline {
  margin-bottom: 22px !important;
  font-size: 18px !important;
}

.hero-box__mission {
  color: var(--white-70);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  max-width: 64ch;
  margin-bottom: 28px;
}

.hero-box .pulse {
  display: flex;
  width: fit-content;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-box__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 768px) {
  .hero-box { padding-top: 40px; padding-bottom: 56px; }
  .hero-box__cta { flex-direction: column; gap: 16px; }
  .hero-box__cta .btn { width: 100%; }
}

/* ============================================================
   CARROUSEL HORIZONTAL — mobile & tablette (≤1024px)
   Les grilles [data-carousel] deviennent des sliders horizontaux,
   avec flèches orange. Desktop (>1024px) : grilles inchangées.
   ============================================================ */
.carousel-nav { display: none; }

@media (max-width: 1024px) {
  [data-carousel] {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    border: none !important;
    padding-bottom: 4px;
  }
  [data-carousel]::-webkit-scrollbar { display: none; }

  [data-carousel] > * {
    flex: 0 0 86% !important;
    scroll-snap-align: center;
    border: 2px solid var(--border) !important;
  }

  /* Cartes sur fond navy : bordure claire pour rester visibles */
  .enjeux-grid[data-carousel] > *,
  .three-pillars[data-carousel] > * {
    border: 2px solid var(--white-15) !important;
  }

  /* Garanties : on conserve la barre orange à gauche */
  .guarantees[data-carousel] > * {
    border: 2px solid var(--border) !important;
    border-left: 4px solid var(--orange) !important;
  }

  /* Barre de navigation (flèches orange) */
  .carousel-nav {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 18px;
  }
  .carousel-btn {
    width: 48px;
    height: 48px;
    border: 2px solid var(--orange);
    background: var(--orange);
    color: var(--navy);
    border-radius: 4px;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 200ms ease, color 200ms ease, opacity 200ms ease;
  }
  .carousel-btn:hover { background: var(--navy); color: var(--orange); }
  .carousel-btn:disabled { opacity: 0.35; cursor: default; }
}

/* ============================================================
   MODALE FONDATEURS (déclenchée depuis le footer)
   ============================================================ */
.modal__card--wide {
  max-width: 900px;
  text-align: left;
  max-height: 88vh;
  overflow-y: auto;
}
.founders-modal__sub {
  color: var(--navy-60);
  margin-bottom: 28px;
}

/* Espace les flèches du carrousel du contenu qui suit (mobile/tablette) */
@media (max-width: 1024px) {
  .carousel-nav { margin-bottom: 26px; }
}

/* Bloc "Résultats concrets pour l'État" — 4 cartes en 2×2 (desktop) */
.eco-points--4 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 768px) {
  .eco-points--4 { grid-template-columns: 1fr; }
}

/* Carrousel : piliers — conserver la barre orange à gauche */
@media (max-width: 1024px) {
  .pillars[data-carousel] > * {
    border: 2px solid var(--border) !important;
    border-left: 4px solid var(--orange) !important;
    padding-left: 20px;
  }
}
