/* ══════════════════════════════════════════════════════════════════════
   Verdoreille V4 — main.css
   Dérivé des styles inline JSX V4 + CONTRACT PHP → CSS
   Tokens : complètent style.css (--teal, --azur, --surface, --font-*)
   ══════════════════════════════════════════════════════════════════════ */

/* ── 1. Tokens étendus ─────────────────────────────────────────────── */
:root {
  --feu:          #FF6B35;
  --bg:           #FFFFFF;
  --bg-alt:       #EBF4FC;
  --card:         #FFFFFF;
  --hero-bg:      #EBF4FC;
  --text:         #0D3040;
  --text-muted:   rgba(13,48,64,0.68);
  --text-faint:   rgba(13,48,64,0.66);
  --border-c:     rgba(13,48,64,0.08);
  --input-bg:     #F0F5FA;
  --ph:           #E5EDF4;
}
[data-theme="dark"] {
  --bg:           #0D3040;
  --bg-alt:       #0A2535;
  --card:         #0A2535;
  --hero-bg:      #0D3040;
  --text:         #EBF4FC;
  --text-muted:   rgba(235,244,252,0.6);
  --text-faint:   rgba(235,244,252,0.54);
  --border-c:     rgba(255,255,255,0.08);
  --input-bg:     rgba(235,244,252,0.06);
  --ph:           rgba(235,244,252,0.06);
}

/* ── 2. Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-interface);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
:focus-visible {
  outline: 2px solid var(--feu);
  outline-offset: 3px;
  border-radius: 2px;
}
img, svg { display: block; }
#v3-page-content { padding-top: 60px; }

/* ── 3. HEADER ─────────────────────────────────────────────────────── */
.v3-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.3s ease, backdrop-filter 0.4s ease;
}
.v3-header.is-scrolled {
  background: rgba(235,244,252,0.94);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom-color: rgba(13,48,64,0.08);
}
[data-theme="dark"] .v3-header.is-scrolled {
  background: rgba(13,48,64,0.94);
  border-bottom-color: rgba(255,255,255,0.07);
}
.v3-header.menu-open {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: transparent !important;
}

.v3-header__logo {
  display: flex;
  align-items: center;
  z-index: 9001;
  position: relative;
}
.v3-header__logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: filter 0.3s ease;
}
.v3-header.is-scrolled .v3-header__logo-img { height: 38px; }
[data-theme="dark"] .v3-header__logo-img { filter: brightness(0) invert(1); }

.v3-header__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 9001;
  position: relative;
}

.v3-header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 0;
  transition: color 0.2s;
  flex-shrink: 0;
}
.v3-header__toggle:hover { color: var(--text); }
.v3-header__toggle-icon { display: flex; align-items: center; }
.v3-header__toggle-icon--sun  { display: none; }
.v3-header__toggle-icon--moon { display: flex; }
[data-theme="dark"] .v3-header__toggle-icon--sun  { display: flex; }
[data-theme="dark"] .v3-header__toggle-icon--moon { display: none; }

.v3-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
  text-decoration: none;
}
.v3-header__cta:hover { color: var(--feu); }
.v3-header__cta-arrow { flex-shrink: 0; }
.v3-header.menu-open .v3-header__cta { display: none; }

.v3-header__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 0;
}
.v3-header__burger-bars {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.v3-header__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--text);
  transform-origin: left center;
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1), background 0.3s;
}
.v3-header.menu-open .v3-header__bar--top {
  transform: translateY(5.75px) rotate(45deg) scaleX(1.18);
}
.v3-header.menu-open .v3-header__bar--bottom {
  transform: translateY(-5.75px) rotate(-45deg) scaleX(1.5);
}

/* ── 4. OVERLAY ────────────────────────────────────────────────────── */
.v3-overlay {
  position: fixed;
  inset: 0;
  z-index: 8999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 72px 48px 48px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.65s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
  overflow: hidden;
}
.v3-overlay.is-open,
.v3-overlay[aria-hidden="false"] {
  clip-path: inset(0 0 0% 0);
  pointer-events: auto;
}

.v3-overlay__close {
  position: absolute;
  top: 76px;
  right: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--text-faint);
  transition: color 0.2s;
}
.v3-overlay__close:hover { color: var(--text); }

.v3-overlay__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v3-overlay__item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border-c);
  padding: 14px 0;
}

.v3-overlay__num {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 2px;
  min-width: 28px;
}

.v3-overlay__link {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 60px);
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-align: left;
  display: block;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
  transition: color 0.18s;
}
.v3-overlay__link:hover { color: var(--feu); }

.v3-overlay__arrow {
  color: var(--text-faint);
  flex-shrink: 0;
  transition: color 0.18s, transform 0.2s;
}
.v3-overlay__item:hover .v3-overlay__arrow {
  color: var(--feu);
  transform: translateX(4px);
}

.v3-overlay__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 32px;
  border-top: 1px solid var(--border-c);
  flex-shrink: 0;
}

.v3-overlay__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v3-overlay__location {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 1px;
}

.v3-overlay__email {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.18s;
}
.v3-overlay__email:hover { color: var(--text); }

.v3-overlay__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--feu);
  color: #fff;
  border: none;
  padding: 13px 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.2px;
  text-decoration: none;
}

/* ── 5. FOOTER ─────────────────────────────────────────────────────── */
.v3-footer {
  background: #0D3040;
  position: relative;
  overflow: hidden;
}

.v3-footer__wordmark {
  position: absolute;
  bottom: -24px;
  left: -8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(80px, 14vw, 220px);
  color: rgba(235,244,252,0.035);
  letter-spacing: -4px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.v3-footer__inner {
  position: relative;
  z-index: 1;
  padding: 72px 48px 40px;
}

.v3-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 64px;
  gap: 40px;
  flex-wrap: wrap;
}

.v3-footer__brand { max-width: 340px; }

.v3-footer__logo {
  height: 22px;
  width: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
}

.v3-footer__tagline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  color: rgba(235,244,252,0.6);
  line-height: 1.6;
}

