@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,700;1,9..144,300;1,9..144,500;1,9..144,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --navy: #003090;
  --navy-dark: #001B52;
  --navy-mid: #0040B8;
  --vermillion: #F84808;
  --vermillion-dark: #C63600;
  --cream: #F7E9C6;
  --cream-dark: #EDD9A3;
  --white: #FFFFFF;
  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--navy-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 3px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vermillion);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
}

.section-title em {
  font-weight: 500;
  font-style: italic;
}

.section-title--light {
  color: var(--cream);
}

.section-title--light em {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-text-1 { animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.2s both; }
.hero-text-2 { animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.4s both; }
.hero-text-3 { animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.6s both; }
.hero-text-4 { animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.8s both; }

@keyframes maskFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}

.mask-float {
  animation: maskFloat 8s ease-in-out infinite;
}

@keyframes scrollDown {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.4; }
}

.scroll-indicator {
  animation: scrollDown 2s ease-in-out infinite;
}

.btn-vermillion {
  background: var(--vermillion);
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.btn-vermillion:hover {
  background: var(--vermillion-dark);
  transform: translateY(-1px);
}

.btn-outline-cream {
  border: 1px solid rgba(247, 233, 198, 0.4);
  color: var(--cream);
  background: transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.btn-outline-cream:hover {
  border-color: var(--cream);
  background: rgba(247, 233, 198, 0.08);
}

.btn-lg {
  padding: 13px 26px;
  font-size: 14px;
}

.btn-md {
  padding: 12px 28px;
  font-size: 14px;
}

.btn-navy {
  background: var(--navy);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.03em;
  transition: background 0.2s ease;
}

.btn-navy:hover {
  background: var(--navy-dark);
}

.btn-navy.refs-download {
  padding: 12px 18px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-white {
  background: var(--white);
  color: var(--vermillion);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease;
}

.btn-white:hover {
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease;
}

.btn-outline-white:hover {
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.text-link:hover {
  opacity: 0.8;
}

.portrait-duotone {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-duotone img {
  filter: grayscale(30%);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-duotone svg {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.portrait-duotone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  mix-blend-mode: multiply;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.portrait-duotone:hover::after {
  opacity: 0.15;
}

.lines-pattern {
  background-image: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(247,233,198,0.08) 40px, rgba(247,233,198,0.08) 41px);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

.nav.scrolled {
  background: rgba(0, 27, 82, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(247, 233, 198, 0.1);
  height: 80px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 70px;
  width: auto;
  display: block;
  max-width: 250px;
  object-fit: contain;
}

.nav-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--vermillion);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--cream);
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(247, 233, 198, 0.75);
  letter-spacing: 0.04em;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vermillion);
  transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--cream);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a.nav-link-active:not(.nav-cta)::after {
  width: 100%;
}

.nav-links a.nav-link-active:not(.nav-cta) {
  color: var(--cream);
}

.nav-cta {
  padding: 10px 22px;
  font-size: 15px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(6.5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6.5px);
}

.nav-mobile {
  display: none;
  background: var(--navy-dark);
  border-top: 1px solid rgba(247, 233, 198, 0.1);
  padding: 16px 24px 24px;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(247, 233, 198, 0.08);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cream);
  text-decoration: none;
}

.nav-mobile-cta {
  display: block;
  margin-top: 16px;
  text-align: center;
  padding: 12px 18px;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  background: var(--navy);
  overflow: hidden;
  position: relative;
}

.hero-bg-grid,
.hero-bg-halo,
.hero-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-grid {
  background-image:
    linear-gradient(rgba(247,233,198,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,233,198,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-bg-halo {
  background: radial-gradient(ellipse at 70% 40%, rgba(248,72,8,0.12) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vermillion);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-align: left !important;
  word-break: keep-all;
  hyphens: none;
}

.hero-title em {
  font-weight: 500;
  font-style: italic;
  color: var(--white);
}

.hero-chapo {
  font-size: 17px;
  font-weight: 300;
  color: rgba(247, 233, 198, 0.72);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 40px;
  text-align: justify;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-mask-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
}

.hero-ring-outer {
  width: 380px;
  height: 380px;
  border: 1px solid rgba(248, 72, 8, 0.15);
}

.hero-ring-inner {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(247, 233, 198, 0.06);
}

.hero-mask-col .hero-icon {
  width: clamp(180px, 22vw, 280px);
  height: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 40px rgba(248, 72, 8, 0.35));
  position: relative;
  z-index: 1;
}

.hero .scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(247, 233, 198, 0.4);
}

.hero .scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Stats */
.stats {
  background: var(--cream);
  padding: 56px 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(0, 48, 144, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-top: 6px;
}

.stat-note {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--navy-mid);
  opacity: 0.65;
  margin-top: 2px;
}

/* Expertises */
.expertises {
  background: var(--white);
}

.expertises-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.expertises-link {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.expertises-link:hover {
  opacity: 0.8;
}

.expertises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.expertise-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0, 48, 144, 0.1);
  padding: 36px 32px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 48, 144, 0.12);
}

.expertise-card:hover .expertise-accent {
  width: 100%;
}

.expertise-card--featured {
  background: var(--navy);
}

.expertise-card--featured:hover {
  transform: none;
  box-shadow: none;
}

.expertise-card--featured .expertise-accent {
  width: 100%;
}

.expertise-accent {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 32px;
  background: var(--vermillion);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.expertise-number {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(0, 48, 144, 0.4);
  margin-bottom: 16px;
}

.expertise-card--featured .expertise-number {
  color: rgba(247, 233, 198, 0.5);
}

.expertise-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.expertise-card--featured .expertise-title {
  color: var(--cream);
}

.expertise-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 27, 82, 0.65);
  line-height: 1.6;
}

.expertise-card--featured .expertise-desc {
  color: rgba(247, 233, 198, 0.72);
}

.expertise-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.expertise-card--featured .expertise-link {
  color: var(--vermillion);
}

.expertise-link:hover {
  opacity: 0.8;
}

.expertise-watermark {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 80px;
  height: auto;
  color: var(--cream);
  opacity: 0.08;
  pointer-events: none;
}

/* Réalisations */
.realisations {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.realisations-watermark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: auto;
  color: var(--cream);
  opacity: 0.04;
  pointer-events: none;
}

.realisations-header {
  margin-bottom: 56px;
}

.cases-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3px;
}

.case-card {
  position: relative;
  overflow: hidden;
  height: 206px;
}

.case-card--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: 420px;
}

.case-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(40%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.case-card:hover .case-image img {
  opacity: 0.5;
  transform: scale(1.04);
}

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 27, 82, 0.95) 0%, transparent 60%);
}

.case-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  z-index: 1;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.case-tag {
  background: rgba(248, 72, 8, 0.9);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  padding: 3px 8px;
}

.case-client {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(247, 233, 198, 0.6);
  margin-bottom: 8px;
}

.case-title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 8px;
}

.case-card--large .case-title {
  font-size: 24px;
}

.case-card:not(.case-card--large) .case-title {
  font-size: 17px;
}

.case-result {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--vermillion);
}

.realisations-cta {
  text-align: center;
  margin-top: 40px;
}

/* Références */
.references {
  background: var(--navy-dark);
  padding: 80px 24px;
}

.references-window {
  background: var(--navy-dark);
  border-radius: 28px;
  padding: 48px 56px 56px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 24px 48px rgba(0, 27, 82, 0.18);
  max-width: 900px;
  margin: 0 auto;
}

.references-window-header {
  text-align: center;
  margin-bottom: 40px;
}

.references-window-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--vermillion);
  margin-bottom: 10px;
}

.references-window-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.references-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 28px;
  align-items: center;
  justify-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.reference-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 88px;
  padding: 8px 12px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.85;
}

.reference-item:hover {
  transform: scale(1.05);
  opacity: 1;
}

