/* ============================================================
   Supernature — landing (port fidèle du design Figma)
   Design source: Figma "Supernature" (node 1011-4593)
   ============================================================ */

:root {
  /* Couleurs */
  --bg:            #000000;
  --text-strong:   #f6f6f6;   /* titres */
  --text:          #dddddd;    /* corps clair */
  --text-muted:    #999999;    /* labels secondaires */
  --badge-bg:      rgba(255, 255, 255, 0.15);
  --badge-border:  rgba(255, 255, 255, 0.06);
  --badge-text:    #f4f5f7;
  --btn-light-bg:  #dddddd;
  --btn-light-fg:  #303030;
  --sage:          #c3d1a9;    /* accent vert sauge */
  --card-bg:       #1f1f22;    /* fond des cartes */
  --icon-circle:   #f6f8f2;    /* rond d'icône crème */
  --icon-ring:     #fafbf9;
  --heading-mute:  #909090;
  --success:       #4fc660;    /* check vert */
  --light-line:    #f4f5f7;    /* bordure bouton outline */

  /* Polices */
  --font-serif:  "Hedvig Letters Serif", Georgia, serif;
  --font-body:   "Inter", system-ui, -apple-system, sans-serif;
  --font-button: "DM Sans", "Inter", sans-serif;
  --font-nav:    "Satoshi", "Inter", sans-serif;

  --maxw: 1440px;

  /* Easing (Emil Kowalski) */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* Décale les ancres pour ne pas passer sous la navbar sticky */
section[id], main[id], [id] { scroll-margin-top: 104px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; }

/* ---------- Boutons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-button);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  border-radius: 100px;
  padding: 11px 26px;
  white-space: nowrap;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.18s var(--ease-out),
              box-shadow 0.25s var(--ease-out),
              background-color 0.25s var(--ease-out),
              color 0.25s var(--ease-out);
}
.btn:active { transform: translateY(0) scale(0.97); transition-duration: 0.1s; }

.btn--light {
  background: #efefec;
  color: #1a1a1a;
  box-shadow: 0 1px 1px rgba(0,0,0,0.18), 0 1px 0 rgba(255,255,255,0.5) inset;
}
.btn--light:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -12px rgba(255,255,255,0.45), 0 4px 12px -6px rgba(0,0,0,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--light-line);
  border: 1px solid rgba(244,245,247,0.5);
}
.btn--outline:hover {
  background: var(--light-line);
  color: var(--btn-light-fg);
  border-color: var(--light-line);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -14px rgba(244,245,247,0.4);
}
.btn--green { background: #acc288; color: var(--btn-light-fg); }
.btn--green:hover {
  background: #bcd29a;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -12px rgba(172,194,136,0.5);
}

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 16px;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  color: var(--badge-text);
  font-size: 12px;
  line-height: 20px;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 18px 20px;
  transition: padding 0.3s var(--ease-out), background-color 0.3s var(--ease-out),
              backdrop-filter 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.navbar.is-scrolled {
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}
.navbar.is-scrolled .nav { height: 64px; }
.navbar.is-scrolled .nav__menu { background: rgba(255, 255, 255, 0.05); }
.nav {
  width: 100%;
  max-width: var(--maxw);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transition: height 0.3s var(--ease-out);
}
.nav__brand img { height: 52px; width: auto; object-fit: contain; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 99px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.3s var(--ease-out);
}
.nav__menu a {
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.14px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav__menu a:hover { color: #fff; }
.nav__menu a { position: relative; }
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__menu a.nav__menu-cta::after { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 112px;
  padding: 180px 20px 96px;
  overflow: clip;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 22%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.85) 88%, #000 100%);
}
/* Halo sauge qui dérive lentement derrière le titre (signature sobre) */
.hero__aurora {
  position: absolute;
  z-index: -1;            /* au-dessus de hero__bg (-1, plus tôt dans le DOM), sous hero__head */
  top: 8%;
  left: 50%;
  width: 90vw;
  max-width: 1100px;
  height: 60vh;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%,
              rgba(195, 209, 169, 0.16) 0%,
              rgba(195, 209, 169, 0.05) 45%,
              rgba(195, 209, 169, 0) 72%);
  filter: blur(20px);
  will-change: transform;
  animation: auroraDrift 26s var(--ease-in-out) infinite alternate both;
}
@keyframes auroraDrift {
  from { transform: translateX(-50%) translate3d(-4%, 0, 0) scale(1); }
  to   { transform: translateX(-50%) translate3d(4%, -3%, 0) scale(1.12); }
}

