/* ============================================
   CAPITAL KEYS — Design System & Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,700;1,700&family=Inter:wght@400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  /* Colors */
  --color-navy: #212B46;
  --color-navy-light: #2E3A58;
  --color-gold: #CABD99;
  --color-gold-deep: #B8A16F;
  --color-white: #F7F4EE;
  --color-offwhite: #F8F7F4;
  --color-beige: #F2F0EB;
  --color-text: #212B46;
  --color-text-secondary: #6B7280;
  --color-border: #E5E5E0;
  --color-border-light: #F0EFEB;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.25rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 780px;
  --border-radius: 9999px;
  --border-radius-md: 20px;

  /* Transitions */
  --transition: 0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background-color: #FFFFFF;
  line-height: 1.7;
  font-size: var(--text-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-4xl);
  line-height: 1.2;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

h2, .h2 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-2xl);
  line-height: 1.3;
  color: var(--color-navy);
}

h3, .h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-xl);
  line-height: 1.4;
  color: var(--color-navy);
}

h4, .h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-lg);
  line-height: 1.4;
  color: var(--color-navy);
}

.surtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.body-large {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.body-text {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-text-secondary);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3rem;
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: 2.75rem 0;
}

.section--alt {
  background-color: #F7F3EE;
}

.section--pierre {
  background-color: #EFECE6;
}

.section--navy {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 3.75rem 0;
}

.section--navy h2,
.section--navy h3,
.section--navy .h2,
.section--navy .h3 {
  color: var(--color-white);
}

.section--navy .body-text,
.section--navy .body-large,
.section--navy p {
  color: rgba(255, 255, 255, 0.75);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 2rem);
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 9999px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.header .container {
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0;
  gap: 0.75rem;
}

.header__nav {
  margin-left: auto;
}

.header__cta {
  margin-left: 0.5rem;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.header__nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-navy);
  transition: color var(--transition), border-color 0.2s ease;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.header__nav a:hover {
  color: var(--color-navy-light);
  opacity: 1;
}

.header__nav a.active:not(.header__cta) {
  border-color: var(--color-gold-deep);
  opacity: 1;
}

.header__cta {
  font-size: var(--text-sm) !important;
  font-weight: 600 !important;
  color: var(--color-white) !important;
  background: var(--color-navy);
  padding: 0.5rem 1.1rem;
  border-radius: 9999px;
  transition: background var(--transition);
  margin-left: 0.25rem;
}

.header__cta:hover {
  background: var(--color-navy-light);
  opacity: 1 !important;
}

.header__cta.active {
  border: 1px solid var(--color-gold-deep) !important;
  box-shadow: 0 0 0 1px var(--color-gold-deep);
}

/* Mobile menu toggle */
.header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
  margin: 5px 0;
  transition: var(--transition);
}

/* --- Footer --- */
.footer {
  position: relative;
  background:
    radial-gradient(ellipse at top left, rgba(184, 161, 111, 0.08), transparent 55%),
    linear-gradient(180deg, var(--color-navy) 0%, #0c1628 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 4.5rem 0 2rem;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(184, 161, 111, 0.55) 20%,
    rgba(184, 161, 111, 0.55) 80%,
    transparent
  );
}

.footer .container {
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: 3rem;
  position: relative;
}

/* Thread-style divider with centered gold dot */
.footer__grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(184, 161, 111, 0.25) 15%,
    rgba(184, 161, 111, 0.25) 85%,
    transparent
  );
}

.footer__brand-col img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
  opacity: 0.95;
}

.footer__brand-col p {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}

.footer__location {
  font-size: var(--text-xs);
  color: rgba(184, 161, 111, 0.75) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1rem !important;
  max-width: none !important;
  position: relative;
  padding-left: 1rem;
}

.footer__location::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  transform: translateY(-50%);
  opacity: 0.7;
}

.footer__heading {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 1px;
  background: rgba(184, 161, 111, 0.5);
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 0.55rem;
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  position: relative;
  padding-left: 0;
  transition: color var(--transition), padding-left var(--transition);
}

.footer__links a::before {
  content: "→";
  position: absolute;
  left: -0.2rem;
  opacity: 0;
  color: var(--color-gold);
  transition: opacity var(--transition), left var(--transition);
}

.footer__links a:hover {
  color: var(--color-white);
  opacity: 1;
  padding-left: 1.1rem;
}

.footer__links a:hover::before {
  opacity: 1;
  left: 0;
}

.footer__bottom {
  margin-top: 0;
  padding-top: 2rem;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  letter-spacing: 0.02em;
}

@media (max-width: 840px) {
  .footer {
    padding: 3.5rem 0 2rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.25rem;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  height: 48px;
  padding: 0 1.5rem;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
}

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

.btn--primary:hover {
  background: var(--color-navy-light);
  opacity: 1;
}

.btn--secondary {
  background: transparent;
  color: var(--color-navy);
  border: 1px solid var(--color-border);
}

.btn--secondary:hover {
  border-color: var(--color-navy);
  opacity: 1;
}

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

.btn--white:hover {
  background: var(--color-offwhite);
  opacity: 1;
}

.btn-group {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.text-center .btn-group {
  justify-content: center;
}

/* --- Hero --- */
.hero {
  padding: 3.5rem 0 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.hero .container {
  max-width: 820px;
  text-align: center;
}

.hero .surtitle {
  margin-bottom: 1.25rem;
}

.hero h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-gold-deep);
  line-height: 1;
}

.trust-item span {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.hero .body-large {
  margin-bottom: 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn-group {
  justify-content: center;
  margin-top: 2rem;
}

/* --- Section Header --- */
.section__header {
  margin-bottom: 2rem;
}

.section__header--center {
  text-align: center;
  max-width: var(--max-width-narrow);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.75rem;
}

.section__header h2 {
  margin-bottom: var(--space-md);
}

.section__header p {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  line-height: 1.8;
}

/* --- Grid: 2 Columns --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-2__item {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-md);
  padding: 2rem;
}

.section--alt .grid-2__item {
  background: var(--color-white);
}

.grid-2__item h3 {
  margin-bottom: var(--space-md);
}

.grid-2__item ul {
  list-style: none;
}

.grid-2__item li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.grid-2__item li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-navy);
  opacity: 0.35;
}

/* --- Grid: 3 Piliers --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  padding: 1rem 2rem 0.5rem;
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
}

.pillar__number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3rem, 5vw, 4.25rem);
  font-weight: 700;
  color: var(--color-gold-deep);
  opacity: 0.92;
  line-height: 1;
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.pillar__number::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: rgba(184, 161, 111, 0.6);
}

.pillar h3 {
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.pillar ul {
  list-style: none;
}

.pillar li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.pillar li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 10px;
  height: 1px;
  border-radius: 0;
  background: var(--color-gold-deep);
  opacity: 0.8;
  opacity: 0.3;
}

/* --- Grid: 4 items (constat) — numbered vertical list --- */
.grid-4 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 560px;
  margin: 0 auto;
}

.grid-4__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #FFFFFF;
  border-radius: 50px;
  border: none;
  box-shadow: 0 2px 8px rgba(33, 43, 70, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.grid-4__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 43, 70, 0.1);
}

.grid-4__number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-navy);
  background: var(--color-beige);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 1;
  line-height: 1;
}

.grid-4__item h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 0;
}

.grid-4__item p {
  display: none;
}

.section--navy .grid-4__item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section--navy .grid-4__item h4 {
  color: rgba(255, 255, 255, 0.9);
}

.section--navy .grid-4__number {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
}

/* --- Floating Cards (alternating left/right) --- */
.floating-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  position: relative;
  padding: 2.5rem 0;
}

.floating-cards::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.floating-card {
  max-width: 75%;
  padding: 1.25rem 1.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(33, 43, 70, 0.05);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(33, 43, 70, 0.1);
}

.floating-card--left {
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.7), rgba(255, 255, 255, 0.7));
}

.floating-card--right {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(241, 245, 249, 0.7), rgba(255, 255, 255, 0.7));
}

