/* ============================================
   HOME.CSS — Styles spécifiques index.html
   Aarel Digital — 2026
   ============================================ */

/* ========================================
   HERO CINÉMATIQUE
   ======================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* Background vidéo / placeholder */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

/* Gradient overlay par-dessus vidéo */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 8, 8, 0.2) 0%,
      rgba(8, 8, 8, 0.1) 40%,
      rgba(8, 8, 8, 0.6) 80%,
      rgba(8, 8, 8, 1) 100%);
  z-index: 1;
}

/* Cercles décoratifs en fond */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation: float 8s ease-in-out infinite;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  bottom: 20%;
  right: 10%;
}

/* Contenu hero */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-inline: var(--sp-8);
  padding-bottom: var(--sp-20);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--sp-8);
  opacity: 0;
  /* GSAP anime ceci */
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.6;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, var(--fs-7xl));
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-8);
  overflow: hidden;
}

/* Chaque ligne du titre est wrappée dans .line pour l'animation */
.hero__title .line {
  display: block;
  overflow: hidden;
}

.hero__title .word {
  display: inline-block;
  transform: translateY(110%);
  /* GSAP anime ceci */
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(var(--fs-base), 2vw, var(--fs-md));
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: var(--sp-10);
  font-weight: 300;
  opacity: 0;
  /* GSAP anime ceci */
}

.hero__actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  opacity: 0;
  /* GSAP anime ceci */
}

.hero__actions .btn {
  flex: 1 1 0;
  min-width: 200px;
  max-width: 280px;
}

/* Badges */
.hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
  opacity: 0;
  flex-wrap: wrap;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-weight: 400;
}

.hero__badge .dot {
  width: 5px;
  height: 5px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse-gold 2s ease-in-out infinite;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  opacity: 0;
  /* GSAP anime ceci */
}

.hero__scroll span {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  animation: float 2s ease-in-out infinite;
}

/* ========================================
   SCROLLYTELLING — ACCROCHE TEXTE
   ======================================== */

.section-scrolltext {
  position: relative;
  background: var(--color-bg);
  overflow: clip;
}

.scrolltext__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--sp-8);
}

.scrolltext__words {
  max-width: 900px;
  text-align: center;
}

.scrolltext__line {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(var(--fs-2xl), 8vw, var(--fs-5xl));
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text-faint);
  will-change: transform, filter, opacity, color;
  transform-origin: center center;
}

.scrolltext__line.is-gold {
  color: var(--color-gold);
}

/* ========================================
   RÉASSURANCE — 3 PILIERS
   ======================================== */

.section-pillars {
  background: var(--color-bg);
  padding-block: var(--sp-40);
}

.pillars-header {
  text-align: center;
  margin-bottom: var(--sp-20);
}

.pillars-header h2 {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  margin-bottom: var(--sp-4);
}

.pillars-header p {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  max-width: 480px;
  margin-inline: auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* === PILLAR CARD — image background === */

.pillar-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: default;
  transition: border-color 0.45s ease;
}

.pillar-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

/* Photo de fond */
.pillar-card__img {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.pillar-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.75) saturate(0.85);
}

.pillar-card:hover .pillar-card__img img {
  transform: scale(1.07);
}

/* Gradient du bas */
.pillar-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(8, 8, 8, 0.0) 0%,
      rgba(8, 8, 8, 0.18) 38%,
      rgba(8, 8, 8, 0.86) 72%,
      rgba(8, 8, 8, 0.97) 100%);
}

/* Ligne or au hover — sweep gauche → droite */
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
  transition: width 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.pillar-card:hover::after {
  width: 100%;
}

/* Contenu bas de carte */
.pillar-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 28px;
  z-index: 1;
}

.pillar-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 100px;
  padding: 3px 10px;
  text-transform: uppercase;
  background: rgba(201, 168, 76, 0.08);
  backdrop-filter: blur(6px);
  margin-bottom: 14px;
  display: block;
  width: fit-content;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-weight: 700;
  color: #F5F5F0;
  margin-bottom: 10px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.pillar-card p {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.58);
  line-height: 1.72;
  margin: 0;
  transform: translateY(5px);
  transition: transform 0.35s ease, color 0.35s ease;
}

.pillar-card:hover p {
  color: rgba(245, 245, 240, 0.78);
  transform: translateY(0);
}

