/* ============================================================
   LA HAUT V2 — Palette audit (beige/bleu/orange) × Style V1 (Inter/Mono)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* ── Palette audit ── */
  --beige:        #F0EDE8;
  --beige-dark:   #E4DFD8;
  --beige-mid:    #D8D2C8;
  --beige-card:   #FFFFFF;

  --blue-deep:    #1B3F6E;   /* sections sombres, nav, hero, footer */
  --blue-mid:     #2A5FA0;
  --blue-light:   #5B8EC4;
  --blue-pale:    #D4E4F5;

  --orange:       #D96A2A;   /* CTAs uniquement */
  --orange-dark:  #B85520;
  --orange-soft:  rgba(217,106,42,0.10);

  --green:        #2E7D52;

  /* ── Texte ── */
  --ink:          #111827;
  --ink-dim:      #4B5563;
  --ink-faint:    #9CA3AF;
  --ink-mute:     #6B7280;

  /* ── Surfaces sur fond clair ── */
  --surface:      #FFFFFF;
  --surface-2:    rgba(27,63,110,0.04);

  /* ── Bordures ── */
  --line:         rgba(27,63,110,0.10);
  --line-2:       rgba(27,63,110,0.16);
  --line-dark:    rgba(255,255,255,0.10);
  --line-dark2:   rgba(255,255,255,0.16);

  /* ── Sur fond sombre (blue-deep) ── */
  --dark-text:    #FFFFFF;
  --dark-sub:     rgba(255,255,255,0.75);
  --dark-faint:   rgba(255,255,255,0.45);
  --dark-surface: rgba(255,255,255,0.06);

  /* ── Typo ── */
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:   'JetBrains Mono', ui-monospace, 'Courier New', monospace;
  --font-serif:  var(--font-sans);  /* override — Inter partout */

  /* ── Radius ── */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-pill: 9999px;

  /* ── Ombres ── */
  --shadow-sm:   0 1px 3px rgba(27,63,110,0.06), 0 1px 2px rgba(27,63,110,0.04);
  --shadow-md:   0 4px 16px rgba(27,63,110,0.10), 0 2px 4px rgba(27,63,110,0.06);
  --shadow-lg:   0 12px 40px rgba(27,63,110,0.14), 0 4px 8px rgba(27,63,110,0.08);
  --shadow-orange: 0 8px 24px rgba(217,106,42,0.30);

  /* ── Compat alias ── */
  --text:        var(--ink);
  --text-muted:  var(--ink-dim);
  --white:       #FFFFFF;
  --border:      var(--line);
  --border-warm: var(--line);

  --max-width:   1200px;
  --nav-height:  72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--beige);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--orange); color: #fff; }

/* ── TYPOGRAPHIE ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-weight: 800; }
strong { font-weight: 600; }
em { font-style: normal; color: var(--orange); }

.label, .eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-mid);
  font-weight: 500;
  display: inline-block;
}
.label--white  { color: var(--dark-faint); }
.label--orange { color: var(--orange); }
.label--accent { color: var(--orange); }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--blue,
.section--accent   { background: var(--blue-deep); color: var(--dark-text); }
.section--white    { background: var(--surface); }
.section--beige-dark { background: var(--beige-dark); }
.section--alt      { background: var(--beige-dark); }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(27,63,110,0.96);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
}
.nav .container {
  width: 100%;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 4px;
  color: var(--dark-text);
  text-transform: uppercase;
  flex-shrink: 0;
  margin-right: 48px;
}
.nav-logo span { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark-sub);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--dark-text); }
.nav-link.active { color: var(--dark-text); background: var(--dark-surface); }
.nav-link--cta {
  background: var(--orange);
  color: var(--dark-text) !important;
  margin-left: auto;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background 0.15s, transform 0.15s;
}
.nav-link--cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
}
.nav-burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--dark-sub);
  border-radius: 2px;
  transition: all 0.2s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(27,63,110,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-dark);
  padding: 20px 24px 28px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { padding: 12px 14px; }
.nav-mobile .nav-link--cta { margin-left: 0; margin-top: 12px; text-align: center; }

/* ── HERO ── */
.hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--blue-deep);
  color: var(--dark-text);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: none;
  opacity: 1;
}
.hero-blob-1 {
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: var(--blue-mid);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.25;
  animation: blob 14s ease-in-out infinite;
}
.hero-blob-2 {
  position: absolute;
  bottom: -80px; left: 8%;
  width: 320px; height: 320px;
  background: var(--blue-light);
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
  opacity: 0.15;
  animation: blob 10s ease-in-out infinite reverse;
}
@keyframes blob {
  0%,100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  50%      { border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%; }
}