.hero__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 1076px;
  max-width: 100%;
}
.hero__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: -0.32px;
  text-align: center;
  color: var(--text-strong);
}
.hero__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: var(--text);
  width: 100%;
}

.hero__proof {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 652px;
  max-width: 100%;
}
.hero__proof-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: var(--text-muted);
}
.hero__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.hero__logos .logo { opacity: 0.9; object-fit: contain; }

/* ---------- En-tête de section réutilisable ---------- */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 768px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.24px;
  color: var(--text-strong);
}
.section-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--heading-mute);
}
.badge--sage {
  background: rgba(195, 209, 169, 0.15);
  color: var(--sage);
}

/* ---------- Lien fléché ---------- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--sage);
  text-decoration: none;
}
.link-arrow img { transition: transform 0.2s ease; }
.link-arrow:hover img { transform: translateX(3px); }

/* ============ BÉNÉFICES ============ */
.benefices {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 96px 152px;
}
.benefices__grid {
  display: flex;
  gap: 40px;
  align-items: stretch;
  width: 100%;
}
.feature-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 32px 24px;
  background: var(--card-bg);
  border-radius: 20px;
  text-align: center;
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--icon-circle);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(246, 248, 242, 0.05);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.feature-card__text { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.feature-card__text h3 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: var(--text-strong);
}
.feature-card__text p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}

/* ============ CITATION ============ */
.citation {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.citation__quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  color: var(--text-strong);
  width: 912px;
  max-width: 100%;
  margin: 0;
}
.citation__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
}
.citation__author .avatar {
  width: 64px;
  height: 64px;
  border-radius: 200px;
  background: var(--sage);
  object-fit: cover;
}
.citation__author figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.citation__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-strong);
}
.citation__role {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--heading-mute);
}

/* ============ MÉTHODE ============ */
.method {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.method__card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 96px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
  overflow: clip;
}
.section-sub--light { color: var(--text); }

.method__rows {
  display: flex;
  flex-direction: column;
  gap: 96px;
  width: 100%;
}
.method-row {
  display: flex;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.method-step {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  padding: 24px 0;
}
.method-step__desc { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--icon-circle);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(246, 248, 242, 0.05);
  margin-bottom: 8px;
}
.method-step h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  color: var(--text-strong);
}
.method-step__desc p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--text);
  max-width: 517px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 16px;
  width: 100%;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-muted);
}
.check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 28px;
}
.check img { width: 17px; height: auto; }

.method-media {
  flex: 1 1 0;
  min-width: 0;
  height: 512px;
  border-radius: 20px;
  overflow: clip;
  background: rgba(195, 209, 169, 0.15);
}
.method-media img { width: 100%; height: 100%; object-fit: cover; }

/* ============ COMPARAISON ============ */
.compare {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
}
.compare__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  color: var(--text-strong);
}
.compare__cards {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: center;
}
.compare-card {
  width: 453px;
  max-width: 100%;
  background: var(--card-bg);
  border: 1px solid rgba(233, 234, 235, 0.2);
  border-radius: 16px;
  padding: 36px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 37px;
  box-shadow: 0px 12px 8px rgba(10, 13, 18, 0.08), 0px 4px 3px rgba(10, 13, 18, 0.03);
}
.compare-card--us {
  border-color: #8fb05a;
  gap: 24px;
  padding: 32px 20px;
}
.compare-card__title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.6px;
  color: var(--text);
}
.compare-card__brand img { height: 52px; width: auto; }
.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-muted);
}
.compare-list .ci { flex-shrink: 0; width: 19px; height: 19px; }

