/* ============================================================
   CABINET SEMON — Design System v2
   Avocat Fiscaliste | Paris 8e
   ============================================================ */

/* ── Google Fonts (imported via HTML link) ── */

/* ── Custom Properties ────────────────────── */
:root {
  /* ── Palette — Corporate monochrome froid (A&O / Clifford Chance style) ── */
  --navy:          #0C1922;   /* Quasi-noir autoritaire */
  --navy-light:    #17293A;
  --navy-mid:      #243E56;

  /* Accent : acier froid — remplace l'or chaud */
  --gold:          #2E5B8A;   /* Acier corporate, froid */
  --gold-light:    #4A7AAD;   /* Version plus claire */
  --gold-pale:     #EBF2FA;   /* Très pâle pour fonds/hover */

  /* CTA — acier bleu (harmonisé avec le reste) */
  --cta:           #2E5B8A;   /* = --gold, acier corporate */
  --cta-dark:      #1E4A7A;   /* Version foncée pour hover */

  /* Blanc et gris froids — remplace crème chaude */
  --cream:         #F3F6FA;   /* Gris-bleu très léger */
  --white:         #FFFFFF;

  /* Texte */
  --text:          #0C1922;   /* = navy, quasi-noir */
  --text-mid:      #485E73;   /* Gris ardoise froid */
  --text-light:    #8AA0B3;   /* Gris clair froid */

  /* Bordures froides */
  --border:        #D0DBE5;   /* Gris-bleu clair */
  --border-dark:   #A5BBCC;

  /* Sections alternées */
  --light:         #F3F6FA;   /* Identique à --cream (froid) */

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

  /* Spacing scale */
  --sp-1:  0.25rem;   --sp-2:  0.5rem;
  --sp-3:  0.75rem;   --sp-4:  1rem;
  --sp-5:  1.25rem;   --sp-6:  1.5rem;
  --sp-8:  2rem;      --sp-10: 2.5rem;
  --sp-12: 3rem;      --sp-16: 4rem;
  --sp-20: 5rem;      --sp-24: 6rem;
  --sp-32: 8rem;

  /* Transitions */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --dur-fast:  200ms;
  --dur-mid:   400ms;
  --dur-slow:  700ms;

  /* Layout */
  --max-w: 1280px;
  --nav-h: 80px;
}

/* ── Reset ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utilities ────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
@media (max-width: 768px) { .container { padding: 0 var(--sp-5); } }

.section { padding: var(--sp-24) 0; }
.section--dark   { background: var(--navy); color: var(--white); }
.section--cream  { background: var(--light); }
.section--white  { background: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.025em;
}
.section--dark .section-title { color: var(--white); }

.section-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 52ch;
}
.section--dark .section-lead { color: rgba(255,255,255,0.65); }

.section-header { margin-bottom: var(--sp-16); }
.section-header--center { text-align: center; }
.section-header--center .section-lead { margin: 0 auto; }

.gold-line {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: var(--sp-6);
}
.section-header--center .gold-line { margin: 0 auto var(--sp-6); }

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all var(--dur-mid) var(--ease);
  cursor: pointer;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy);
}
.btn--primary:hover {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: none;
}
/* Bouton blanc sur fond dark (CTA sections navy) */
.btn--gold {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--white);
}
.btn--gold:hover {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color: var(--white);
  color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn svg { width: 15px; height: 15px; transition: transform var(--dur-fast) var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ── Navigation ───────────────────────────── */
:root { --nav-h: 84px; }
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease),
              border-color var(--dur-mid) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.nav--transparent {
  background: transparent;
  border-bottom-color: rgba(255,255,255,0.04);
}
.nav.nav--scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border);
}
.nav.nav--scrolled .nav__burger:not(.open) span {
  background: var(--navy);
}


