/* ============================================================
   PORTUS ITIUS — Design System officiel
   Charte graphique : Navy #041E41 | Or #CFA052 | Ciel #CEEAEF
   Polices : MRK Maston Bold (titres) + Farro (corps)
   ============================================================ */

/* ── Polices custom ────────────────────────────────────────── */
@font-face {
  font-family: 'MRKMaston';
  src: url('../assets/fonts/MRKMaston-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MRKMaston';
  src: url('../assets/fonts/MRKMaston-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Farro';
  src: url('../assets/fonts/Farro-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Farro';
  src: url('../assets/fonts/Farro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Farro';
  src: url('../assets/fonts/Farro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Variables de marque ───────────────────────────────────── */
:root {
  /* Palette officielle Portus Itius */
  --navy:         #041E41;         /* Bleu marine — couleur principale */
  --gold:         #CFA052;         /* Or — couleur accent */
  --sky:          #CEEAEF;         /* Ciel — accent secondaire */

  /* Déclinaisons fonctionnelles */
  --bg:           #020D1C;         /* Fond le plus sombre (quasi noir navy) */
  --bg-2:         #041E41;         /* Navy officiel — surfaces */
  --bg-3:         #072860;         /* Navy éclairci — cartes */
  --bg-card:      #0A2E6E;         /* Navy encore plus clair — cartes premium */

  --accent:       #CFA052;         /* Or — CTA, highlights */
  --accent-hover: #B8903A;         /* Or foncé au hover */
  --accent-glow:  rgba(207, 160, 82, 0.25);
  --accent-2:     #CEEAEF;         /* Ciel — détails, badges */
  --accent-2-text:#041E41;         /* Texte sur fond ciel */

  --white:        #FFFFFF;
  --grey-1:       #D4E4F7;         /* Gris clair teinté navy */
  --grey-2:       #7A99C0;         /* Gris moyen navy */
  --grey-3:       #2A4570;         /* Gris sombre navy */
  --border:       rgba(206, 234, 239, 0.1); /* Bordure tintée ciel */
  --border-gold:  rgba(207, 160, 82, 0.25);

  /* Polices */
  --font-display: 'MRKMaston', 'Impact', sans-serif;
  --font-body:    'Farro', system-ui, sans-serif;

  /* Forme */
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.3s ease;
  --shadow:       0 4px 24px rgba(2, 13, 28, 0.6);
  --shadow-lg:    0 8px 48px rgba(2, 13, 28, 0.8);
}

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

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 60px);
}

/* ── Typographie ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
h1 { font-size: clamp(44px, 8vw, 100px); }
h2 { font-size: clamp(34px, 5vw, 60px); }
h3 { font-size: clamp(22px, 3vw, 34px); }
h4 { font-size: clamp(18px, 2.5vw, 26px); }
p  { font-size: clamp(15px, 1.5vw, 17px); line-height: 1.75; font-family: var(--font-body); }

.text-accent  { color: var(--gold); }
.text-sky     { color: var(--sky); }
.text-muted   { color: var(--grey-2); }
.text-center  { text-align: center; }
.text-upper   { text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; font-weight: 700; }

/* ── Boutons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.btn--hero {
  background: var(--gold);
  color: var(--navy);
  font-size: clamp(15px, 1.8vw, 18px);
  padding: 20px 40px;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn--hero:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--accent-glow);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--sky {
  background: var(--sky);
  color: var(--navy);
}
.btn--sky:hover {
  background: #b8d9e0;
  transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* ── Espacement sections ───────────────────────────────────── */
.section { padding: clamp(60px, 10vw, 120px) 0; }
.section--dark    { background: var(--bg); }
.section--darker  { background: var(--bg-2); }
.section--navy    { background: var(--navy); }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
  font-family: var(--font-body);
}
.section-title { margin-bottom: clamp(40px, 6vw, 72px); }
.section-title--center { text-align: center; }

/* ── Ligne déco or ─────────────────────────────────────────── */
.gold-line {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(4, 30, 65, 0.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 4px 32px rgba(2, 13, 28, 0.5);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  height: 40px;
  flex-shrink: 0;
}
.nav__logo img {
  height: 40px;
  width: auto;
}
/* Fallback texte si image ne charge pas */
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--white);
}
.nav__logo-text span { color: var(--gold); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__menu a {
  font-size: 14px;
  font-weight: 400;
  color: var(--grey-1);
  transition: color var(--transition);
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}
.nav__menu a:hover { color: var(--white); }
.nav__phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--sky);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__phone:hover { color: var(--white); }
.nav__cta { padding: 12px 24px; font-size: 14px; border-radius: var(--radius); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.nav__mobile.open { display: flex; }
.nav__mobile-logo {
  position: absolute;
  top: 20px; left: 24px;
  height: 36px;
}
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--white);
  transition: color var(--transition);
  letter-spacing: 0.03em;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 28px;
  color: var(--grey-2);
  background: none;
  border: none;
  cursor: pointer;
}
.nav__mobile-close:hover { color: var(--white); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 30, 65, 0.75) 0%,
    rgba(4, 30, 65, 0.55) 50%,
    rgba(4, 30, 65, 0.35) 100%
  );
}
/* Coin décoratif or en bas gauche */
.hero__deco {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 6px;
  background: linear-gradient(to right, var(--gold), transparent 60%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-top: 80px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(207, 160, 82, 0.15);
  border: 1px solid rgba(207, 160, 82, 0.4);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  color: var(--sky);
  font-family: var(--font-body);
}
.hero__badge .stars { color: var(--gold); }
.hero__title {
  margin-bottom: 24px;
  color: var(--white);
}
.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--grey-1);
  margin-bottom: 40px;
  max-width: 540px;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero__micro {
  font-size: 13px;
  color: var(--grey-2);
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
  animation: bounce 2.4s ease infinite;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Trust bar ─────────────────────────────────────────────── */
.trust {
  background: var(--navy);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 36px 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--gold);
  line-height: 1;
}
.trust__item p {
  font-size: 12px;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 700;
}