/* ============ CAS CLIENTS ============ */
.cases {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 124px;
}
.cases__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  padding: 0 20px;
}
.case-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--card-bg);
  border-radius: 4px;
  padding: 27px 26px;
}
.case-card__text { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.case-card__text h3 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
}
.case-card__metric {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #f5f4f0;
}
.case-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(153, 153, 153, 0.6);
}
.case-card .badge { flex-shrink: 0; }

/* ============ POURQUOI SUPERNATURE ============ */
.why {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.why__image {
  width: 1000px;
  max-width: 100%;
  /* aucun border / fond : l'image se dissout dans le noir */
}
.why__image img {
  width: 100%;
  height: auto;
  display: block;
  /* Dissolve doux : l'image se fond progressivement dans le background noir
     (et efface au passage les coins blancs cuits dans why.jpg) */
  -webkit-mask-image: radial-gradient(ellipse 82% 80% at 50% 50%, #000 22%, rgba(0,0,0,0.55) 55%, transparent 82%);
          mask-image: radial-gradient(ellipse 82% 80% at 50% 50%, #000 22%, rgba(0,0,0,0.55) 55%, transparent 82%);
}
.why__cta {
  width: 856px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.why__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6e6e6e;
}
.why__punch {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  color: #f5f4f0;
}

/* ============ OFFRES ============ */
.offers {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
}
.offers__cards {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.price-card {
  position: relative;
  width: 388px;
  max-width: 100%;
  background: var(--card-bg);
  border: 1px solid rgba(233, 234, 235, 0.2);
  border-radius: 16px;
  box-shadow: 0px 12px 8px rgba(10, 13, 18, 0.08), 0px 4px 3px rgba(10, 13, 18, 0.03);
  display: flex;
  flex-direction: column;
}
.price-card__badge {
  position: absolute;
  top: 16px;
  left: 10px;
}
.price-card__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 50px 32px 0;
}
.price-card__name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  color: var(--text-strong);
}
.price-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-muted);
}
.testimonial {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonial__head { display: flex; gap: 8px; align-items: flex-start; }
.testimonial__avatar {
  width: 45px;
  height: 45px;
  border-radius: 200px;
  background: var(--sage);
  object-fit: cover;
}
.testimonial__id { display: flex; flex-direction: column; }
.testimonial__name {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
}
.testimonial__role {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: var(--heading-mute);
}
.testimonial__quote {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-strong);
}
.price-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
}
.price-card__cta { width: 100%; }
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
}
.price-list .ci { flex-shrink: 0; width: 19px; height: 19px; }

/* ============ NOTRE APPROCHE ============ */
.approach {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.approach__card {
  background: #191919;
  border-radius: 20px;
  padding: 96px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  overflow: clip;
}
.approach__head { width: 1124px; }
.approach__row {
  display: flex;
  gap: 80px;
  align-items: center;
  width: 1280px;
  max-width: 100%;
}
.approach__left {
  width: 631px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 32px 0;
}
.approach__body { display: flex; flex-direction: column; gap: 24px; }
.approach__body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}
.approach__metrics {
  display: flex;
  gap: 16px;
  align-items: stretch;
  width: 100%;
}
.metric {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.metric__num {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.6px;
  color: var(--sage);
}
.metric__cap {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  color: var(--light-line);
}
.metric-div {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.15);
}
.approach__image {
  flex: 1 1 0;
  min-width: 0;
  height: 560px;
  border-radius: 20px;
  overflow: clip;
}
.approach__image img { width: 100%; height: 100%; object-fit: cover; }

/* ============ AVIS CLIENTS ============ */
.avis {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
}
.avis__head { width: 1124px; }
.avis__wall {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: clip;
  display: flex;
  justify-content: center;
}
.avis__cols {
  display: flex;
  gap: 24px;
  align-items: center;
}
.avis__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 352px;
}
.avis-card {
  background: #191919;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.avis-card__stars { align-self: flex-start; width: auto; height: 16px; }
.avis-card__quote {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-strong);
}
.avis-card__person { display: flex; gap: 16px; align-items: center; }
.avis-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.avis-card__person > div { display: flex; flex-direction: column; }
.avis-card__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}
.avis-card__role {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--heading-mute);
}
.avis__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #000 0%, rgba(0,0,0,0) 12%, rgba(0,0,0,0) 88%, #000 100%);
}