.floating-card h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.floating-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --- Structured List --- */
.structured-list {
  list-style: none;
  max-width: var(--max-width-narrow);
}

.structured-list li {
  padding: var(--space-md) 0;
  padding-left: 1rem;
  border-bottom: 1px solid var(--color-border);
  border-left: 2px solid rgba(184, 161, 111, 0.25);
  font-size: var(--text-base);
  line-height: 1.7;
}

.structured-list li:last-child {
  border-bottom: none;
}

.structured-list li strong {
  color: var(--color-navy);
  font-weight: 600;
}

.section--navy .structured-list li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}

.section--navy .structured-list li strong {
  color: var(--color-white);
}

/* --- Steps / Parcours --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.steps--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* --- Parcours wrapper (title + steps in one card) --- */
.parcours-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem 2rem;
}

.parcours-wrapper .section__header--center {
  margin-bottom: 1.5rem;
}

.steps--6 {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 520px;
  margin: 0 auto;
  background: var(--color-navy);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
}

.steps--6 .step {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  border-top: none;
  border-bottom: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  transition: background 0.2s ease;
}

.steps--6 .step:hover {
  background: rgba(255, 255, 255, 0.14);
  border-top-color: transparent;
}

.steps--6 .step:last-child {
  border-bottom: none;
}

.steps--6 .step::before {
  content: counter(step);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.15);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 1;
  margin-bottom: 0;
  line-height: 1;
}

.steps--6 .step h4 {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.step {
  counter-increment: step;
  padding: 1.875rem 0;
  border-top: 1px solid var(--color-border);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-gold-deep);
  opacity: 0.35;
  display: block;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.step h4 {
  font-size: var(--text-base);
  font-weight: 600;
}

.step p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-top: 0.35rem;
  line-height: 1.65;
}

/* --- Encadre (highlight box) --- */
.encadre {
  background: var(--color-offwhite);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
}

.encadre--navy {
  background: var(--color-navy);
  border-color: transparent;
  color: var(--color-white);
}

.encadre ul {
  list-style: none;
}

.encadre li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: var(--text-base);
  line-height: 1.6;
}

.encadre--navy li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.encadre li:last-child {
  border-bottom: none;
}

.encadre li strong {
  font-weight: 600;
  color: var(--color-navy);
}

.encadre--navy li strong {
  color: var(--color-white);
}

/* --- FAQ --- */
.faq-list {
  max-width: var(--max-width-narrow);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
  text-align: left;
  line-height: 1.5;
}

.faq-question::after {
  content: '+';
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text-secondary);
  flex-shrink: 0;
  margin-left: var(--space-sm);
  transition: transform var(--transition);
}

.faq-item.is-open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* --- CTA Final --- */
.cta-final {
  text-align: center;
  padding: 2.75rem 0;
  background: #FFFFFF;
}

.cta-final.section--alt {
  background: #F7F3EE;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  margin-bottom: 1.5rem;
}

.cta-final p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.cta-final .btn-group {
  justify-content: center;
  margin-top: 2rem;
}

.cta-final .cta-final__coords {
  margin-top: 2.5rem;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.cta-final__coords a {
  color: var(--color-text-secondary);
}

/* --- Contact Form --- */
.form {
  display: grid;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
  height: 48px;
  padding: 0 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(33, 43, 70, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.5;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  height: auto;
  padding: 0.875rem 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form .btn {
  width: 100%;
  max-width: 240px;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
}

.form-success p {
  font-size: var(--text-lg);
  color: var(--color-navy);
}

/* --- Contact cards --- */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.contact-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.contact-card p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.contact-card--accent {
  border-top: 3px solid var(--color-gold-deep);
}

.contact-card .btn {
  margin-top: var(--space-md);
}

.container--form {
  max-width: 720px;
}

/* --- Piliers dominant section --- */
.section--piliers {
  padding: var(--space-2xl) 0;
}

.piliers-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.25;
}

/* --- Editorial section --- */
.section-editorial {
  border-bottom: 1px solid var(--color-border);
}

.section-editorial .editorial-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-gold-deep);
  margin-top: var(--space-md);
}

.editorial-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.3;
  color: var(--color-navy);
  margin-bottom: var(--space-lg);
}

/* --- List centering (replaces inline styles) --- */
.structured-list,
.faq-list {
  margin: 0 auto;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-narrow { max-width: var(--max-width-narrow); margin-left: auto; margin-right: auto; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* --- Values grid (a propos) --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(184, 161, 111, 0.35);
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color var(--transition), transform var(--transition);
}
.value-item:hover {
  border-color: rgba(184, 161, 111, 0.65);
  transform: translateY(-3px);
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.85rem;
  color: var(--color-white);
}

.value-item p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin: 0;
}

/* On light backgrounds, restore dark text for value-item */
.section:not(.section--navy) .value-item {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(184, 161, 111, 0.35);
}
.section:not(.section--navy) .value-item h3 { color: var(--color-navy); }
.section:not(.section--navy) .value-item p { color: var(--color-text-secondary); }

/* --- Exploitation list (vertical timeline) --- */
.exploitation-list {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  padding-left: 3rem;
  counter-reset: timeline;
  overflow: hidden;
}

/* Vertical line connecting circle centers. The list uses overflow:hidden
   so we only need to position top/bottom to match circle centers of
   first and last items. Each item is ~46px tall, circle at 50% = ~23px. */
.exploitation-list::before {
  content: '';
  position: absolute;
  left: 19px; /* 0.5rem(8px) + 12px(half of 24px circle) - 1px(half of 2px line) */
  top: 23px;
  bottom: 23px;
  width: 2px;
  background: var(--color-border);
  z-index: 0;
}

.exploitation-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  box-shadow: 0 2px 8px rgba(33, 43, 70, 0.04);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.exploitation-item:hover {
  background: rgba(255, 255, 255, 0.65);
  transform: none;
  box-shadow: 0 4px 16px rgba(33, 43, 70, 0.08);
}

/* Hide the generic ::before since we use .timeline-number */
.exploitation-item::before {
  display: none;
}

.exploitation-item .timeline-number {
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  z-index: 1;
}

.exploitation-item:last-child {
  border-bottom: none;
}

.exploitation-item strong {
  color: var(--color-navy);
  font-weight: 600;
  font-size: var(--text-sm);
}

.exploitation-item span:not(.timeline-number) {
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  line-height: 1.6;
}

/* --- Process steps after contact --- */
.process-steps {
  counter-reset: process;
  max-width: var(--max-width-narrow);
}

.process-step {
  counter-increment: process;
  padding: var(--space-sm) 0;
  padding-left: 2.5rem;
  position: relative;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.process-step::before {
  content: counter(process) '.';
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--color-navy);
}

.section--navy .process-step {
  color: rgba(255, 255, 255, 0.75);
}

.section--navy .process-step::before {
  color: var(--color-white);
}

/* --- Footer legal links --- */
.footer__legal {
  display: flex;
  gap: 0;
  margin-top: 0;
  align-items: center;
}

.footer__legal a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.42);
  transition: color var(--transition);
  padding: 0 0.9rem;
  position: relative;
  letter-spacing: 0.03em;
}

.footer__legal a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(184, 161, 111, 0.4);
  transform: translateY(-50%);
}

.footer__legal a:first-child {
  padding-left: 0;
}
.footer__legal a:last-child {
  padding-right: 0;
}

.footer__legal a:hover {
  color: var(--color-gold);
  opacity: 1;
}

/* --- Legal pages --- */
.legal-content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-navy);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: var(--text-lg);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.legal-content li {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 0.25rem;
}

/* --- Narrow text accent (visual anchoring) --- */
.section:not(.section--navy):not(.section--alt):not(.section-editorial) .container--narrow > .body-text.mt-md {
  padding-left: 1.25rem;
  border-left: 2px solid rgba(184, 161, 111, 0.3);
}