.nav.nav--scrolled .nav__logo-name { color: var(--navy); }
.nav.nav--scrolled .nav__logo-title { color: var(--text-light); }
.nav.nav--scrolled .nav__monogram {
  color: var(--navy);
  border-color: rgba(13,27,42,0.3);
}
.nav.nav--scrolled .nav__monogram:hover {
  background: var(--navy);
  color: var(--white);
}
.nav.nav--scrolled .nav__link { color: rgba(13,27,42,0.5); }
.nav.nav--scrolled .nav__link:hover,
.nav.nav--scrolled .nav__link.active { color: var(--navy); }
.nav.nav--scrolled .nav__cta {
  color: var(--white);
  background: var(--navy);
  border-color: var(--gold);
  backdrop-filter: none;
  box-shadow: none;
}
.nav.nav--scrolled .nav__cta:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(46,91,138,0.35);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Monogram logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.nav__monogram {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: all var(--dur-fast) var(--ease);
}
.nav__monogram:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav__logo-title {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav__link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--dur-fast) var(--ease);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: rgba(255,255,255,0.5);
  transition: width var(--dur-mid) var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__cta {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.nav__cta:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: all var(--dur-mid) var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav__burger.open span { background: var(--white) !important; }


.nav__mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  transform: translateX(100%);
  transition: transform var(--dur-mid) var(--ease);
  z-index: 999;
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile .nav__link { font-size: 1.2rem; letter-spacing: 0.18em; }
.nav__mobile .nav__cta { margin-top: var(--sp-4); }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ── Hero — split 50/50 ───────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Moitié gauche — fond navy + contenu */
.hero__left {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + var(--sp-20)) var(--sp-12) var(--sp-20);
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}
.hero__badge::before {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
}
.hero__title em {
  font-style: italic;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}
.hero__subtitle {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 44ch;
  margin-bottom: var(--sp-10);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.7s forwards;
}
.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.9s forwards;
}
.hero__stats {
  display: flex;
  gap: 0;
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.1s forwards;
}
.hero__stat {
  flex: 1;
  padding: 0 var(--sp-5) 0 0;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hero__stat:last-child { border-right: none; padding-right: 0; padding-left: var(--sp-5); }
.hero__stat:first-child { padding-left: 0; }
.hero__stat-value {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.hero__stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: var(--sp-2);
  display: block;
}

/* Scroll indicator — centré en bas du panneau gauche */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,0.2);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.9; }
}

/* Moitié droite — photo plein hauteur */
.hero__photo {
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.2s var(--ease) 0.4s forwards;
}
.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Responsive — photo masquée, colonne gauche plein écran */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__photo { display: none; }
  .hero__left {
    min-height: 100svh;
    padding: calc(var(--nav-h) + var(--sp-12)) var(--sp-5) var(--sp-16);
  }
}

/* ── Trust Bar ────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-4) 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-bar__item svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.85;
}
.trust-bar__item::before { display: none; }
.trust-bar__sep {
  color: var(--border);
  font-size: 0.7rem;
}

@media (max-width: 900px) {
  .trust-bar { padding: var(--sp-6) 0; }
  .trust-bar__inner { 
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: var(--sp-4) var(--sp-8);
  }
  .trust-bar__sep { display: none !important; }
  .trust-bar__item { 
    font-size: 0.72rem; 
    line-height: 1.4;
    white-space: normal;
    text-align: center;
    flex: 0 1 auto;
    min-width: 130px;
    max-width: 200px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .trust-bar__inner {
    gap: var(--sp-4);
  }
  .trust-bar__item {
    min-width: 100%;
    font-size: 0.75rem;
  }
}



/* ── Statement section ────────────────────── */
.statement-section {
  background: var(--light);
  padding: var(--sp-24) 0;
  overflow: hidden;
  position: relative;
}
.statement-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
.statement-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}
@media (max-width: 900px) {
  .statement-section__inner { grid-template-columns: 1fr; gap: var(--sp-10); }
}
.statement-section__headline {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.statement-section__headline em {
  font-style: italic;
  color: var(--gold);
}
.statement-section__body {
  border-left: 1.5px solid var(--border);
  padding-left: var(--sp-10);
}
@media (max-width: 900px) {
  .statement-section__body { border-left: none; border-top: 1.5px solid var(--border); padding-left: 0; padding-top: var(--sp-8); }
}
.statement-section__body p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: var(--sp-5);
}
.statement-section__body p:last-of-type { margin-bottom: var(--sp-8); }