/* ============ FAQ ============ */
.faq {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
}
.faq__cols {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.faq__col { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: #191919;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 28px 18px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item__q { display: flex; gap: 16px; align-items: flex-start; justify-content: space-between; }
.faq-item__q p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-strong);
}
.faq-item__icon { flex-shrink: 0; margin-top: 2px; }
.faq-item__a { display: flex; flex-direction: column; gap: 18px; max-width: 520px; }
.faq-item__a p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}

/* ============ CTA FINAL ============ */
.cta {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 120px;
}
.cta__card {
  position: relative;
  background: #191919;
  border-radius: 20px;
  padding: 96px 20px;
  overflow: clip;
  display: flex;
  justify-content: center;
}
.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  pointer-events: none;
}
.cta__content {
  position: relative;
  z-index: 1;
  width: 700px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.cta__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.24px;
  color: var(--light-line);
}
.cta__sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--text);
}

/* ============ FOOTER ============ */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 48px 0;
}
.footer__top,
.footer__bottom {
  width: 1280px;
  max-width: 100%;
  padding: 0 32px;
}
.footer__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.footer__brand { flex: 1 1 0; display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.footer__logo { height: 34px; width: auto; opacity: 0.92; display: block; }
.footer__socials { display: flex; gap: 16px; align-items: center; padding: 0; }
.footer__socials a { display: inline-flex; opacity: 0.85; transition: opacity 0.2s ease; }
.footer__socials a:hover { opacity: 1; }
.footer__links { flex: 1 1 0; display: flex; gap: 0; }
.footer__col { width: 238px; display: flex; flex-direction: column; gap: 16px; }
.footer__col-title {
  font-family: var(--font-button);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-muted);
}
.footer__col a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #d0d0d0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__col a:hover { color: #fff; }
.badge-new {
  background: #ecfdf3;
  color: #027a48;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  padding: 2px 8px;
  border-radius: 16px;
}
.footer__bottom { display: flex; flex-direction: column; gap: 32px; }
.footer__divider { height: 1px; width: 100%; background: #272824; }
.footer__copy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--heading-mute);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav__menu { display: none; }
  .hero { gap: 48px; padding: 128px 20px 72px; min-height: 88svh; }
  .hero__title { font-size: 40px; }
  .hero__sub { font-size: 17px; line-height: 26px; }
  .benefices { padding: 64px 20px; gap: 48px; }
  .benefices__grid { flex-direction: column; }
  .section-title { font-size: 34px; }

  .method__card { padding: 48px 24px; gap: 64px; }
  .method__rows { gap: 64px; }
  .method-row, .method-row--reverse { flex-direction: column; gap: 32px; }
  .method-media { height: 320px; width: 100%; }
  .citation__quote { font-size: 24px; }

  .compare { padding: 64px 20px; gap: 48px; }
  .compare__cards { flex-direction: column; align-items: stretch; width: 100%; }
  .compare-card { width: 100%; max-width: 100%; }

  .cases { padding: 64px 0; gap: 48px; }
  .cases__grid { grid-template-columns: 1fr; }

  .offers { padding: 64px 20px; gap: 48px; }
  .offers__cards { flex-direction: column; align-items: stretch; width: 100%; }
  .price-card { width: 100%; max-width: 100%; }
  .why__cta { gap: 24px; }

  .approach__card { padding: 48px 24px; gap: 48px; }
  .approach__row { flex-direction: column; gap: 40px; }
  .approach__left { gap: 48px; padding: 0; }
  .approach__image { width: 100%; height: 320px; }

  .avis { padding: 64px 20px; gap: 48px; }
  .avis__cols { gap: 16px; }
  .avis__col:nth-child(3) { display: none; }
  .avis__col { width: auto; flex: 1 1 0; }

  .faq { padding: 64px 20px; gap: 48px; }
  .faq__cols { flex-direction: column; }

  .cta { padding: 48px 20px; }
  .cta__card { padding: 56px 24px; }
  .cta__title { font-size: 32px; }

  .footer__top { flex-direction: column; gap: 32px; }
  .footer__links { gap: 24px; }
  .footer__col { width: auto; flex: 1 1 0; }
}
@media (max-width: 600px) {
  .avis__col:nth-child(2) { display: none; }
  .hero__title { font-size: 34px; }
  .hero { min-height: 82svh; }

  /* Navbar compacte mobile (évite le débordement du CTA) */
  .navbar { padding: 12px 12px; }
  .nav { padding: 0 6px; }
  .nav__brand img { height: 38px; }
  .navbar .btn--light { padding: 9px 16px; font-size: 14px; }
}