.v3-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.v3-footer__social-link {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: rgba(235,244,252,0.32);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.18s;
}
.v3-footer__social-link:hover { color: #EBF4FC; }

.v3-footer__nav {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.v3-footer__nav-col {
  display: flex;
  flex-direction: column;
}

.v3-footer__nav-title {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 13px;
  color: rgba(235,244,252,0.28);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.v3-footer__nav-link {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 16px;
  color: rgba(235,244,252,0.5);
  text-decoration: none;
  margin-bottom: 12px;
  display: block;
  transition: color 0.18s;
}
.v3-footer__nav-link:hover { color: #EBF4FC; }

.v3-footer__cta-block {
  display: flex;
  flex-direction: column;
  min-width: 160px;
}

.v3-footer__cta-label {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 13px;
  color: rgba(235,244,252,0.28);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.v3-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--feu);
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.2px;
  text-decoration: none;
  margin-bottom: 28px;
  width: fit-content;
}

.v3-footer__contact-label {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 13px;
  color: rgba(235,244,252,0.28);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.v3-footer__contact-email {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 16px;
  color: rgba(235,244,252,0.5);
  text-decoration: none;
  transition: color 0.18s;
}
.v3-footer__contact-email:hover { color: #EBF4FC; }

.v3-footer__divider {
  height: 1px;
  background: rgba(235,244,252,0.07);
  margin-bottom: 24px;
}

.v3-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.v3-footer__copy {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  color: rgba(235,244,252,0.22);
}

.v3-footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.v3-footer__legal-list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.v3-footer__legal-link,
.v3-footer__legal-list li a {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: rgba(235,244,252,0.22);
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s;
}
.v3-footer__legal-link:hover,
.v3-footer__legal-list li a:hover { color: rgba(235,244,252,0.55); }

/* ── 6. HOME HERO ──────────────────────────────────────────────────── */
.v3-home-hero {
  background: var(--hero-bg);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.v3-home-hero__infobar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  border-bottom: 1px solid var(--border-c);
  z-index: 2;
}

.v3-home-hero__infobar-text {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
}

.v3-home-hero__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 0;
}

.v3-home-hero__logo-wrap {
  overflow: hidden;
  margin-bottom: 48px;
}

.v3-home-hero__logo {
  height: clamp(40px, 6vw, 88px);
  width: auto;
  display: block;
}
[data-theme="dark"] .v3-home-hero__logo { filter: brightness(0) invert(1); }

.v3-home-hero__lines { overflow: visible; }
.v3-home-hero__lines-heading { margin: 0; font-size: inherit; font-weight: inherit; }

.v3-home-hero__line {
  overflow: hidden;
  line-height: 0.92;
}

.v3-home-hero__line-inner {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 10vw, 140px);
  color: var(--text);
  letter-spacing: -4px;
  line-height: 0.92;
  display: block;
}
.v3-home-hero__line-inner--accent { color: var(--feu); }

.v3-home-hero__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 48px;
  border-top: 1px solid var(--border-c);
  flex-shrink: 0;
}

.v3-home-hero__caption-left { flex: 1; }

.v3-home-hero__tagline {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.v3-home-hero__caption-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.v3-home-hero__caption-link {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.18s;
}
.v3-home-hero__caption-link:hover { color: var(--text); }

.v3-home-hero__caption-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  border: none;
  text-decoration: none;
  transition: color 0.18s;
}
.v3-home-hero__caption-btn:hover { color: var(--feu); }
.v3-home-hero__caption-icon { flex-shrink: 0; }

.v3-home-hero__scroll {
  position: absolute;
  bottom: 88px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.v3-home-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: var(--border-c);
}
.v3-home-hero__scroll-label {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-faint);
  writing-mode: vertical-rl;
}

/* ── 7. HOME STATS ─────────────────────────────────────────────────── */
.v3-home-stats {
  background: #0D3040;
  padding: 72px 48px;
}
.v3-home-stats__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.v3-home-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.v3-home-stats__item {
  background: #0D3040;
  padding: 40px 32px;
}
.v3-home-stats__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  color: #EBF4FC;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.v3-home-stats__label {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 13px;
  color: rgba(235,244,252,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── 8. HOME SERVICES ──────────────────────────────────────────────── */
.v3-home-svc {
  padding: 96px 48px;
  background: var(--bg);
}
.v3-home-svc__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.v3-home-svc__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 16px;
}
.v3-home-svc__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-c);
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
}
.v3-home-svc__item:hover { transform: translateX(12px); }
.v3-home-svc__num {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 2px;
  min-width: 24px;
}
.v3-home-svc__info { flex: 1; }
.v3-home-svc__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text);
  letter-spacing: -0.5px;
}
.v3-home-svc__sub {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.v3-home-svc__arrow {
  color: var(--text-faint);
  flex-shrink: 0;
  transition: color 0.18s, transform 0.2s;
}
.v3-home-svc__item:hover .v3-home-svc__arrow {
  color: var(--feu);
  transform: translateX(4px) translateY(-4px);
}

/* ── 9. HOME PROJETS ───────────────────────────────────────────────── */
.v3-home-proj {
  padding: 96px 48px;
  background: var(--bg-alt);
  position: relative;
}
.v3-home-proj__inner { max-width: 1100px; margin: 0 auto; }
.v3-home-proj__float {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  z-index: 10;
  width: 280px;
  height: 200px;
}
.v3-home-proj__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-c);
  cursor: pointer;
  text-decoration: none;
}
.v3-home-proj__num {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 2px;
  min-width: 24px;
}
.v3-home-proj__info { flex: 1; }
.v3-home-proj__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(17px, 2.2vw, 24px);
  color: var(--text);
  letter-spacing: -0.5px;
  transition: color 0.18s;
}
.v3-home-proj__item:hover .v3-home-proj__title { color: var(--feu); }
.v3-home-proj__meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  color: var(--text-faint);
}
.v3-home-proj__arrow {
  color: var(--text-faint);
  flex-shrink: 0;
  transition: color 0.2s;
}
.v3-home-proj__item:hover .v3-home-proj__arrow { color: var(--feu); }

/* ── 10. HOME ACTUALITÉS ────────────────────────────────────────────── */
.v3-home-actu {
  padding: 96px 48px;
  background: var(--bg);
}
.v3-home-actu__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header section */
.v3-home-actu__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
}
.v3-home-actu__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
}
.v3-home-actu__all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--feu);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s ease;
}
.v3-home-actu__all:hover { gap: 10px; }

/* Grille principale : featured gauche + stack droite */
.v3-home-actu__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* Article featured */
.v3-home-actu__featured {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.v3-home-actu__featured-link {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.v3-home-actu__featured-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-alt);
}
.v3-home-actu__featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.v3-home-actu__featured:hover .v3-home-actu__featured-img img {
  transform: scale(1.03);
}
.v3-home-actu__featured-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-alt);
}
.v3-home-actu__featured-body {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.v3-home-actu__featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}
.v3-home-actu__featured-title a {
  color: inherit;
  text-decoration: none;
}
.v3-home-actu__featured-title a:hover { color: var(--feu); }
.v3-home-actu__featured-excerpt {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.v3-home-actu__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--feu);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.2s ease;
}
.v3-home-actu__read:hover { gap: 10px; }

/* Catégorie chip */
.v3-home-actu__cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--feu);
  background: color-mix(in srgb, var(--feu) 10%, transparent);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Stack droite */
.v3-home-actu__stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border, #E5EEF5);
}
.v3-home-actu__card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border, #E5EEF5);
  text-decoration: none;
}
.v3-home-actu__card-img-wrap {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1;
  background: var(--bg-alt);
  flex-shrink: 0;
}
.v3-home-actu__card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.v3-home-actu__card:hover .v3-home-actu__card-img-wrap img {
  transform: scale(1.06);
}
.v3-home-actu__card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}
.v3-home-actu__card-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--text);
}
.v3-home-actu__card-title a {
  color: inherit;
  text-decoration: none;
}
.v3-home-actu__card-title a:hover { color: var(--feu); }
.v3-home-actu__card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .v3-home-actu__grid { grid-template-columns: 1fr 320px; gap: 32px; }
}
@media (max-width: 768px) {
  .v3-home-actu { padding: 64px 24px; }
  .v3-home-actu__grid { grid-template-columns: 1fr; }
  .v3-home-actu__stack { margin-top: 8px; }
}
@media (max-width: 480px) {
  .v3-home-actu { padding: 48px 20px; }
  .v3-home-actu__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .v3-home-actu__card { grid-template-columns: 80px 1fr; gap: 14px; }
}

/* ── 10. HOME ADN ──────────────────────────────────────────────────── */
.v3-home-adn {
  padding: 96px 48px;
  background: var(--bg);
}
.v3-home-adn__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.v3-home-adn__eyebrow {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.v3-home-adn__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.v3-home-adn__body {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.v3-home-adn__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid var(--text);
  color: var(--text);
  padding: 13px 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.2px;
  text-decoration: none;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.v3-home-adn__btn:hover {
  background: #0D3040;
  color: #EBF4FC;
  border-color: #0D3040;
}
.v3-home-adn__visual {
  position: relative;
  height: 380px;
  background: #0D3040;
  overflow: hidden;
}

/* ── 11. HOME FAQ ──────────────────────────────────────────────────── */
.v3-home-faq {
  padding: 96px 48px;
  background: var(--bg-alt);
}
.v3-home-faq__inner {
  max-width: 760px;
  margin: 0 auto;
}
.v3-home-faq__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  letter-spacing: -1.5px;
  margin-bottom: 48px;
}
.v3-home-faq__list { border-top: 1px solid var(--border-c); }
.v3-home-faq__item { border-bottom: 1px solid var(--border-c); }
.v3-home-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text);
  letter-spacing: -0.3px;
  cursor: pointer;
}
.v3-home-faq__answer {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  overflow: hidden;
  height: 0;
}
.v3-home-faq__item.is-open .v3-home-faq__answer {
  height: auto;
  padding-bottom: 22px;
}