/* ── Expertises ────────────────────────────── */
.expertises {
  background: var(--white);
}
.expertises__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 1024px) { .expertises__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .expertises__grid { grid-template-columns: 1fr; } }

.expertise-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--navy);
  padding: var(--sp-8) var(--sp-8) var(--sp-8);
  border-radius: 0;
  transition: all var(--dur-mid) var(--ease);
  position: relative;
}
/* Filigrane supprimé */
.expertise-card__num { display: none; }
.expertise-card__title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-4);
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: relative;
}
/* Ligne or qui s'étend au hover */
.expertise-card__line {
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: var(--sp-5);
  transition: width var(--dur-slow) var(--ease-out);
}
.expertise-card:hover .expertise-card__line { width: 100%; }
.expertise-card__desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
  position: relative;
}
.expertise-card__link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  position: relative;
  transition: gap var(--dur-fast) var(--ease);
}
.expertise-card:hover .expertise-card__link { gap: var(--sp-3); }
.expertise-card:hover {
  box-shadow: 0 20px 48px rgba(13,27,42,0.08);
  transform: translateY(-6px);
  border-color: transparent;
}

/* ── À propos (accueil) ───────────────────── */
.about-section {
  background: var(--light);
  overflow: visible;
  position: relative;
}
.about-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}
@media (max-width: 900px) {
  .about-section__grid { grid-template-columns: 1fr; gap: var(--sp-12); }
}
.about-section__image-wrap {
  position: relative;
  height: 600px;
}
.about-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  display: block;
}
/* Cadre supprimé */
.about-section__gold-frame {
  display: none;
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1.5px solid rgba(46,91,138,0.2);
  border-radius: 2px;
  pointer-events: none;
}
.about-section__badge {
  position: absolute;
  bottom: -24px;
  right: var(--sp-8);
  z-index: 2;
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-5) var(--sp-6);
  border-radius: 2px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(12,25,34,0.2);
}
.about-section__badge-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.about-section__badge-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}
.about-section__content .section-title { color: var(--navy); }
.about-section__content .section-lead  { color: var(--text-mid); max-width: none; }
.about-section__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin: var(--sp-8) 0 var(--sp-10);
}
.about-section__list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  font-size: 0.9rem;
  color: var(--text-mid);
}
.about-section__list-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.55em;
}

/* ── Processus ────────────────────────────── */
.process {
  background: var(--white);
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
@media (max-width: 768px) {
  .process__steps { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
  .process__steps::before { display: none; }
}
@media (max-width: 480px) { .process__steps { grid-template-columns: 1fr; } }
.process__step { text-align: center; padding: 0 var(--sp-4); position: relative; }
.process__step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  transition: all var(--dur-mid) var(--ease);
}
.process__step:hover .process__step-num {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(12,25,34,0.2);
}
.process__step-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-3);
}
.process__step-desc {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Citation section ─────────────────────── */
.quote-section {
  background: var(--navy);
  padding: var(--sp-24) 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: -20px;
  font-family: var(--font-serif);
  font-size: 30rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.quote-section__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.quote-section__text {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: var(--sp-8);
}
.quote-section__text em {
  color: var(--white);
  font-style: normal;
  font-weight: 700;
}
.quote-section__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.quote-section__author::before,
.quote-section__author::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

/* ── Témoignages ──────────────────────────── */
.testimonials { background: var(--light); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) { .testimonials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .testimonials__grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--sp-8);
  border-radius: 4px;
  position: relative;
  transition: transform var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease), border-color var(--dur-mid) var(--ease);
  box-shadow: 0 2px 12px rgba(13,27,42,0.05);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(13,27,42,0.10);
  border-color: var(--border-dark);
}
.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 0.5;
  color: var(--border);
  margin-bottom: var(--sp-4);
  display: block;
  font-weight: 700;
}
.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--sp-5);
}
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-5);
}
.testimonial-card__star { color: var(--gold); font-size: 0.85rem; }
.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1.5px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}
.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ── CTA Banner ───────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: var(--sp-24) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(46,91,138,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: var(--sp-4);
  font-weight: 600;
  position: relative;
}
.cta-banner__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--sp-10);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  position: relative;
}
.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  position: relative;
}
.cta-banner__phone {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}
.cta-banner__phone strong {
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* ── Contact (résumé) ─────────────────────── */
.contact-info { background: var(--white); }
.contact-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
@media (max-width: 768px) {
  .contact-info__grid { grid-template-columns: 1fr; gap: var(--sp-10); }
}
.contact-info__form-group { margin-bottom: var(--sp-5); }
.contact-info__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 480px) { .contact-info__form-row { grid-template-columns: 1fr; } }
.contact-info__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: var(--sp-2);
}
.contact-info__input,
.contact-info__select,
.contact-info__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 1px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast);
  outline: none;
  appearance: none;
}
.contact-info__input:focus,
.contact-info__select:focus,
.contact-info__textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.contact-info__textarea { resize: vertical; min-height: 140px; }
.contact-info__submit { width: 100%; justify-content: center; margin-top: var(--sp-2); }
.contact-info__details { display: flex; flex-direction: column; gap: var(--sp-8); }
.contact-info__detail { display: flex; gap: var(--sp-4); align-items: flex-start; }
.contact-info__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info__detail-icon svg { width: 16px; height: 16px; }
.contact-info__detail-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}
.contact-info__detail-value {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}
.contact-info__map {
  margin-top: var(--sp-8);
  border-radius: 2px;
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--border);
}
.contact-info__map iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.2); }