/* ── Promesse citation ─────────────────────────────────────── */
.promise {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 0;
}
.promise__quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 52px);
  line-height: 1.2;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 40px;
  border: none;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.promise__quote em {
  color: var(--gold);
  font-style: normal;
}
.promise__micro {
  margin-top: 16px;
  font-size: 13px;
  color: var(--grey-2);
  font-family: var(--font-body);
}

/* ── Process 3 étapes ──────────────────────────────────────── */
.process { background: var(--bg-2); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.process__step {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.process__step:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.process__step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.process__num {
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(207, 160, 82, 0.08);
  position: absolute;
  top: 8px; right: 16px;
  line-height: 1;
}
.process__step h3 {
  margin-bottom: 12px;
  font-size: 26px;
  color: var(--white);
}
.process__step p {
  color: var(--grey-2);
  font-size: 15px;
}
.process__tag {
  display: inline-block;
  background: rgba(207, 160, 82, 0.15);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(207, 160, 82, 0.3);
  font-family: var(--font-body);
}

/* ── Cards programmes ──────────────────────────────────────── */
.programmes { background: var(--bg); }
.programmes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prog-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform var(--transition);
  border: 1px solid var(--border);
}
.prog-card:hover { transform: scale(1.015); }
.prog-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.prog-card:hover .prog-card__img { transform: scale(1.05); }
.prog-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,30,65,0.95) 0%, rgba(4,30,65,0.3) 55%, transparent 100%);
}
.prog-card__content {
  position: relative;
  z-index: 1;
  padding: 32px;
}
.prog-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.prog-card__title {
  font-family: var(--font-display);
  font-size: 38px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.prog-card__desc {
  font-size: 14px;
  color: var(--grey-1);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.prog-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
  font-family: var(--font-body);
}
.prog-card:hover .prog-card__link { gap: 10px; }

/* ── Témoignages ───────────────────────────────────────────── */
.testimonials { background: var(--bg-2); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.testi-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition);
}
.testi-card:hover { border-color: var(--border-gold); }
.testi-card__stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-card__text {
  font-size: 15px;
  color: var(--grey-1);
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.75;
  font-family: var(--font-body);
}
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  overflow: hidden;
}
.testi-card__name {
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
}
.testi-card__detail {
  font-size: 12px;
  color: var(--grey-2);
  font-family: var(--font-body);
}
.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--bg-3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 24px 40px;
  width: fit-content;
  margin: 0 auto;
}
.google-badge__logo { font-size: 12px; color: var(--grey-2); font-weight: 700; font-family: var(--font-body); }
.google-badge__rating { font-family: var(--font-display); font-size: 40px; color: var(--white); }
.google-badge__stars { color: var(--gold); font-size: 22px; letter-spacing: 2px; }
.google-badge__count { font-size: 13px; color: var(--grey-2); font-family: var(--font-body); }