/* ============================================================
   PREMIUM LAYER — motion, hover, polish (2026-06-01)
   ============================================================ */

/* ---------- Apparitions au scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  transition: opacity 0.8s var(--ease-out),
              transform 0.8s var(--ease-out),
              filter 0.8s var(--ease-out);
  will-change: opacity, transform, filter;
}
.reveal.is-visible { opacity: 1; transform: none; filter: blur(0); }

/* ---------- Hero : entrée + léger ken-burns ---------- */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); filter: blur(10px); }
  to   { opacity: 1; transform: none;             filter: blur(0); }
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero__bg img { animation: heroZoom 1.8s var(--ease-out) both; }
.hero .badge   { animation: heroIn 0.8s var(--ease-out) 0.10s both; }
.hero__title   { animation: heroIn 0.9s var(--ease-out) 0.22s both; }
.hero__sub     { animation: heroIn 0.9s var(--ease-out) 0.36s both; }
.hero .btn     { animation: heroIn 0.9s var(--ease-out) 0.50s both; }

/* Bloc confiance/logos : entre en dernier — opacité+flou seulement
   (le track a déjà sa propre translation marqueeRTL, pas de transform ici) */
@keyframes heroFade {
  from { opacity: 0; filter: blur(8px); }
  to   { opacity: 1; filter: blur(0); }
}
.hero__trust { animation: heroFade 1s var(--ease-out) 0.66s both; }

/* Grain subtil sur le hero (atmosphère) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Hover des cartes ---------- */
.feature-card, .case-card, .compare-card, .price-card, .avis-card, .faq-item {
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -28px rgba(0,0,0,0.7);
}
.feature-card:hover .feature-icon {
  transform: translateY(-2px);
  box-shadow: 0 0 0 9px rgba(246,248,242,0.09);
}
.case-card:hover { transform: translateY(-3px); background: #26262a; }
.compare-card:hover { transform: translateY(-3px); }
.compare-card--us:hover {
  border-color: #a9c97a;
  box-shadow: 0 26px 60px -30px rgba(140,176,90,0.5);
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.35); }
.price-card--featured:hover { box-shadow: 0 32px 72px -32px rgba(172,194,136,0.4); }
.avis-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.4); }
.faq-item:hover { border-color: rgba(255,255,255,0.32); }

/* Zoom doux des visuels au survol */
.method-media img, .approach__image img, .cta__bg {
  transition: transform 0.7s var(--ease-out);
}
.method-media:hover img, .approach__image:hover img {
  transform: scale(1.06);
}
.cta__card:hover .cta__bg { transform: scale(1.1); }

/* ---------- FAQ accordéon ---------- */
.faq-item__q { cursor: pointer; user-select: none; }
.faq-item__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--text-strong);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }   /* barre verticale */
.faq-item:not(.is-closed) .faq-item__icon::after {                            /* ouvert -> "−" */
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-item__a {
  overflow: hidden;
  max-height: 600px;
  opacity: 1;
  transition: max-height 0.4s var(--ease-out), opacity 0.3s var(--ease-out);
}
.faq-item.is-closed .faq-item__a { max-height: 0; opacity: 0; }

/* ---------- Accessibilité focus ---------- */
a:focus-visible, .btn:focus-visible, .faq-item__q:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero__bg img { transform: none !important; }
  .hero .badge, .hero__title, .hero__sub, .hero .btn { filter: none !important; }
  .hero__trust { filter: none !important; opacity: 1 !important; }
  .hero__aurora { animation: none !important; }
}