/* ── Footer ───────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); } }
@media (max-width: 500px)  { .footer__grid { grid-template-columns: 1fr; } }

.footer__monogram {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
  border-radius: 1px;
}
.footer__logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.footer__logo-title {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: var(--sp-4);
}
.footer__desc { font-size: 0.82rem; line-height: 1.75; max-width: 28ch; }
.footer__col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-5);
}
.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--dur-fast) var(--ease);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.footer__link:hover { color: rgba(255,255,255,0.9); }
.footer__link::before {
  content: '';
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.4);
  transition: width var(--dur-fast) var(--ease);
  flex-shrink: 0;
}
.footer__link:hover::before { width: 12px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.28); }
.footer__legal { display: flex; gap: var(--sp-6); }
.footer__legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  transition: color var(--dur-fast) var(--ease);
}
.footer__legal a:hover { color: rgba(255,255,255,0.65); }
.footer__bar {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
  margin-bottom: var(--sp-10);
}

/* ── Animations ───────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 120ms; }
.reveal--delay-2 { transition-delay: 240ms; }
.reveal--delay-3 { transition-delay: 360ms; }
.reveal--delay-4 { transition-delay: 480ms; }
.reveal--delay-5 { transition-delay: 600ms; }

/* ── Pages intérieures ────────────────────── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + var(--sp-16)) 0 var(--sp-16);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1920&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
}
.page-hero__content { position: relative; }
.page-hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.page-hero__eyebrow::before { content: ''; width: 32px; height: 1px; background: rgba(255,255,255,0.35); }
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: var(--sp-5);
}
.page-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 52ch;
  line-height: 1.8;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: var(--sp-8);
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.2); }


/* ══════════════════════════════════════════
   RESPONSIVE — Mobile & Tablet
   ══════════════════════════════════════════ */

/* ── Base : no horizontal overflow ── */
html, body { overflow-x: hidden; }
* { min-width: 0; }

/* ══ TABLETTE (≤ 1024px) ══════════════════ */
@media (max-width: 1024px) {
  .expertises__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}

/* ══ TABLETTE PORTRAIT (≤ 900px) ══════════ */
@media (max-width: 900px) {

  /* Hero */
  .hero__grid { grid-template-columns: 1fr; gap: 0; }
  .hero__right { display: none; }
  .hero > .container {
    padding-top: calc(var(--nav-h) + var(--sp-12));
    padding-bottom: var(--sp-12);
  }
  .hero__grid {
    min-height: calc(100vh - var(--nav-h) - 2rem);
  }

  /* About */
  .about-section__grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .about-section__image-wrap { height: 420px; }
  .about-section__gold-frame { display: none; }
  .about-section__badge { bottom: var(--sp-4); right: var(--sp-4); }

  /* Statement */
  .statement-section__inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .statement-section__body {
    border-left: none;
    border-top: 1.5px solid var(--border);
    padding-left: 0;
    padding-top: var(--sp-8);
  }

  /* Process */
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: var(--sp-10); }
  .process__steps::before { display: none; }

  /* Expertise pages */
  .expertise-detail__grid { grid-template-columns: 1fr; }
  .expertise-detail:nth-child(even) .expertise-detail__grid { direction: ltr; }
  .expertise-detail__visual { height: 320px; }

  /* Bio */
  .bio-section__grid { grid-template-columns: 1fr; }
  .bio-section__photo-wrap { position: static; }
  .bio-section__photo { aspect-ratio: 4/3; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-10); }

  /* Values */
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-info__grid { grid-template-columns: 1fr; }
  .contact-page__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}

