
/* ── HERO VIDEO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 100px;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(12,20,9,0.25) 0%,
      rgba(12,20,9,0.55) 70%,
      rgba(12,20,9,0.75) 100%
    );
}

.hero-content {
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  padding: 30px 40px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Fallback si pas de vidéo */
.hero-video-wrap .fallback-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, #1F3318 0%, #0C1409 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.6rem, 8.5vw, 7.5rem);
  font-weight: 900; line-height: 0.95;
  color: white; margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.7s 0.38s forwards;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.hero-h1 em { font-style: italic; font-weight: 400; color: var(--gold-light); }

.hero-punch {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 700; font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.7s 0.52s forwards;
  line-height: 1.35;
}

.hero-desc {
  font-size: 1.05rem; line-height: 1.85;
  color: rgba(245,237,216,0.82);
  font-weight: 300; max-width: 560px;
  margin: 0 auto 44px;
  opacity: 0; animation: fadeUp 0.7s 0.66s forwards;
}

.hero-ctas {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 0.82s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  opacity: 0; animation: fadeUp 0.7s 1.1s forwards;
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

.scroll-txt { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); opacity: 0.7; }

/* ── STATS BAND ── */
.stats-band {
  background: var(--sage);
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
  padding: 28px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative; z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 8px 20px;
  border-right: 1px solid var(--border-d);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 4px;
}

.stat-label { font-size: 0.75rem; font-weight: 400; color: var(--gold-pale); letter-spacing: 0.06em; text-transform: uppercase; }

/* ── BESOINS — GRILLE IMPACTANTE ── */
.besoins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px; margin: 0 auto;
}

.besoin-card {
  background: var(--sage);
  padding: 44px 36px;
  border: 1px solid var(--border-d);
  position: relative; overflow: hidden;
  transition: all 0.35s;
  cursor: default;
}

.besoin-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s;
}

.besoin-card:hover { background: #1A2E14; }
.besoin-card:hover::before { height: 100%; }

.besoin-big-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 5rem; font-weight: 700;
  line-height: 1; color: var(--gold);
  opacity: 0.12;
  position: absolute; top: 12px; right: 20px;
  pointer-events: none;
  transition: opacity 0.35s;
}

.besoin-card:hover .besoin-big-num { opacity: 0.2; }

.besoin-tag {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
  position: relative; z-index: 1;
}

.besoin-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--cream); margin-bottom: 14px;
  line-height: 1.2; position: relative; z-index: 1;
}

.besoin-text {
  font-size: 0.9rem; line-height: 1.85;
  color: var(--gold-pale); font-weight: 300;
  margin-bottom: 60px; position: relative; z-index: 1;
}

.test {
  font-size: 0.9rem; line-height: 1.85;
  color: var(--gold-pale); font-weight: 300;
  margin-bottom: 30px; position: relative; z-index: 1;
}

.benefit-item {
  font-size: 0.88rem; font-weight: 600;
  color: var(--cream);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px; position: relative; z-index: 1;
}

.benefit-dash {
  width: 16px; height: 1.5px;
  background: var(--gold); flex-shrink: 0;
  border-radius: 2px;
}

/* ── APERCU SOINS ── */
.apercu-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; max-width: 1100px; margin: 0 auto;
}

.apercu-card {
  background: var(--cream);
  padding: 32px 26px;
  border: 1px solid var(--border-d);
  text-align: center;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}

.apercu-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.apercu-card:hover { background: var(--text-light); }
.apercu-card:hover::after { transform: scaleX(1); }

.apercu-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--gold-light); margin-bottom: 8px;
}

.apercu-desc { font-size: 0.85rem; color: var(--text-dark); font-weight: 300; line-height: 1.6; }

@media(max-width:1024px) {
  .stats-band { grid-template-columns:repeat(2,1fr); padding:20px 28px; }
  .stat-item:nth-child(2) { border-right:none; }
  .besoins-grid { grid-template-columns:1fr 1fr; }
  .apercu-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:640px) {
  .hero-h1 { font-size:3.2rem; }
  .besoins-grid { grid-template-columns:1fr; }
  .apercu-grid { grid-template-columns:1fr 1fr; }
  .stats-band { grid-template-columns:repeat(2,1fr); }
}