.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 14px;
  background: var(--dark-surface);
  border: 1px solid var(--line-dark2);
  border-radius: var(--radius-pill);
  color: var(--dark-sub);
}
.hero-pill .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.hero-content .label { margin-bottom: 24px; }
.hero-content h1 {
  font-size: clamp(42px, 6.5vw, 88px);
  margin-bottom: 28px;
  color: var(--dark-text);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1;
  font-weight: 800;
}
.hero-content h1 em { color: var(--orange); }
.hero-content > p,
.hero-lead {
  font-size: 18px;
  color: var(--dark-sub);
  max-width: 600px;
  margin-bottom: 16px;
  line-height: 1.55;
}
.hero-urgence {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: var(--dark-surface);
  border: 1px solid var(--line-dark2);
  border-radius: var(--radius-md);
  font-size: 13.5px;
  color: var(--dark-sub);
  margin-bottom: 28px;
}
.hero-urgence .dot {
  width: 8px; height: 8px;
  background: #EF4444;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.hero-urgence strong { color: var(--dark-text); font-weight: 600; }
.hero-urgence a { color: var(--orange); font-weight: 600; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.55;transform:scale(1.25);} }

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--dark-faint);
  letter-spacing: 1px;
  flex-wrap: wrap;
}
.hero-trust span::before { content: '— '; color: var(--orange); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 0.18s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--orange,
.btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn--orange:hover,
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}
.btn--outline-white {
  background: var(--dark-surface);
  border-color: var(--line-dark2);
  color: var(--dark-text);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); }
.btn--outline-blue,
.btn--outline {
  background: transparent;
  border-color: var(--line-2);
  color: var(--ink);
}
.btn--outline-blue:hover,
.btn--outline:hover { border-color: var(--blue-mid); color: var(--blue-mid); background: var(--blue-pale); }
.btn--blue,
.btn--dark {
  background: var(--blue-deep);
  color: #fff;
  border-color: var(--blue-deep);
}
.btn--blue:hover,
.btn--dark:hover { background: var(--blue-mid); border-color: var(--blue-mid); }
.btn--lg { padding: 16px 32px; font-size: 15.5px; }
.btn--sm { padding: 9px 18px; font-size: 13px; border-radius: var(--radius-sm); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
  transition: gap 0.18s;
}
.link-arrow:hover { gap: 10px; }

/* ── UNIVERSE CARDS ── */
.universe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.universe-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.universe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.universe-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.universe-card:hover .universe-card__img { opacity: 0.65; transform: scale(1.03); }
.universe-card__overlay {
  position: absolute;
  inset: 0;
}
.universe-card--cordes .universe-card__overlay {
  background: linear-gradient(to top, rgba(27,63,110,0.95) 35%, rgba(27,63,110,0.3) 100%);
}
.universe-card--zinc .universe-card__overlay {
  background: linear-gradient(to top, rgba(44,30,15,0.92) 35%, rgba(44,30,15,0.25) 100%);
}
.universe-card__body {
  position: relative;
  z-index: 2;
  padding: 36px;
  color: #fff;
}
.universe-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  font-weight: 500;
}
.universe-card__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: #fff;
}
.universe-card__sub {
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 22px;
  line-height: 1.5;
}
.universe-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 26px;
}
.universe-card__pill {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.4px;
}