/* --- Verify Split (text left, cards right) --- */
.verify-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.verify-split__text {
  position: sticky;
  top: 6rem;
}

.verify-split__text h2 {
  margin-bottom: 0;
}

.verify-split__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.verify-split__cards .grid-4__item {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 1.25rem 1.35rem;
  border-radius: 12px;
  border-left: 3px solid var(--color-gold);
}

.verify-split__cards .grid-4__item h4 {
  font-size: var(--text-base);
  line-height: 1.3;
}

.verify-split__cards .grid-4__item p {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-top: 0;
  line-height: 1.55;
}

@media (max-width: 600px) {
  .verify-split__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .verify-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .verify-split__text {
    position: static;
    text-align: center;
  }
}

/* --- Contact Layout (form + sidebar) --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-layout__form h2 {
  margin-bottom: 1.5rem;
}

.contact-layout__sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: sticky;
  top: 5rem;
}

.contact-sidebar-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-md);
  padding: 1.25rem 1.5rem;
}

.contact-sidebar-card h3 {
  font-size: var(--text-base);
  margin-bottom: 0.5rem;
}

.contact-sidebar-card h4 {
  font-size: var(--text-sm);
  margin-bottom: 0.75rem;
}

.contact-sidebar-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.contact-sidebar-card__actions {
  display: flex;
  gap: 0.5rem;
}

.contact-sidebar-card__actions .btn {
  height: 40px;
  font-size: var(--text-sm);
}

.contact-sidebar-card__lines {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-sidebar-card__lines a,
.contact-sidebar-card__lines span {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-sidebar-card--light {
  background: rgba(255, 255, 255, 0.3);
}

.contact-sidebar-steps {
  list-style: none;
  counter-reset: sidebar-step;
}

.contact-sidebar-steps li {
  counter-increment: sidebar-step;
  position: relative;
  padding-left: 1.75rem;
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-sidebar-steps li:last-child {
  margin-bottom: 0;
}

.contact-sidebar-steps li::before {
  content: counter(sidebar-step);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--color-navy);
  background: rgba(33, 43, 70, 0.08);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (max-width: 840px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-layout__sidebar {
    position: static;
  }
}

/* --- Criteria Grid (navy section, pill items) --- */
.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.criteria-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: background 0.2s ease;
}

.criteria-item:hover {
  background: rgba(255, 255, 255, 0.14);
}

.criteria-item--full {
  grid-column: 1 / -1;
}

.criteria-icon {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.15);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

@media (max-width: 640px) {
  .criteria-grid {
    grid-template-columns: 1fr;
  }
  .criteria-item--full {
    grid-column: auto;
  }
}

/* --- Reduced top spacing (tight coupling) --- */
.section--tight-top {
  margin-top: -2rem;
}

/* --- Architectural Background Sections --- */
.section--bg-architectural {
  position: relative;
  padding: 5.5rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section--bg-architectural::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 244, 238, 0.88);
  z-index: 0;
}

.section--bg-architectural > .container {
  position: relative;
  z-index: 1;
}

.section--bg-architectural-alt::before {
  background: rgba(242, 240, 235, 0.85);
}

/* --- Scroll Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

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

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes goldLineGrow {
  from { width: 0; }
  to { width: 40px; }
}

.fade-up, .fade-left, .fade-right, .scale-in {
  opacity: 0;
}

.fade-up.is-visible {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-left.is-visible {
  animation: fadeLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-right.is-visible {
  animation: fadeRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.scale-in.is-visible {
  animation: scaleIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-up.delay-1, .fade-left.delay-1, .fade-right.delay-1 { animation-delay: 0.1s; }
.fade-up.delay-2, .fade-left.delay-2, .fade-right.delay-2 { animation-delay: 0.2s; }
.fade-up.delay-3 { animation-delay: 0.3s; }

/* --- Stagger Children (grid items appear one by one) --- */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 0.12s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 0.19s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 0.26s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 0.33s; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: 0.40s; }

[data-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Large desktop cap */
@media (max-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }

  .steps--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (max-width: 840px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section--navy {
    padding: 4.5rem 0;
  }

  .section--bg-architectural {
    padding: 4.5rem 0;
  }

  .cta-final {
    padding: 5rem 0;
  }

  .header__nav {
    display: flex;
  }
}

@media (max-width: 760px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 12px 32px rgba(31, 38, 135, 0.1);
    gap: 0.25rem;
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__nav a {
    padding: 0.85rem 0.5rem;
    display: block;
    border: none;
    min-width: auto;
    text-align: left;
    border-radius: 8px;
  }

  .header__nav a.active:not(.header__cta) {
    border: none;
    font-weight: 600;
    color: var(--color-gold-deep);
  }

  .header__nav .header__cta {
    margin-top: 0.75rem;
    text-align: center;
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
  }

  .header__toggle {
    display: block;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand-col {
    grid-column: 1 / -1;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image img {
    height: 360px;
  }

  .section-image img {
    height: 300px;
  }

  .section-image--small img {
    height: 220px;
  }

  .hero-badges,
  .split-feature,
  .split-feature--reverse,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .split-feature--reverse .split-feature__media,
  .split-feature--reverse .split-feature__content {
    order: initial;
  }

  .split-feature__media img {
    height: 320px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
    --text-2xl: 1.25rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .hero {
    padding: 5.5rem 0 2rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section--navy {
    padding: 3.5rem 0;
  }

  .section--bg-architectural {
    padding: 3.5rem 0;
  }

  .cta-final {
    padding: 4rem 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: left;
  }

  .footer__brand-col {
    grid-column: auto;
  }

  .footer__brand-col img {
    height: 48px;
    width: auto;
    margin: 0 0 0.75rem 0;
  }

  .footer__brand-col p {
    max-width: none;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .exploitation-list {
    padding-left: 2.5rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    width: 100%;
    max-width: none;
  }

  .hero-image img {
    height: 240px;
  }

  .section-image img {
    height: 220px;
  }

  .section-image--small img {
    height: 180px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 4.5rem;
    right: 1.25rem;
  }

  /* Disable card hover lift on touch devices */
  .exploitation-item:hover,
  .pillar:hover,
  .grid-2__item:hover,
  .value-item:hover,
  .report-card:hover {
    transform: none;
  }

  .sticky-cta__text {
    display: none;
  }

  .sticky-cta .container {
    justify-content: center;
  }

  body.has-sticky-cta {
    padding-bottom: 52px;
  }

  .section--compact {
    padding: 1rem 0 1.5rem;
  }

  .hero-badges {
    margin-top: 0;
  }

  .split-feature__content {
    padding: 1.25rem;
  }

  .form .btn {
    max-width: none;
  }

  .section__header--center {
    margin-bottom: 2rem;
  }
}

/* Small mobile */
@media (max-width: 430px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero__headline {
    font-size: 1.625rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .pillar {
    padding: 1.75rem 1.25rem;
  }
}

/* --- Page Images --- */
.hero-image {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
}

.section-image {
  padding: 2.5rem 0;
}

.section-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius-md);
}

.section-image--small img {
  height: 280px;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(27, 42, 74, 0.18);
  transition: background var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  background: var(--color-navy-light);
  box-shadow: 0 4px 18px rgba(27, 42, 74, 0.28);
  opacity: 1;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

/* --- Hero Badges --- */
.section--compact {
  padding: 1.5rem 0 2.5rem;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: -1.25rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-md);
  padding: 1.25rem 1.25rem;
  box-shadow: 0 10px 30px rgba(33, 43, 70, 0.04);
}

.hero-badge strong {
  display: block;
  color: var(--color-navy);
  font-size: var(--text-sm);
  margin-bottom: 0.3rem;
}

.hero-badge span {
  display: block;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* --- Split Feature (image + content) --- */
.section--image-split {
  padding: 3.75rem 0;
  background: #FFFFFF;
}

.section--image-split--navy {
  background: var(--color-navy);
}
.section--image-split--navy .surtitle,
.section--image-split--navy h2,
.section--image-split--navy h3,
.section--image-split--navy .body-text,
.section--image-split--navy p {
  color: var(--color-white);
}
.section--image-split--navy .surtitle {
  color: var(--color-gold);
  opacity: 0.95;
  letter-spacing: 0.18em;
}
.section--image-split--navy .split-feature__content {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 0 0 0 1.75rem;
  position: relative;
}
.section--image-split--navy .split-feature__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: var(--color-gold);
}
.pilotage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pilotage-grid[data-stagger] > * {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.pilotage-grid[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.pilotage-grid[data-stagger].is-visible > *:nth-child(2) { transition-delay: 0.30s; }
.pilotage-grid[data-stagger].is-visible > *:nth-child(3) { transition-delay: 0.55s; }
.pilotage-grid[data-stagger].is-visible > *:nth-child(4) { transition-delay: 0.80s; }
.pilotage-grid[data-stagger].is-visible > *:nth-child(5) { transition-delay: 1.05s; }
.pilotage-grid[data-stagger].is-visible > *:nth-child(6) { transition-delay: 1.30s; }
.pilotage-grid[data-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.pilotage-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.1rem 1.25rem 1.1rem;
  box-shadow: 0 4px 16px rgba(33, 43, 70, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  align-items: center;
}
.pilotage-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  opacity: 0.85;
}
.pilotage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(33, 43, 70, 0.12);
}
.pilotage-card__num {
  font-family: var(--font-display, serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--color-gold-deep);
  line-height: 1;
  letter-spacing: 0.02em;
  align-self: center;
}
.pilotage-card h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 0.25rem;
  line-height: 1.25;
}
.pilotage-card p {
  grid-column: 1 / -1;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0.5rem 0 0;
}
@media (max-width: 900px) {
  .pilotage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pilotage-grid { grid-template-columns: 1fr; }
}

/* ─── Full-bleed intro section (Option A premium) ─── */
.intro-fullbleed {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: 3.25rem 0;
}
.intro-fullbleed__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.intro-fullbleed__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 22, 40, 0.88) 0%, rgba(11, 22, 40, 0.65) 55%, rgba(11, 22, 40, 0.85) 100%);
  z-index: 1;
}
.intro-fullbleed__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(184, 161, 111, 0.12), transparent 60%);
}
.intro-fullbleed__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
  padding: 0 1.5rem;
}
.intro-fullbleed__ornament {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(184, 161, 111, 0.75) 20%,
    rgba(184, 161, 111, 0.75) 80%,
    transparent
  );
  margin: 0 auto 2rem;
}