@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pillar-card {
    aspect-ratio: 16 / 9;
  }
}

/* ========================================
   AVANT / APRÈS — SLIDER
   ======================================== */

.section-beforeafter {
  background: var(--color-bg-alt);
  padding-block: 7.5rem;
  overflow: hidden;
}

.beforeafter-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.beforeafter-header h2 {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  margin-bottom: var(--sp-4);
}

.beforeafter-wrapper {
  position: relative;
  max-width: 1000px;
  margin-inline: auto;
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16/10;
  background: var(--color-surface);
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  container-type: inline-size;
}

/* Côté AVANT */
.ba-before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 7cqw;
  padding-bottom: 6px;
  overflow: hidden;
  background: var(--color-surface);
}

/* Côté APRÈS */
.ba-after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 7cqw;
  padding-bottom: 6px;
  overflow: hidden;
  background: var(--color-surface-alt);
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.1s linear;
}

/* Slider handle */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--color-gold);
  cursor: ew-resize;
  z-index: 10;
  transform: translateX(-50%);
}

.ba-handle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.ba-label {
  position: absolute;
  bottom: var(--sp-6);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  z-index: 5;
}

.ba-label--before {
  left: var(--sp-6);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-muted);
}

.ba-label--after {
  right: var(--sp-6);
  background: var(--color-gold-subtle);
  border: 1px solid var(--color-gold-border);
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .beforeafter-wrapper {
    aspect-ratio: unset;
    height: 450px;
  }
}

@media (max-width: 1023px) {
  .ba-label {
    bottom: var(--sp-2);
  }
}

@media (max-width: 480px) {
  .beforeafter-wrapper {
    overflow: visible;
  }

  .ba-before,
  .ba-after {
    border-radius: var(--r-2xl);
  }

  .ba-label {
    bottom: -46px;
  }
}

@container (max-width: 700px) {

  .ba-before,
  .ba-after {
    padding-top: 5cqw;
  }
}

/* ========================================
   SERP MOCK — résultats Google simulés
   Toutes les tailles en cqw (container query width)
   Référence : 1cqw = 10px à 1000px de large
   ======================================== */

.serp-mock {
  width: 95%;
  background: #0d0d0d;
  border-radius: 1.2cqw;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
  box-shadow: 0 0.8cqw 4cqw rgba(0, 0, 0, 0.55);
}

.serp-mock--win {
  border-color: rgba(201, 168, 76, 0.28);
  box-shadow: 0 0.8cqw 4cqw rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 168, 76, 0.08);
}

.serp-topbar {
  display: flex;
  align-items: center;
  gap: 1.2cqw;
  padding: 1.2cqw 1.8cqw;
  background: #141414;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.serp-logo {
  font-family: var(--font-heading);
  font-size: 2.2cqw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1;
  flex-shrink: 0;
  width: 2.4cqw;
  text-align: center;
}

.serp-logo--gold {
  color: var(--color-gold);
}

.serp-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.8cqw;
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2.4cqw;
  padding: 0.8cqw 1.6cqw;
  font-size: max(1.35cqw, 9px);
  color: rgba(255, 255, 255, 0.4);
}

.serp-input--active {
  border-color: rgba(201, 168, 76, 0.35);
  color: rgba(255, 255, 255, 0.75);
}

.serp-input svg {
  flex-shrink: 0;
  opacity: 0.45;
  width: 1.5cqw;
  height: 1.5cqw;
}

.serp-count {
  font-size: max(1.1cqw, 7.5px);
  color: rgba(255, 255, 255, 0.28);
  padding: 0.5cqw 1.8cqw 0.3cqw;
  margin: 0;
}

.serp-item {
  padding: 1cqw 1.8cqw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}

.serp-item--ad {
  opacity: 0.55;
}

.serp-item--winner {
  background: rgba(201, 168, 76, 0.04);
  border-left: 2px solid var(--color-gold);
  padding-left: 1.6cqw;
}

.serp-item--dim {
  opacity: 0.28;
}

.serp-ad-tag,
.serp-winner-tag {
  display: inline-block;
  font-size: max(1cqw, 7.5px);
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3cqw 0.7cqw;
  border-radius: 0.4cqw;
  margin-bottom: 0.4cqw;
}

.serp-ad-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
}