/* ── 12. HOME CTA ──────────────────────────────────────────────────── */
.v3-home-cta {
  background: #0D3040;
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.v3-home-cta__bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(80px, 18vw, 260px);
  color: rgba(235,244,252,0.03);
  letter-spacing: -6px;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.v3-home-cta__inner { position: relative; z-index: 1; }
.v3-home-cta__eyebrow {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: rgba(235,244,252,0.28);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.v3-home-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 6vw, 80px);
  color: #EBF4FC;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 40px;
}
.v3-home-cta__form {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}
.v3-home-cta__email {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 16px;
  background: rgba(235,244,252,0.08);
  border: 1px solid rgba(235,244,252,0.15);
  border-right: none;
  color: #EBF4FC;
  padding: 14px 20px;
  width: 260px;
  outline: none;
}
.v3-home-cta__email:focus-visible {
  outline: 2px solid var(--feu);
  outline-offset: 2px;
}
.v3-home-cta__email::placeholder { color: rgba(235,244,252,0.35); }
.v3-home-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--feu);
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.2px;
  white-space: nowrap;
  cursor: pointer;
}
.v3-home-cta__reassurance {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  color: rgba(235,244,252,0.22);
  margin-top: 20px;
  letter-spacing: 0.5px;
}

/* ── 13. SERVICES — HERO ───────────────────────────────────────────── */
.v3-svc-hero {
  background: var(--hero-bg);
  min-height: 45svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 96px 48px 80px;
}
.v3-svc-hero__eyebrow {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.v3-svc-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 10vw, 130px);
  color: var(--text);
  letter-spacing: -4px;
  line-height: 0.9;
  margin-bottom: 28px;
}
.v3-svc-hero__line {
  height: 1px;
  background: var(--border-c);
  margin-bottom: 28px;
  transform-origin: left;
}
.v3-svc-hero__sub {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 2.4vw, 26px);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.55;
}

/* ── 14. SERVICES — CARDS ──────────────────────────────────────────── */
.v3-svc-cards { padding: 80px 48px; }
.v3-svc-cards__inner { max-width: 1100px; margin: 0 auto; }
.v3-svc-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.v3-svc-card {
  background: var(--card);
  border: 1px solid var(--border-c);
  padding: 40px 36px;
  cursor: pointer;
  transition: background 0.28s, border-color 0.28s;
  text-decoration: none;
  display: block;
  position: relative;
}
.v3-svc-card:hover { background: #0D3040; border-color: #0D3040; }
.v3-svc-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.v3-svc-card__num {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 2px;
  transition: color 0.28s;
}
.v3-svc-card:hover .v3-svc-card__num { color: rgba(235,244,252,0.35); }
.v3-svc-card__arrow {
  color: var(--text-faint);
  transition: color 0.28s;
}
.v3-svc-card:hover .v3-svc-card__arrow { color: var(--feu); }
.v3-svc-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  transition: color 0.28s;
}
.v3-svc-card:hover .v3-svc-card__title { color: #EBF4FC; }
.v3-svc-card__desc {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  transition: color 0.28s;
}
.v3-svc-card:hover .v3-svc-card__desc { color: rgba(235,244,252,0.6); }
.v3-svc-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v3-svc-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.28s;
}
.v3-svc-card:hover .v3-svc-card__feature { color: rgba(235,244,252,0.6); }
.v3-svc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.v3-svc-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  transition: color 0.28s;
}
.v3-svc-card:hover .v3-svc-card__price { color: var(--feu); }
.v3-svc-card__devis {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.v3-svc-card__devis::after {
  content: '';
  position: absolute;
  inset: 0;
}
.v3-svc-card:hover .v3-svc-card__devis { color: var(--feu); }

/* ── 15. SERVICES — PROCESS ────────────────────────────────────────── */
.v3-svc-process { padding: 96px 48px; background: var(--bg-alt); }
.v3-svc-process__inner { max-width: 1100px; margin: 0 auto; }
.v3-svc-process__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.v3-svc-process__bar {
  height: 2px;
  background: var(--feu);
  margin-bottom: 48px;
  transform-origin: left;
  transform: scaleX(0);
}
.v3-svc-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.v3-svc-process__step { padding-right: 28px; }
.v3-svc-process__step:not(:last-child) {
  border-right: 1px solid var(--border-c);
  margin-right: 28px;
}
.v3-svc-process__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--feu);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
}
.v3-svc-process__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.v3-svc-process__desc {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── 16. SERVICES — GARANTIES ──────────────────────────────────────── */
.v3-svc-guar {
  padding: 56px 48px;
  border-top: 1px solid var(--border-c);
  border-bottom: 1px solid var(--border-c);
}
.v3-svc-guar__inner { max-width: 1100px; margin: 0 auto; }
.v3-svc-guar__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-around;
}
.v3-svc-guar__item { text-align: center; padding: 8px 24px; }
.v3-svc-guar__val {
  font-family: var(--font-interface);
  font-weight: 600;
  font-size: 11px;
  color: var(--feu);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.v3-svc-guar__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1.3;
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ── 17. SERVICES — CTA ────────────────────────────────────────────── */
.v3-svc-cta { background: #0D3040; padding: 80px 48px; }
.v3-svc-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.v3-svc-cta__eyebrow {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: rgba(235,244,252,0.28);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.v3-svc-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  color: #EBF4FC;
  letter-spacing: -2px;
  line-height: 1.05;
}
.v3-svc-cta__body {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  color: rgba(235,244,252,0.6);
  line-height: 1.65;
  max-width: 480px;
}
.v3-svc-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--feu);
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.2px;
  text-decoration: none;
}

/* ── 18. RÉALISATIONS — HERO ───────────────────────────────────────── */
.v3-real-hero {
  background: var(--hero-bg);
  min-height: 42svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 96px 48px 80px;
}
.v3-real-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.v3-real-hero__eyebrow {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.v3-real-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 8vw, 110px);
  color: var(--text);
  letter-spacing: -3px;
  line-height: 0.9;
  margin-bottom: 28px;
}
.v3-real-hero__line {
  height: 1px;
  background: var(--border-c);
  margin-bottom: 28px;
  transform-origin: left;
}
.v3-real-hero__sub {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 2.4vw, 26px);
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.55;
}

/* ── 19. RÉALISATIONS — STATS ──────────────────────────────────────── */
.v3-real-stats {
  border-bottom: 1px solid var(--border-c);
  padding: 40px 48px;
}
.v3-real-stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.v3-real-stat { text-align: center; padding: 0 16px; }
.v3-real-stat__val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 44px);
  color: var(--text);
  letter-spacing: -2px;
  margin-bottom: 6px;
}
.v3-real-stat__label {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.5px;
  max-width: 120px;
  margin: 0 auto;
}

/* ── 20. RÉALISATIONS — GRILLE ─────────────────────────────────────── */
.v3-real-grid-wrap { padding: 64px 48px 96px; }
.v3-real-grid-wrap__inner { max-width: 1200px; margin: 0 auto; }
.v3-real-filters {
  display: flex;
  gap: 6px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  align-items: center;
}
.v3-real-filter {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 18px;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-c);
  transition: all 0.22s;
}
.v3-real-filter--active,
.v3-real-filter.is-active {
  background: #0D3040;
  color: #EBF4FC;
  border-color: #0D3040;
}
.v3-real-count {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 1px;
  margin-left: auto;
}
.v3-real-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 1024px) {
  .v3-real-grid { grid-template-columns: repeat(3, 1fr); }
}
.v3-real-card {
  display: block;
  cursor: pointer;
  text-decoration: none;
}
.v3-real-card__frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: #C8D8E8;
  aspect-ratio: 4 / 3;
  box-shadow: 0 0 0 0 rgba(255,107,53,0), 0 0 0 0 rgba(255,107,53,0);
  transition: box-shadow 0.4s ease;
}
.v3-real-card:hover .v3-real-card__frame {
  box-shadow: 0 0 0 1px rgba(255,107,53,0.45), 0 16px 36px -10px rgba(255,107,53,0.4);
}
.v3-real-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.v3-real-card:hover .v3-real-card__img { transform: scale(1.06); }
.v3-real-card__sector {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 13px;
  color: rgba(13,48,64,0.55);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.v3-real-card__caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 40px 18px 18px;
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--card-tint, #0D3040) 90%, black 6%) 0%,
    color-mix(in srgb, var(--card-tint, #0D3040) 45%, transparent) 65%,
    transparent 100%
  );
  transition: background 0.4s ease;
}
.v3-real-card:hover .v3-real-card__caption {
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--card-tint, #0D3040) 96%, black 10%) 0%,
    color-mix(in srgb, var(--card-tint, #0D3040) 60%, transparent) 72%,
    transparent 100%
  );
}
.v3-real-card__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(19px, 2.1vw, 26px);
  color: #EBF4FC;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
}
.v3-real-card__meta {
  display: flex;
  gap: 12px;
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(235,244,252,0.75);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1) 0.05s, opacity 0.4s ease 0.05s;
}
/* Direction de révélation — une par variante (data-variant = index % 4) */
.v3-real-card[data-variant="0"] .v3-real-card__name,
.v3-real-card[data-variant="0"] .v3-real-card__meta { transform: translateY(18px); }
.v3-real-card[data-variant="1"] .v3-real-card__name,
.v3-real-card[data-variant="1"] .v3-real-card__meta { transform: translateX(-18px); }
.v3-real-card[data-variant="2"] .v3-real-card__name,
.v3-real-card[data-variant="2"] .v3-real-card__meta { transform: translateX(18px); }
.v3-real-card[data-variant="3"] .v3-real-card__name,
.v3-real-card[data-variant="3"] .v3-real-card__meta { transform: scale(0.86); }