.reference-item img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.reference-item--wide img {
  max-height: 60px;
}

.reference-item img[src="logo-black-shield.png"] {
  max-height: 80px;
}

.reference-item img[src="logo-rootup.png"] {
  max-height: 70px;
}

@media (max-width: 900px) {
  .references-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }
}

@media (max-width: 768px) {
  .references-window {
    padding: 32px 24px 40px;
    border-radius: 20px;
  }

  .reference-item {
    height: 72px;
  }

  .reference-item img,
  .reference-item--wide img,
  .reference-item img[src="logo-black-shield.png"],
  .reference-item img[src="logo-rootup.png"] {
    max-height: 52px;
  }
}

/* Agence */
.agence {
  background: var(--white);
}

.agence-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
  align-items: end;
}

.agence-intro {
  font-size: 16px;
  font-weight: 300;
  color: rgba(0, 27, 82, 0.7);
  line-height: 1.7;
}

.agence-location {
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  margin-top: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.team-info {
  padding-top: 16px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy-dark);
  letter-spacing: -0.01em;
}

.team-role {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--vermillion);
  letter-spacing: 0.04em;
  margin-top: 3px;
}

.team-domain {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 27, 82, 0.5);
  margin-top: 2px;
}

/* Insights */
.insights {
  background: var(--navy);
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.insights-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(247, 233, 198, 0.6);
  line-height: 1.6;
  margin-top: 16px;
}

.insights-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 233, 198, 0.3);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.insights-link:hover {
  opacity: 0.8;
}

.insights-featured {
  border-top: 2px solid var(--vermillion);
  padding: 28px 0;
  transition: background 0.25s ease;
}

.insights-featured:hover {
  background: rgba(247, 233, 198, 0.08);
}

.insights-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.insights-category {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vermillion);
}

.insights-date {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(247, 233, 198, 0.4);
}

.insights-article-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.insights-intro {
  font-size: 15px;
  font-weight: 300;
  color: rgba(247, 233, 198, 0.65);
  line-height: 1.65;
  margin-bottom: 24px;
}

.insights-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.insights-author {
  font-size: 12px;
  color: rgba(247, 233, 198, 0.45);
}

.insights-read {
  font-size: 13px;
  font-weight: 500;
  color: var(--vermillion);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.insights-read:hover {
  opacity: 0.8;
}

/* Carrières */
.carrieres {
  background: var(--cream);
  padding: 48px 24px;
  border-top: 2px solid rgba(0, 48, 144, 0.1);
}

.carrieres-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.carrieres-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy-dark);
  letter-spacing: -0.01em;
}

.carrieres-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 27, 82, 0.65);
  margin-top: 4px;
}

/* Contact CTA */
.contact-cta {
  background: var(--vermillion);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.contact-watermark {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: auto;
  color: var(--white);
  opacity: 0.06;
  pointer-events: none;
}

.contact-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.contact-title em {
  font-weight: 600;
  font-style: italic;
}

.contact-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}

.contact-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-ctas .btn-lg {
  padding: 14px 28px;
}

.contact-ctas button.btn-white {
  border: none;
  cursor: pointer;
}

/* FAQ Section */
.bi-faq {
  background: var(--white);
  padding: 80px 24px;
}

.bi-faq .section-title {
  margin-bottom: 40px;
}

.bi-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
}

.bi-faq-item {
  border: 1px solid rgba(0, 48, 144, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.bi-faq-item:hover {
  border-color: rgba(0, 48, 144, 0.2);
}

.bi-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.bi-faq-trigger:hover {
  background: rgba(0, 48, 144, 0.03);
}

.bi-faq-trigger:focus {
  outline: 2px solid var(--vermillion);
  outline-offset: -2px;
}

.bi-faq-question {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy-dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.bi-faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}

.bi-faq-icon::before,
.bi-faq-icon::after {
  content: '';
  position: absolute;
  background: var(--vermillion);
  transition: transform 0.3s ease;
}

.bi-faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bi-faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bi-faq-trigger[aria-expanded="true"] .bi-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.bi-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.bi-faq-trigger[aria-expanded="true"] + .bi-faq-answer {
  max-height: 500px;
}

.bi-faq-answer p {
  padding: 0 24px 24px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(0, 27, 82, 0.75);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .bi-faq {
    padding: 56px 24px;
  }

  .bi-faq-question {
    font-size: 16px;
  }

  .bi-faq-trigger {
    padding: 16px 20px;
  }

  .bi-faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
  }
}

@media print {
  .bi-faq-answer {
    max-height: none !important;
  }
}

/* Careers page */
.careers-hero {
  background: var(--navy);
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.careers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 48, 144, 0.9) 0%, rgba(0, 27, 82, 0.95) 100%);
  z-index: 1;
}

.careers-hero-inner {
  position: relative;
  z-index: 2;
}

.careers-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 16px 0 8px;
}

.careers-hero-location {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.careers-section {
  padding: 80px 24px;
}

.careers-section--dark {
  background: var(--navy);
  color: var(--white);
}

.careers-section--dark .section-label,
.careers-section--dark .section-title {
  color: var(--white);
}

.careers-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  max-width: 900px;
}

.careers-label {
  border-right: 1px solid rgba(0, 48, 144, 0.2);
  padding-right: 24px;
}

.careers-section--dark .careers-label {
  border-right-color: rgba(255, 255, 255, 0.2);
}

.careers-lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 16px;
}

.careers-section--dark .careers-lead {
  color: var(--white);
}

.careers-emphasis {
  font-size: 22px;
  font-weight: 500;
  color: var(--vermillion);
  margin-top: 24px;
}

.careers-header {
  max-width: 900px;
  margin-bottom: 48px;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
}

.careers-card {
  background: var(--white);
  border: 1px solid rgba(0, 48, 144, 0.1);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 48, 144, 0.12);
}

.careers-section--dark .careers-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.careers-section--dark .careers-card:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.careers-card-num {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--vermillion);
  margin-bottom: 16px;
}

.careers-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.careers-section--dark .careers-card h3 {
  color: var(--white);
}

.careers-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0, 27, 82, 0.75);
}

.careers-section--dark .careers-card p {
  color: rgba(255, 255, 255, 0.8);
}

.careers-list {
  max-width: 900px;
}

.careers-list ul {
  list-style: none;
  padding: 0;
}

.careers-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy);
}

.careers-section--dark .careers-list li {
  color: var(--white);
}

.careers-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--vermillion);
  font-weight: 600;
}