.pullquote--light {
  color: var(--color-white) !important;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.35;
  margin: 0 0 1.75rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.pullquote--light::before {
  content: "“";
  position: absolute;
  top: -0.55em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.5em;
  font-family: var(--font-display);
  font-style: normal;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.28;
  pointer-events: none;
}
.intro-fullbleed__body {
  color: rgba(255, 255, 255, 0.78) !important;
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
}
.pullquote__signature--light {
  color: var(--color-gold) !important;
  border-top-color: rgba(184, 161, 111, 0.35) !important;
  margin-top: 2rem !important;
  padding-top: 1.5rem !important;
  display: inline-block;
  border-top: 1px solid rgba(184, 161, 111, 0.35);
  padding-left: 3rem;
  padding-right: 3rem;
}

/* Gold corner accents — echoing the framed media treatment */
.intro-fullbleed::before,
.intro-fullbleed::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}
.intro-fullbleed::before {
  top: 24px;
  left: 24px;
  border-top: 1px solid rgba(184, 161, 111, 0.5);
  border-left: 1px solid rgba(184, 161, 111, 0.5);
}
.intro-fullbleed::after {
  bottom: 24px;
  right: 24px;
  border-bottom: 1px solid rgba(184, 161, 111, 0.5);
  border-right: 1px solid rgba(184, 161, 111, 0.5);
}

@media (max-width: 840px) {
  .intro-fullbleed {
    min-height: 460px;
    padding: 3.5rem 0;
  }
  .intro-fullbleed__content .surtitle {
    padding: 0 2rem;
  }
  .intro-fullbleed__content .surtitle::before,
  .intro-fullbleed__content .surtitle::after {
    width: 18px;
  }
  .intro-fullbleed::before,
  .intro-fullbleed::after {
    width: 36px;
    height: 36px;
  }
}

/* ─── Split feature — intro variant (pullquote premium) ─── */
.split-feature--intro {
  align-items: stretch;
  gap: 4rem;
}
.split-feature--intro .split-feature__media {
  position: relative;
}
.split-feature--intro .split-feature__media img {
  height: 100%;
  min-height: 420px;
  max-height: 560px;
  border-radius: 4px;
}
.split-feature__content--pullquote {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-left: 1px solid rgba(184, 161, 111, 0.35);
  border-radius: 0;
  padding: 1.5rem 0 1.5rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-feature__content--pullquote .surtitle {
  margin-bottom: 1.5rem;
  position: relative;
}
.split-feature__content--pullquote .surtitle::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-gold-deep);
  vertical-align: middle;
  margin-right: 0.75rem;
  transform: translateY(-1px);
}
.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.35;
  color: var(--color-navy);
  position: relative;
  margin: 0 0 1.5rem;
}
.pullquote::before {
  content: "“";
  position: absolute;
  top: -0.15em;
  left: -0.05em;
  font-size: 3em;
  font-family: var(--font-display);
  font-style: normal;
  line-height: 1;
  color: var(--color-gold-deep);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.split-feature__content--pullquote .body-text {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}
.pullquote__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--color-gold-deep);
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(184, 161, 111, 0.2);
}

@media (max-width: 840px) {
  .split-feature--intro {
    gap: 2rem;
  }
  .split-feature__content--pullquote {
    border-left: none;
    border-top: 1px solid rgba(184, 161, 111, 0.35);
    padding: 2rem 0 0;
  }
  .split-feature--intro .split-feature__media img {
    min-height: 280px;
    max-height: 360px;
  }
}

.split-feature__media--framed {
  position: relative;
}
.split-feature__media--framed img {
  border-radius: 6px;
  box-shadow: 0 22px 50px -16px rgba(0,0,0,0.6);
  position: relative;
  z-index: 2;
}
.split-feature__media--framed::after {
  content: "";
  position: absolute;
  inset: -14px -14px auto auto;
  width: 90px;
  height: 90px;
  border-top: 2px solid var(--color-gold);
  border-right: 2px solid var(--color-gold);
  z-index: 1;
  pointer-events: none;
}
.split-feature__media--framed::before {
  content: "";
  position: absolute;
  inset: auto auto -14px -14px;
  width: 90px;
  height: 90px;
  border-bottom: 2px solid var(--color-gold);
  border-left: 2px solid var(--color-gold);
  z-index: 1;
  pointer-events: none;
}

.split-feature {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-feature--reverse {
  grid-template-columns: 1fr 1.02fr;
}

.split-feature--reverse .split-feature__media {
  order: 2;
}

.split-feature--reverse .split-feature__content {
  order: 1;
}

.split-feature__media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
}

.split-feature__content {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-md);
  padding: 2rem;
}

.mini-list {
  display: grid;
  gap: 0.85rem;
}

.mini-list__item {
  padding: 0.9rem 1rem;
  border-left: 2px solid rgba(184, 161, 111, 0.45);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

/* Mirrored variant: accent on the right, rounded on the left */
.mini-list--mirror .mini-list__item {
  border-left: none;
  border-right: 2px solid rgba(184, 161, 111, 0.45);
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
  text-align: right;
}

/* Two-column grid with a central vertical divider and gold dot */
.grid-2--with-divider {
  position: relative;
}

.grid-2--with-divider::before {
  content: '';
  position: absolute;
  top: 6%;
  bottom: 6%;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(184, 161, 111, 0.35) 18%,
    rgba(184, 161, 111, 0.35) 82%,
    transparent
  );
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

.grid-2--with-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-gold-deep);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px rgba(184, 161, 111, 0.18);
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 760px) {
  .grid-2--with-divider::before,
  .grid-2--with-divider::after {
    display: none;
  }
}