/* ── FEATURES STRIP ── */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-item {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}
.feature-item:last-child { border-right: none; }
.feature-item__icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  color: var(--blue-mid);
  font-size: 20px;
  margin-bottom: 14px;
}
.feature-item__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.feature-item__sub {
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.5;
}

/* ── SECTION HEADING ── */
.section-heading { margin-bottom: 56px; max-width: 720px; }
.section-heading .label { margin-bottom: 16px; }
.section-heading h2 {
  font-size: clamp(30px, 3.5vw, 46px);
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-weight: 700;
}
.section-heading h2 em { color: var(--orange); }
.section-heading--white h2 { color: var(--dark-text); }
.section-heading--white .label { color: var(--dark-faint); }
.section-heading p { font-size: 17px; color: var(--ink-dim); max-width: 620px; line-height: 1.55; }
.section-heading--white p { color: var(--dark-sub); }

/* ── BEFORE/AFTER CARDS ── */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ba-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}
.ba-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--beige-mid);
}
.ba-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.ba-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  font-weight: 500;
}
.ba-label--avant { background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.9); backdrop-filter: blur(4px); }
.ba-label--apres { background: var(--green); color: #fff; }
.ba-body { padding: 18px 20px; }
.ba-category {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 6px;
  font-weight: 500;
}
.ba-title { font-size: 15px; color: var(--ink); font-weight: 600; }

/* ── TARIF TABLE ── */
.tarif-wrap {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tarif-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.tarif-table thead tr {
  background: var(--blue-deep);
}
.tarif-table th {
  padding: 16px 22px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--dark-sub);
  font-weight: 500;
}
.tarif-table td {
  padding: 14px 22px;
  border-bottom: 1px solid var(--beige-dark);
  color: var(--ink-dim);
}
.tarif-table tr:last-child td { border-bottom: none; }
.tarif-table tbody tr:hover td { background: var(--beige); }
.tarif-table .tarif-price {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--blue-deep);
  font-size: 13.5px;
}
.tarif-table .tarif-note {
  font-size: 12px;
  font-style: italic;
  color: var(--ink-faint);
  padding: 12px 22px 16px;
  border-top: 1px solid var(--beige-dark);
  background: var(--beige);
}

/* ── PRESTATIONS CARDS ── */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.presta-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}
.presta-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.presta-card__img { aspect-ratio: 16/9; overflow: hidden; }
.presta-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.presta-card:hover .presta-card__img img { transform: scale(1.04); }
.presta-card__body { padding: 22px 24px; }
.presta-card__icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  color: var(--blue-mid);
  font-size: 20px;
}
.presta-card__cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 8px;
  font-weight: 500;
}
.presta-card__title { font-size: 18px; color: var(--ink); margin-bottom: 8px; font-weight: 600; letter-spacing: -0.01em; }
.presta-card__text { font-size: 14px; color: var(--ink-dim); line-height: 1.55; }
.presta-card__price {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--beige-dark);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blue-mid);
  font-weight: 600;
}
.presta-card__cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--orange);
  transition: gap 0.18s;
}
.presta-card__cta:hover { gap: 10px; }