.careers-highlight {
  max-width: 900px;
  background: linear-gradient(135deg, var(--vermillion) 0%, #e63946 100%);
  border-radius: 16px;
  padding: 48px;
  color: var(--white);
}

.careers-highlight-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.careers-cta {
  background: var(--navy);
  padding: 100px 24px;
  text-align: center;
}

.careers-cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.careers-cta-email {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.careers-cta-deadline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .careers-hero {
    padding: 80px 20px 60px;
  }

  .careers-hero-title {
    font-size: 32px;
  }

  .careers-section {
    padding: 60px 20px;
  }

  .careers-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .careers-label {
    border-right: none;
    border-bottom: 1px solid rgba(0, 48, 144, 0.2);
    padding-right: 0;
    padding-bottom: 16px;
  }

  .careers-section--dark .careers-label {
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .careers-grid {
    grid-template-columns: 1fr;
  }

  .careers-highlight {
    padding: 32px;
  }

  .careers-highlight-text {
    font-size: 18px;
  }

  .careers-cta {
    padding: 60px 20px;
  }
}

/* Contact modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  visibility: hidden;
}

.contact-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.contact-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 27, 82, 0.75);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-modal.is-open .contact-modal-overlay {
  opacity: 1;
}

.contact-modal-panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-modal.is-open .contact-modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.contact-modal-accent {
  height: 2px;
  background: var(--vermillion);
  width: 100%;
}

.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(0, 48, 144, 0.15);
  color: var(--navy-dark);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  z-index: 1;
}

.contact-modal-close:hover {
  border-color: var(--navy);
  background: rgba(0, 48, 144, 0.04);
}

.contact-modal-body {
  padding: 32px 32px 36px;
}

.contact-modal-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vermillion);
  margin-bottom: 10px;
}

.contact-modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.contact-modal-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 27, 82, 0.65);
  line-height: 1.5;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy-dark);
  letter-spacing: 0.04em;
}

.form-optional {
  font-weight: 400;
  color: rgba(0, 27, 82, 0.45);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--navy-dark);
  background: var(--white);
  border: 1px solid rgba(0, 48, 144, 0.15);
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(0, 27, 82, 0.35);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 48, 144, 0.08);
}

.form-field--reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-modal.is-open .form-field--reveal {
  opacity: 1;
  transform: translateY(0);
}

.contact-modal.is-open .form-field--reveal:nth-child(1) { transition-delay: 0.15s; }
.contact-modal.is-open .form-field--reveal:nth-child(2) { transition-delay: 0.20s; }
.contact-modal.is-open .form-field--reveal:nth-child(3) { transition-delay: 0.25s; }
.contact-modal.is-open .form-field--reveal:nth-child(4) { transition-delay: 0.30s; }
.contact-modal.is-open .form-field--reveal:nth-child(5) { transition-delay: 0.35s; }
.contact-modal.is-open .form-field--reveal:nth-child(6) { transition-delay: 0.40s; }
.contact-modal.is-open .form-field--reveal:nth-child(7) { transition-delay: 0.45s; }

.form-field select {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--navy-dark);
  background: var(--white);
  border: 1px solid rgba(0, 48, 144, 0.15);
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.form-field select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 48, 144, 0.08);
}

.agence-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-bottom: 56px;
}

.value-item {
  background: rgba(0, 48, 144, 0.04);
  padding: 24px;
  border: 1px solid rgba(0, 48, 144, 0.08);
}

.value-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--vermillion);
  margin-bottom: 8px;
}

.value-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 27, 82, 0.7);
  line-height: 1.6;
}

.insights-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(247, 233, 198, 0.08);
}

.insights-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(247, 233, 198, 0.08);
  transition: background 0.25s ease;
}

.insights-item:hover {
  background: rgba(247, 233, 198, 0.05);
}

.insights-item-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
  margin: 10px 0 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--navy-dark);
  border-top: 1px solid rgba(247, 233, 198, 0.1);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  font-size: 13px;
  color: rgba(247, 233, 198, 0.7);
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--cream);
}

.cookie-banner .btn-vermillion {
  padding: 10px 20px;
  font-size: 13px;
  flex-shrink: 0;
}

.page-hero {
  background: var(--navy);
  padding: 120px 24px 64px;
}

.page-hero--cream {
  background: var(--cream);
}

.page-hero--white {
  background: var(--white);
}

.page-hero-inner {
  max-width: 800px;
}

.page-hero .section-title {
  margin-bottom: 16px;
}

.page-hero .page-chapo {
  font-size: 17px;
  font-weight: 300;
  color: rgba(247, 233, 198, 0.72);
  line-height: 1.65;
  max-width: 600px;
}

.page-hero--cream .page-chapo,
.page-hero--white .page-chapo {
  color: rgba(0, 27, 82, 0.7);
}

.page-content {
  padding: 64px 24px 96px;
}

.page-content--white {
  background: var(--white);
}

.page-content--cream {
  background: var(--cream);
}

.page-block {
  max-width: 720px;
  margin-bottom: 48px;
}

.page-block h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.page-block p,
.page-block li {
  font-size: 15px;
  font-weight: 300;
  color: rgba(0, 27, 82, 0.75);
  line-height: 1.7;
  margin-bottom: 12px;
}

.page-block ul,
.page-block ol {
  padding-left: 20px;
}

.livrables-list li {
  margin-bottom: 8px;
}

.method-steps {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.method-steps li {
  counter-increment: step;
  padding-left: 40px;
  position: relative;
  margin-bottom: 20px;
}

.method-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--vermillion);
  letter-spacing: 0.1em;
}

.proof-box {
  background: rgba(0, 48, 144, 0.06);
  border-left: 2px solid var(--vermillion);
  padding: 20px 24px;
  margin-top: 16px;
}

.proof-box strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.ref-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
}

.ref-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.ref-table th,
.ref-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 48, 144, 0.12);
}

.ref-table th {
  font-weight: 600;
  color: var(--navy-dark);
  background: rgba(0, 48, 144, 0.06);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ref-table td {
  font-weight: 300;
  color: rgba(0, 27, 82, 0.75);
}

.job-card {
  background: var(--white);
  border: 1px solid rgba(0, 48, 144, 0.1);
  padding: 32px;
  margin-bottom: 24px;
}

.job-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.job-meta {
  font-size: 13px;
  color: var(--vermillion);
  margin-bottom: 16px;
}

.copy-box {
  background: rgba(0, 48, 144, 0.04);
  border: 1px solid rgba(0, 48, 144, 0.1);
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 27, 82, 0.8);
  margin: 16px 0;
}

.breadcrumb {
  font-size: 12px;
  color: rgba(247, 233, 198, 0.5);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(247, 233, 198, 0.7);
  text-decoration: none;
}

.page-hero--cream .breadcrumb,
.page-hero--white .breadcrumb {
  color: rgba(0, 27, 82, 0.45);
}

.page-hero--cream .breadcrumb a,
.page-hero--white .breadcrumb a {
  color: var(--navy);
}

.page-cta {
  margin-top: 48px;
}

@media (max-width: 900px) {
  .agence-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .agence-values {
    grid-template-columns: 1fr;
  }
}

.contact-form-submit {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  margin-top: 4px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.contact-modal-success {
  padding: 48px 32px;
  text-align: center;
}

.contact-modal-success[hidden] {
  display: none;
}

.contact-modal-body.is-hidden {
  display: none;
}

.success-icon {
  color: var(--vermillion);
  margin-bottom: 20px;
  animation: successPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.success-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.success-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 27, 82, 0.65);
  line-height: 1.6;
  margin-bottom: 28px;
}

#contact-modal-done {
  padding: 12px 28px;
  border: none;
  cursor: pointer;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  padding: 64px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(247, 233, 198, 0.5);
  line-height: 1.65;
  max-width: 240px;
  margin: 20px 0 16px;
}

.footer-address {
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  color: rgba(247, 233, 198, 0.4);
  line-height: 1.6;
}

.footer-address a {
  color: var(--vermillion);
  text-decoration: none;
}

.footer-mask {
  margin-top: 12px;
  color: rgba(247, 233, 198, 0.12);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(247, 233, 198, 0.4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(247, 233, 198, 0.6);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-social {
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid rgba(247, 233, 198, 0.08);
}

.footer-social-address {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(247, 233, 198, 0.55);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.footer-social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
  color: var(--cream);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(247, 233, 198, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  font-weight: 400;
  color: rgba(247, 233, 198, 0.3);
}

.footer-bottom p:last-child {
  color: rgba(247, 233, 198, 0.25);
}

/* ============================================================
   Expertise page — Business Intelligence
   ============================================================ */

.page-expertise .nav {
  background: rgba(0, 27, 82, 0.97);
  border-bottom: 1px solid rgba(247, 233, 198, 0.1);
}

.bi-hero {
  position: relative;
  background: var(--navy-dark);
  padding: 140px 24px 88px;
  overflow: hidden;
  color: var(--cream);
}

.bi-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bi-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 233, 198, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 233, 198, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 0%, black 35%, black 100%);
}

.bi-hero-halo {
  position: absolute;
  right: -10%;
  top: 10%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(0, 64, 184, 0.45) 0%, transparent 70%);
}