/* ── Section CTA formulaire ────────────────────────────────── */
.cta-section { background: var(--bg); text-align: center; }
.cta-section__inner { max-width: 600px; margin: 0 auto; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section__sub { color: var(--grey-2); margin-bottom: 48px; font-family: var(--font-body); }

/* ── Formulaire ────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 14px; }
.form__input {
  width: 100%;
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 16px;
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  font-family: var(--font-body);
}
.form__input::placeholder { color: var(--grey-3); }
.form__input:focus {
  border-color: var(--gold);
  background: rgba(10, 46, 110, 0.8);
}
.form__submit {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 20px 32px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
}
.form__submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.form__micro {
  font-size: 13px;
  color: var(--grey-2);
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-body);
}
.form__success {
  display: none;
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid rgba(0, 200, 100, 0.3);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: #00c864;
  font-weight: 600;
}

/* ── Contact & Map ─────────────────────────────────────────── */
.contact-section { background: var(--bg-2); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact__info { display: flex; flex-direction: column; gap: 24px; }
.contact__item { display: flex; align-items: flex-start; gap: 16px; }
.contact__icon {
  width: 44px; height: 44px;
  background: var(--bg-3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact__text strong { display: block; font-weight: 700; margin-bottom: 4px; font-family: var(--font-body); }
.contact__text span, .contact__text a { color: var(--grey-2); font-size: 15px; font-family: var(--font-body); }
.contact__text a:hover { color: var(--gold); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-gold); }
.map-embed iframe { width: 100%; height: 360px; border: none; display: block; filter: sepia(0.3) hue-rotate(180deg) brightness(0.85); }

/* ── Pricing ───────────────────────────────────────────────── */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}
.price-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.price-card--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-3), rgba(207,160,82,0.06));
}
.price-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  font-family: var(--font-body);
}
.price-card__name { font-family: var(--font-display); font-size: 28px; margin-bottom: 8px; }
.price-card__desc { font-size: 14px; color: var(--grey-2); margin-bottom: 32px; font-family: var(--font-body); }
.price-card__amount { font-family: var(--font-display); font-size: 56px; color: var(--white); line-height: 1; }
.price-card__amount span { font-size: 24px; color: var(--grey-2); }
.price-card__period { font-size: 13px; color: var(--grey-2); margin-top: 4px; font-family: var(--font-body); }
.price-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; flex: 1; margin-top: 24px; }
.price-card__feature { display: flex; align-items: center; gap: 10px; font-size: 14px; font-family: var(--font-body); }
.price-card__feature::before { content: '✓'; color: var(--gold); font-weight: 900; font-size: 14px; flex-shrink: 0; }
.price-card__feature--cross::before { content: '✗'; color: var(--grey-3); }
.price-card__feature--cross { color: var(--grey-3); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { background: var(--bg); }
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq__item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item.open { border-color: var(--border-gold); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  gap: 16px;
  font-family: var(--font-body);
}
.faq__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--grey-2);
  transition: all var(--transition);
}
.faq__item.open .faq__icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__answer-inner { padding: 0 24px 24px; font-size: 15px; color: var(--grey-2); line-height: 1.75; font-family: var(--font-body); }
.faq__item.open .faq__answer { max-height: 300px; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border-gold);
  padding: 60px 0 32px;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__logo { height: 48px; width: auto; margin-bottom: 20px; }