/* Steps with a gold progression thread connecting each step */
.steps--thread {
  position: relative;
  padding-top: 2.25rem;
}

.steps--thread .step {
  border-top: none;
  padding-top: 3.25rem;
  position: relative;
}

.steps--thread::before {
  content: "";
  position: absolute;
  top: 2.25rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(184, 161, 111, 0.35) 6%,
    rgba(184, 161, 111, 0.35) 94%,
    transparent
  );
  z-index: 1;
}

.steps--thread .step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-gold-deep);
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Tighter text inside threaded steps (4-column layout needs breathing room) */
.steps--thread .step h4 {
  font-size: var(--text-sm);
  line-height: 1.3;
}

.steps--thread .step p {
  font-size: var(--text-xs);
  line-height: 1.55;
  margin-top: 0.5rem;
}

/* Desktop: center-align each step so numerals sit vertically under their dot */
@media (min-width: 1025px) {
  .steps--thread .step {
    text-align: center;
  }
}

/* Emphasis on the last step — commission activation */
.steps--thread .step:last-child::after {
  width: 13px;
  height: 13px;
  box-shadow: 0 0 0 5px rgba(184, 161, 111, 0.2);
}

/* Tablet & mobile — switch to single column with a vertical gold thread */
@media (max-width: 1024px) {
  .steps--thread.steps--4 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .steps--thread {
    padding-top: 0.75rem;
    padding-left: 3rem;
  }
  .steps--thread::before {
    top: 1.5rem;
    bottom: 1.5rem;
    left: 1.25rem;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(
      to bottom,
      transparent,
      rgba(184, 161, 111, 0.35) 4%,
      rgba(184, 161, 111, 0.35) 96%,
      transparent
    );
  }
  .steps--thread .step {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .steps--thread .step::after {
    top: 2.25rem;
    left: -1.75rem;
    transform: translate(-50%, -50%);
  }
  /* Emphasis preserved on the last step */
  .steps--thread .step:last-child::after {
    width: 13px;
    height: 13px;
  }
  /* Text sizes on larger single-column view */
  .steps--thread .step h4 {
    font-size: var(--text-base);
  }
  .steps--thread .step p {
    font-size: var(--text-sm);
  }
}

@media (max-width: 640px) {
  .steps--thread {
    padding-left: 2.5rem;
  }
  .steps--thread::before {
    left: 1rem;
  }
  .steps--thread .step::after {
    left: -1.5rem;
    top: 1.6rem;
  }
  .steps--thread .step h4 {
    font-size: var(--text-sm);
  }
  .steps--thread .step p {
    font-size: var(--text-xs);
  }
}

/* ─── Thread + dots: progressive reveal ─── */
.steps--thread::before {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.steps--thread.is-visible::before {
  transform: scaleX(1);
}
.steps--thread .step::after {
  opacity: 0;
  transition: opacity 0.35s ease-out,
              transform 0.45s cubic-bezier(0.5, 1.6, 0.5, 1);
}
.steps--thread.is-visible .step:nth-child(1)::after { transition-delay: 0.45s; }
.steps--thread.is-visible .step:nth-child(2)::after { transition-delay: 0.70s; }
.steps--thread.is-visible .step:nth-child(3)::after { transition-delay: 0.95s; }
.steps--thread.is-visible .step:nth-child(4)::after { transition-delay: 1.20s; }
.steps--thread.is-visible .step::after {
  opacity: 1;
}
@media (max-width: 1024px) {
  .steps--thread::before {
    transform-origin: top center;
    transform: scaleY(0);
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
  }
  .steps--thread.is-visible::before {
    transform: scaleY(1);
  }
}

/* ─── Tighter vertical rhythm on tablet/mobile ─── */
@media (max-width: 1024px) {
  .steps--thread .step {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .steps--thread .step::after {
    top: 1.9rem;
  }
  .steps--thread .step p {
    margin-top: 0.35rem;
  }
}
@media (max-width: 1024px) {
  #fonctionnement.section {
    padding: 2.5rem 0 2.75rem;
  }
  #fonctionnement .section__header--center {
    margin-bottom: 1.5rem;
  }
}

.mini-list__item strong {
  display: block;
  color: var(--color-navy);
  font-size: var(--text-sm);
  margin-bottom: 0.2rem;
}

.mini-list__item span {
  display: block;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.65;
}

/* --- Report Grid (legacy) --- */
.report-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.report-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
}

.report-card strong {
  display: block;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
  font-size: var(--text-base);
}

.report-card span {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* --- Suivi Grid (new structured monthly report) --- */
.suivi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 640px;
  margin: 0 auto;
}

.suivi-card {
  border-radius: var(--border-radius-md);
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(33, 43, 70, 0.03);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.suivi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(33, 43, 70, 0.08);
}

.suivi-card strong {
  display: block;
  color: var(--color-navy);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.suivi-card p {
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  line-height: 1.6;
}

.suivi-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.suivi-card__header strong {
  margin-bottom: 0;
}

.suivi-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gold-deep);
  background: rgba(184, 161, 111, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
}

.suivi-card--accent {
  grid-column: 1 / -1;
  background: var(--color-navy);
  border-color: transparent;
  text-align: center;
  padding: 1.5rem;
}

.suivi-card--accent strong {
  color: var(--color-white);
  font-size: var(--text-base);
  margin-bottom: 0.35rem;
}

.suivi-card--accent p {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-sm);
}

.suivi-card--accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(33, 43, 70, 0.2);
}

.suivi-card--detail {
  grid-column: 1 / -1;
}

.suivi-card--detail ul {
  list-style: none;
  margin-top: 0.5rem;
}

.suivi-card--detail li {
  position: relative;
  padding-left: 1rem;
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.suivi-card--detail li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold-deep);
  opacity: 0.5;
}

/* --- Subtle card shadows + hover micro-interactions --- */
.exploitation-item,
.pillar,
.grid-2__item,
.contact-card,
.value-item,
.report-card,
.suivi-card,
.hero-badge {
  box-shadow: 0 4px 20px rgba(33, 43, 70, 0.03);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.exploitation-item:hover,
.pillar:hover,
.grid-2__item:hover,
.value-item:hover,
.report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(33, 43, 70, 0.08);
  border-color: rgba(184, 161, 111, 0.35);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(33, 43, 70, 0.08);
}

/* Gold accent line on card hover */
.pillar::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold));
  margin-top: auto;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 1px;
}

.pillar:hover::after {
  width: 40px;
}

/* --- Step hover --- */
.step {
  transition: border-color 0.3s ease;
}

.step:hover {
  border-top-color: var(--color-gold-deep);
}

/* --- FAQ Smooth Animation --- */
.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, padding-bottom 0.4s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding-bottom: var(--space-md);
}

.faq-question::after {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

/* --- Section Separator (gold line) --- */
.section-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
}

.section-separator::before {
  content: '';
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-deep), transparent);
  opacity: 0.5;
}

/* --- Typewriter reveal --- */
.text-reveal {
  visibility: hidden;
  display: inline-block;
  white-space: pre-wrap;
}

.text-reveal__text {
  display: inline;
}