.bi-hero-viz {
  position: absolute;
  right: -2%;
  bottom: 8%;
  width: min(52vw, 520px);
  height: auto;
  color: var(--cream);
  opacity: 0.9;
  animation: biVizRise 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

@keyframes biVizRise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 0.9; transform: none; }
}

.bi-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.bi-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(247, 233, 198, 0.45);
  margin-bottom: 28px;
}

.bi-breadcrumb a {
  color: rgba(247, 233, 198, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bi-breadcrumb a:hover {
  color: var(--cream);
}

.bi-hero .section-label {
  color: var(--vermillion);
}

.bi-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0 0 12px;
}

.bi-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

.bi-hero-chapo {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(247, 233, 198, 0.78);
  max-width: 540px;
  margin: 0;
}

.bi-section {
  padding: 96px 24px;
}

.bi-block-num {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(0, 48, 144, 0.35);
  margin-bottom: 8px;
}

.bi-block-num--light {
  color: rgba(247, 233, 198, 0.35);
}

.bi-block-num--on-cream {
  color: rgba(0, 48, 144, 0.3);
}

.bi-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
  margin: 0 0 28px;
}

.bi-h2 em {
  font-weight: 500;
  font-style: italic;
}

.bi-split {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 48px 64px;
  align-items: start;
}

.bi-split-body p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(0, 27, 82, 0.78);
  margin: 0 0 18px;
}

.bi-split-body p:last-child {
  margin-bottom: 0;
}

.bi-pull {
  font-family: var(--font-display);
  font-size: 20px !important;
  font-weight: 500 !important;
  font-style: italic;
  color: var(--navy-dark) !important;
  line-height: 1.4 !important;
  border-left: 2px solid var(--vermillion);
  padding-left: 20px;
  margin-top: 32px !important;
}

.bi-problem {
  background: var(--white);
}

.bi-lesson {
  background: var(--navy);
  color: var(--cream);
}

.bi-lesson-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.bi-lesson-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
}

.bi-lesson-copy p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247, 233, 198, 0.78);
  margin: 0 0 18px;
}

.bi-lesson-aside {
  background: rgba(0, 27, 82, 0.45);
  border-top: 2px solid var(--vermillion);
  padding: 32px 28px;
}

.bi-aside-lead {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  margin: 0 0 20px;
}

.bi-lesson-aside p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(247, 233, 198, 0.75);
  margin: 0 0 16px;
}

.bi-aside-close {
  font-weight: 500 !important;
  color: var(--cream) !important;
  margin-bottom: 0 !important;
  margin-top: 8px;
}

.bi-devices {
  background: var(--cream);
}

.bi-devices-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.bi-devices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.bi-device {
  background: var(--white);
  padding: 36px 32px;
  border: none;
  position: relative;
}

.bi-device::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--vermillion);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.bi-device:hover::before {
  width: 100%;
}

.bi-device-index {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--vermillion);
  margin-bottom: 14px;
}

.bi-device h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-dark);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.bi-device p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(0, 27, 82, 0.7);
  margin: 0;
}

/* Bloc 4 — contrôle qualité (traitement distinct) */
.bi-quality {
  background:
    linear-gradient(180deg, rgba(0, 48, 144, 0.04) 0%, transparent 120px),
    var(--white);
  position: relative;
}

.bi-quality::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--vermillion);
}

.bi-quality-header {
  max-width: 720px;
  margin-bottom: 56px;
}

.bi-quality-intro {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(0, 27, 82, 0.72);
  margin: 24px 0 0;
  max-width: 560px;
}

.bi-quality-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0, 48, 144, 0.12);
}

.bi-quality-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 48, 144, 0.12);
  align-items: start;
  transition: background 0.25s ease;
}

.bi-quality-item:hover {
  background: rgba(247, 233, 198, 0.35);
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
}

.bi-quality-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--vermillion);
  line-height: 1;
  letter-spacing: -0.03em;
}

.bi-quality-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-dark);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.bi-quality-item p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(0, 27, 82, 0.72);
  margin: 0;
  max-width: 640px;
}

.bi-deliverables {
  background: var(--cream);
}

.bi-check-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.bi-check-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(0, 27, 82, 0.85);
  border-bottom: 1px solid rgba(0, 48, 144, 0.12);
}

.bi-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 10px;
  height: 10px;
  background: var(--vermillion);
}

.bi-limits {
  font-size: 15px !important;
  font-style: italic;
  color: rgba(0, 27, 82, 0.65) !important;
  border-left: 2px solid rgba(0, 48, 144, 0.2);
  padding-left: 18px;
}

.bi-proof {
  background: var(--navy-dark);
  padding: 88px 24px;
  text-align: center;
}

.bi-proof-header {
  max-width: 640px;
  margin: 0 auto 56px;
}

.bi-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.bi-proof-stat .stat-number {
  color: var(--cream);
  font-size: clamp(48px, 7vw, 72px);
}

.bi-proof-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(247, 233, 198, 0.6);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.bi-confidential {
  background: var(--white);
}

.bi-sectors {
  padding: 48px 24px;
  background: var(--cream);
  border-top: 1px solid rgba(0, 48, 144, 0.08);
}

.bi-sectors-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 16px;
}

.bi-sectors-row span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--navy-dark);
}

.bi-cta {
  background: var(--navy);
  padding: 96px 24px;
  text-align: center;
}

.bi-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.bi-cta-text {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(247, 233, 198, 0.78);
  margin: 20px auto 36px;
}

.bi-more {
  background: var(--white);
}

.bi-more-header {
  margin-bottom: 40px;
}

.bi-more-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.bi-more-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 22px;
  background: var(--cream);
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
  border-top: 2px solid transparent;
}

.bi-more-card:hover {
  background: var(--navy);
  transform: translateY(-2px);
  border-top-color: var(--vermillion);
}

.bi-more-card span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(0, 48, 144, 0.4);
}

.bi-more-card:hover span {
  color: rgba(247, 233, 198, 0.45);
}

.bi-more-card strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-dark);
  line-height: 1.3;
}

.bi-more-card:hover strong {
  color: var(--cream);
}

/* ============================================================
   Expertise page — Communication & Publicité
   ============================================================ */

.com-chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(247, 233, 198, 0.45);
  letter-spacing: 0.02em;
}

.com-chain a {
  color: rgba(247, 233, 198, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 233, 198, 0.25);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.com-chain a:hover {
  color: var(--cream);
  border-color: var(--cream);
}

.com-chain strong {
  color: var(--vermillion);
  font-weight: 500;
}

.com-hero-kit {
  position: absolute;
  right: 6%;
  bottom: 10%;
  width: min(38vw, 380px);
  height: 320px;
  animation: biVizRise 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.com-kit-sheet {
  position: absolute;
  background: var(--cream);
  color: var(--navy-dark);
  padding: 18px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.com-kit-sheet--back {
  width: 58%;
  height: 70%;
  right: 0;
  top: 0;
  transform: rotate(6deg);
  background: var(--cream-dark);
}

.com-kit-sheet--mid {
  width: 62%;
  height: 78%;
  left: 8%;
  top: 8%;
  transform: rotate(-3deg);
  background: var(--navy);
  color: var(--cream);
  z-index: 1;
}

.com-kit-sheet--front {
  width: 54%;
  height: 52%;
  left: 0;
  bottom: 0;
  transform: rotate(2deg);
  z-index: 2;
}

.com-kit-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 14px;
}

.com-kit-rule {
  display: block;
  height: 3px;
  width: 70%;
  background: rgba(0, 27, 82, 0.2);
  margin-bottom: 10px;
}

.com-kit-rule--short {
  width: 42%;
}

.com-kit-swatch {
  display: block;
  width: 36px;
  height: 36px;
  margin-top: 24px;
  background: var(--vermillion);
}

.com-kit-headline {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.com-kit-bar {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--vermillion);
}

.com-kit-formats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.com-kit-formats i {
  display: block;
  height: 36px;
  background: rgba(0, 48, 144, 0.12);
}

.com-kit-formats i:nth-child(1) { height: 48px; }
.com-kit-formats i:nth-child(2) { height: 28px; margin-top: 10px; }
.com-kit-formats i:nth-child(3) { height: 32px; }
.com-kit-formats i:nth-child(4) { height: 44px; background: rgba(248, 72, 8, 0.25); }

.com-produce-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.bi-device--wide {
  grid-column: 1 / -1;
}

/* Frise méthode — horizontale desktop */
.com-method {
  background: var(--white);
}

.com-method-header {
  max-width: 720px;
  margin-bottom: 56px;
}

.com-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.com-timeline::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(0, 48, 144, 0.12);
}

.com-timeline-step {
  position: relative;
  padding: 0 16px 0 0;
}

.com-timeline-step:last-child {
  padding-right: 0;
}

.com-timeline-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.com-timeline-step:nth-child(3) .com-timeline-num {
  background: var(--vermillion);
  color: var(--white);
}

.com-timeline-step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy-dark);
  margin: 0 0 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.com-timeline-step p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(0, 27, 82, 0.7);
  margin: 0;
}