/* ============================================================
   MENU MOBILE (hamburger) — 2026-06-02
   ============================================================ */
.nav { position: relative; }
.nav__toggle { display: none; }
.nav__menu-cta { display: none; }

@media (max-width: 900px) {
  /* Bouton hamburger visible, CTA d'en-tête masqué (repris dans le menu) */
  .nav__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    cursor: pointer;
  }
  .nav__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-strong);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out);
  }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav > .btn--light { display: none; }

  /* Le menu devient un panneau déroulant */
  .nav__menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: absolute;
    top: calc(100% + 10px);
    left: 6px;
    right: 6px;
    padding: 12px;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    backdrop-filter: saturate(140%) blur(18px);
    -webkit-backdrop-filter: saturate(140%) blur(18px);
    box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
  }
  .nav.is-open .nav__menu { opacity: 1; visibility: visible; transform: none; }
  .nav__menu a {
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 24px;
  }
  .nav__menu a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
  .nav__menu a::after { display: none; }
  .nav__menu-cta {
    display: flex;
    justify-content: center;
    margin-top: 4px;
    background: #efefec;
    color: #1a1a1a !important;
    font-weight: 500;
  }
  .nav__menu-cta:hover { background: #fff; }
}

/* ============================================================
   PAGES DOCUMENT (légal / contact) — 2026-06-02
   ============================================================ */
.doc {
  max-width: 820px;
  margin: 0 auto;
  padding: 160px 24px 120px;
}
.doc__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s ease;
}
.doc__back:hover { color: var(--text-strong); }
.doc h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -0.3px;
  color: var(--text-strong);
  margin-bottom: 12px;
}
.doc__meta {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.doc h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  color: var(--text-strong);
  margin: 44px 0 16px;
}
.doc h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-strong);
  margin: 28px 0 10px;
}
.doc p, .doc li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.doc p { margin-bottom: 16px; }
.doc ul { padding-left: 22px; margin-bottom: 16px; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }
.doc strong { color: var(--text-strong); font-weight: 600; }
.doc__todo {
  background: rgba(195, 209, 169, 0.10);
  border: 1px dashed rgba(195, 209, 169, 0.5);
  border-radius: 6px;
  padding: 2px 8px;
  color: var(--sage);
  font-weight: 500;
  font-style: normal;
}
.doc__contact-mail {
  display: inline-flex;
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--sage);
  text-decoration: none;
}
.doc__contact-mail:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .doc { padding: 120px 20px 80px; }
  .doc h1 { font-size: 34px; }
  .doc__contact-mail { font-size: 22px; }
}

/* ============================================================
   AFFINAGE ICÔNES + EFFETS BOUTONS + HERO VIVANT — 2026-06-02
   ============================================================ */

/* ---------- Icônes de section (bénéfices / méthode) ----------
   Les SVG Figma étaient exportés en preserveAspectRatio="none"
   (corrigé en "meet") : ils n'étaient plus étirés mais restaient
   un peu lourds. On les pose dans une boîte carrée nette, taille
   réduite pour un rendu plus aéré / premium. */
.feature-icon img,
.method-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(160deg, #ffffff 0%, #f1f4ec 100%);
}
.method-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(160deg, #ffffff 0%, #f1f4ec 100%);
}

/* ---------- Boutons : balayage lumineux gauche → droite (hover) ---------- */
.btn { overflow: hidden; }
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  opacity: 0;
}
.btn:hover::after { animation: btnShine 0.85s var(--ease-out); }
@keyframes btnShine {
  0%   { left: -80%; opacity: 0; }
  12%  { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}
/* Sur les boutons sombres/teintés, le reflet ressort encore mieux */
.btn--outline::after,
.btn--green::after {
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 100%
  );
}

/* ---------- Hero : l'image "respire" (drift + zoom lent en boucle) ---------- */
@keyframes heroDrift {
  0%   { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.12) translate3d(-2.6%, -1.8%, 0); }
}
.hero__bg img {
  transform-origin: 55% 45%;
  animation: heroZoom 1.8s var(--ease-out) both,
             heroDrift 19s ease-in-out 1.8s infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .btn::after { display: none; }
  .hero__bg img { animation: none !important; }
}

