/* ========================
   HOME — styles spécifiques
   ======================== */

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  padding: 96px 0 0;
  overflow: hidden;
  position: relative;
}

.hero-bg-shape {
  position: absolute;
  top: -80px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,172,176,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 64px;
  align-items: end;
}

.hero-copy {
  padding-bottom: 72px;
  color: var(--white);
}

.hero-copy h1 {
  color: var(--white);
  margin-bottom: 22px;
}

.hero-copy h1 span {
  color: var(--teal);
}

.hero-copy .lede {
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.hero-trust-badge .star { color: var(--yellow); }

.hero-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.25));
}

/* Carte flottante sur le héro */
.hero-float-card {
  position: absolute;
  bottom: 32px;
  left: -20px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.hero-float-card .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ---- BANDE CHIFFRES ---- */
.stats-band {
  background: var(--teal);
  padding: 44px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
}

/* ---- POURQUOI / PILIERS ---- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1.5px solid rgba(6,172,176,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--teal);
  border-radius: 2px 0 0 2px;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(18,15,38,0.1);
  border-color: rgba(6,172,176,0.35);
}

.pillar-icon {
  width: 56px; height: 56px;
  margin-bottom: 20px;
}

.pillar-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.pillar-card h3 { margin-bottom: 10px; }

.pillar-card p { font-size: 0.94rem; }

/* ---- FRISE AVANT/APRÈS (signature) ---- */
.transform-section {
  background: var(--navy);
  padding: 96px 0;
  overflow: hidden;
  position: relative;
}

.transform-section .section-head h2 { color: var(--white); }
.transform-section .eyebrow { color: var(--mint); }
.transform-section .section-head p { color: rgba(255,255,255,0.6); max-width: 52ch; }

.transforms-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.transform-item {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.t-before, .t-after {
  padding: 28px 32px;
}

.t-before {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
}

.t-after {
  background: rgba(6,172,176,0.14);
  border: 1px solid rgba(6,172,176,0.2);
  border-left: none;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.t-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.t-before .t-label { color: rgba(255,255,255,0.4); }
.t-after .t-label { color: var(--teal); }

.t-before p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.t-after p { color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 500; }

.t-arrow {
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

/* ---- TEMOIGNAGES ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1.5px solid rgba(150,207,190,0.3);
  box-shadow: 0 4px 20px rgba(18,15,38,0.05);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 1rem;
}

.testimonial-quote {
  font-size: 0.96rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 0.92rem; }
.author-role { font-size: 0.82rem; color: #7A7590; }

/* ---- OUTILS PARTENAIRES ---- */
.tools-section { background: var(--off-white); padding: 72px 0; }

.tools-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
  opacity: 0.7;
}

.tool-badge {
  background: var(--white);
  border-radius: 10px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(18,15,38,0.08);
  letter-spacing: 0.02em;
}

/* ---- CTA ---- */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, #059499 100%);
  border-radius: 24px;
  padding: 72px 56px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 50ch; margin: 0 auto 32px; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .hero-copy { padding-bottom: 56px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .transform-item {
    grid-template-columns: 1fr;
  }
  .t-before { border-radius: var(--radius) var(--radius) 0 0; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: none; }
  .t-after { border-radius: 0 0 var(--radius) var(--radius); border-left: 1px solid rgba(6,172,176,0.2); }
  .t-arrow { display: none; }

  .cta-band { padding: 48px 28px; margin: 0 16px; }
  .section { padding: 64px 0; }
}