.com-timeline-step a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 48, 144, 0.35);
}

.com-timeline-step a:hover {
  color: var(--vermillion);
  border-color: var(--vermillion);
}

/* Bloc 5 — contraste fort */
.com-not {
  background: var(--navy-dark);
  padding: 96px 24px;
}

.com-not-inner {
  max-width: 720px;
}

.com-not-lead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247, 233, 198, 0.78);
  margin: 28px 0 24px;
}

.com-not-close {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
  margin: 0;
  border-left: 2px solid var(--vermillion);
  padding-left: 20px;
}

.com-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 720px;
  margin: 0 auto;
}

.com-linked {
  background: var(--white);
}

.com-linked-header {
  max-width: 560px;
  margin-bottom: 40px;
}

.com-linked-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.com-linked-card {
  display: block;
  padding: 32px 28px;
  background: var(--cream);
  text-decoration: none;
  border-top: 2px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.com-linked-card:hover {
  background: var(--navy);
  border-top-color: var(--vermillion);
  transform: translateY(-2px);
}

.com-linked-dir {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 14px;
}

.com-linked-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.com-linked-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(0, 27, 82, 0.65);
  margin: 0;
}

.com-linked-card:hover strong {
  color: var(--cream);
}

.com-linked-card:hover p {
  color: rgba(247, 233, 198, 0.7);
}

/* ============================================================
   Expertise page — Digital & Influence
   ============================================================ */

.di-hero-path {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  animation: biVizRise 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.di-path-step {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(247, 233, 198, 0.45);
}

.di-path-step span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  width: 28px;
}

.di-path-step em {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  font-style: italic;
}

.di-path-step--critical {
  color: var(--vermillion);
}

.di-path-step--critical em {
  font-size: 22px;
}

.di-path-line {
  width: 1px;
  height: 18px;
  margin-left: 12px;
  background: rgba(247, 233, 198, 0.2);
}

.di-path-step--critical + .di-path-line {
  background: rgba(248, 72, 8, 0.45);
}

.di-rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.di-rule {
  background: rgba(0, 27, 82, 0.4);
  border-top: 2px solid var(--vermillion);
  padding: 36px 32px;
}

.di-rule-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--vermillion);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.di-rule h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.di-rule p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(247, 233, 198, 0.75);
  margin: 0 0 14px;
}

.di-rule-close {
  font-weight: 400 !important;
  color: var(--cream) !important;
  margin-bottom: 0 !important;
  border-left: 2px solid rgba(248, 72, 8, 0.5);
  padding-left: 16px;
}

/* Frise inversée — bas en haut (lecture à rebours) */
.di-method {
  background: var(--cream);
}

.di-reverse-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 820px;
  position: relative;
}

.di-reverse-timeline::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: rgba(0, 48, 144, 0.12);
}

.di-rev-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 28px;
  padding-bottom: 36px;
  position: relative;
}

.di-rev-step:last-child {
  padding-bottom: 0;
}

.di-rev-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.di-rev-step--start .di-rev-num {
  background: var(--vermillion);
  color: var(--white);
}

.di-rev-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-dark);
  margin: 8px 0 10px;
  letter-spacing: -0.01em;
}

.di-rev-step p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(0, 27, 82, 0.72);
  margin: 0;
}

.di-rev-step a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 48, 144, 0.35);
}

.di-rev-step a:hover {
  color: var(--vermillion);
  border-color: var(--vermillion);
}

.di-demo {
  background: var(--white);
}

.di-live-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 32px 0 12px;
}

.di-live-item {
  background: var(--cream);
  padding: 24px 22px;
  border-top: 2px solid var(--vermillion);
}

.di-live-value {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.di-live-label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(0, 27, 82, 0.6);
  line-height: 1.4;
}

.di-live-note {
  font-size: 13px !important;
  font-style: italic;
  color: rgba(0, 27, 82, 0.5) !important;
  margin-top: 8px !important;
}

.di-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================================
   Expertise page — Événementiel
   ============================================================ */

.ev-hero-doc {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-48%);
  width: min(34vw, 340px);
  animation: biVizRise 1.3s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.ev-doc-sheet {
  background: var(--cream);
  color: var(--navy-dark);
  padding: 22px 22px 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: rotate(2deg);
}

.ev-doc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 27, 82, 0.5);
  border-bottom: 1px solid rgba(0, 48, 144, 0.15);
  padding-bottom: 12px;
  margin-bottom: 14px;
}

.ev-doc-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 48, 144, 0.08);
  font-size: 12px;
}

.ev-doc-row i {
  font-style: normal;
  font-weight: 500;
  color: rgba(0, 27, 82, 0.45);
  font-variant-numeric: tabular-nums;
}

.ev-doc-row b {
  font-weight: 500;
  color: var(--navy-dark);
}

.ev-doc-row em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 27, 82, 0.4);
}

.ev-doc-row--active {
  background: rgba(248, 72, 8, 0.08);
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
}

.ev-doc-row--active b {
  color: var(--vermillion);
}

.ev-doc-stamp {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border: 1.5px solid var(--vermillion);
  color: var(--vermillion);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  transform: rotate(-8deg);
  opacity: 0.85;
}

.ev-dossier {
  background: var(--cream);
}

.ev-dossier-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px 56px;
  align-items: start;
}

.ev-dossier-lead {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(0, 27, 82, 0.75);
  margin: 20px 0 24px;
}

.ev-dossier-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.ev-dossier-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(0, 27, 82, 0.85);
  border-bottom: 1px solid rgba(0, 48, 144, 0.12);
}

.ev-dossier-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  background: var(--vermillion);
}

.ev-dossier-close {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--navy-dark);
  margin: 0;
  border-left: 2px solid var(--vermillion);
  padding-left: 18px;
}

.ev-dossier-object {
  position: sticky;
  top: 100px;
}

.ev-object-page {
  background: var(--white);
  border: 1px solid rgba(0, 48, 144, 0.12);
  padding: 28px 26px 22px;
  box-shadow: 0 20px 50px rgba(0, 48, 144, 0.1);
  transform: rotate(-1.5deg);
}

.ev-object-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}

.ev-object-brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--navy);
}

.ev-object-meta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vermillion);
}

.ev-object-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-dark);
  margin: 0 0 18px;
}

.ev-object-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin-bottom: 20px;
}

.ev-object-table th {
  text-align: left;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 27, 82, 0.45);
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(0, 48, 144, 0.15);
}

.ev-object-table td {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 48, 144, 0.08);
  color: rgba(0, 27, 82, 0.8);
  font-variant-numeric: tabular-nums;
}