.v3-real-card:hover .v3-real-card__name,
.v3-real-card:hover .v3-real-card__meta,
.v3-real-card__link:focus-visible .v3-real-card__name,
.v3-real-card__link:focus-visible .v3-real-card__meta {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
/* Tactile : pas de hover → contenu toujours visible */
@media (hover: none) {
  .v3-real-card__name,
  .v3-real-card__meta { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .v3-real-card__frame,
  .v3-real-card__img,
  .v3-real-card__caption,
  .v3-real-card__name,
  .v3-real-card__meta { transition: none !important; }
  .v3-real-card:hover .v3-real-card__img { transform: none; }
  .v3-real-card__name,
  .v3-real-card__meta { opacity: 1; transform: none; }
}

/* ── 21. RÉALISATIONS — CTA ────────────────────────────────────────── */
.v3-real-cta { background: #0D3040; padding: 80px 48px; }
.v3-real-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.v3-real-cta__eyebrow {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: rgba(235,244,252,0.28);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.v3-real-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  color: #EBF4FC;
  letter-spacing: -2px;
  line-height: 1.05;
}
.v3-real-cta__body {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  color: rgba(235,244,252,0.6);
  line-height: 1.65;
  max-width: 440px;
}
.v3-real-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--feu);
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.2px;
  text-decoration: none;
}

/* ── 22. RÉALISATION SINGLE ────────────────────────────────────────── */
.v3-rsingle-back {
  position: fixed;
  top: 84px;
  left: 48px;
  z-index: 500;
}
.v3-rsingle-back__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-interface);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  background: rgba(13, 48, 64, 0.55);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 18px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.v3-rsingle-back__link:hover {
  background: #1A7AB0;
  border-color: #1A7AB0;
  transform: translateX(-3px);
}
.v3-rsingle-back__arrow {
  display: inline-flex;
  transition: transform 0.3s ease;
}
.v3-rsingle-back__link:hover .v3-rsingle-back__arrow {
  transform: translateX(-2px);
}
.v3-rsingle-hero {
  height: 92svh;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.v3-rsingle-hero__img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-interface);
  font-size: 14px;
  color: rgba(13,48,64,0.1);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.v3-rsingle-hero__img-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.v3-rsingle-hero__gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(transparent, var(--bg));
}
.v3-rsingle-content__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 48px 96px;
}
.v3-rsingle-content--title {
  position: relative;
  z-index: 2;
  margin-top: -96px;
  background: var(--bg);
  border-radius: 32px 32px 0 0;
}
.v3-rsingle-content__inner--title {
  padding-top: 56px;
  padding-bottom: 32px;
}
.v3-rsingle-content--title + .v3-rsingle-content .v3-rsingle-content__inner {
  padding-top: 0;
}
.v3-rsingle-title { margin-bottom: 0; }
.v3-rsingle-title__eyebrow {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.v3-rsingle-title__h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 52px);
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.v3-rsingle-title__intro {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 2.4vw, 24px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
}
.v3-rsingle-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 220px));
  justify-content: start;
  width: fit-content;
  max-width: 100%;
  gap: 1px;
  background: var(--border-c);
  margin-bottom: 64px;
}
.v3-rsingle-meta__item { background: var(--bg); padding: 20px 16px; }
.v3-rsingle-meta__label {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.v3-rsingle-meta__val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--text);
  letter-spacing: -0.2px;
}
.v3-rsingle-section { margin-bottom: 48px; }
.v3-rsingle-section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.v3-rsingle-section__text {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.v3-rsingle-section__frame {
  margin-top: 24px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border-c);
  background: var(--card);
  box-shadow: 0 24px 48px -28px rgba(13,48,64,0.28);
}
[data-theme="dark"] .v3-rsingle-section__frame {
  box-shadow: 0 24px 48px -28px rgba(0,0,0,0.45);
}
.v3-rsingle-section__chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-c);
}
.v3-rsingle-section__dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.v3-rsingle-section__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26,122,176,0.35);
}
.v3-rsingle-section__dot:nth-child(2) { background: rgba(26,122,176,0.5); }
.v3-rsingle-section__dot:nth-child(3) { background: rgba(26,122,176,0.65); }
.v3-rsingle-section__url {
  flex: 1;
  max-width: 320px;
  margin: 0 auto;
  padding: 5px 16px;
  border-radius: 999px;
  background: var(--input-bg);
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v3-rsingle-section__viewport {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ph);
}
.v3-rsingle-section__img-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.v3-rsingle-results {
  background: #0D3040;
  padding: 36px 32px;
  margin-bottom: 48px;
}
.v3-rsingle-results__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.v3-rsingle-results__eyebrow {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: rgba(235,244,252,0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.v3-rsingle-results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v3-rsingle-results__grid.is-wide {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.v3-rsingle-results__grid.is-pair {
  grid-template-columns: repeat(2, 1fr);
  max-width: 480px;
  margin: 0 auto;
  gap: 48px;
}
.v3-rsingle-results__grid.is-single {
  grid-template-columns: max-content;
  justify-content: center;
}
.v3-rsingle-results__grid.is-pair .v3-rsingle-results__num,
.v3-rsingle-results__grid.is-single .v3-rsingle-results__num {
  font-size: clamp(32px, 5vw, 48px);
}
.v3-rsingle-results__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 36px);
  color: var(--feu);
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.v3-rsingle-results__label {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 10px;
  color: rgba(235,244,252,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.v3-rsingle-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.v3-rsingle-nav__back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.v3-rsingle-nav__site {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-interface);
  font-weight: 600;
  font-size: 14px;
  color: var(--azur);
  background: none;
  border: 1.5px solid var(--azur);
  padding: 12px 20px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.v3-rsingle-nav__site:hover,
.v3-rsingle-nav__site:focus-visible {
  background: var(--azur);
  color: #fff;
}
.v3-rsingle-nav__site svg { flex-shrink: 0; }
.v3-rsingle-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--feu);
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.2px;
  text-decoration: none;
}
.v3-rsingle-quote {
  background: #0D3040;
  padding: 80px 48px;
  overflow: hidden;
}
.v3-rsingle-quote__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.v3-rsingle-quote__text {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.8vw, 32px);
  color: #EBF4FC;
  line-height: 1.45;
  margin: 0;
}
.v3-rsingle-quote__attribution {
  display: block;
  margin-top: 24px;
  font-family: var(--font-interface);
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: rgba(235,244,252,0.6);
}

/* ── 23. À PROPOS — HERO ───────────────────────────────────────────── */
.v3-about-hero {
  background: var(--hero-bg);
  min-height: 68svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 96px 48px 72px;
}
.v3-about-hero__eyebrow {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.v3-about-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 8vw, 110px);
  color: var(--text);
  letter-spacing: -3px;
  line-height: 0.9;
  margin-bottom: 32px;
}
.v3-about-hero__line {
  height: 1px;
  background: var(--border-c);
  margin-bottom: 32px;
  transform-origin: left;
}
.v3-about-hero__quote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 2.9vw, 34px);
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 720px;
}
.v3-about-hero__attribution {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 1px;
  margin-top: 20px;
}

/* ── 24. À PROPOS — HISTOIRE FONDATRICE ───────────────────────────── */
.v3-about-origin {
  background: #0D3040;
  overflow: hidden;
}
.v3-about-origin__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: start;
  gap: 0;
}

