/* accueil.css — Sections propres à l'accueil : hero (aurora + bande) et témoignages. */

/* ============================ HERO ============================ */
.hero { position: relative; padding: clamp(38px, 5vw, 66px) 0 clamp(50px, 6vw, 84px); overflow: hidden; }
.aura { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.aura::before, .aura::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55;
}
.aura::before { width: 620px; height: 620px; top: -220px; left: -120px; background: radial-gradient(circle, var(--rose), transparent 62%); }
.aura::after  { width: 640px; height: 640px; top: -160px; right: -160px; background: radial-gradient(circle, var(--teal), transparent 62%); }
.grille-tech {
  position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(var(--ligne) 1px, transparent 1px), linear-gradient(90deg, var(--ligne) 1px, transparent 1px);
  background-size: 46px 46px; opacity: .4;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 78%);
}
.hero-haut { text-align: center; max-width: 940px; margin: 0 auto; }
.hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(2.7rem, 1.1rem + 6.4vw, 5.6rem); letter-spacing: -.02em; margin: 20px 0 0; }
.hero-sous { color: var(--encre-doux); font-size: clamp(1rem, .95rem + .4vw, 1.18rem); max-width: 60ch; margin: 22px auto 0; }
.hero-actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

.hero-bande { position: relative; margin-top: clamp(38px, 5vw, 62px); }
.bande-photo { position: relative; border-radius: var(--rayon-xl); overflow: hidden; box-shadow: var(--ombre); }
.bande-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 7.4; }
.bande-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(30,24,32,.34)); }
.bande-liseret { position: absolute; inset: -1.5px; border-radius: calc(var(--rayon-xl) + 1.5px); padding: 1.5px; background: var(--deg-135); z-index: -1; }
.puces-verre { position: absolute; left: 50%; bottom: -26px; transform: translateX(-50%); display: flex; gap: 14px; z-index: 3; }
.puce {
  background: var(--verre); backdrop-filter: blur(14px) saturate(1.5); -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border: 1px solid var(--verre-bord); border-radius: 18px; padding: 13px 20px; text-align: center; box-shadow: var(--ombre-sm); min-width: 128px;
}
.puce .n { font-family: var(--display); font-weight: 800; font-size: 1.55rem; letter-spacing: -.03em; }
.puce .l { font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--encre-doux); margin-top: 3px; }
@media (max-width: 620px) {
  .bande-photo img { aspect-ratio: 4 / 4.4; }
  .puces-verre { position: static; transform: none; margin-top: 18px; flex-wrap: wrap; justify-content: center; }
  .puce { min-width: 0; flex: 1 1 40%; }
}

/* Entrée hero */
.anim { opacity: 0; transform: translateY(22px); }
.pret .anim { opacity: 1; transform: none; transition: opacity .8s, transform .8s; }
.pret .anim.d1 { transition-delay: .04s; } .pret .anim.d2 { transition-delay: .14s; }
.pret .anim.d3 { transition-delay: .24s; } .pret .anim.d4 { transition-delay: .34s; } .pret .anim.d5 { transition-delay: .46s; }

/* ---- TÉMOIGNAGES ---- */
.temoins { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.temoin { background: #fff; border: 1px solid var(--ligne); border-radius: var(--rayon-lg); padding: 32px 26px 26px; transition: transform var(--t), box-shadow var(--t); }
.temoin:hover { transform: translateY(-6px); box-shadow: var(--ombre); }
.temoin .g { font-family: var(--display); font-weight: 800; font-size: 3.6rem; line-height: .5; color: var(--teal); height: 26px; }
.temoin p { font-size: 1.02rem; line-height: 1.5; margin: 6px 0 22px; }
.temoin .aut { display: flex; align-items: center; gap: 12px; }
.temoin .mono { width: 44px; height: 44px; border-radius: 13px; background: var(--deg-135); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: .9rem; flex: none; }
.temoin .nom { font-weight: 600; font-size: .94rem; }
.temoin .role { font-family: var(--mono); font-size: .72rem; color: var(--encre-doux); }
.temoin.vedette { background: var(--encre); color: var(--creme); border-color: transparent; }
.temoin.vedette .g { color: var(--rose); }
.temoin.vedette .role { color: rgba(251,246,241,.6); }
@media (max-width: 900px) { .temoins { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