.text-reveal__caret {
  display: inline-block;
  width: 0.08em;
  min-width: 2px;
  height: 1em;
  margin-left: 0.08em;
  vertical-align: -0.12em;
  background: var(--color-gold-deep, #b8a16f);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.text-reveal__caret.is-blinking {
  opacity: 1;
  animation: ck-caret-blink 0.9s steps(1, end) infinite;
}

.text-reveal__caret.is-fading {
  animation: none;
  opacity: 0;
}

@keyframes ck-caret-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* --- Wave Separator (interactive) --- */
.wave-separator {
  position: relative;
  height: 1px;
  width: calc(100% - 6rem);
  max-width: 900px;
  margin: 2rem auto;
}

.wave-separator__hit {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 2;
  cursor: default;
}

.wave-separator__hit:hover {
  top: -100px;
  height: 200px;
}

.wave-separator__svg {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: visible;
}

.wave-separator__path {
  fill: none;
  stroke: var(--color-gold-deep);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.wave-separator:hover .wave-separator__path {
  opacity: 0.7;
}

@media (max-width: 640px) {
  .wave-separator {
    display: none;
  }
}

/* --- Sticky CTA Bar --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: var(--color-navy);
  padding: 0.875rem 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -4px 20px rgba(33, 43, 70, 0.15);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-cta__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  font-weight: 500;
}

.sticky-cta .btn--white {
  padding: 0 1.25rem;
  height: 40px;
  font-size: var(--text-sm);
  white-space: nowrap;
}

/* --- Counter animation (trust bar) --- */
.trust-item strong {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}

.trust-item.is-counted strong {
  animation: countUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* --- Button enhanced hover --- */
.btn--primary {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(33, 43, 70, 0.2);
}

.btn--secondary:hover {
  transform: translateY(-1px);
}

/* --- WhatsApp float enhanced --- */
.whatsapp-float {
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.whatsapp-float {
  animation: heartbeat 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  animation: none;
  transform: scale(1.08);
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10% { transform: scale(1.12); }
  20% { transform: scale(1); }
  30% { transform: scale(1.08); }
  40%, 100% { transform: scale(1); }
}

/* --- Gold accent on section headers (visible after scroll) --- */
.section__header--center h2::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold));
  margin: var(--space-sm) auto 0;
  border-radius: 1px;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.is-visible .section__header--center h2::after,
.section__header--center.is-visible h2::after {
  width: 40px;
}

/* --- Image parallax-lite --- */
.hero-image img,
.section-image img,
.split-feature__media img {
  transition: transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image.is-visible img {
  transform: scale(1.03);
}

/* --- Smooth body when sticky CTA is visible --- */
body.has-sticky-cta {
  padding-bottom: 56px;
}

/* --- Header scroll behavior --- */
.header {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.header--hidden {
  transform: translateX(-50%) translateY(calc(-100% - 1rem));
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.12);
}

/* --- V2 Components Responsive (must come after component definitions) --- */
@media (max-width: 840px) {
  .hero-badges,
  .split-feature,
  .split-feature--reverse,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .split-feature--reverse .split-feature__media,
  .split-feature--reverse .split-feature__content {
    order: initial;
  }

  .split-feature__media img {
    height: 320px;
  }

  .section--image-split {
    padding: 4.5rem 0;
  }
}

@media (max-width: 640px) {
  .section--compact {
    padding: 1rem 0 1.5rem;
  }

  .hero-badges {
    margin-top: 0;
    gap: 0.75rem;
  }

  .hero-badge {
    padding: 1rem;
  }

  .split-feature__content {
    padding: 1.25rem;
  }

  .split-feature__media img {
    height: 240px;
  }

  .section--image-split {
    padding: 3.5rem 0;
  }

  .report-card {
    padding: 1.25rem;
  }

  .suivi-grid {
    grid-template-columns: 1fr;
  }

  .suivi-card--accent,
  .suivi-card--detail {
    grid-column: auto;
  }
}

/* ============================================
   V3 — DYNAMIC HOMEPAGE COMPONENTS
   ============================================ */

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold));
  z-index: 200;
  transition: none;
}

/* --- Hero Full Viewport --- */
.hero--full {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  border-bottom: none;
}

.hero__bg-parallax {
  position: absolute;
  inset: -20% 0;
  z-index: 0;
  will-change: transform;
}

.hero__bg-parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(33, 43, 70, 0.55) 0%,
    rgba(33, 43, 70, 0.7) 50%,
    rgba(33, 43, 70, 0.85) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.hero--full .hero__headline {
  color: var(--color-white);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero--full .hero__sub {
  color: rgba(255, 255, 255, 0.8);
}

.hero--full .btn--primary {
  background: var(--color-white);
  color: var(--color-navy);
}

.hero--full .btn--primary:hover {
  background: var(--color-offwhite);
  opacity: 1;
}

.hero--full .btn--glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero--full .btn--glass:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

/* Scroll hint bounce */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* --- Marquee Trust Bar --- */
.marquee-bar {
  background: var(--color-navy);
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
}

.marquee-bar::before,
.marquee-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-bar::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-navy), transparent);
}

.marquee-bar::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-navy), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.marquee-item strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-gold);
  font-weight: 700;
}

.marquee-item span {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.marquee-dot::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold-deep);
  opacity: 0.5;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Pillar Strip (horizontal 3 cards) --- */
.pillar-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-md);
  background: var(--color-offwhite);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.pillar-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-card:hover {
  box-shadow: 0 16px 48px rgba(33, 43, 70, 0.1);
}

.pillar-card__number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--color-gold-deep);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: var(--space-sm);
  transition: opacity 0.4s ease;
}

.pillar-card:hover .pillar-card__number {
  opacity: 0.35;
}

.pillar-card h3 {
  margin-bottom: var(--space-sm);
  font-size: var(--text-lg);
}

.pillar-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* --- Split Compare (we handle / you keep) --- */
.split-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.split-compare__col {
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-md);
}

.split-compare__col--dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.split-compare__col--dark h3 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.split-compare__col--dark .surtitle {
  color: var(--color-gold);
}

.split-compare__col--dark li {
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: var(--text-base);
  line-height: 1.7;
}

.split-compare__col--dark li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.6;
}

.split-compare__col--light {
  background: var(--color-offwhite);
  border: 1px solid var(--color-border-light);
}

.split-compare__col--light h3 {
  margin-bottom: var(--space-md);
}

.split-compare__col--light li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.split-compare__col--light li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-navy);
  opacity: 0.35;
}

/* ─── Pillar enrichi — intro + bullets strong/span ─── */
.pillar__intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--color-gold-deep);
  line-height: 1.5;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(184, 161, 111, 0.22);
}
.pillar ul li strong {
  color: var(--color-navy);
  font-weight: 600;
}

/* ─── Editorial piliers with vertical gold dividers (desktop) ─── */
.pillars--thread {
  gap: 0;
  align-items: stretch;
}
.pillars--thread .pillar {
  padding: 1rem 2.5rem 0.5rem;
  position: relative;
}
@media (min-width: 1025px) {
  .pillars--thread .pillar {
    padding: 1rem 3rem 0.5rem;
  }
  .pillars--thread .pillar + .pillar::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: rgba(184, 161, 111, 0.55);
  }
  .pillars--thread .pillar + .pillar::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-gold-deep);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px #EFECE6;
  }
  .pillars--thread .pillar:first-child { padding-left: 0; }
  .pillars--thread .pillar:last-child { padding-right: 0; }
}
/* Tablet (641-1024) — horizontal scroll-snap carousel */
.pillars-carousel-wrap {
  position: relative;
  z-index: 1;
}
.pillars-nav {
  display: none;
  position: relative;
  z-index: 3;
}

@media (max-width: 1024px) {
  .grid-3.pillars--thread {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 0.5rem 1.5rem 1.5rem;
    margin: 0 -1.5rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    position: relative;
  }
  .pillars-nav__dot {
    pointer-events: auto;
  }
  .pillars--thread::-webkit-scrollbar { display: none; }

  .pillars--thread .pillar {
    flex: 0 0 calc(100% - 3rem);
    scroll-snap-align: center;
    padding: 1.5rem 1.75rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(184, 161, 111, 0.3);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.25);
  }
  .pillars--thread .pillar + .pillar::before,
  .pillars--thread .pillar + .pillar::after {
    display: none;
  }
  .pillars--thread .pillar__number {
    font-size: 3.5rem;
  }

  .pillars-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  .pillars-nav__dot {
    font-family: var(--font-display);
    font-style: italic;
    font-size: var(--text-sm);
    background: transparent;
    border: 1px solid rgba(184, 161, 111, 0.4);
    color: var(--color-gold-deep);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .pillars-nav__dot:hover {
    border-color: var(--color-gold-deep);
  }
  .pillars-nav__dot.is-active {
    background: var(--color-gold-deep);
    color: var(--color-white);
    border-color: var(--color-gold-deep);
    transform: scale(1.05);
  }
}