/* ============================================================
   HERO — barre de logos défilante + MODÈLE IA — 2026-06-02
   ============================================================ */

/* ---------- Barre de logos (marquee gauche → droite) ---------- */
.hero__trust {
  width: 100%;
  max-width: var(--maxw);
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: -56px;
}
.hero__trust-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  color: var(--text-muted);
}
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 88px;
  width: max-content;
  animation: marqueeRTL 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__logo {
  height: 21px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.5;
  filter: brightness(1.25);
  transition: opacity 0.3s var(--ease-out);
}
.marquee__logo:hover { opacity: 0.85; }
/* Bolloré : viewBox haute (arc inclus) → on agrandit pour égaliser le poids visuel */
.marquee__logo[src*="bollore"] { height: 33px; }
/* Défilement gauche → droite : la piste glisse de -50% vers 0 (boucle continue) */
@keyframes marqueeRTL {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ---------- Modèle de transformation IA (sous-section comparaison) ---------- */
.aimodel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.aimodel__head { width: 768px; }
.aimodel__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  color: var(--text-strong);
}
.aimodel__chart {
  position: relative;
  width: 100%;
  height: 480px;
  background:
    radial-gradient(120% 90% at 50% 100%, rgba(195, 209, 169, 0.07), transparent 70%),
    #0c0d0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
}
.aimodel__curve {
  position: absolute;
  inset: 28px 24px 48px 56px;
  width: auto;
  height: auto;
}
.aimodel__axis {
  position: absolute;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.aimodel__axis--y {
  left: 16px;
  top: 28px;
  bottom: 48px;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.aimodel__axis--x {
  left: 56px;
  right: 24px;
  bottom: 16px;
  text-align: center;
}
.aimodel__levels {
  position: absolute;
  inset: 28px 24px 48px 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.aimodel__level {
  position: relative;
  width: 23%;
  max-width: 215px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 30px;
}
/* Escalier : chaque niveau monte avec la courbe */
.aimodel__level:nth-child(1) { margin-bottom: 6px; }
.aimodel__level:nth-child(2) { margin-bottom: 74px; }
.aimodel__level:nth-child(3) { margin-bottom: 178px; }
/* Niveau 4 décalé à gauche pour ne jamais chevaucher la courbe qui grimpe à droite */
.aimodel__level:nth-child(4) { margin-bottom: 268px; margin-right: 132px; }
/* Petit point sur la courbe + tige verticale */
.aimodel__level::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(195, 209, 169, 0.15);
}
.aimodel__level::before {
  content: "";
  position: absolute;
  left: 6px;
  bottom: 9px;
  width: 1px;
  height: 20px;
  background: linear-gradient(180deg, rgba(195, 209, 169, 0.5), transparent);
}
.aimodel__lvl {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--sage);
}
.aimodel__level h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.3;
  color: var(--text-strong);
}
.aimodel__level p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero__trust { margin-top: 0; }
  .marquee__track { gap: 56px; }
  .marquee__logo { height: 18px; }
  .marquee__logo[src*="bollore"] { height: 28px; }

  .aimodel__head { width: 100%; }
  .aimodel__title { font-size: 26px; }
  .aimodel__chart {
    height: auto;
    background: none;
    border: none;
    border-radius: 0;
  }
  .aimodel__curve, .aimodel__axis { display: none; }
  .aimodel__levels {
    position: static;
    inset: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  /* Cartes verticales (plus de place pour le texte qu'à flanc de courbe) */
  .aimodel__level {
    width: 100%;
    max-width: none;
    margin: 0 !important;
    padding: 22px 22px 22px 24px;
    background: #0e0f0d;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 3px solid var(--sage);
    border-radius: 14px;
  }
  .aimodel__level h4 { font-size: 18px; }
  .aimodel__level p { font-size: 14px; }
  .aimodel__level::before, .aimodel__level::after { display: none; }
}