.serp-winner-tag {
  background: rgba(201, 168, 76, 0.14);
  border: 1px solid rgba(201, 168, 76, 0.32);
  color: var(--color-gold);
}

.serp-item__url {
  font-size: max(1.1cqw, 7.5px);
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 0.3cqw;
}

.serp-item__url--gold {
  color: #E8D08A;
  opacity: 0.85;
}

.serp-item__title {
  font-size: max(1.6cqw, 10px);
  font-weight: 500;
  color: rgba(130, 170, 255, 0.85);
  margin-bottom: 0.4cqw;
  line-height: 1.3;
}

.serp-item__title--gold {
  color: var(--color-text);
  font-weight: 600;
}

.serp-stars {
  display: flex;
  align-items: center;
  gap: 0.6cqw;
  margin-bottom: 0.4cqw;
}

.serp-stars__filled {
  font-size: max(1.2cqw, 9px);
  color: #f5a623;
  letter-spacing: 0.15cqw;
}

.serp-stars__info {
  font-size: max(1.1cqw, 7.5px);
  color: rgba(255, 255, 255, 0.45);
}

.serp-item__desc {
  font-size: max(1.1cqw, 7.5px);
  color: rgba(255, 255, 255, 0.33);
  line-height: 1.5;
}

.serp-absent {
  display: flex;
  align-items: center;
  gap: 1.2cqw;
  padding: 1.1cqw 1.8cqw 0.6cqw;
  background: rgba(220, 55, 55, 0.07);
  border-top: 1px solid rgba(220, 55, 55, 0.16);
}

.serp-absent__x {
  font-size: 2cqw;
  color: #e05555;
  flex-shrink: 0;
  line-height: 1;
}

.serp-absent strong {
  display: block;
  font-size: max(1.2cqw, 8.5px);
  color: rgba(255, 100, 100, 0.88);
  font-weight: 600;
  margin-bottom: 0.3cqw;
}

.serp-absent p {
  font-size: max(1.05cqw, 7.5px);
  color: rgba(255, 255, 255, 0.32);
  margin: 0;
}

.serp-win-stats {
  display: flex;
  padding: 1cqw 1.8cqw 1.1cqw;
  background: rgba(201, 168, 76, 0.06);
  border-top: 1px solid rgba(201, 168, 76, 0.18);
}

.serp-win-stat {
  flex: 1;
  text-align: center;
  padding-block: 0.3cqw;
}

.serp-win-stat:not(:last-child) {
  border-right: 1px solid rgba(201, 168, 76, 0.14);
}

.serp-win-stat strong {
  display: block;
  font-size: max(1.8cqw, 11px);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.2;
}

.serp-win-stat span {
  display: block;
  font-size: max(0.9cqw, 6.5px);
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3cqw;
}

.serp-disclaimer {
  font-size: max(0.75cqw, 6px);
  color: rgba(194, 158, 67, 0.942);
  text-align: center;
  padding: 0.4cqw 1.8cqw 0.6cqw;
  margin: 0;
  font-style: italic;
  background: rgba(201, 168, 76, 0.03);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

/* ========================================
   PROCESS — SCROLLYTELLING STICKY
   ======================================== */

.section-process {
  position: relative;
  background: var(--color-bg);
  overflow-x: clip;
}

.process-sticky-wrapper {
  height: 700vh;
}

.process-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 38% 62%;
  overflow: hidden;
}

/* ── Colonne gauche ── */
.process-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-12) var(--sp-10) var(--sp-12);
  padding-left: calc((100vw - var(--container-max)) / 2 + var(--sp-8));
  border-right: 1px solid var(--color-border);
  overflow: hidden;
}

@media (max-width: 1320px) {
  .process-left {
    padding-left: var(--sp-12);
  }
}

.process-header {
  margin-bottom: var(--sp-10);
}

.process-header h2 {
  font-size: clamp(var(--fs-2xl), 3.2vw, var(--fs-4xl));
  margin-bottom: var(--sp-3);
}

.process-header>p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.process-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-4) var(--sp-4) var(--sp-5);
  border-left: 2px solid transparent;
  cursor: default;
  opacity: 0.28;
  transition: opacity 0.35s ease, border-color 0.35s ease;
}

.process-step.is-active {
  opacity: 1;
  border-left-color: var(--color-gold);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: var(--color-text-faint);
  min-width: 26px;
  transition: color 0.35s ease;
}

