/* ================= HOME HERO ================= */
.hero{
  position:relative;
  height:85vh;
  min-height:560px;
  background:url("../images/fond.jpg") center/cover no-repeat;
  overflow:hidden;
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}
.hero__content{
  position:relative;
  height:100%;
  display:flex;
  align-items:center;
}
.hero__copy{
  width:min(100%, 980px);
  margin:0 auto;
  text-align:center;
}

/* Blanc uniquement dans le hero */
.hero, .hero *{color:#fff}

.hero__title{
  font-size:clamp(36px,6vw,64px);
  font-weight:900;
  letter-spacing:.08em;
  margin:0 0 12px;
  text-shadow:0 18px 40px rgba(0,0,0,.6);
  white-space:nowrap;
}
@media (max-width:560px){ .hero__title{white-space:normal;} }

.hero__kicker{
  font-size:14px;
  letter-spacing:.18em;
  text-transform:uppercase;
  opacity:.9;
  margin:0 0 12px;
  white-space:nowrap;
}

.hero__lead{
  font-size:18px;
  opacity:.95;
  margin:0 auto 26px;
  max-width:72ch;
  white-space:nowrap;
}
@media (max-width:900px){
  .hero__kicker,.hero__lead{white-space:normal;}
}

.hero__cta{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

/* ✅ bouton blanc → texte foncé lisible */
.btn--primary,
.btn--primary-dark{
  color:#11166b !important;
}

.hero__scroll{
  position:absolute;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.6);
  color:#fff;
  padding:10px 18px;
  border-radius:999px;
  cursor:pointer;
  font-size:12px;
  letter-spacing:.2em;
  text-transform:uppercase;
}
.hero__scroll:hover{background:rgba(255,255,255,.22)}


/* ================= ABOUT (FUTURISTIC) ================= */

.section#about{
  position:relative;
  background:#060813;
  color:rgba(255,255,255,.92);
  overflow:hidden;
}

.section#about::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    radial-gradient(800px 420px at 18% 20%, rgba(90,220,255,.18), transparent 60%),
    radial-gradient(800px 420px at 82% 30%, rgba(170,120,255,.18), transparent 60%),
    radial-gradient(900px 520px at 50% 90%, rgba(40,120,255,.12), transparent 65%),
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.35));
}

.section#about > .container{
  position:relative;
  z-index:1;
}

/* Titre blanc */
.section-title{
  color:#fff;
}
.section-underline{
  background:rgba(120,210,255,.8);
  box-shadow:0 0 18px rgba(120,210,255,.4);
}

/* ================= ABOUT CONTENT ================= */

.about{
  display:grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap:44px;
  align-items:start;
  margin-top:26px;
}

.about__photo img{
  width:100%;
  border-radius:18px;
  box-shadow:0 18px 50px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.12);
}

.about__headline{
  margin:0 0 14px;
  font-size:20px;
  line-height:1.45;
  color:#fff;
}

.about__lead{
  margin:0 0 18px;
  color:rgba(255,255,255,.75);
  font-size:16px;
}

.about h3{
  margin:18px 0 10px;
  color:rgba(120,210,255,.95);
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:13px;
}

.about ul{
  padding-left:18px;
}
.about li{
  margin:8px 0;
  color:rgba(255,255,255,.75);
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:8px;
}
.chips span{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-weight:800;
  font-size:13px;
  backdrop-filter: blur(10px);
}

/* Closing text + Resume button */
.about__closing{
  margin:30px auto 0;
  max-width:78ch;
  text-align:center;
  color:rgba(255,255,255,.85);
  font-weight:650;
}

.about__closing-actions{
  margin-top:14px;
  text-align:center;
}


/* ================= CTA BAND ================= */

.cta-band{
  background:linear-gradient(180deg, #11166b 0%, #0d1258 100%);
  color:#fff;
  padding:42px 0;
}
.cta-band__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.cta-band__text h3{
  margin:0 0 6px;
  font-size:22px;
  letter-spacing:.02em;
}
.cta-band__text p{margin:0;opacity:.9}
.cta-band__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}


/* ================= FOOTER ================= */

.footer{
  background:#0b0f4f;
  color:#e9ecff;
}
.footer__grid{
  padding:44px 0;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:34px;
}
.footer__brand{
  font-weight:900;
  font-size:18px;
  margin-bottom:10px;
  color:#fff;
}
.footer__muted{
  margin:6px 0 0;
  opacity:.85;
  color:#d7dcff;
}
.footer__title{
  font-weight:900;
  color:#fff;
  margin-bottom:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}
.footer__links{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.footer__links a{
  color:#d7dcff;
  text-decoration:none;
  opacity:.92;
}
.footer__links a:hover{opacity:1;text-decoration:underline}

.footer__contact{
  display:flex;
  align-items:center;
  gap:10px;
  color:#d7dcff;
  text-decoration:none;
  margin-bottom:12px;
}
.footer__contact:hover{color:#fff}

.ico{width:18px;height:18px;display:inline-flex}
.ico svg{width:18px;height:18px;color:currentColor}

.footer__bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding:14px 0;
}
.footer__bottom-inner{
  text-align:center;
  font-size:13px;
  color:#d7dcff;
  opacity:.9;
}


/* ================= HOME RESPONSIVE ================= */

@media(max-width:980px){
  .about{grid-template-columns:1fr;gap:22px}
  .about__photo{max-width:420px;margin:0 auto}
  .cta-band__inner{flex-direction:column;text-align:center}
  .cta-band__actions{justify-content:center}
  .footer__grid{grid-template-columns:1fr}
}
@media(max-width:768px){
  .hero{height:75vh}
  .hero__lead{font-size:16px}
  .hero__cta{flex-direction:column;align-items:center}
}