/* ---------- Modèle IA : courbe vivante (Emil — ease-out, draw-on, stagger) ---------- */
.aimodel__line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  filter: drop-shadow(0 0 5px rgba(195, 209, 169, 0.45));
  transition: stroke-dashoffset 1.8s var(--ease-out);
}
.aimodel__chart.is-visible .aimodel__line { stroke-dashoffset: 0; }
.aimodel__area { opacity: 0; transition: opacity 1.1s ease-out 0.9s; }
.aimodel__chart.is-visible .aimodel__area { opacity: 1; }
/* Étincelle qui parcourt la courbe en continu (vit) */
.aimodel__spark {
  filter: drop-shadow(0 0 5px #c3d1a9) drop-shadow(0 0 11px rgba(195, 209, 169, 0.7));
}
/* Niveaux : apparition fondu + montée, en escalier (stagger) */
.aimodel__level {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.aimodel__chart.is-visible .aimodel__level { opacity: 1; transform: none; }
.aimodel__chart.is-visible .aimodel__level:nth-child(1) { transition-delay: 0.55s; }
.aimodel__chart.is-visible .aimodel__level:nth-child(2) { transition-delay: 0.80s; }
.aimodel__chart.is-visible .aimodel__level:nth-child(3) { transition-delay: 1.05s; }
.aimodel__chart.is-visible .aimodel__level:nth-child(4) { transition-delay: 1.30s; }
/* Point sur la courbe : pop différé */
.aimodel__level::after { transform: scale(0); transition: transform 0.5s var(--ease-out); }
.aimodel__chart.is-visible .aimodel__level:nth-child(1)::after { transform: scale(1); transition-delay: 0.70s; }
.aimodel__chart.is-visible .aimodel__level:nth-child(2)::after { transform: scale(1); transition-delay: 0.95s; }
.aimodel__chart.is-visible .aimodel__level:nth-child(3)::after { transform: scale(1); transition-delay: 1.20s; }
.aimodel__chart.is-visible .aimodel__level:nth-child(4)::after { transform: scale(1); transition-delay: 1.45s; }

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none !important; }
  /* La courbe n'a pas de déclencheur is-visible en reduced-motion → on affiche l'état final */
  .aimodel__line { stroke-dashoffset: 0 !important; }
  .aimodel__area { opacity: 1 !important; }
  .aimodel__level { opacity: 1 !important; transform: none !important; }
  .aimodel__level::after { transform: scale(1) !important; }
  .aimodel__spark { display: none !important; }
}

/* ============================================================
   PAGE CONTACT — hero plein cadre premium — 2026-06-02
   ============================================================ */
.contact {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 24px 110px;
  overflow: clip;
}
.contact__bg { position: absolute; inset: 0; z-index: -1; }
.contact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  animation: heroZoom 2s var(--ease-out) both,
             heroDrift 22s ease-in-out 2s infinite alternate;
}
.contact__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 45%, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.5) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.12) 42%, rgba(0,0,0,0.62) 100%);
}
.contact__inner {
  width: 720px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
  padding: 56px 52px 52px;
  background: rgba(10, 11, 10, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  backdrop-filter: saturate(130%) blur(14px);
  -webkit-backdrop-filter: saturate(130%) blur(14px);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.8);
}
.contact__back {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact__back:hover { color: #fff; }
.contact__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -0.4px;
  color: var(--text-strong);
}
.contact__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  max-width: 540px;
}
.contact__mail {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.2;
  color: var(--sage);
  text-decoration: none;
  border-bottom: 1px solid rgba(195, 209, 169, 0.4);
  padding-bottom: 4px;
  transition: border-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.contact__mail:hover { color: #d7e4bf; border-color: var(--sage); }
.contact__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
@media (max-width: 600px) {
  .contact { padding: 120px 16px 80px; }
  .contact__inner { padding: 40px 24px 36px; border-radius: 22px; gap: 22px; }
  .contact__title { font-size: 36px; }
  .contact__lead { font-size: 16px; }
  .contact__mail { font-size: 24px; }
  .contact__actions { width: 100%; flex-direction: column; }
  .contact__actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .contact__bg img { animation: none !important; }
}