@media (max-width: 640px) {
  .grid-3.pillars--thread {
    padding: 0.5rem 1rem 1.25rem;
    margin: 0 -1rem;
  }
  .pillars--thread .pillar {
    flex: 0 0 calc(100% - 2rem);
    padding: 1.25rem 1.5rem;
    border-bottom: none;
  }
  .pillars--thread .pillar__number {
    font-size: 3rem;
  }
  .pillars-nav__dot {
    width: 40px;
    height: 40px;
  }
}

/* ─── Method ledger (single column, paired +/−) ─── */
.method-ledger {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.method-ledger__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(184, 161, 111, 0.25);
}
.method-ledger__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.method-ledger__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  color: var(--color-gold-deep);
  line-height: 1;
  padding-top: 0.25rem;
}
.method-ledger__body h4 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  color: var(--color-navy);
  margin: 0 0 0.9rem;
  font-weight: 500;
}
.method-ledger__plus,
.method-ledger__minus {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin: 0.35rem 0;
  font-size: var(--text-base);
  line-height: 1.55;
}
.method-ledger__plus { color: var(--color-text); }
.method-ledger__minus { color: var(--color-text-secondary); }
.method-ledger__tag {
  flex: 0 0 auto;
  min-width: 74px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 2px;
  text-align: center;
  line-height: 1;
  margin-top: 0.15rem;
}
.method-ledger__plus .method-ledger__tag {
  background: rgba(184, 161, 111, 0.14);
  color: var(--color-gold-deep);
  border: 1px solid rgba(184, 161, 111, 0.4);
}
.method-ledger__minus .method-ledger__tag {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid rgba(120, 120, 120, 0.3);
}
@media (max-width: 640px) {
  .method-ledger__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .method-ledger__num { padding-top: 0; }
}

/* ─── Method charter (editorial paragraphs, stacked) ─── */
.method-charter {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.method-charter__block .surtitle {
  margin-bottom: 0.75rem;
}
.method-charter__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--color-navy);
  margin: 0 0 1.25rem;
  line-height: 1.25;
}
.method-charter__text {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--color-text);
  margin: 0;
}
.method-charter__text strong {
  color: var(--color-navy);
  font-weight: 600;
}
.method-charter__divider {
  position: relative;
  height: 1px;
  background: rgba(184, 161, 111, 0.4);
  margin: 2rem auto;
  width: 60%;
}
.method-charter__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--color-gold-deep);
  border: 3px solid var(--color-pierre, #EFECE6);
}
@media (max-width: 640px) {
  .method-charter__divider { margin: 2rem auto; }
  .method-charter__text { font-size: var(--text-base); }
}

/* ─── Timeline strip (a-propos repères) ─── */
.timeline-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.timeline-strip::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184, 161, 111, 0.45), transparent);
  z-index: 0;
}
.timeline-strip__item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}
.timeline-strip__item::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-gold-deep);
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 4px var(--color-bg, #FFFFFF);
}
.timeline-strip__year {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.timeline-strip__item p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 760px) {
  .timeline-strip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .timeline-strip::before { display: none; }
  .timeline-strip__item { text-align: left; padding: 0; }
  .timeline-strip__item::before { margin: 0 0 0.5rem; }
}

/* ─── Generic mobile carousel (data-carousel="640") ─── */
.carousel-nav { display: none; }
@media (max-width: 640px) {
  .is-carousel {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 0.5rem 1rem 1.25rem;
    margin: 0 -1rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    position: relative;
  }
  .is-carousel::-webkit-scrollbar { display: none; }
  .is-carousel > * {
    flex: 0 0 calc(100% - 2rem) !important;
    scroll-snap-align: center;
    min-width: 0;
    width: auto !important;
    max-width: none !important;
  }
  .carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.25rem;
    position: relative;
    z-index: 3;
  }
  .carousel-nav__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(184, 161, 111, 0.55);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
    pointer-events: auto;
  }
  .carousel-nav__dot.is-active {
    background: var(--color-gold-deep);
    border-color: var(--color-gold-deep);
    transform: scale(1.25);
  }
}

/* ─── Criteria compare (GO / NO-GO) two-level list ─── */
.criteria-compare {
  list-style: none;
  padding: 0;
  margin: 0;
}
.criteria-compare li {
  position: relative;
  padding: 0.9rem 0 0.9rem 2rem;
  border-bottom: 1px solid rgba(184, 161, 111, 0.18);
  margin: 0;
}
.criteria-compare li:last-child {
  border-bottom: none;
}
.criteria-compare li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.split-compare__col--dark .criteria-compare li {
  color: rgba(255, 255, 255, 0.78);
  padding-left: 2rem;
}
.split-compare__col--dark .criteria-compare li::before {
  background: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184, 161, 111, 0.18);
  opacity: 1;
}
.split-compare__col--light .criteria-compare li {
  color: var(--color-text-secondary);
}
.split-compare__col--light .criteria-compare li::before {
  background: transparent;
  border: 1.5px solid var(--color-navy);
  opacity: 0.45;
  top: 1.25rem;
}
.criteria-compare strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.split-compare__col--dark .criteria-compare strong {
  color: var(--color-white);
}
.split-compare__col--light .criteria-compare strong {
  color: var(--color-navy);
}
.criteria-compare span {
  display: block;
  font-size: var(--text-sm);
  line-height: 1.6;
}
.text-center { text-align: center; }

/* --- Parallax Image Break --- */
.parallax-break {
  position: relative;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-break__img {
  position: absolute;
  inset: -30% 0;
  will-change: transform;
}

.parallax-break__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.parallax-break__overlay {
  position: absolute;
  inset: 0;
  background: rgba(33, 43, 70, 0.65);
  z-index: 1;
}

.parallax-break__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  padding: 0 2rem;
}