.footer__brand-name { font-family: var(--font-display); font-size: 28px; margin-bottom: 12px; }
.footer__brand-name span { color: var(--gold); }
.footer__brand-desc { font-size: 14px; color: var(--grey-2); line-height: 1.7; max-width: 280px; margin-bottom: 24px; font-family: var(--font-body); }
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 40px; height: 40px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition);
}
.footer__social-link:hover { background: var(--gold); border-color: var(--gold); }
.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-family: var(--font-body); }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: var(--grey-2); transition: color var(--transition); font-family: var(--font-body); }
.footer__col a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__copy { font-size: 13px; color: var(--grey-2); font-family: var(--font-body); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 13px; color: var(--grey-2); transition: color var(--transition); font-family: var(--font-body); }
.footer__legal a:hover { color: var(--white); }

/* ── Mobile sticky CTA ─────────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 12px 16px 20px;
  background: linear-gradient(to top, rgba(4,30,65,1) 60%, transparent);
}
.mobile-cta .btn { font-size: 16px; padding: 18px 24px; border-radius: 10px; }

/* ── Exit intent popup ─────────────────────────────────────── */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(2, 13, 28, 0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(6px);
}
.popup-overlay.open { display: flex; }
.popup {
  background: var(--bg-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  position: relative;
  text-align: center;
}
.popup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--sky));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.popup__close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--grey-2); font-size: 24px; cursor: pointer; transition: color var(--transition); }
.popup__close:hover { color: var(--white); }
.popup__tag { display: inline-block; background: rgba(207,160,82,0.15); color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 16px; border-radius: 100px; margin-bottom: 20px; border: 1px solid rgba(207,160,82,0.3); font-family: var(--font-body); }
.popup h3 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 12px; }
.popup p { color: var(--grey-2); margin-bottom: 32px; font-size: 15px; font-family: var(--font-body); }

/* ── Animations au scroll ──────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up--delay-1 { transition-delay: 0.1s; }
.fade-up--delay-2 { transition-delay: 0.2s; }
.fade-up--delay-3 { transition-delay: 0.3s; }

/* ── Page hero (pages internes) ────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(207,160,82,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}

/* ── Page commencer ────────────────────────────────────────── */
.commencer-card {
  background: var(--bg-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: clamp(32px, 6vw, 56px);
  position: relative;
}
.commencer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--sky));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ── Planning schedule ─────────────────────────────────────── */
.schedule-preview { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.schedule-preview__header { padding: 20px 24px; border-bottom: 1px solid var(--border); font-family: var(--font-display); font-size: 22px; }
.schedule-preview__days { display: grid; grid-template-columns: repeat(5, 1fr); }
.schedule-day { padding: 16px 12px; border-right: 1px solid var(--border); }
.schedule-day:last-child { border-right: none; }
.schedule-day__name { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey-2); margin-bottom: 10px; font-family: var(--font-body); }
.schedule-slot { background: rgba(207,160,82,0.08); border: 1px solid rgba(207,160,82,0.2); border-radius: 4px; padding: 6px 8px; font-size: 11px; color: var(--grey-1); margin-bottom: 4px; font-family: var(--font-body); }
.schedule-slot--early { background: rgba(206,234,239,0.05); border-color: rgba(206,234,239,0.15); }
.schedule-preview__footer { padding: 16px 24px; border-top: 1px solid var(--border); text-align: center; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav__menu, .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .programmes__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: 1fr; }
  .programmes__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .mobile-cta { display: block; }
  .hero__actions { align-items: stretch; }
  .hero__actions .btn--hero { text-align: center; }
  .section { padding: 60px 0; }
  .trust { padding: 24px 0; }
  .schedule-preview__days { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .popup { padding: 32px 20px; }
  .commencer-card { padding: 28px 20px; }
  .google-badge { flex-direction: column; text-align: center; padding: 20px; }
}