.process-step.is-active .process-step-num {
  color: var(--color-gold);
}

.process-step-label {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.35s ease, font-weight 0.35s ease;
}

.process-step.is-active .process-step-label {
  color: var(--color-text);
  font-weight: 600;
}

/* ── Colonne droite ── */
.process-right {
  position: relative;
  height: 100vh;
  background: var(--color-surface);
  overflow: hidden;
}

.process-visual {
  position: absolute;
  inset: 0;
}

.process-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: var(--sp-12) var(--sp-16);
  opacity: 0;
}

/* Image de fond — GSAP contrôle l'opacity 1 → 0.2 */
.process-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  z-index: 0;
}

/* Overlay permanent pour lisibilité du texte */
.process-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(8, 8, 8, 0.72) 0%,
      rgba(8, 8, 8, 0.45) 55%,
      rgba(8, 8, 8, 0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

.process-panel-inner {
  position: relative;
  max-width: 500px;
  z-index: 2;
}

/* Numéro fantôme en arrière-plan */
.process-panel-ghost {
  position: absolute;
  top: -100px;
  left: -30px;
  font-family: var(--font-heading);
  font-size: 220px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Tag étape */
.process-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--sp-6);
  position: relative;
  z-index: 1;
}

.process-panel-tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.7;
  flex-shrink: 0;
}

/* Icône SVG */
.process-panel-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--r-lg);
  background: var(--color-gold-subtle);
  border: 1px solid var(--color-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-7);
  position: relative;
  z-index: 1;
}

.process-panel-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
}

/* Titre */
.process-panel-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--fs-2xl), 2.6vw, var(--fs-4xl));
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
}

/* Description */
.process-panel-desc {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 440px;
  position: relative;
  z-index: 1;
}

/* ── Responsive : sticky scrolltelling plein écran ── */
@media (max-width: 900px) {
  .process-sticky-wrapper {
    height: 700vh;
  }

  .process-sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    overflow: hidden;
  }

  /* Bandeau titre compact en haut du sticky */
  .process-left {
    flex: 0 0 auto;
    padding: var(--sp-6) var(--sp-6) var(--sp-4);
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    justify-content: flex-end;
  }

  .process-header {
    margin-bottom: 0;
  }

  .process-header h2 {
    font-size: clamp(var(--fs-xl), 5vw, var(--fs-2xl));
    margin-bottom: var(--sp-1);
  }

  .process-steps {
    display: none;
  }

  /* Zone panels : prend tout l'espace restant */
  .process-right {
    display: block;
    flex: 1;
    min-height: 0;
    height: auto;
    position: relative;
    overflow: hidden;
  }

  .process-visual {
    position: absolute;
    inset: 0;
  }

  .process-panel {
    padding: var(--sp-8) var(--sp-6);
    align-items: center;
  }

  /* Extra espace haut+bas pour le voyage parallax */
  .process-panel-bg {
    inset: -70px 0;
  }

  .process-panel-ghost {
    display: none;
  }

  .process-panel-inner {
    max-width: none;
  }

  .process-panel-icon {
    display: none;
  }

  .process-panel-title {
    font-size: clamp(var(--fs-2xl), 7vw, var(--fs-4xl));
    margin-bottom: var(--sp-3);
  }

  .process-panel-desc {
    font-size: var(--fs-sm);
    max-width: none;
  }
}

/* ========================================
   FORFAITS — BENTO GRID
   ======================================== */

.section-forfaits {
  background: var(--color-bg-alt);
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-12);
  position: relative;
  overflow: hidden;
}

.section-forfaits__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section-forfaits__bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100vw;
  width: 200vw;
  object-fit: cover;
  opacity: 0.08;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.section-forfaits__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    var(--color-bg-alt) 0%,
    rgba(15, 15, 15, 0.55) 20%,
    rgba(15, 15, 15, 0.35) 50%,
    rgba(15, 15, 15, 0.55) 80%,
    var(--color-bg-alt) 100%);
  z-index: 1;
  pointer-events: none;
}

.section-forfaits > .container {
  position: relative;
  z-index: 2;
}

.forfaits-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.forfaits-header h2 {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  margin-bottom: var(--sp-4);
}

.forfaits-header p {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
}

/* Bento grid — 2 colonnes */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  padding-top: 20px;
}