/* ══ MOBILE (≤ 768px) ══════════════════════ */
@media (max-width: 768px) {

  /* Section padding */
  .section { padding: var(--sp-16) 0; }
  .statement-section { padding: var(--sp-16) 0; }

  /* Trust bar — scroll horizontal */
  .trust-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .trust-bar::-webkit-scrollbar { display: none; }
  .trust-bar__inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 var(--sp-5);
    gap: var(--sp-4);
  }

  /* Hero */
  .hero__title { font-size: clamp(2rem, 7.5vw, 2.8rem); }
  .hero__subtitle { font-size: 0.9rem; max-width: none; }
  .hero__actions { flex-direction: column; gap: var(--sp-3); }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: 0; }
  .hero__stat-value { font-size: 1.5rem; }
  .hero__stat { padding: 0 var(--sp-4) 0 0; }
  .hero__stat:last-child { padding-left: var(--sp-4); }

  /* Statement headline */
  .statement-section__headline { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  /* Section titles */
  .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .page-hero__title { font-size: clamp(2rem, 7vw, 3rem); }

  /* Expertises grid */
  .expertises__grid { grid-template-columns: 1fr; gap: var(--sp-4); }

  /* Quote section */
  .quote-section__text { font-size: clamp(1.4rem, 5.5vw, 2rem); }
  .quote-section::before { font-size: 18rem; top: -30px; left: -10px; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* CTA banner */
  .cta-banner { padding: var(--sp-16) 0; }
  .cta-banner__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .cta-banner__actions { flex-direction: column; align-items: stretch; }
  .cta-banner__actions .btn { justify-content: center; }
  .cta-banner__phone { justify-content: center; }

  /* Form row → 1 col */
  .contact-info__form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .footer__legal { flex-wrap: wrap; gap: var(--sp-3); }

  /* Process */
  .process__steps { grid-template-columns: 1fr; gap: var(--sp-8); }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }

  /* Expertise detail page */
  .expertise-detail { padding: var(--sp-12) 0; }
}

/* ══ PETIT MOBILE (≤ 480px) ═══════════════ */
@media (max-width: 480px) {

  /* Container padding réduit */
  .container { padding: 0 var(--sp-4); }

  /* Nav logo : masquer le texte, garder monogramme */
  .nav__logo-text { display: none; }
  .nav__monogram { margin-right: 0; }

  /* Hero compact */
  .hero__left { padding: calc(var(--nav-h) + var(--sp-8)) var(--sp-4) var(--sp-10); }
  .hero__title { font-size: clamp(1.9rem, 9vw, 2.4rem); line-height: 1.2; }
  .hero__badge { display: none; }
  .hero__stats { flex-direction: column; gap: var(--sp-4); border-top: none; padding-top: 0; }
  .hero__stat { border-right: none; padding: 0; display: flex; align-items: center; gap: var(--sp-4); }
  .hero__stat-value { font-size: 1.4rem; }

  /* Statement */
  .statement-section__headline { font-size: clamp(1.6rem, 9vw, 2.2rem); }

  /* Expertise cards */
  .expertise-card { padding: var(--sp-6); }

  /* Testimonials */
  .testimonial-card { padding: var(--sp-6); }

  /* CTA */
  .cta-banner { padding: var(--sp-12) 0; }

  /* Footer */
  .footer { padding: var(--sp-12) 0 var(--sp-6); }
  .footer__legal { gap: var(--sp-2); }

  /* Contact form */
  .contact-form-wrap { padding: var(--sp-6); }

  /* Stats section */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item__value { font-size: 2.5rem; }

  /* Page hero */
  .page-hero {
    padding: calc(var(--nav-h) + var(--sp-10)) 0 var(--sp-10);
  }

  /* Radio cards contact */
  .radio-group { flex-direction: column; }
  .radio-card__label { flex-direction: row; justify-content: flex-start; padding: var(--sp-3) var(--sp-4); }
}