/* ── CONTRAT CARDS ── */
.contrats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.contrat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}
.contrat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contrat-card--star {
  border-color: var(--blue-mid);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.contrat-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue-mid);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  font-weight: 600;
}
.contrat-card__name { font-size: 22px; color: var(--ink); margin-bottom: 6px; font-weight: 700; letter-spacing: -0.01em; }
.contrat-card__freq {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 1px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.contrat-card__price {
  font-family: var(--font-mono);
  font-size: 28px;
  color: var(--blue-deep);
  margin-bottom: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.contrat-card__price span { font-size: 13px; color: var(--ink-faint); font-weight: 400; }
.contrat-card__list { font-size: 14px; color: var(--ink-dim); }
.contrat-card__list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--beige-dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.contrat-card__list li:last-child { border-bottom: none; }
.contrat-card__list li::before {
  content: '✓';
  background: rgba(46,125,82,0.10);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contrat-card__cta { margin-top: 28px; display: flex; width: 100%; justify-content: center; }

/* Dark-section overrides (contrats teaser on section--blue) */
.section--blue .contrat-card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--dark-text);
}
.section--blue .contrat-card:has(.contrat-badge) {
  background: rgba(255,255,255,0.12);
  border-color: var(--orange);
  border-width: 2px;
}
.section--blue .contrat-card__name { color: var(--dark-text); }
.section--blue .contrat-card__freq { color: var(--dark-faint); }
.section--blue .contrat-card__list { color: var(--dark-sub); }
.section--blue .contrat-card__list li { border-color: var(--line-dark); }

/* ── GALERIE ── */
.galerie-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line-2);
  color: var(--ink-dim);
  background: var(--surface);
  transition: all 0.18s;
  box-shadow: var(--shadow-sm);
}
.filter-btn:hover { color: var(--ink); border-color: var(--blue-mid); }
.filter-btn.active {
  background: var(--blue-deep);
  color: #fff;
  border-color: var(--blue-deep);
  box-shadow: var(--shadow-md);
}
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.galerie-item { transition: opacity 0.3s, transform 0.3s; }
.galerie-item.hidden { display: none; }
/* ── GALERIE ITEMS ── */
.galerie-item { background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); overflow: hidden; }
.galerie-item__img-wrap { height: 220px !important; overflow: hidden !important; width: 100% !important; max-height: 220px !important; }
.galerie-item__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.galerie-item:hover .galerie-item__img-wrap img { transform: scale(1.06); }
.galerie-item__body { padding: 14px 16px; }
.galerie-item__cat { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: var(--blue-mid); text-transform: uppercase; margin-bottom: 4px; }
.galerie-item__title { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.4; }

/* ── AVANT/APRES FONDU ── */
.ba-fade { position: relative; height: 100%; overflow: hidden; }
.ba-img-after { display: block; width: 100%; height: 100%; object-fit: cover; }
.ba-img-before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: opacity 2s ease; }
.ba-fade:hover .ba-img-before { opacity: 0; }
.ba-label { position: absolute; top: 8px; font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 3px 8px; border-radius: 3px; z-index: 5; color: white; pointer-events: none; transition: opacity 0.5s; }
.ba-label--avant { left: 8px; background: rgba(27,63,110,0.85); }
.ba-label--apres { right: 8px; background: rgba(46,125,82,0.85); opacity: 0; }
.ba-fade:hover .ba-label--avant { opacity: 0; }
.ba-fade:hover .ba-label--apres { opacity: 1; }