.ev-object-table tr.is-focus td {
  color: var(--vermillion);
  font-weight: 500;
  background: rgba(248, 72, 8, 0.06);
}

.ev-object-plan {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  grid-template-rows: 48px 56px;
  gap: 4px;
  margin-bottom: 16px;
}

.ev-plan-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 48, 144, 0.06);
  color: rgba(0, 27, 82, 0.5);
}

.ev-plan-zone--vip {
  background: rgba(248, 72, 8, 0.12);
  color: var(--vermillion);
}

.ev-plan-zone--stage {
  grid-column: 1 / -1;
  background: var(--navy);
  color: var(--cream);
}

.ev-object-foot {
  font-size: 11px;
  font-style: italic;
  color: rgba(0, 27, 82, 0.4);
  margin: 0;
}

/* Conformité — traitement administratif */
.ev-compliance {
  background: #F3F1EC;
  padding: 72px 24px;
}

.ev-compliance-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px 64px;
  border: 1px solid rgba(0, 48, 144, 0.18);
  background: var(--white);
  padding: 40px 36px;
}

.ev-compliance .section-label {
  color: rgba(0, 27, 82, 0.45);
}

.ev-compliance-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid rgba(0, 48, 144, 0.15);
}

.ev-compliance-list li {
  padding: 14px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(0, 27, 82, 0.8);
  border-bottom: 1px solid rgba(0, 48, 144, 0.12);
  padding-left: 0;
}

.ev-compliance-list li::before {
  content: '§ ';
  color: rgba(0, 48, 144, 0.35);
  font-weight: 500;
}

.ev-compliance-note {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(0, 27, 82, 0.6);
  margin: 0;
}

.ev-after {
  background: var(--white);
}

.ev-inline-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 48, 144, 0.35);
}

.ev-inline-link:hover {
  color: var(--vermillion);
  border-color: var(--vermillion);
}

.bi-device a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 48, 144, 0.3);
}

.bi-device a:hover {
  color: var(--vermillion);
  border-color: var(--vermillion);
}

/* ============================================================
   Expertise page — Média
   ============================================================ */

.me-hero-compare {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: min(36vw, 340px);
  animation: biVizRise 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.me-hero-col {
  background: rgba(247, 233, 198, 0.08);
  border: 1px solid rgba(247, 233, 198, 0.18);
  padding: 20px 18px;
}

.me-hero-col--diff {
  border-color: rgba(248, 72, 8, 0.45);
  background: rgba(248, 72, 8, 0.08);
  position: relative;
}

.me-hero-col-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 233, 198, 0.55);
  margin-bottom: 18px;
}

.me-hero-col--diff .me-hero-col-label {
  color: var(--vermillion);
}

.me-hero-line {
  display: block;
  height: 8px;
  background: rgba(247, 233, 198, 0.25);
  margin-bottom: 10px;
}

.me-hero-line--short {
  width: 55%;
}

.me-hero-line--gap {
  background: var(--vermillion);
  opacity: 0.85;
}

.me-hero-gap-tag {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vermillion);
}

/* Bloc 1 — austérité contractuelle */
.me-money {
  background: var(--navy-dark);
  padding: 88px 24px;
}

.me-money-inner {
  max-width: 720px;
}

.me-money-body p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247, 233, 198, 0.75);
  margin: 0 0 18px;
}

.me-money-principle {
  font-family: var(--font-display);
  font-size: 20px !important;
  font-weight: 500 !important;
  font-style: italic;
  line-height: 1.45 !important;
  color: var(--cream) !important;
  border-left: 2px solid var(--vermillion);
  padding-left: 20px;
  margin: 28px 0 !important;
}

.me-money-close {
  font-weight: 500 !important;
  color: var(--white) !important;
  margin-bottom: 0 !important;
}

/* Rapport conformité */
.me-report {
  background: var(--cream);
}

.me-report-header {
  max-width: 720px;
  margin-bottom: 40px;
}

.me-report-lead {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(0, 27, 82, 0.72);
  margin: 20px 0 0;
}

.me-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 40px;
  max-width: 900px;
}

.me-compare-col {
  background: var(--white);
  padding: 28px 26px;
  border-top: 2px solid var(--navy);
}

.me-compare-col--out {
  border-top-color: var(--vermillion);
}

.me-compare-col h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-dark);
  margin: 0 0 20px;
}

.me-compare-col--out h3 {
  color: var(--vermillion);
}

.me-compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.me-compare-col li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(0, 27, 82, 0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 48, 144, 0.1);
}

.me-ok {
  color: var(--navy);
  font-weight: 500;
}

.me-gap {
  color: var(--vermillion);
  font-weight: 600;
}

.me-report-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  max-width: 820px;
  border-top: 1px solid rgba(0, 48, 144, 0.12);
}

.me-report-list li {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(0, 27, 82, 0.8);
  border-bottom: 1px solid rgba(0, 48, 144, 0.12);
}

.me-report-list strong {
  font-weight: 500;
  color: var(--navy-dark);
}

.me-report-close {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--navy-dark);
  max-width: 640px;
  margin: 0;
  border-left: 2px solid var(--vermillion);
  padding-left: 18px;
}

/* Print-friendly for DAF / achats */
@media print {
  .page-media .nav,
  .page-media .nav-mobile,
  .page-media .bi-cta,
  .page-media .bi-more,
  .page-media .footer {
    display: none !important;
  }

  .page-media .bi-hero,
  .page-media .me-money,
  .page-media .bi-lesson {
    background: #fff !important;
    color: #000 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .page-media .bi-hero-title,
  .page-media .bi-hero-sub,
  .page-media .section-title--light,
  .page-media .me-money-body p,
  .page-media .me-money-principle {
    color: #001B52 !important;
  }
}

/* ============================================================
   Expertise page — Relations publiques
   ============================================================ */

.rp-hero-tempo {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(28vw, 260px);
  animation: biVizRise 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.rp-tempo-block {
  padding: 28px 24px;
}

.rp-tempo-block span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.rp-tempo-block em {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
}

.rp-tempo-block--long {
  background: rgba(247, 233, 198, 0.08);
  border: 1px solid rgba(247, 233, 198, 0.15);
  color: rgba(247, 233, 198, 0.7);
}

.rp-tempo-divider {
  height: 2px;
  background: var(--vermillion);
  margin: 0;
}

.rp-tempo-block--short {
  background: rgba(248, 72, 8, 0.12);
  border: 1px solid rgba(248, 72, 8, 0.35);
  color: var(--cream);
}

.rp-tempo-block--short span {
  color: var(--vermillion);
}

.rp-part-banner {
  padding: 56px 24px 40px;
  background: var(--cream);
  border-bottom: 1px solid rgba(0, 48, 144, 0.08);
}

.rp-part-banner--short {
  background: var(--navy-dark);
  border-bottom: none;
}

.rp-part-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin: 0 0 10px;
}

.rp-part-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
  margin: 0 0 12px;
  line-height: 1.1;
}

.rp-part-banner--short .rp-part-title {
  color: var(--cream);
}

.rp-part-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(0, 27, 82, 0.6);
  margin: 0;
  max-width: 480px;
  line-height: 1.5;
}

.rp-part-banner--short .rp-part-sub {
  color: rgba(247, 233, 198, 0.55);
}

/* Politique prise en charge — bloc le plus lisible */
.rp-policy {
  background: var(--white);
  padding-top: 72px;
}

.rp-policy-header {
  max-width: 720px;
  margin-bottom: 40px;
}

.rp-policy-intro {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(0, 27, 82, 0.75);
  margin: 20px 0 0;
}

.rp-policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 36px;
}

.rp-policy-card {
  padding: 36px 32px;
  min-height: 200px;
}

.rp-policy-card--yes {
  background: var(--cream);
  border-top: 3px solid var(--navy);
}