/* ── Bouton CTA mobile — flottant en bas ── */
@media (max-width: 768px) {
  .mobile-cta-float {
    position: fixed;
    bottom: var(--sp-5);
    left: var(--sp-4);
    right: var(--sp-4);
    z-index: 900;
    display: flex;
  }
  .mobile-cta-float .btn {
    width: 100%;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(13,27,42,0.3);
    border-radius: 2px;
  }
}

/* ── Form validation states ──────────────── */
.field--error {
  border-color: #e53e3e !important;
  background: #fff5f5 !important;
}
.field--valid {
  border-color: #38a169 !important;
}
.field-error-msg {
  display: block;
  font-size: 0.75rem;
  color: #e53e3e;
  margin-top: var(--sp-1);
  animation: fadeUp 0.3s ease;
}
@keyframes fieldShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
  75% { transform: translateX(-3px); }
}
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.contact-info__input,
.contact-info__select,
.contact-info__textarea {
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast), box-shadow var(--dur-fast);
}
.contact-info__input:focus,
.contact-info__select:focus,
.contact-info__textarea:focus {
  box-shadow: 0 0 0 3px rgba(46,91,138,0.12);
}

/* ── Testimonials Carousel ───────────────── */
.testimonials__carousel {
  position: relative;
  overflow: hidden;
}
.testimonials__track {
  display: flex;
  gap: var(--sp-5);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonials__track .testimonial-card {
  min-width: calc(33.333% - var(--sp-5) * 2 / 3);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .testimonials__track .testimonial-card {
    min-width: calc(50% - var(--sp-5) / 2);
  }
}
@media (max-width: 580px) {
  .testimonials__track .testimonial-card {
    min-width: 100%;
  }
}
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}
.testimonials__prev,
.testimonials__next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  color: var(--navy);
  box-shadow: 0 2px 10px rgba(13,27,42,0.08);
}
.testimonials__prev:hover,
.testimonials__next:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(13,27,42,0.18);
  transform: scale(1.07);
}
.testimonials__prev svg,
.testimonials__next svg {
  width: 18px;
  height: 18px;
}
.testimonials__dots {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
}
.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: var(--border-dark);
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  opacity: 0.5;
}
.testimonials__dot:hover {
  opacity: 0.8;
  background: var(--text-light);
}
.testimonials__dot.active {
  background: var(--gold);
  width: 32px;
  border-radius: 5px;
  opacity: 1;
}

/* ── Callback button (Rappel immédiat) ──── */
.callback-trigger { display: none !important; }
.callback-popup  { display: none !important; }

/* ── Bouton flottant RDV ─────────────────── */
.floating-rdv {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 24px rgba(46,91,138,0.35), 0 2px 8px rgba(0,0,0,0.25);
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.floating-rdv:hover {
  background: var(--gold);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(46,91,138,0.45), 0 4px 12px rgba(0,0,0,0.2);
}
.floating-rdv svg {
  width: 16px; height: 16px; flex-shrink: 0;
}
.floating-rdv__label { white-space: nowrap; }
/* Mobile: icône seule */
@media (max-width: 500px) {
  .floating-rdv__label { display: none; }
  .floating-rdv { padding: 1rem; border-radius: 50%; }
}
/* Cacher sur la page RDV elle-même */
.page-rdv .floating-rdv { display: none !important; }

.callback-trigger--hidden {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(46,91,138,0.35);
  transition: all var(--dur-mid) var(--ease);
  animation: callbackPulse 2.5s ease-in-out infinite;
}
.callback-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(46,91,138,0.45);
}
.callback-trigger svg { width: 24px; height: 24px; }
@keyframes callbackPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(46,91,138,0.35); }
  50% { box-shadow: 0 4px 20px rgba(46,91,138,0.35), 0 0 0 12px rgba(46,91,138,0.08); }
}
@media (max-width: 768px) {
  .callback-trigger {
    bottom: calc(var(--sp-5) + 60px);
    right: var(--sp-4);
    width: 48px;
    height: 48px;
  }
  .callback-trigger svg { width: 20px; height: 20px; }
}