/* ── CARROUSEL AUTO ── */
.ac { position: relative; height: 100%; overflow: hidden; }
.ac-track { display: flex; height: 100%; transition: transform 0.9s cubic-bezier(.4,0,.2,1); }
.ac-slide { min-width: 100%; height: 220px; object-fit: cover; flex-shrink: 0; display: block; }
.ac-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 4; }
.ac-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: background 0.3s; }
.ac-dot.on { background: #D96A2A; }


/* ── INSIGHT ── */
.insight {
  background: var(--blue-pale);
  border-left: 3px solid var(--blue-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 26px;
  margin: 32px 0;
  font-size: 15px;
  color: var(--blue-deep);
  line-height: 1.6;
}
.insight--orange {
  background: var(--orange-soft);
  border-left-color: var(--orange);
  color: #5C2A0A;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--blue-deep);
  padding: 80px 0;
  text-align: center;
  color: var(--dark-text);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: var(--blue-mid);
  border-radius: 50%;
  opacity: 0.25;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 20%;
  width: 200px; height: 200px;
  background: var(--blue-light);
  border-radius: 50%;
  opacity: 0.15;
}
.cta-band > .container { position: relative; z-index: 2; }
.cta-band .label { margin-bottom: 18px; }
.cta-band h2 { font-size: clamp(28px, 3.5vw, 44px); color: var(--dark-text); margin-bottom: 14px; letter-spacing: -0.025em; font-weight: 700; }
.cta-band p { font-size: 17px; color: var(--dark-sub); margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-band .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── TEL DISPLAY ── */
.tel-display {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-text);
  letter-spacing: 0.5px;
}
.tel-display::before { content: '☎'; font-size: 18px; color: var(--orange); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--beige-dark);
  padding: 36px 0;
  border-top: 1px solid var(--beige-mid);
  border-bottom: 1px solid var(--beige-mid);
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.trust-item strong {
  display: block;
  font-size: 20px;
  color: var(--blue-deep);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  font-family: var(--font-sans);
  font-weight: 700;
}

/* ── PAGE HERO ── */
.page-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.page-hero--blue { background: var(--blue-deep); color: var(--dark-text); }
.page-hero--beige { background: var(--beige-dark); }
.page-hero__content { position: relative; z-index: 2; max-width: 720px; }
.page-hero__content .label { margin-bottom: 18px; }
.page-hero__content h1 {
  font-size: clamp(36px, 5.5vw, 66px);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 800;
}
.page-hero--blue .page-hero__content h1 { color: var(--dark-text); }
.page-hero--beige .page-hero__content h1 { color: var(--blue-deep); }
.page-hero--blue .page-hero__content h1 em { color: var(--orange); }
.page-hero__content p {
  font-size: 17.5px;
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.page-hero--blue .page-hero__content p { color: var(--dark-sub); }
.page-hero--beige .page-hero__content p { color: var(--ink-dim); }
.page-hero__blob {
  position: absolute;
  top: -100px; right: -100px;
  width: 440px; height: 440px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.22;
  animation: blob 11s ease-in-out infinite;
}
.page-hero--blue .page-hero__blob { background: var(--blue-mid); }
.page-hero--beige .page-hero__blob { background: var(--blue-light); }

/* ── ARGUMENT CARDS ── */
.arguments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0;
}
.argument-card {
  background: var(--dark-surface);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  color: var(--dark-text);
  transition: border-color 0.2s, transform 0.2s;
}
.argument-card:hover { border-color: var(--line-dark2); transform: translateY(-2px); }
.argument-card--beige {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
}
.argument-card__number {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.argument-card__title { font-size: 16px; margin-bottom: 8px; font-weight: 600; }
.argument-card--beige .argument-card__title { color: var(--blue-deep); }
.argument-card__text { font-size: 13.5px; line-height: 1.55; }
.argument-card--beige .argument-card__text { color: var(--ink-dim); }
.argument-card .argument-card__text { color: var(--dark-sub); }

/* ── FAQ ── */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  gap: 16px;
  transition: color 0.18s;
}
.faq-q:hover { color: var(--blue-mid); }
.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border: 1.5px solid var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--blue-mid);
  transition: transform 0.25s, background 0.2s;
  background: var(--blue-pale);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue-deep); color: #fff; border-color: var(--blue-deep); }
.faq-a {
  display: none;
  padding-bottom: 22px;
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 1.65;
  max-width: 640px;
}
.faq-item.open .faq-a { display: block; }

/* ── FORM ── */
.form-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-steps {
  display: flex;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.form-step-indicator {
  flex: 1;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1px;
  text-align: center;
  font-weight: 500;
}
.form-step-indicator.active { color: var(--blue-deep); border-bottom-color: var(--blue-deep); }
.form-step-indicator.done  { color: var(--green); border-bottom-color: var(--green); }
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 10px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--beige-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--beige);
  transition: border-color 0.18s, background 0.18s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-faint); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue-mid); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-nav { display: flex; gap: 12px; margin-top: 28px; justify-content: space-between; }