.parallax-break__quote {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.parallax-break__sub {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* --- Section Reveal Animation --- */
.reveal-section {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

section.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Tilt Card 3D effect (JS-driven) --- */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* --- CTA Reveal (premium delayed entrance) --- */
.cta-reveal {
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  filter: blur(4px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s,
    filter 0.6s ease 0.45s;
}

.cta-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* When inside a btn-group, stagger individual buttons */
.cta-reveal.btn-group {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

.cta-reveal.btn-group .btn {
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  filter: blur(4px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

.cta-reveal.btn-group.is-visible .btn:nth-child(1) {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition-delay: 0.5s;
}

.cta-reveal.btn-group.is-visible .btn:nth-child(2) {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition-delay: 0.65s;
}

.cta-reveal.btn-group.is-visible .btn:nth-child(3) {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition-delay: 0.8s;
}

/* Subtle glow pulse after CTA appears */
@keyframes ctaGlow {
  0% { box-shadow: 0 4px 16px rgba(33, 43, 70, 0.2); }
  50% { box-shadow: 0 4px 28px rgba(184, 161, 111, 0.3); }
  100% { box-shadow: 0 4px 16px rgba(33, 43, 70, 0.2); }
}

.cta-reveal.is-visible .btn--primary,
.cta-reveal.is-visible.btn--primary {
  animation: ctaGlow 2s ease-in-out 1.2s 1;
}

/* --- Compact section vertical padding --- */
.section--compact-v {
  padding: 3.5rem 0;
}

/* --- Pain Grid (2x2 compact) --- */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.pain-card {
  padding: 1.25rem 1.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(33, 43, 70, 0.05);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.pain-card:nth-child(odd) {
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.7), rgba(255, 255, 255, 0.7));
}

.pain-card:nth-child(even) {
  background: linear-gradient(135deg, rgba(241, 245, 249, 0.7), rgba(255, 255, 255, 0.7));
}

.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(33, 43, 70, 0.1);
}

.pain-card h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.pain-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --- Slide-in from edges animations --- */
.slide-in-left,
.slide-in-right,
.slide-in-up {
  opacity: 0;
  will-change: transform, opacity;
}

.slide-in-left {
  transform: translateX(-80px);
}

.slide-in-right {
  transform: translateX(80px);
}

.slide-in-up {
  transform: translateY(40px);
}

.slide-in-left.is-visible,
.slide-in-right.is-visible,
.slide-in-up.is-visible {
  opacity: 1;
  transform: translate(0);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Auto-stagger: cards within grids get sequential delays */
.grid-2 .slide-in-left:nth-child(1), .grid-2 .slide-in-right:nth-child(1),
.grid-3 .slide-in-left:nth-child(1), .grid-3 .slide-in-right:nth-child(1),
.pillar-strip .slide-in-left:nth-child(1), .pillar-strip .slide-in-right:nth-child(1), .pillar-strip .slide-in-up:nth-child(1),
.pain-grid .slide-in-left:nth-child(1), .pain-grid .slide-in-right:nth-child(1) {
  transition-delay: 0s;
}

.grid-2 .slide-in-left:nth-child(2), .grid-2 .slide-in-right:nth-child(2),
.grid-3 .slide-in-left:nth-child(2), .grid-3 .slide-in-right:nth-child(2), .grid-3 .slide-in-up:nth-child(2),
.pillar-strip .slide-in-left:nth-child(2), .pillar-strip .slide-in-right:nth-child(2), .pillar-strip .slide-in-up:nth-child(2),
.pain-grid .slide-in-left:nth-child(2), .pain-grid .slide-in-right:nth-child(2) {
  transition-delay: 0.12s;
}

.grid-3 .slide-in-left:nth-child(3), .grid-3 .slide-in-right:nth-child(3), .grid-3 .slide-in-up:nth-child(3),
.pillar-strip .slide-in-left:nth-child(3), .pillar-strip .slide-in-right:nth-child(3), .pillar-strip .slide-in-up:nth-child(3),
.pain-grid .slide-in-left:nth-child(3), .pain-grid .slide-in-right:nth-child(3) {
  transition-delay: 0.24s;
}

.pain-grid .slide-in-left:nth-child(4), .pain-grid .slide-in-right:nth-child(4) {
  transition-delay: 0.36s;
}

/* Exploitation list stagger */
.exploitation-list .slide-in-left:nth-child(1) { transition-delay: 0s; }
.exploitation-list .slide-in-left:nth-child(2) { transition-delay: 0.08s; }
.exploitation-list .slide-in-left:nth-child(3) { transition-delay: 0.16s; }
.exploitation-list .slide-in-left:nth-child(4) { transition-delay: 0.24s; }
.exploitation-list .slide-in-left:nth-child(5) { transition-delay: 0.32s; }
.exploitation-list .slide-in-left:nth-child(6) { transition-delay: 0.40s; }

/* Steps stagger */
.steps .slide-in-up:nth-child(1) { transition-delay: 0s; }
.steps .slide-in-up:nth-child(2) { transition-delay: 0.08s; }
.steps .slide-in-up:nth-child(3) { transition-delay: 0.16s; }
.steps .slide-in-up:nth-child(4) { transition-delay: 0.24s; }
.steps .slide-in-up:nth-child(5) { transition-delay: 0.32s; }
.steps .slide-in-up:nth-child(6) { transition-delay: 0.40s; }

/* Suivi grid stagger */
.suivi-grid .slide-in-left:nth-child(1), .suivi-grid .slide-in-right:nth-child(1) { transition-delay: 0s; }
.suivi-grid .slide-in-left:nth-child(2), .suivi-grid .slide-in-right:nth-child(2) { transition-delay: 0.1s; }
.suivi-grid .slide-in-up:nth-child(3) { transition-delay: 0.2s; }
.suivi-grid .slide-in-up:nth-child(4) { transition-delay: 0.3s; }

/* Split compare stagger */
.split-compare .slide-in-left { transition-delay: 0s; }
.split-compare .slide-in-right { transition-delay: 0.15s; }

/* --- V3 Responsive --- */
@media (max-width: 840px) {
  .hero--full {
    min-height: 85vh;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .pillar-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .split-compare {
    grid-template-columns: 1fr;
  }

  .parallax-break {
    height: 40vh;
    min-height: 300px;
  }

  .parallax-break__quote {
    font-size: var(--text-3xl);
  }
}

@media (max-width: 640px) {
  .hero__scroll-hint {
    bottom: 1.5rem;
  }

  .marquee-track {
    gap: 1.5rem;
  }

  .marquee-item strong {
    font-size: var(--text-lg);
  }

  .parallax-break {
    height: 35vh;
    min-height: 260px;
  }

  .parallax-break__quote {
    font-size: var(--text-2xl);
  }

  .split-compare__col {
    padding: 1.75rem 1.5rem;
  }

  .pillar-card {
    padding: 1.75rem 1.5rem;
  }
}

/* --- CTA orbit motion (subtle attention loop) --- */
@keyframes btn-orbit {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(5px, -3px); }
  50%  { transform: translate(0, -6px); }
  75%  { transform: translate(-5px, -3px); }
  100% { transform: translate(0, 0); }
}
.btn-orbit-wrap {
  display: inline-block;
  animation: btn-orbit 5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .btn-orbit-wrap { animation: none; }
}

/* ─── Custom cursor (gold dot, hidden on touch/coarse pointers) ─── */
@media (hover: hover) and (pointer: fine) {
  html, body { cursor: none !important; }
  *, *::before, *::after { cursor: none !important; }
  .ck-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gold-deep, #B8A16F);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.18s ease, height 0.18s ease, background 0.18s ease, opacity 0.18s ease;
    mix-blend-mode: normal;
    will-change: transform;
    opacity: 0;
  }
  .ck-cursor.is-ready { opacity: 1; }
  .ck-cursor.is-hover {
    width: 36px;
    height: 36px;
    background: rgba(184, 161, 111, 0.25);
    border: 1px solid var(--color-gold-deep, #B8A16F);
  }
  .ck-cursor.is-down {
    width: 22px;
    height: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ck-cursor { display: none; }
  body { cursor: auto; }
}

/* ─── View Transitions (cross-document) ─── */
@view-transition { navigation: auto; }
::view-transition-old(root) {
  animation: ck-fade-out 220ms ease forwards;
}
::view-transition-new(root) {
  animation: ck-fade-in 320ms ease forwards;
}
@keyframes ck-fade-out {
  to { opacity: 0; transform: translateY(-6px); }
}
@keyframes ck-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
}

/* ─── Cookie consent banner ─── */
.ck-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--color-navy, #1A2238);
  color: #fff;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
  font-family: var(--font-body, 'Inter', sans-serif);
}
.ck-consent.is-visible { transform: translateY(0); }
.ck-consent__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ck-consent__text {
  flex: 1 1 320px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.ck-consent__text a {
  color: var(--color-gold-deep, #B8A16F);
  text-decoration: underline;
}
.ck-consent__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.ck-consent__btn {
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.25rem;
  border-radius: 2px;
  border: 1px solid var(--color-gold-deep, #B8A16F);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.ck-consent__btn--accept {
  background: var(--color-gold-deep, #B8A16F);
  color: var(--color-navy, #1A2238);
}
.ck-consent__btn--accept:hover { background: #c9b482; }
.ck-consent__btn--refuse {
  background: transparent;
  color: rgba(255,255,255,0.85);
}
.ck-consent__btn--refuse:hover { background: rgba(255,255,255,0.08); }
@media (max-width: 640px) {
  .ck-consent { padding: 1rem; }
  .ck-consent__inner { gap: 1rem; }
  .ck-consent__btn { flex: 1; }
}

/* Fix curseur invisible sur bouton accepter cookies (or sur or) */
.ck-cursor.is-hover {
  box-shadow: 0 0 0 2px #F5F1E8;
}