/* Sidebar gauche */
.v3-about-origin__sidebar {
  position: sticky;
  top: 80px;
  padding: 96px 56px 96px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 100%;
}
.v3-about-origin__eyebrow {
  font-family: var(--font-mono, 'DM Mono', monospace);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1A7AB0;
}
.v3-about-origin__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}
.v3-about-origin__year {
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.06);
  margin-top: auto;
  pointer-events: none;
  user-select: none;
}

/* Contenu droit */
.v3-about-origin__content {
  padding: 96px 0 96px 64px;
}
.v3-about-origin__body {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
}
.v3-about-origin__body p {
  margin-bottom: 1.4em;
}
.v3-about-origin__body p:last-child {
  margin-bottom: 0;
}
.v3-about-origin__closing {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.0625rem;
  font-weight: 600;
  font-style: italic;
  color: #1A7AB0;
}

@media (max-width: 1024px) {
  .v3-about-origin__inner { padding: 0 32px; }
  .v3-about-origin__sidebar { padding-right: 40px; }
  .v3-about-origin__content { padding-left: 48px; }
}
@media (max-width: 768px) {
  .v3-about-origin__inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .v3-about-origin__sidebar {
    position: static;
    padding: 64px 0 40px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: unset;
  }
  .v3-about-origin__year { display: none; }
  .v3-about-origin__content { padding: 40px 0 64px; }
}
@media (max-width: 480px) {
  .v3-about-origin__sidebar { padding-top: 48px; }
  .v3-about-origin__content { padding-bottom: 48px; }
}

/* ── 24. À PROPOS — ÉQUIPE ─────────────────────────────────────────── */
.v3-about-team { padding: 96px 48px; background: var(--bg); }
.v3-about-team__inner { max-width: 1100px; margin: 0 auto; }
.v3-about-team__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 12px;
}
.v3-about-team__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--text);
  letter-spacing: -1px;
}
.v3-about-team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.v3-about-team__card {
  background: #EBF4FC;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .v3-about-team__card { background: rgba(235,244,252,0.05); }
.v3-about-team__card--dark { background: #0D3040 !important; }
.v3-about-team__photo {
  height: 200px;
  background: #D8E4EE;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(13,48,64,0.1);
}
.v3-about-team__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: #0D3040;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.v3-about-team__card--dark .v3-about-team__name { color: #EBF4FC; }
.v3-about-team__role {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  color: rgba(13,48,64,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.v3-about-team__card--dark .v3-about-team__role { color: rgba(235,244,252,0.5); }
.v3-about-team__bio {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: rgba(13,48,64,0.6);
  line-height: 1.7;
}
.v3-about-team__card--dark .v3-about-team__bio { color: rgba(235,244,252,0.6); }

/* ── 25. À PROPOS — HISTOIRE / QUOTE / VALEURS / CTA ──────────────── */
.v3-about-history { padding: 96px 48px; background: var(--bg-alt); }
.v3-about-history__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}
.v3-about-history__tl-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}
.v3-about-history__tl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-c);
  flex-shrink: 0;
  margin-top: 4px;
}
.v3-about-history__tl-item:last-child .v3-about-history__tl-dot { background: var(--feu); }
.v3-about-history__tl-yr {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.v3-about-history__tl-item:last-child .v3-about-history__tl-yr { color: var(--feu); }
.v3-about-history__tl-txt {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}
.v3-about-history__stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-c);
}
.v3-about-history__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  letter-spacing: -1px;
  min-width: 70px;
}
.v3-about-history__stat-label {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  color: var(--text-muted);
}

.v3-about-quote {
  background: #0D3040;
  padding: 96px 48px;
  overflow: hidden;
}
.v3-about-quote__text {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3.4vw, 41px);
  color: #EBF4FC;
  line-height: 1.45;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.v3-about-values { padding: 96px 48px; background: var(--bg); }
.v3-about-values__inner { max-width: 1100px; margin: 0 auto; }
.v3-about-values__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 12px;
}
.v3-about-values__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--text);
  letter-spacing: -1px;
}
.v3-about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-c);
}
.v3-about-values__card { background: var(--bg); padding: 36px 28px; }
.v3-about-values__accent {
  width: 28px;
  height: 2px;
  background: var(--feu);
  margin-bottom: 20px;
}
.v3-about-values__val-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.v3-about-values__desc {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.v3-about-cta {
  background: var(--bg-alt);
  padding: 80px 48px;
  border-top: 1px solid var(--border-c);
}
.v3-about-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.v3-about-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.v3-about-cta__sub {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}
.v3-about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: #0D3040;
  color: #EBF4FC;
  border: none;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.2px;
  text-decoration: none;
}

/* ── 26. BLOG — HERO ───────────────────────────────────────────────── */
.v3-blog-hero {
  background: var(--hero-bg);
  min-height: 42svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 96px 48px 72px;
}
.v3-blog-hero__eyebrow {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.v3-blog-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 11vw, 140px);
  color: var(--text);
  letter-spacing: -4px;
  line-height: 0.88;
  margin-bottom: 28px;
}
.v3-blog-hero__line {
  height: 1px;
  background: var(--border-c);
  margin-bottom: 28px;
  transform-origin: left;
}
.v3-blog-hero__sub {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.55;
}

/* ── 27. BLOG — FILTRES + GRID ─────────────────────────────────────── */
.v3-blog-filters {
  padding: 36px 48px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border-c);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.v3-blog-filter {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
  background: transparent;
  color: var(--text-faint);
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.v3-blog-filter.is-active { color: var(--text); border-bottom-color: var(--feu); }

.v3-blog-featured { padding: 48px 48px 0; }
.v3-blog-featured__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2px;
  background: var(--border-c);
  cursor: pointer;
}
.v3-blog-featured__img {
  height: 420px;
  position: relative;
  overflow: hidden;
  background: #C8D8E8;
}
.v3-blog-featured__img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.v3-blog-featured__badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}
.v3-blog-featured__tag {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--feu);
  color: #fff;
  padding: 4px 10px;
}
.v3-blog-featured__badge-une {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.38);
  color: #fff;
  padding: 4px 10px;
}
.v3-blog-featured__content {
  background: var(--bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v3-blog-featured__meta {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  color: var(--text-faint);
}
.v3-blog-featured__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text);
  letter-spacing: -0.6px;
  line-height: 1.25;
  margin-bottom: 24px;
}
.v3-blog-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 13px;
  color: #1A7AB0;
  text-decoration: none;
}

.v3-blog-grid { padding: 56px 48px 96px; }
.v3-blog-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.v3-blog-card { cursor: pointer; display: flex; flex-direction: column; text-decoration: none; }
.v3-blog-card__img-wrap {
  display: block;
  height: 220px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  background: #C8D8E8;
  text-decoration: none;
}
.v3-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.v3-blog-card:hover .v3-blog-card__img { transform: scale(1.04); }
.v3-blog-card__tag {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--feu);
  color: #fff;
  padding: 4px 10px;
  position: absolute;
  top: 12px;
  left: 12px;
}
.v3-blog-card__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.v3-blog-card:hover .v3-blog-card__overlay { background: rgba(13,48,64,0.5); }
.v3-blog-card__content { flex: 1; display: flex; flex-direction: column; }
.v3-blog-card__meta {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  color: var(--text-faint);
}
.v3-blog-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(14px, 1.5vw, 17px);
  letter-spacing: -0.4px;
  line-height: 1.35;
  margin-bottom: 14px;
  flex: 1;
  color: var(--text);
  transition: color 0.2s;
}
.v3-blog-card:hover .v3-blog-card__title { color: #1A7AB0; }
.v3-blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  color: #1A7AB0;
  text-decoration: none;
}

.v3-blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border-c);
}
.v3-blog-pagination .nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.v3-blog-pagination .page-numbers {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--text-faint);
  padding: 9px 15px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  line-height: 1;
}
.v3-blog-pagination .page-numbers:not(.dots):hover {
  color: var(--text);
  border-color: var(--border-c);
}
.v3-blog-pagination .page-numbers.current {
  color: var(--text);
  border-color: var(--feu);
}
.v3-blog-pagination .page-numbers.dots {
  border: none;
  padding: 9px 6px;
  cursor: default;
}
.v3-blog-pagination .page-numbers.prev,
.v3-blog-pagination .page-numbers.next {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1A7AB0;
}