@media (max-width: 960px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Pro seul en 3e position : pleine largeur */
  .bento-grid>.bento-card:nth-child(3):not(.bento-card--full) {
    grid-column: 1 / -1;
  }
}

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

  .bento-grid>.bento-card:nth-child(3):not(.bento-card--full) {
    grid-column: auto;
  }
}

.bento-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-10);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
  position: relative;
  overflow: visible;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-border), transparent);
}

.bento-card:hover {
  border-color: var(--color-gold-border);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

/* Card mise en avant */
.bento-card--featured {
  border-color: var(--color-gold-border);
  background: linear-gradient(145deg, var(--color-surface-alt) 0%, var(--color-surface) 100%);
}

.bento-card--featured::before {
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.6;
}

/* Card Ultime — pleine largeur */
.bento-card--full {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: var(--sp-10);
}

@media (max-width: 768px) {
  .bento-card--full {
    flex-direction: column;
  }
}

.bento-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: #282318;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  position: absolute;
  top: 0;
  left: calc(50% + 100px);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  margin-bottom: 0;
}

.bento-title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}

.bento-title-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-2);
}

.bento-title-row .bento-title {
  margin-bottom: 0;
}

.bento-tag-custom {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-sm);
  background: var(--color-surface-alt);
  border: 1px solid rgba(245, 245, 240, 0.25);
  color: var(--color-text);
  white-space: nowrap;
}

.bento-price {
  margin-bottom: var(--sp-6);
}

.bento-price-amount {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.bento-price-unit {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-left: var(--sp-2);
}

.bento-price-note {
  font-size: var(--fs-xs);
  color: var(--color-text-faint);
  margin-top: var(--sp-1);
}

.bento-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.bento-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.bento-feature-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: var(--color-gold-subtle);
  border: 1px solid var(--color-gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.bento-feature-check::after {
  content: '✓';
  font-size: 9px;
  color: var(--color-gold);
  font-weight: 700;
}

.bento-renewal {
  text-align: center;
  margin-top: var(--sp-8);
  padding: var(--sp-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.bento-renewal strong {
  color: var(--color-text);
}

/* ========================================
   CHIFFRES CLÉS
   ======================================== */

.section-numbers {
  background: var(--color-bg);
  padding-block: var(--sp-32);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.numbers-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.numbers-header h2 {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  margin-bottom: var(--sp-4);
}

.numbers-header p {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--r-2xl);
  overflow: hidden;
}

/* Tablet : 3+2 sans décalage (virtual 6-col) */
@media (max-width: 900px) {
  .numbers-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .number-item:nth-child(-n+3) {
    grid-column: span 2;
  }

  .number-item:nth-child(n+4) {
    grid-column: span 3;
  }
}

@media (max-width: 540px) {
  .numbers-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .number-item:nth-child(-n+3),
  .number-item:nth-child(n+4) {
    grid-column: auto;
  }
}

.number-item {
  background: var(--color-surface);
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.number-icon {
  position: absolute;
  top: -8px;
  left: -8px;
  color: var(--color-gold);
  opacity: 0.15;
  transform: rotate(-18deg);
  pointer-events: none;
}

.number-icon svg {
  width: 80px;
  height: 80px;
}

.number-value {
  font-family: var(--font-heading);
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-5xl));
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--sp-3);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.number-label {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-bottom: var(--sp-2);
}

.number-context {
  font-size: var(--fs-xs);
  color: var(--color-text-faint);
  line-height: 1.4;
}

/* ========================================
   À PROPOS — COURT
   ======================================== */

.section-about {
  background: var(--color-bg-alt);
  padding-block: 7.5rem;
  overflow-x: clip;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-5), 13.92vw - 5.44rem, var(--sp-20));
  align-items: center;
}

@media (max-width: 768px) {

  /* Section : scroll container — height fixée par JS */
  .section-about {
    padding-block: 0;
    overflow: visible;
  }

  /* Container : full-bleed (height: 100% pour que sticky ait de la place) */
  .section-about .container {
    max-width: 100%;
    padding-inline: 0;
    width: 100%;
    height: 100%;
  }

  /* about-inner : viewport sticky sous la nav, flex column
     Enfants directs : .about-content-header + .about-image-zone (créés par JS) */
  .about-inner {
    position: sticky;
    top: var(--nav-height);
    /* colle juste sous la nav (72px) */
    height: calc(100dvh - var(--nav-height));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    gap: 0;
  }

  /* Header : bande compacte en haut — hors de l'image */
  .about-content-header {
    flex-shrink: 0;
    padding: var(--sp-8) var(--sp-5) var(--sp-3);
    /* Override data-reveal-left si présent */
    opacity: 1 !important;
    transform: none !important;
  }

  /* Zone image/texte : créée par JS, flex: 1 = remplit l'espace sous le header */
  .about-image-zone {
    flex: 1;
    min-height: 0;
    position: relative;
    overflow: hidden;
    /* Full viewport width : casse le container pour aller bord à bord */
    width: 100vw;
    margin-left: calc((100vw - 100%) / -2);
  }

  /* Visuel : fond plein cadre dans la zone image
     Pas de opacity ici — GSAP gère l'opacité via inline style
     transform: none écrase data-reveal-right (translateX 40px) */
  .about-visual {
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: 1;
    aspect-ratio: unset;
    border: none;
    border-radius: 0;
    background: transparent;
    transform: none !important;
  }

  /* Body : overlay aligné en bas de l'image */
  .about-content-body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--sp-4) var(--sp-5) 20px;
    background: linear-gradient(to bottom,
        rgba(8, 8, 8, 0) 0%,
        rgba(8, 8, 8, 0.55) 20%,
        rgba(8, 8, 8, 0.8) 65%,
        rgba(8, 8, 8, 0.95) 100%);
  }

  /* Texte plus lisible sur fond sombre */
  .about-content-body p {
    color: var(--color-text);
    margin-bottom: 10px;
  }

  .about-content-body p:nth-of-type(3) {
    margin-bottom: 0px;
  }

  /* Signature : espacement compact */
  .about-signature {
    margin-top: var(--sp-4);
    padding-top: var(--sp-4);
  }
}