.type-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.type-option {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.18s;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.type-option:hover { border-color: var(--blue-light); background: var(--blue-pale); }
.type-option.selected { border-color: var(--blue-deep); background: var(--blue-pale); }
.type-option__icon {
  width: 44px; height: 44px;
  margin: 0 auto 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  font-size: 22px;
}
.type-option.selected .type-option__icon { background: var(--blue-deep); }
.type-option__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue-deep);
  font-weight: 500;
}

/* ── B2B SECTION ── */
.b2b-section {
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--dark-text);
  position: relative;
  overflow: hidden;
  margin: 56px 0;
}
.b2b-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: var(--blue-mid);
  border-radius: 50%;
  opacity: 0.3;
}
.b2b-content { position: relative; z-index: 2; }
.b2b-section .label { color: var(--dark-faint); margin-bottom: 14px; }
.b2b-section h2 { font-size: clamp(26px, 3vw, 36px); color: var(--dark-text); margin-bottom: 14px; letter-spacing: -0.02em; }
.b2b-section p { font-size: 16px; color: var(--dark-sub); max-width: 540px; margin-bottom: 32px; line-height: 1.55; }
.b2b-stats {
  display: flex;
  gap: 56px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.b2b-stat__number {
  font-family: var(--font-mono);
  font-size: 36px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.b2b-stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dark-faint);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── FOOTER ── */
.footer {
  background: var(--blue-deep);
  color: var(--dark-sub);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo { font-size: 17px; margin-bottom: 16px; color: var(--dark-text); display: inline-block; }
.footer-brand p { font-size: 13.5px; line-height: 1.6; max-width: 240px; color: var(--dark-sub); }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-faint);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul li { padding: 4px 0; font-size: 14px; }
.footer-col ul li a { color: var(--dark-sub); transition: color 0.18s; }
.footer-col ul li a:hover { color: var(--dark-text); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--dark-faint);
}
.footer-siret { color: rgba(255,255,255,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .universe-grid { grid-template-columns: 1fr; }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .features-strip .feature-item:nth-child(2) { border-right: none; }
  .features-strip .feature-item:nth-child(1),
  .features-strip .feature-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .before-after-grid { grid-template-columns: 1fr; }
  .prestations-grid { grid-template-columns: repeat(2, 1fr); }
  .contrats-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .arguments-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .b2b-section { padding: 36px 28px; }
  .form-group--row { grid-template-columns: 1fr; }
  .type-selector { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding-top: calc(var(--nav-height) + 56px); padding-bottom: 64px; min-height: auto; }
  .hero-content h1 { font-size: 38px; }
  .hero-content > p, .hero-lead { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-pills { display: none; }
  .features-strip { grid-template-columns: 1fr; }
  .features-strip .feature-item { border-right: none; border-bottom: 1px solid var(--line); }
  .features-strip .feature-item:last-child { border-bottom: none; }
  .prestations-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr; }
  .arguments-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-wrap { padding: 28px 22px; }
  .form-steps { flex-direction: row; }
  .form-step-indicator { font-size: 10px; padding: 12px 8px; }
  .trust-items { gap: 32px; }
  .b2b-stats { gap: 32px; }
  .b2b-section { padding: 32px 22px; }
  .b2b-stat__number { font-size: 30px; }
  .page-hero__content h1 { font-size: 36px; }
}

/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  cursor: default;
}
#lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
#lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-trigger {
  cursor: zoom-in;
}
.lightbox-trigger img {
  pointer-events: none;
}

@keyframes lahautLogo {
  0%   { filter: brightness(0) invert(1); }
  40%  { filter: brightness(0) invert(0.85) sepia(1) saturate(2.5) hue-rotate(338deg); }
  70%  { filter: brightness(0) invert(0.95) sepia(0.4) brightness(1.08); }
  100% { filter: brightness(0) invert(1); }
}
.nav-logo img {
  animation: lahautLogo 40s ease-in-out infinite;
}