.v3-blog-newsletter { background: #0D3040; padding: 80px 48px; }
.v3-blog-newsletter__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.v3-blog-newsletter__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  color: #EBF4FC;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.v3-blog-newsletter__sub {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  color: rgba(235,244,252,0.6);
  margin-bottom: 32px;
  line-height: 1.65;
}
.v3-blog-newsletter__form { display: flex; justify-content: center; }
.v3-blog-newsletter__input {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 16px;
  background: rgba(235,244,252,0.07);
  border: 1px solid rgba(235,244,252,0.15);
  border-right: none;
  color: #EBF4FC;
  padding: 13px 18px;
  width: 240px;
  outline: none;
}
.v3-blog-newsletter__input:focus-visible {
  outline: 2px solid var(--feu);
  outline-offset: 2px;
}
.v3-blog-newsletter__input::placeholder { color: rgba(235,244,252,0.35); }
.v3-blog-newsletter__btn {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  background: var(--feu);
  color: #fff;
  border: none;
  padding: 13px 22px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.2px;
}

/* ── 28. ARTICLE ───────────────────────────────────────────────────── */
.v3-article-back {
  position: fixed;
  top: 70px;
  left: 48px;
  z-index: 500;
}
.v3-article-back__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-interface);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  background: rgba(13, 48, 64, 0.55);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 18px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.v3-article-back__link:hover {
  background: #1A7AB0;
  border-color: #1A7AB0;
  transform: translateX(-3px);
}
.v3-article-back__arrow {
  display: inline-flex;
  transition: transform 0.3s ease;
}
.v3-article-back__link:hover .v3-article-back__arrow {
  transform: translateX(-2px);
}

.v3-article-cover {
  height: 55svh;
  background: #B8C8D8;
  position: relative;
  overflow: hidden;
}
.v3-article-cover__inner {
  position: absolute;
  inset: 0;
}
.v3-article-cover__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.v3-article-cover__cat {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--feu);
  color: #fff;
  padding: 4px 10px;
  position: absolute;
  top: 16px;
  left: 16px;
}
.v3-article-cover__gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(transparent, var(--bg));
}

.v3-article-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px 96px;
}
.v3-article-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  color: var(--text-faint);
}
.v3-article-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 4vw, 40px);
  color: var(--text);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 28px;
  text-wrap: balance;
}
.v3-article-intro {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 2.4vw, 24px);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.v3-article-body {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.78;
  color: var(--text);
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.v3-article-body p {
  margin-bottom: 1.5em;
  text-wrap: pretty;
}
.v3-article-body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-top: 48px;
  margin-bottom: 16px;
  hyphens: none;
  -webkit-hyphens: none;
}
.v3-article-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-top: 32px;
  margin-bottom: 12px;
  hyphens: none;
  -webkit-hyphens: none;
}
/* <br> injectés depuis le wireframe dans les titres → supprimer */
.v3-article-body h2 br,
.v3-article-body h3 br {
  display: none;
}
.v3-article-body ul,
.v3-article-body ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.v3-article-body li {
  margin-bottom: 0.55em;
  line-height: 1.7;
}
.v3-article-body strong { font-weight: 700; }
.v3-article-body em { font-style: italic; }
.v3-article-body a {
  color: #1A7AB0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.v3-article-body a:hover { color: var(--feu); }
.v3-article-body blockquote {
  border-left: 3px solid var(--feu);
  padding-left: 20px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text-muted);
}
.v3-article-body hr {
  border: none;
  border-top: 1px solid var(--border-c);
  margin: 40px 0;
}
.v3-article-body code {
  font-family: monospace;
  background: var(--bg-alt);
  padding: 2px 6px;
  font-size: 0.88em;
  border-radius: 2px;
}
.v3-article-body pre {
  background: var(--bg-alt);
  padding: 20px 24px;
  overflow-x: auto;
  margin-bottom: 1.5em;
  font-size: 0.9em;
}

.v3-article-section { margin-bottom: 36px; }
.v3-article-section__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.v3-article-highlight {
  background: #0D3040;
  padding: 28px 32px;
  margin: 40px 0;
}
.v3-article-highlight__quote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: #EBF4FC;
  line-height: 1.6;
}
.v3-article-highlight__attr {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  color: rgba(235,244,252,0.4);
  margin-top: 12px;
}

.v3-article-author {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border-c);
  border-bottom: 1px solid var(--border-c);
  margin-bottom: 56px;
}
.v3-article-author__avatar {
  width: 52px;
  height: 52px;
  background: #C8D0D8;
  flex-shrink: 0;
}
.v3-article-author__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
}
.v3-article-author__role {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 11px;
  color: var(--text-faint);
}

.v3-article-cta-inline {
  text-align: center;
  background: var(--bg-alt);
  padding: 36px 28px;
}
.v3-article-cta-inline__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}
.v3-article-cta-inline__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--feu);
  color: #fff;
  border: none;
  padding: 13px 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.2px;
  cursor: pointer;
}