.about-visual {
  aspect-ratio: clamp(2.4, calc(2.4 + 1.6 * (100vw - 769px) / 431px), 4) / 5;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 768px) {

  /* Décale l'image de 90px vers le haut dans son container.
     margin-top: 90px démarre le layout 90px plus bas,
     translateY(-90px) le remonte visuellement à y=0,
     height +90px + 90px de marge = le bas dépasse de 90px (clippé par overflow:hidden) */
  .about-visual img {
    height: calc(100% + 90px);
    margin-top: 90px;
    transform: translateY(-90px);
  }
}

.about-content h2 {
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-4xl));
  margin-bottom: var(--sp-6);
}

.about-content p {
  font-size: var(--fs-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
}

.about-signature {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--color-border);
  margin-top: 12px;
}

.about-signature-avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--color-gold-subtle);
  border: 1px solid var(--color-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.about-signature-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-signature-text strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text);
}

.about-signature-text span {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.about-link-parcours {
  display: inline-flex;
  align-items: center;
  margin-top: var(--sp-8);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap var(--t-base), opacity var(--t-base);
  gap: 0.4em;
}

.about-link-parcours:hover {
  opacity: 0.75;
  gap: 0.7em;
}

/* ========================================
   CTA FINAL — PLEIN ÉCRAN
   ======================================== */

.section-cta-final {
  position: relative;
  padding-block: var(--sp-40);
  text-align: center;
  overflow: hidden;
  background: var(--color-bg);
}

/* Fond gradient animé */
.cta-final__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  animation: pulse-gold 4s ease-in-out infinite;
}

.cta-final__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-inline: auto;
}

.cta-final__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--fs-3xl), 6vw, var(--fs-6xl));
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--sp-8);
}

.cta-final__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-final__sub {
  font-size: var(--fs-base);
  color: var(--color-text-muted);
  margin-bottom: var(--sp-12);
  line-height: 1.7;
}