/* Callback popup */
.callback-popup {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12,25,34,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease);
}
.callback-popup.open {
  opacity: 1;
  pointer-events: auto;
}
.callback-popup__card {
  background: var(--white);
  border-radius: 4px;
  padding: var(--sp-10);
  max-width: 420px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--dur-mid) var(--ease);
}
.callback-popup.open .callback-popup__card {
  transform: translateY(0);
}
.callback-popup__close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.callback-popup__close:hover { color: var(--navy); }
.callback-popup__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.callback-popup__sub {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}
.callback-popup .contact-info__form-group { margin-bottom: var(--sp-4); }
.callback-success {
  text-align: center;
  padding: var(--sp-6) 0;
}
.callback-success p {
  margin-top: var(--sp-4);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.callback-success small {
  font-weight: 400;
  color: var(--text-mid);
  font-size: 0.85rem;
}

/* ── Pricing Section ──────────────── */
.pricing-section {
  background: var(--cream);
  padding: var(--sp-20) 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  max-width: 760px;
  margin: var(--sp-10) auto 0;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: var(--sp-8);
  text-align: center;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(13,27,42,0.10);
  transform: translateY(-3px);
}
.pricing-card--featured {
  border-color: var(--gold);
  border-width: 2px;
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.pricing-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--sp-4);
  color: var(--gold);
}
.pricing-card__icon svg { width: 100%; height: 100%; }
.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.pricing-card__sub {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: var(--sp-5);
}
.pricing-card__price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__price span { font-size: 1.5rem; }
.pricing-card__duration {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: var(--sp-6);
}
.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.pricing-card__features li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-left: var(--sp-5);
  position: relative;
}
.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E5B8A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-card--unavailable {
  opacity: 0.5;
  pointer-events: none;
}
.pricing-card__badge--unavailable {
  background: #888;
}
.pricing-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: var(--sp-6);
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ── Contact RDV conversion block ── */
.contact-rdv {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.contact-rdv__urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff8f0;
  border: 1px solid #f0d9b5;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: #7a4e10;
  width: fit-content;
}
.contact-rdv__urgency-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #e07b00; flex-shrink: 0;
  animation: urgencePulse 1.4s ease-in-out infinite;
}
@keyframes urgencePulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.3); }
}
.contact-rdv__title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.contact-rdv__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.contact-rdv__option {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: var(--gold-pale);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
}
.contact-rdv__option-icon {
  width: 36px; height: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-rdv__option-icon svg { width: 18px; height: 18px; }
.contact-rdv__option strong { display: block; font-size: 0.9rem; color: var(--navy); }
.contact-rdv__option span   { font-size: 0.78rem; color: var(--text-mid); }
.contact-rdv__cta { width: 100%; justify-content: center; font-size: 0.9rem; padding: 1rem; }
.contact-rdv__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: 0.76rem;
  color: var(--text-light);
}
.contact-rdv__trust span::before { content: ''; }

/* ── Responsive Improvements ──────── */
body { overflow-x: hidden; }

@media (max-width: 480px) {
  /* Hero */
  .hero__title { font-size: 2rem; }
  .hero__stat-value { font-size: 1.6rem; }
  .hero__stats { gap: var(--sp-4); flex-wrap: wrap; }

  /* Process steps */
  .process__steps { flex-direction: column; }
  .process__step::after { display: none; }

  /* About */
  .about-section__grid { grid-template-columns: 1fr; }
  .about-section__badge { left: 50%; transform: translateX(-50%); }

  /* Expertises */
  .expertises__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-8); }

  /* Publications */
  .articles-grid { grid-template-columns: 1fr; }
  .article-featured { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  /* Contact form row */
  .contact-info__form-row { grid-template-columns: 1fr; }

  /* Radio cards */
  .radio-group { flex-direction: column; }
  .radio-card { width: 100%; }
}