.v3-article-related { background: var(--bg-alt); padding: 72px 48px; }
.v3-article-related__inner { max-width: 1100px; margin: 0 auto; }
.v3-article-related__eyebrow {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.v3-article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v3-article-related__card { cursor: pointer; }

/* ── 29. CONTACT ───────────────────────────────────────────────────── */
.v3-contact-hero {
  background: var(--hero-bg);
  min-height: 40svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 96px 48px 72px;
  overflow: hidden;
}
.v3-contact-hero__eyebrow {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.v3-contact-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 10vw, 120px);
  color: var(--text);
  letter-spacing: -4px;
  line-height: 0.9;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.v3-contact-hero__sub {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.5;
}

.v3-contact-layout { padding: 72px 48px 96px; }
.v3-contact-layout__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

.v3-contact-form__eyebrow {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.v3-contact-form__reassurance {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 12px;
  letter-spacing: 0.5px;
}

/* Gravity Forms dans contact */
.v3-contact-form__gf .gform_wrapper { margin: 0 !important; }
.v3-contact-form__gf .gfield_label,
.v3-contact-form__gf label.gfield_label {
  font-family: var(--font-interface) !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  color: var(--text-faint) !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
}
.v3-contact-form__gf input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.v3-contact-form__gf textarea,
.v3-contact-form__gf select {
  font-family: var(--font-interface) !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  background: var(--input-bg) !important;
  border: 1px solid var(--border-c) !important;
  color: var(--text) !important;
  padding: 13px 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  outline: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: border-color 0.2s !important;
}
.v3-contact-form__gf input:focus,
.v3-contact-form__gf textarea:focus { border-color: var(--feu) !important; }
.v3-contact-form__gf input:focus-visible,
.v3-contact-form__gf textarea:focus-visible {
  outline: 2px solid var(--feu) !important;
  outline-offset: 2px !important;
}
.v3-contact-form__gf .gform_button,
.v3-contact-form__gf input[type="submit"] {
  width: 100% !important;
  background: var(--feu) !important;
  color: #fff !important;
  border: none !important;
  padding: 16px 24px !important;
  cursor: pointer !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  letter-spacing: -0.2px !important;
  border-radius: 0 !important;
  transition: background 0.3s !important;
}
.v3-contact-form__gf .gfield_validation_message,
.v3-contact-form__gf .gform_validation_errors {
  font-family: var(--font-interface);
  font-size: 12px;
  color: #dc3545;
}
.v3-contact-form__gf .gfield--type-captcha { margin-bottom: 16px; }
.v3-contact-form__gf .gfield_required { margin-left: 4px; }

.v3-contact-info__eyebrow {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.v3-contact-info__list { list-style: none; padding: 0; }
.v3-contact-info__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-c);
}
.v3-contact-info__icon { color: var(--feu); flex-shrink: 0; margin-top: 2px; }
.v3-contact-info__label {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.v3-contact-info__val {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  display: block;
  text-decoration: none;
}
a.v3-contact-info__val:hover { color: var(--feu); }

.v3-contact-info__map {
  margin-top: 36px;
  height: 220px;
  background: var(--bg-alt);
  border: 1px solid var(--border-c);
  overflow: hidden;
}
.v3-contact-info__map iframe { width: 100%; height: 100%; border: 0; }

.v3-contact-info__phone {
  margin-top: 36px;
  padding: 24px;
  background: #0D3040;
}
.v3-contact-info__phone-label {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 12px;
  color: rgba(235,244,252,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.v3-contact-info__phone-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: #EBF4FC;
  text-decoration: none;
  display: block;
  letter-spacing: -0.5px;
}
.v3-contact-info__phone-hours {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 13px;
  color: rgba(235,244,252,0.45);
  margin-top: 6px;
}

/* ── 30. LEGAL ─────────────────────────────────────────────────────── */
.v3-legal-hero {
  background: var(--hero-bg);
  padding: 96px 48px 60px;
}
.v3-legal-hero__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.v3-legal-hero__eyebrow {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.v3-legal-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 56px);
  color: var(--text);
  letter-spacing: -1.5px;
}

.v3-legal-tabs {
  background: var(--bg);
}
.v3-legal-tabs__nav {
  border-bottom: 1px solid var(--border-c);
  padding: 0 48px;
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.v3-legal-tab {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 13px;
  padding: 16px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-faint);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.3px;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}
.v3-legal-tab.is-active { color: var(--text); border-bottom-color: var(--feu); }
.v3-legal-tab:hover:not(.is-active) { color: var(--text); }

.v3-legal-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 48px 96px;
}
.v3-legal-section { margin-bottom: 40px; }
.v3-legal-section__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-c);
}
.v3-legal-section p,
.v3-legal-section__text {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.v3-legal-content__updated {
  font-family: var(--font-interface);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}
.v3-legal-contact {
  margin-top: 56px;
  padding: 24px;
  background: var(--bg-alt);
  border-top: 2px solid var(--feu);
}
.v3-legal-contact__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}
.v3-legal-contact__text {
  font-family: var(--font-interface);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
}
.v3-legal-contact__email {
  color: #1A7AB0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.v3-legal-contact__email:hover { color: var(--feu); }

/* ── 31. COMPOSANTS SECTION PARTAGÉS ───────────────────────────────── */
.v3-section-header__eyebrow {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.v3-section-header__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--text);
  letter-spacing: -1px;
}
.v3-section-header__link {
  font-family: var(--font-interface);
  font-weight: 500;
  font-size: 13px;
  color: #1A7AB0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.18s;
}
.v3-section-header__link:hover { color: #0D3040; }

/* ── 32. GSAP HELPERS ──────────────────────────────────────────────── */
[data-gsap="fade-up"] { will-change: transform, opacity; }
[data-gsap="fade-in"] { will-change: opacity; }

/* ── 33. RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .v3-about-values__grid { grid-template-columns: 1fr 1fr; }
  .v3-svc-process__grid { grid-template-columns: 1fr 1fr; }
  .v3-home-adn__inner { gap: 48px; }
}

@media (max-width: 768px) {
  .v3-header { padding: 0 20px; }
  .v3-overlay { padding: 72px 24px 40px; }
  .v3-overlay__close { right: 20px; }

  /* Logo header — flex-shrink désactivé + hauteur réduite pour éviter l'écrasement (v3-header__controls prend la majorité de la largeur dispo) */
  .v3-header__logo,
  .v3-header__logo-img { flex-shrink: 0; }
  .v3-header__logo-img { height: 34px; }
  .v3-header.is-scrolled .v3-header__logo-img { height: 30px; }

  /* Accueil — logo header masqué tant que le hero n'a pas été scrollé */
  .home .v3-header__logo {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .home .v3-header.hero-cleared .v3-header__logo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .v3-footer__inner { padding: 56px 24px 32px; }
  .v3-footer__top { flex-direction: column; gap: 40px; margin-bottom: 40px; }
  .v3-footer__nav { gap: 32px; }
  .v3-footer__tagline { font-size: 17px; }

  #v3-page-content { padding-top: 60px; }

  .v3-home-hero__infobar { display: none; }
  .v3-home-hero__center { padding: 80px 24px 0; }
  .v3-home-hero__logo { height: 72px; }
  .v3-home-hero__caption {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .v3-home-hero__scroll { display: none; }

  .v3-home-stats { padding: 56px 24px; }
  .v3-home-stats__grid { grid-template-columns: 1fr; }

  .v3-home-svc { padding: 64px 24px; }
  .v3-home-proj { padding: 64px 24px; }

  .v3-home-adn { padding: 64px 24px; }
  .v3-home-adn__inner { grid-template-columns: 1fr; gap: 40px; }
  .v3-home-adn__visual { height: 260px; }

  .v3-home-faq { padding: 64px 24px; }
  .v3-home-cta { padding: 72px 24px; }
  .v3-home-cta__form { flex-direction: column; align-items: stretch; }
  .v3-home-cta__email { width: 100%; border-right: 1px solid rgba(235,244,252,0.15); }

  .v3-svc-hero { padding: 96px 24px 64px; }
  .v3-svc-cards { padding: 64px 24px; }
  .v3-svc-cards__grid { grid-template-columns: 1fr; }
  .v3-svc-process { padding: 64px 24px; }
  .v3-svc-process__grid { grid-template-columns: 1fr; gap: 32px; }
  .v3-svc-process__step:not(:last-child) { border-right: none; margin-right: 0; padding-right: 0; }
  .v3-svc-guar { padding: 40px 24px; }
  .v3-svc-cta { padding: 64px 24px; }

  .v3-real-hero { padding: 96px 24px 64px; }
  .v3-real-stats { padding: 32px 24px; }
  .v3-real-grid-wrap { padding: 48px 24px 80px; }
  .v3-real-grid { grid-template-columns: 1fr; }
  .v3-real-cta { padding: 64px 24px; }

  .v3-about-hero { padding: 96px 24px 64px; }
  .v3-about-team { padding: 64px 24px; }
  .v3-about-team__grid { grid-template-columns: 1fr; }
  .v3-about-history { padding: 64px 24px; }
  .v3-about-history__inner { grid-template-columns: 1fr; gap: 48px; }
  .v3-about-quote { padding: 64px 24px; }
  .v3-about-values { padding: 64px 24px; }
  .v3-about-values__grid { grid-template-columns: 1fr 1fr; }
  .v3-about-cta { padding: 64px 24px; }
  .v3-about-cta__inner { flex-direction: column; align-items: flex-start; }

  .v3-blog-hero { padding: 96px 24px 64px; }
  .v3-blog-filters { padding: 28px 24px 0; }
  .v3-blog-featured { padding: 32px 24px 0; }
  .v3-blog-featured__grid { grid-template-columns: 1fr; }
  .v3-blog-featured__img { height: 240px; }
  .v3-blog-grid { padding: 40px 24px 80px; }
  .v3-blog-grid__inner { grid-template-columns: 1fr; gap: 40px; }
  .v3-blog-newsletter { padding: 64px 24px; }
  .v3-blog-newsletter__form { flex-direction: column; align-items: stretch; }
  .v3-blog-newsletter__input { width: 100%; border-right: 1px solid rgba(235,244,252,0.15); }

  .v3-article-cover { height: 40svh; }
  .v3-article-content { padding: 0 24px 80px; }
  .v3-article-back { top: 60px; left: 20px; }
  .v3-article-back__link { padding: 8px 14px; font-size: 11px; }
  .v3-article-related__grid { grid-template-columns: 1fr; }

  .v3-contact-hero { padding: 80px 24px 56px; }
  .v3-contact-layout { padding: 56px 24px 80px; }
  .v3-contact-layout__inner { grid-template-columns: 1fr; gap: 48px; }

  .v3-legal-hero { padding: 80px 24px 48px; }
  .v3-legal-tabs__nav { padding: 0 24px; }
  .v3-legal-content { padding: 48px 24px 80px; }

  .v3-rsingle-back { top: 68px; left: 20px; }
  .v3-rsingle-back__link { padding: 8px 14px; font-size: 11px; }
  .v3-rsingle-hero { height: 90svh; }
  .v3-rsingle-content__inner { padding: 48px 24px 80px; }
  .v3-rsingle-content--title { margin-top: -64px; border-radius: 24px 24px 0 0; }
  .v3-rsingle-content__inner--title { padding-top: 40px; padding-bottom: 24px; }
  .v3-rsingle-meta { grid-template-columns: 1fr 1fr; width: 100%; }
  .v3-rsingle-results__grid { gap: 16px; }
}

/* ══════════════════════════════════════════════════════════════════════
   35. SERVICE SINGLE — v4-service-single-*
   CONTRACT : ServiceSingle4.jsx (wireframe V4, commit 69b17fb)
   BEM prefix : v4-service-single-[bloc]__[element]
   ══════════════════════════════════════════════════════════════════════ */

/* ── Wrapper ──────────────────────────────────────────────────────── */
.v4-service-single {
  background: var(--surface);
  color: var(--on-surface);
}

/* ── HERO ──────────────────────────────────────────────────────────── */
.v4-service-single-hero {
  position: relative;
  overflow: hidden;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(64px, 8vw, 120px);
  background: var(--surface-alt);
}

.v4-service-single-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px clamp(24px, 6vw, 120px) 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Breadcrumb */
.v4-service-single-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-interface);
  font-size: 13px;
  color: var(--on-surface);
  opacity: 0.55;
}
.v4-service-single-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.v4-service-single-hero__breadcrumb a:hover { opacity: 1; }
.v4-service-single-hero__breadcrumb span[aria-hidden] { opacity: 0.4; }