.cta-final__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.cta-final__zone {
  font-size: var(--fs-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.08em;
}


/* ========================================
   TEXTE ROTATIF HERO
   ======================================== */

.hero__title-rotating-line {
  position: relative;
  display: block;
  height: clamp(3rem, 6vw, 6rem);
}

.hero__rotating-text {
  display: block;
  position: relative;
  height: 100%;
  font-style: normal;
}

.rotating-item {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  font-size: clamp(1.5rem, 3.2vw, 3rem);
  letter-spacing: -0.01em;
  word-break: break-word;
  hyphens: auto;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rotating-item.is-active {
  opacity: 1;
}

@media (max-width: 600px) {
  .hero__title-rotating-line {
    height: clamp(3.5rem, 14vw, 5rem);
  }

  .rotating-item {
    font-size: clamp(1.3rem, 5vw, 2.2rem);
  }
}

/* ========================================
   SECTION LEAD MAGNET CTA
   ======================================== */

.section-lead-magnet {
  padding-block: var(--sp-24);
  position: relative;
  overflow: hidden;
}

.section-lead-magnet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 76, 0.03) 50%, transparent 100%);
  pointer-events: none;
}

.lm-cta-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-16);
  align-items: center;
  background: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-12);
  position: relative;
  overflow: hidden;
}

.lm-cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.lm-cta-block__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-full);
  padding: var(--sp-1) var(--sp-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-5);
}

.lm-cta-block__badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
}

.lm-cta-block h2 {
  font-size: clamp(var(--fs-xl), 2.5vw, var(--fs-3xl));
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}

.lm-cta-block__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 48ch;
}

.lm-cta-block__action {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .lm-cta-block {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    padding: var(--sp-8);
  }
}

/* =============================================
   RESPONSIVE — TABLET & MOBILE
   Breakpoints : 900px / 768px / 540px / 480px
   ============================================= */

/* ── 900px — Tablet large ── */
@media (max-width: 900px) {

  /* Réduire les padding-block des sections */
  .section-pillars,
  .section-beforeafter,
  .section-forfaits,
  .section-numbers,
  .section-about,
  .section-cta-final {
    padding-block: var(--sp-24);
  }

  /* Scrolltext : scroll réduit tablet */
  .section-scrolltext {
    height: 260vh !important;
  }

  /* Hero : 100svh évite que la section suivante perce en bas */
  .hero {
    height: 100svh;
    min-height: 580px;
  }

  /* Hero : padding top pour compenser la nav fixe */
  .hero__content {
    padding-top: 80px;
    padding-bottom: var(--sp-12);
  }

  /* Hero scroll indicator : masqué sur mobile (swipe naturel) */
  .hero__scroll {
    display: none;
  }

  /* Scrolltext : lignes plus compactes */
  .scrolltext__line {
    font-size: clamp(var(--fs-xl), 7.5vw, var(--fs-4xl));
  }
}

/* ── 768px — Tablet portrait ── */
@media (max-width: 768px) {

  /* Sections : padding encore réduit */
  .section-pillars,
  .section-beforeafter,
  .section-forfaits,
  .section-numbers,
  .section-about,
  .section-cta-final {
    padding-block: var(--sp-16);
  }

  /* Pillar cards : portrait plus court sur 1-col */
  .pillar-card {
    aspect-ratio: 3 / 2;
  }

  /* Hero — boutons en colonne */
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 340px;
    min-width: unset;
  }

  /* Hero — badges en 2 colonnes */
  .hero__badges {
    gap: var(--sp-3);
  }

  .hero__badge {
    font-size: 10px;
    padding: var(--sp-1) var(--sp-3);
  }

  /* Bento badge : recentrer sur 1-col */
  .bento-badge {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* Numbers header */
  .numbers-header {
    margin-bottom: var(--sp-10);
  }

  /* Numbers item : padding réduit en 3+2 */
  .number-item {
    padding: var(--sp-8) var(--sp-5);
  }

  /* Process header : marges réduites */
  .process-header {
    margin-bottom: var(--sp-8);
  }

  /* CTA final : titre plus compact */
  .cta-final__title {
    font-size: clamp(var(--fs-2xl), 7vw, var(--fs-4xl));
  }

  /* Forfaits header */
  .forfaits-header {
    margin-bottom: var(--sp-10);
  }
}