.rp-policy-card--no {
  background: var(--navy-dark);
  border-top: 3px solid var(--vermillion);
  color: var(--cream);
}

.rp-policy-tag {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.rp-policy-card--yes .rp-policy-tag {
  color: var(--navy);
}

.rp-policy-card--no .rp-policy-tag {
  color: var(--vermillion);
}

.rp-policy-card p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

.rp-policy-card--yes p {
  color: rgba(0, 27, 82, 0.8);
}

.rp-policy-card--no p {
  color: rgba(247, 233, 198, 0.85);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
}

.rp-policy-consequence {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--navy-dark);
  max-width: 720px;
  margin: 0;
  border-left: 2px solid var(--vermillion);
  padding-left: 20px;
}

.rp-map {
  background: var(--cream);
}

.rp-measure {
  background: var(--white);
}

/* Partie II — resserrée, dense */
.rp-part--short .rp-crisis {
  background: var(--navy);
  padding: 64px 24px 80px;
}

.rp-crisis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.rp-crisis-block {
  background: rgba(0, 27, 82, 0.45);
  padding: 36px 32px;
  border-top: 2px solid var(--vermillion);
}

.rp-crisis-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--vermillion);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.rp-crisis-block h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.rp-crisis-block p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(247, 233, 198, 0.72);
  margin: 0 0 14px;
}

.rp-crisis-emphasis {
  color: var(--cream) !important;
  font-weight: 400 !important;
  border-left: 2px solid rgba(248, 72, 8, 0.5);
  padding-left: 16px;
  margin-bottom: 0 !important;
  margin-top: 8px;
}

.rp-cta .bi-cta-text {
  max-width: 560px;
}

/* Print — DG / conseils d'administration */
@media print {
  .page-rp .nav,
  .page-rp .nav-mobile,
  .page-rp .bi-cta,
  .page-rp .bi-more,
  .page-rp .footer,
  .page-rp .rp-hero-tempo {
    display: none !important;
  }

  .page-rp .bi-hero,
  .page-rp .rp-part-banner--short,
  .page-rp .rp-part--short .rp-crisis,
  .page-rp .bi-proof,
  .page-rp .rp-policy-card--no {
    background: #fff !important;
    color: #001B52 !important;
  }

  .page-rp .bi-hero-title,
  .page-rp .bi-hero-sub,
  .page-rp .rp-part-title,
  .page-rp .section-title--light,
  .page-rp .rp-crisis-block h3,
  .page-rp .rp-crisis-block p,
  .page-rp .rp-policy-card--no p,
  .page-rp .rp-policy-card--no .rp-policy-tag {
    color: #001B52 !important;
  }

  .page-rp .rp-policy-card,
  .page-rp .rp-crisis-block {
    border: 1px solid #ccc !important;
    break-inside: avoid;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .expertises-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agence-header {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bi-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bi-lesson-grid {
    grid-template-columns: 1fr;
  }

  .bi-devices-grid {
    grid-template-columns: 1fr;
  }

  .bi-more-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bi-hero-viz {
    width: 42vw;
    opacity: 0.45;
  }

  .com-hero-kit {
    width: 34vw;
    height: 260px;
    opacity: 0.7;
  }

  .com-produce-grid {
    grid-template-columns: 1fr;
  }

  .com-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .com-timeline::before {
    top: 0;
    bottom: 0;
    left: 21px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .com-timeline-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 20px;
    padding: 0 0 36px;
  }

  .com-timeline-step h3,
  .com-timeline-step p {
    grid-column: 2;
  }

  .com-timeline-num {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .com-linked-grid {
    grid-template-columns: 1fr;
  }

  .com-proof-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .di-hero-path {
    display: none;
  }

  .di-rules-grid {
    grid-template-columns: 1fr;
  }

  .di-live-metrics {
    grid-template-columns: 1fr;
  }

  .di-proof-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ev-hero-doc {
    display: none;
  }

  .ev-dossier-layout {
    grid-template-columns: 1fr;
  }

  .ev-dossier-object {
    position: static;
    max-width: 420px;
  }

  .ev-compliance-inner {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 24px;
  }

  .me-hero-compare {
    display: none;
  }

  .me-compare {
    grid-template-columns: 1fr;
  }

  .rp-hero-tempo {
    display: none;
  }

  .rp-policy-grid,
  .rp-crisis-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 20px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-mask-col {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 48, 144, 0.15);
    padding-bottom: 24px;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .expertise-title {
    font-size: 18px;
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }

  .case-card,
  .case-card--large {
    grid-column: auto;
    grid-row: auto;
    height: 260px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bi-section {
    padding: 64px 20px;
  }

  .bi-hero {
    padding: 120px 20px 64px;
  }

  .bi-hero-viz {
    display: none;
  }

  .com-hero-kit {
    display: none;
  }

  .bi-quality-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .bi-quality-num {
    font-size: 28px;
  }

  .bi-proof-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bi-more-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .expertises-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Page Références
   ============================================================ */

.page-references .nav,
.page-careers .nav {
  background: rgba(0, 27, 82, 0.97);
  border-bottom: 1px solid rgba(247, 233, 198, 0.1);
}

.page-references {
  background: #FDFBF6;
}

.refs-hero {
  position: relative;
  background: var(--navy-dark);
  padding: 140px 24px 72px;
  overflow: hidden;
  color: var(--cream);
}

.refs-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.refs-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.refs-hero .section-label {
  color: var(--vermillion);
}

.refs-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 12px;
}

.refs-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 18px;
}

.refs-hero-sub em {
  font-style: italic;
  font-weight: 500;
  color: var(--vermillion);
}

.refs-hero-chapo {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(247, 233, 198, 0.82);
  max-width: 540px;
}

.refs-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.refs-stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
}

.refs-stat-label {
  font-size: 12px;
  color: rgba(247, 233, 198, 0.55);
  margin-top: 4px;
}

.refs-section {
  padding: 48px 24px;
}

.refs-section--tight {
  padding-top: 8px;
}

.refs-kicker {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7a7568;
  font-weight: 500;
  margin-bottom: 16px;
}

.refs-block-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 8px;
}

.refs-block-lead {
  font-size: 14px;
  color: #5c584e;
  margin-bottom: 20px;
}

.refs-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.refs-chip {
  background: #fff;
  border: 0.5px solid #E2DED2;
  color: #4a4335;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.refs-chip:hover {
  border-color: var(--navy);
}

.refs-chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

.refs-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(247, 233, 198, 0.18);
  border: 0.5px solid rgba(0, 48, 144, 0.12);
  border-radius: 12px;
  overflow: hidden;
}

.refs-board-cell {
  background: var(--navy-dark);
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
}

.refs-board-cell[hidden] {
  display: none;
}

.refs-board-cell img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.refs-table-wrap {
  background: #fff;
  border: 0.5px solid #E2DED2;
  border-radius: 12px;
  overflow: hidden;
}

.refs-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 13px;
}

.refs-table thead th {
  background: var(--navy);
  color: var(--cream);
  padding: 12px 14px;
  font-weight: 500;
  text-align: left;
}

.refs-table thead th:nth-child(1) { width: 26%; }
.refs-table thead th:nth-child(2) { width: 24%; }
.refs-table thead th:nth-child(3) { width: 36%; }
.refs-table thead th:nth-child(4) { width: 14%; }

.refs-table tbody td {
  padding: 12px 14px;
  color: #5c584e;
  border-bottom: 0.5px solid #EFEBE0;
  vertical-align: top;
}

.refs-table tbody tr:nth-child(even) {
  background: #FAF8F2;
}

.refs-table tbody tr:last-child td {
  border-bottom: none;
}

.refs-table tbody td:first-child {
  color: var(--navy);
  font-weight: 500;
}

.refs-empty {
  padding: 20px 16px;
  font-size: 14px;
  color: #5c584e;
  margin: 0;
}