/* Tagline h1 */
.v4-service-single-hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--on-surface);
  max-width: 820px;
}
.v4-service-single-hero__tagline--italic {
  display: block;
  font-style: italic;
  color: var(--orange);
  padding-bottom: 0.14em;
}

/* Subtitle */
.v4-service-single-hero__subtitle {
  font-family: var(--font-interface);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.65;
  color: var(--on-surface);
  opacity: 0.7;
  max-width: 560px;
}

/* Décor index aria-hidden */
.v4-service-single-hero__index {
  position: absolute;
  right: clamp(12px, 4vw, 80px);
  bottom: -20px;
  font-family: var(--font-display);
  font-size: clamp(160px, 22vw, 320px);
  font-weight: 900;
  line-height: 1;
  color: var(--on-surface);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

/* ── IMPACT STRIP (section D) ──────────────────────────────────────── */
.v4-service-single-impact {
  background: var(--orange);
  padding: clamp(40px, 5vw, 64px) 0;
}

.v4-service-single-impact__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 120px);
  display: flex;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
}

.v4-service-single-impact__item {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v4-service-single-impact__stat {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.025em;
}

.v4-service-single-impact__label {
  font-family: var(--font-interface);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

/* ── WHY / POUR QUI ────────────────────────────────────────────────── */
.v4-service-single-why {
  background: var(--surface);
  padding: clamp(64px, 8vw, 120px) 0;
}

.v4-service-single-why__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.v4-service-single-why__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--on-surface);
}

.v4-service-single-why__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v4-service-single-why__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-interface);
  font-size: 15px;
  line-height: 1.55;
  color: var(--on-surface);
}

.v4-service-single-why__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--orange);
}

/* ── INCLUS (section B) ────────────────────────────────────────────── */
.v4-service-single-inclus {
  background: var(--surface-alt);
  padding: clamp(64px, 8vw, 120px) 0;
}

.v4-service-single-inclus__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 120px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}

.v4-service-single-inclus__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--on-surface);
}

.v4-service-single-inclus__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.v4-service-single-inclus__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  align-items: start;
}

.v4-service-single-inclus__num {
  grid-column: 1;
  grid-row: 1 / 3;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.04em;
  align-self: center;
}

.v4-service-single-inclus__titre {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.3;
}

.v4-service-single-inclus__texte {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--font-interface);
  font-size: 13px;
  line-height: 1.6;
  color: var(--on-surface);
  opacity: 0.65;
}

/* ── PROCESSUS (section C) ─────────────────────────────────────────── */
.v4-service-single-processus {
  background: var(--surface);
  padding: clamp(64px, 8vw, 120px) 0;
}

.v4-service-single-processus__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 120px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}

.v4-service-single-processus__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--on-surface);
}

/* Mobile stack */
.v4-service-single-processus__stack {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.v4-service-single-processus__stack-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 20px;
  padding-bottom: 32px;
}
.v4-service-single-processus__stack-item.is-last {
  padding-bottom: 0;
}

.v4-service-single-processus__stack-dot {
  grid-column: 1;
  grid-row: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 3px;
  justify-self: center;
}

.v4-service-single-processus__stack-connector {
  grid-column: 1;
  grid-row: 2;
  width: 2px;
  background: var(--border);
  justify-self: center;
  min-height: 24px;
}

.v4-service-single-processus__stack-content {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 8px;
}

.v4-service-single-processus__stack-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v4-service-single-processus__stack-titre {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.25;
}

.v4-service-single-processus__stack-texte {
  font-family: var(--font-interface);
  font-size: 14px;
  line-height: 1.6;
  color: var(--on-surface);
  opacity: 0.65;
}

/* Desktop timeline — hidden on mobile */
.v4-service-single-processus__desktop { display: none; }

/* Rail */
.v4-service-single-processus__rail {
  position: relative;
  height: 4px;
  margin-bottom: 40px;
}

.v4-service-single-processus__track {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 2px;
}

.v4-service-single-processus__line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--orange);
  border-radius: 2px;
  transform-origin: left center;
}

.v4-service-single-processus__dots {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}

.v4-service-single-processus__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  transform: scale(0);
  opacity: 0;
}

/* Step grid */
.v4-service-single-processus__steps {
  display: grid;
  gap: 24px;
}

.v4-service-single-processus__step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(18px);
}

.v4-service-single-processus__step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v4-service-single-processus__step-titre {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.2;
}

.v4-service-single-processus__step-texte {
  font-family: var(--font-interface);
  font-size: 13px;
  line-height: 1.6;
  color: var(--on-surface);
  opacity: 0.65;
}

/* ── EXTRA — section sombre ─────────────────────────────────────────── */
.v4-service-single-extra {
  background: var(--extra-bg);
  padding: clamp(64px, 8vw, 120px) 0;
}

.v4-service-single-extra__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 120px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
}

.v4-service-single-extra__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #EBF4FC;
}

/* Liste engagements */
.v4-service-single-extra__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v4-service-single-extra__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-interface);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(235,244,252,0.82);
}

.v4-service-single-extra__list-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--orange);
}

/* Texte libre */
.v4-service-single-extra__body {
  font-family: var(--font-interface);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: rgba(235,244,252,0.72);
  max-width: 640px;
}

/* Combo block */
.v4-service-single-extra__combo {
  border-top: 1px solid rgba(235,244,252,0.10);
  padding-top: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}

.v4-service-single-extra__combo-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  color: #EBF4FC;
  line-height: 1.2;
}

.v4-service-single-extra__combo-body {
  font-family: var(--font-interface);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(235,244,252,0.65);
}

.v4-service-single-extra__combo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 12px 20px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}
.v4-service-single-extra__combo-btn svg {
  width: 16px;
  height: 16px;
}
.v4-service-single-extra__combo-btn:hover { background: #c94700; }
.v4-service-single-extra__combo-btn:active { transform: scale(0.98); }

/* ── CTA FINAL ─────────────────────────────────────────────────────── */
.v4-service-single-cta {
  background: var(--surface-alt);
  padding: clamp(64px, 8vw, 120px) 0;
}

.v4-service-single-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}

.v4-service-single-cta__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 320px;
}

.v4-service-single-cta__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--on-surface);
}

.v4-service-single-cta__subtitle {
  font-family: var(--font-interface);
  font-size: 15px;
  line-height: 1.6;
  color: var(--on-surface);
  opacity: 0.65;
}

.v4-service-single-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 16px 28px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.v4-service-single-cta__btn svg {
  width: 18px;
  height: 18px;
}
.v4-service-single-cta__btn:hover { background: #c94700; }
.v4-service-single-cta__btn:active { transform: scale(0.97); }

/* ── RESPONSIVE service-single ─────────────────────────────────────── */
@media (min-width: 860px) {
  .v4-service-single-processus__stack { display: none; }
  .v4-service-single-processus__desktop { display: flex; flex-direction: column; }
}

@media (max-width: 860px) {
  .v4-service-single-why__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .v4-service-single-inclus__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .v4-service-single-impact__inner {
    flex-direction: column;
    gap: 32px;
  }
  .v4-service-single-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── 36. PREFERS REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