/* ── 540px — Mobile paysage / petits mobiles ── */
@media (max-width: 540px) {

  /* Hero titre : floor plus petit */
  .hero__title {
    font-size: clamp(2.4rem, 10vw, var(--fs-7xl));
  }

  /* Hero eyebrow : moins de marge */
  .hero__eyebrow {
    margin-bottom: var(--sp-5);
  }

  /* Numbers : padding 1-col compact */
  .number-item {
    padding: var(--sp-8) var(--sp-4);
  }

  /* Pillar cards : portrait sur mobile */
  .pillar-card {
    aspect-ratio: 4 / 3;
  }

  /* Scrolltext : scroll réduit — 6 lignes × ~35vh */
  .section-scrolltext {
    height: 210vh !important;
  }

  /* Process step label plus lisible */
  .process-step-label {
    font-size: var(--fs-sm);
  }

  /* Bento card padding réduit */
  .bento-card {
    padding: var(--sp-8);
  }

  /* About : format carré sur petit mobile */
  .about-visual {
    aspect-ratio: 1 / 1;
  }

  /* Scrolltext lines plus petites */
  .scrolltext__line {
    font-size: clamp(var(--fs-lg), 8.5vw, var(--fs-3xl));
    line-height: 1.35;
  }
}

/* ── 480px — iPhone SE / petit mobile ── */
@media (max-width: 480px) {

  /* Hero : hauteur min réduite */
  .hero {
    min-height: 600px;
  }

  /* Hero content : padding latéral pour éviter le bord à bord */
  .hero__content {
    padding-inline: var(--sp-5);
    padding-bottom: var(--sp-10);
  }

  /* Badges hero sur 2 lignes max */
  .hero__badges {
    gap: var(--sp-2);
  }

  /* Sections : padding minimum */
  .section-pillars,
  .section-beforeafter,
  .section-forfaits,
  .section-numbers,
  .section-about,
  .section-cta-final {
    padding-block: var(--sp-12);
  }

  /* Section headers : marges compactes */
  .pillars-header,
  .forfaits-header,
  .numbers-header {
    margin-bottom: var(--sp-8);
  }

  /* Numbers header : texte plus petit */
  .numbers-header h2 {
    font-size: clamp(var(--fs-xl), 6vw, var(--fs-3xl));
  }

  /* Bento renewal : padding réduit */
  .bento-renewal {
    padding: var(--sp-4);
  }

  /* CTA final : sous-titre plus lisible */
  .cta-final__sub {
    font-size: var(--fs-sm);
  }

  /* Before/After : height adaptée */
  .beforeafter-wrapper {
    height: 320px;
  }
}

/* ── About mobile : corrections cascade responsive (vient après les règles base) ── */
@media (max-width: 768px) {
  .section-about {
    padding-block: 0;
    overflow: visible;
  }

  /* Spécificité 0,2,0 > 0,1,0 → écrase les règles base .about-visual
     qui viennent plus tard dans le fichier (aspect-ratio, border, border-radius) */
  .section-about .about-visual {
    aspect-ratio: unset !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  /* Cascade fix : .about-signature base (plus tard dans le fichier) écrase le bloc mobile */
  .section-about .about-signature {
    padding-top: 20px;
    margin-top: 15px;
  }

  .section-about .about-signature-avatar {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .section-about {
    padding-block: 0;
  }

  /* iPhone SE et petits phones : header plus compact, texte légèrement réduit */
  .about-content-header {
    padding-top: 12px;
  }

  .about-content-body p {
    font-size: 15px;
  }
}

/* ====================================
   TEASER PRÉSENCE EN LIGNE (HOME)
   ==================================== */
.section-teaser-presence {
  padding-block: var(--sp-20);
  border-top: 1px solid var(--color-border);
}

.teaser-presence__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-12);
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .teaser-presence__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .teaser-presence__visual {
    margin: 0 auto;
  }
}

.teaser-presence__text .eyebrow {
  margin-bottom: var(--sp-3);
}

.teaser-presence__text h2 {
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-3xl));
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}

.teaser-presence__text p {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--sp-8);
}

@media (max-width: 700px) {
  .teaser-presence__text p {
    margin-inline: auto;
  }
}

.teaser-presence__visual {
  flex-shrink: 0;
}

.teaser-presence__card {
  background: var(--color-surface);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  min-width: 240px;
}

.teaser-presence__card-from {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.teaser-presence__card-price {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin: 0;
}

.teaser-presence__card-price small {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--color-text-muted);
}

.teaser-presence__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  border-top: 1px solid var(--color-border);
  padding-top: var(--sp-4);
}

.teaser-presence__card-list li {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  padding-left: var(--sp-5);
  position: relative;
}

.teaser-presence__card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}

.teaser-presence__card-tag {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-align: center;
  border-top: 1px solid var(--color-border);
  padding-top: var(--sp-3);
  font-style: italic;
}