.refs-dossier {
  background: var(--cream);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.refs-dossier-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.refs-dossier-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4335;
  max-width: 560px;
}

.refs-cta {
  background: var(--navy);
  padding: 48px 24px;
}

.refs-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.refs-cta-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
}

.refs-cta-text {
  font-size: 14px;
  line-height: 1.65;
  color: #cdd8ee;
  max-width: 560px;
}

.references-more {
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 800px) {
  .refs-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .refs-table {
    table-layout: auto;
  }

  .refs-table thead {
    display: none;
  }

  .refs-table tbody td {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 0.5px solid #EFEBE0;
  }

  .refs-table tbody td::before {
    content: attr(data-label);
    font-weight: 500;
    color: var(--navy);
    flex-shrink: 0;
  }

  .refs-table tbody tr {
    display: block;
    padding: 8px 0 4px;
    border-bottom: 1px solid #E2DED2;
  }

  .refs-hero {
    padding: 120px 20px 56px;
  }
}

/* ============================================================
   Page Carrières
   ============================================================ */

.page-careers {
  background: #FDFBF6;
}

.jobs-hero {
  position: relative;
  background: var(--navy-dark);
  padding: 140px 24px 72px;
  overflow: hidden;
  color: var(--cream);
}

.jobs-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.jobs-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.jobs-hero .section-label {
  color: var(--vermillion);
}

.jobs-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 12px;
}

.jobs-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 18px;
}

.jobs-hero-sub em {
  font-style: italic;
  font-weight: 500;
  color: var(--vermillion);
}

.jobs-hero-chapo {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(247, 233, 198, 0.82);
  max-width: 540px;
}

.jobs-section {
  padding: 48px 24px;
}

.jobs-kicker {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7a7568;
  font-weight: 500;
  margin-bottom: 16px;
}

.jobs-block-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 8px;
}

.jobs-block-lead {
  font-size: 14px;
  color: #5c584e;
  margin-bottom: 20px;
}

.jobs-find-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.jobs-find-card {
  background: #fff;
  border: 0.5px solid #E2DED2;
  border-radius: 12px;
  padding: 18px 20px;
}

.jobs-find-card h2 {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin: 10px 0 6px;
}

.jobs-find-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #5c584e;
}

.jobs-not-offer {
  margin-top: 16px;
  background: var(--cream);
  border-radius: 12px;
  padding: 16px 20px;
}

.jobs-not-offer p {
  font-size: 14px;
  line-height: 1.65;
  color: #4a4335;
  margin: 0;
}

.jobs-not-offer strong {
  font-weight: 500;
  color: var(--navy);
}

.jobs-card {
  background: #fff;
  border: 2px solid var(--vermillion);
  border-radius: 12px;
  padding: 24px 26px;
}

.jobs-card[data-job-status="closed"] {
  border-color: #E2DED2;
}

.jobs-card[data-job-status="closed"] .jobs-status {
  background: #E2DED2;
  color: #5c584e;
}

.jobs-card[data-job-status="closed"] .jobs-card-cta {
  display: none;
}

.jobs-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.jobs-card-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.jobs-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.jobs-tags span {
  background: var(--cream);
  color: #4a4335;
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 20px;
}

.jobs-status {
  background: var(--navy);
  color: var(--cream);
  font-size: 12px;
  padding: 6px 13px;
  border-radius: 20px;
  white-space: nowrap;
}

.jobs-card-body {
  font-size: 15px;
  line-height: 1.65;
  color: #3d3a33;
  margin: 18px 0 16px;
}

.jobs-reqs {
  border-top: 0.5px solid #E2DED2;
  padding-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.jobs-reqs h3 {
  font-size: 12px;
  font-weight: 500;
  color: var(--vermillion);
  margin-bottom: 8px;
}

.jobs-reqs p {
  font-size: 13px;
  line-height: 1.75;
  color: #5c584e;
}

.jobs-card-cta {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.jobs-deadline {
  font-size: 12px;
  color: #7a7568;
  margin: 0;
}

.jobs-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jobs-steps li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 0.5px solid #E2DED2;
}

.jobs-steps li:last-child {
  border-bottom: none;
}

.jobs-step-num {
  color: var(--vermillion);
  font-size: 13px;
  font-weight: 500;
  min-width: 28px;
  padding-top: 2px;
}

.jobs-steps h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.jobs-steps p {
  font-size: 14px;
  line-height: 1.6;
  color: #5c584e;
}

.jobs-step-when {
  font-size: 12px;
  color: #9a9484;
  white-space: nowrap;
  align-self: center;
  margin-left: auto;
}

.jobs-cta {
  background: var(--navy);
  padding: 48px 24px;
}

.jobs-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.jobs-cta-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
}

.jobs-cta-text {
  font-size: 14px;
  line-height: 1.65;
  color: #cdd8ee;
  max-width: 560px;
}

@media (max-width: 800px) {
  .jobs-find-grid,
  .jobs-reqs {
    grid-template-columns: 1fr;
  }

  .jobs-hero {
    padding: 120px 20px 56px;
  }

  .jobs-steps li {
    flex-wrap: wrap;
  }

  .jobs-step-when {
    margin-left: 44px;
  }
}

.apply-wrap {
  max-width: 720px;
}

.apply-form {
  background: #fff;
  border: 0.5px solid #E2DED2;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.apply-works {
  border: 0.5px solid #E2DED2;
  border-radius: 12px;
  padding: 16px 18px 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.apply-works legend {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  padding: 0 6px;
}

.form-hint {
  font-size: 13px;
  color: #7a7568;
  margin: 0;
}

.apply-form input[type="file"] {
  padding: 10px 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.apply-success {
  background: #fff;
  border: 0.5px solid #E2DED2;
  border-radius: 12px;
  padding: 48px 28px;
  text-align: center;
}

.apply-success[hidden],
.apply-form[hidden] {
  display: none;
}

.apply-success .btn-navy {
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 8px;
}

@media (max-width: 700px) {
  .apply-grid {
    grid-template-columns: 1fr;
  }

  .apply-form {
    padding: 20px;
  }
}

/* Legal Pages */
.page-legal {
  background: var(--white);
}

.page-legal .nav {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(247, 233, 198, 0.1);
  height: 80px;
}

.page-legal .nav-links a {
  color: rgba(247, 233, 198, 0.85);
}

.page-legal .nav-links a:hover,
.page-legal .nav-links a.nav-link-active {
  color: var(--cream);
}

.legal-hero {
  background: var(--navy);
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.legal-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bi-hero-grid {
  background-image:
    linear-gradient(rgba(247,233,198,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,233,198,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.bi-hero-halo {
  background: radial-gradient(ellipse at 70% 40%, rgba(248,72,8,0.12) 0%, transparent 60%);
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.legal-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.legal-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(247, 233, 198, 0.7);
  line-height: 1.6;
  max-width: 700px;
}

.bi-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(247, 233, 198, 0.5);
  margin-bottom: 16px;
}

.bi-breadcrumb a {
  color: rgba(247, 233, 198, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bi-breadcrumb a:hover {
  color: var(--cream);
}

.legal-section {
  background: var(--white);
  padding: 56px 24px;
  border-bottom: 1px solid rgba(0, 48, 144, 0.08);
}

.legal-section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy-dark);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.legal-content {
  max-width: 800px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(0, 27, 82, 0.75);
  line-height: 1.7;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 12px 0 16px 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--navy);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.legal-content a:hover {
  color: var(--vermillion);
}

.legal-content strong {
  font-weight: 500;
  color: var(--navy-dark);
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 100px 24px 60px;
  }

  .legal-hero-title {
    font-size: 32px;
  }

  .legal-hero-sub {
    font-size: 14px;
  }

  .legal-section {
    padding: 40px 24px;
  }

  .legal-section-title {
    font-size: 22px;
  }

  .legal-content {
    font-size: 14px;
  }
}
