/* =========================================================
   Transfert Child — front.css (HOME / CONTENT)
   ✅ Garde EXACTEMENT le design home
   ✅ Sans doublons (tokens/reset/bg/containers/typo overrides -> styles.css)
   ✅ Header/Footer -> header.css / footer.css
   ✅ Contient : HERO + modules + range + story + services/tarifs + masonry + CTA + scrollToTop
   ✅ Contient : UI calculateur (select calcZone) (car visible sur HOME)
   ========================================================= */

/* ✅ Anti scroll horizontal (PRO)
   - Empêche tout débord X (blobs / boutons / images)
   - "clip" > meilleur que hidden (si supporté)
*/
html, body{
  max-width: 100%;
  overflow-x: hidden;
}
@supports not (overflow: clip){
  html, body{ overflow-x: hidden; }
}

/* -------------------------
   1) Typography helpers (HOME)
   (les couleurs H1/H2/H3 sont dans styles.css)
-------------------------- */
.kicker{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin: 0 0 10px 0;
}

h1,h2,h3{ margin: 0 0 12px 0; }

h1{
  font-size: clamp(34px, 3.6vw, 64px);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.03;
}
h2{
  font-size: clamp(26px, 2.4vw, 44px);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
h3{
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.lead{
  color: var(--muted);
  font-size: 18px;
  line-height: var(--lh);
  max-width: 62ch;
  margin: 14px 0 0 0;
}
.muted{
  color: rgb(227, 226, 210);
  line-height: var(--lh);
}

/* -------------------------
   2) Buttons (HOME)
-------------------------- */
.actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .15s ease, filter .15s ease, background .15s ease;
  user-select:none;
  min-height: 44px;
}
.btn:hover{ transform: translateY(-1px); }
.btn i{ font-size: 1.05em; }

.btn--primary{
  color: #071018;
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(0,209,255,1));
  box-shadow: 0 18px 45px rgba(124,92,255,.20);
}
.btn--primary:hover{ filter: brightness(1.05); }

.btn--ghost{
  color: rgba(255,255,255,.92);
  background: linear-gradient(-135deg, rgba(245, 91, 39, 0.6), rgba(220, 68, 19, 0.8));
}
.btn--ghost:hover{ filter: brightness(1.05); }

/* -------------------------
   3) Layout modules (HOME)
-------------------------- */
.module{
  position: relative;
  padding: 76px 0;
  overflow-x: clip; /* ✅ coupe uniquement le débord horizontal des blobs */
}
@supports not (overflow: clip){
  .module{ overflow-x: hidden; }
}

.module--hero{ padding: 0px 0 0 0; }

@media (max-width: 760px){
  .module{ padding: 58px 0; }
  .module--hero{ padding-top: 74px; }
}

/* FX blobs */
.moduleFX{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.9;
  overflow: hidden; /* ✅ sécurité : aucun enfant ne peut élargir la page */
}

.mx{
  position:absolute;
  border-radius:999px;
  filter: blur(22px);
  opacity:.55;
}

.m1{
  width: 520px;
  height: 520px;
  left: -120px;
  top: -120px;
  background: rgba(124,92,255,.55);
}

/* ✅ garde l’effet “débord” visuel mais sans scroll horizontal */
.m2{
  width: 460px;
  height: 460px;
  right: -160px; /* on garde */
  top: 40px;
  background: rgba(0,209,255,.40);
}

.m3{
  width: 520px;
  height: 520px;
  left: 35%;
  bottom: -240px;
  background: rgba(46,233,166,.30);
}

.m4{
  width: 260px;
  height: 260px;
  right: 16%;
  bottom: 10%;
  background: rgba(255,255,255,.10);
}

/* Two columns (robuste) */
.two{
  display:grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 34px;
  align-items:center;
}
.two--swap > :first-child { order: 2; }
.two--swap > :last-child { order: 1; }

@media (max-width: 1100px){
  .two{ grid-template-columns: 1fr; }
  .two--swap > :first-child { order: 1; }
  .two--swap > :last-child { order: 2; }
}

/* -------------------------
   4) HERO (HOME)
-------------------------- */
.hero__grid{
  display:grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr);
  gap: 34px;
  align-items:center;
  padding-bottom: 96px;
  padding-top: 80px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
}

.highlights{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.hl{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: 13px;
}

.trust{
  display:grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 12px;
  margin-top: 18px;
}
.trust__card{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
  min-width: 0;
}
.trust__card i{
  font-size: 18px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(124,92,255,.30), rgba(0,209,255,.18));
  border: 1px solid rgba(255,255,255,.10);
  flex: 0 0 auto;
}
.trust__card strong{ display:block; font-weight: 950; }
.trust__card span{ display:block; color: var(--muted2); font-size: 13px; margin-top: 2px; }

.hero__media .mediaFrame{
  position: relative;
  border-radius: var(--r26);
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero__media img{
  width:100%;
  height: 520px;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.01) contrast(1.12);
}
.hero__media .mediaFrame::after{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 20% 25%, rgba(124, 92, 255, 0.24), transparent 60%),
    radial-gradient(500px 260px at 80% 15%, rgba(0, 209, 255, 0.3), transparent 60%),
    linear-gradient(180deg, rgba(7, 10, 18, 0), rgba(7, 10, 18, 0.1));
  pointer-events:none;
}

.chip{
  position:absolute;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(10,16,32,.62);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  font-weight: 900;
  font-size: 13px;
  color: rgba(255,255,255,.90);
  z-index: 2;
}
.c1{ left: 14px; bottom: 14px; }
.c2{ right: 14px; bottom: 14px; }
.c3{ left: 14px; top: 14px; }

@media (max-width: 1100px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__media img{ height: 420px; }
  .trust{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .hero__media img{ height: 340px; }
}

/* -------------------------
   5) RANGE / Feature cards
-------------------------- */
.module--range{
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(135deg, rgba(28, 26, 62, 0.15), rgba(15, 17, 36, 0.41), rgba(46, 233, 166, 0.18));
}

.metaLine{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 16px;
  color: rgba(255,255,255,.78);
  font-weight: 900;
  font-size: 13px;
}
.metaLine span{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.featureGrid{
  display:grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 12px;
  margin-top: 18px;
}
.fCard{
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  min-width: 0;
}
.fCard--imgRight{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.fCard__left{ display:flex; align-items:center; gap: 12px; min-width: 0; }
.fCard__left > i{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(46,233,166,.18), rgba(0,209,255,.14));
  border: 1px solid rgba(255,255,255,.10);
  font-size: 18px;
  flex: 0 0 auto;
}
.fCard__text{
  display:flex;
  flex-direction:column;
  gap: 2px;
  min-width: 0;
}
.fCard__text strong{
  font-weight: 900;
  line-height: 1.1;
}
.fCard__text span{
  color: rgba(255,255,255,.65);
  font-size: 13px;
  line-height: 1.25;
}

.fCard__media{
  flex: 0 0 96px;
  height: 72px;
  border-radius: 16px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 45px rgba(0,0,0,.28), 0 0 0 1px rgba(0,209,255,.12);
  transform: translateZ(0);
}
.fCard__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.05);
}
.fCard--imgRight:hover .fCard__media{
  box-shadow: 0 22px 55px rgba(0,0,0,.33), 0 0 0 1px rgba(0,209,255,.18);
  transform: translateY(-1px);
  transition: .18s ease;
}

@media (max-width: 760px){
  .featureGrid{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .fCard--imgRight{ flex-direction: column; align-items:flex-start; }
  .fCard__media{ width:100%; flex: 0 0 auto; height: 120px; }
}

/* Photos blocks */
.photoHero, .photoTall{
  border-radius: var(--r26);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.04);
}

.photoHero{
  width: 100%;
  aspect-ratio: 16 / 9;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(900px 260px at 20% 0%, rgba(0,209,255,.10), transparent 60%),
    radial-gradient(700px 240px at 90% 10%, rgba(124,92,255,.10), transparent 60%),
    rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 26px 70px rgba(0,0,0,.35);
}
.photoHero img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.photoTall img{
  width:100%;
  height: 560px;
  object-fit: cover;
}

@media (max-width: 1100px){
  .photoTall img{ height: 420px; }
  .photoHero img{ height: auto; }
}
@media (max-width: 560px){
  .photoHero{ min-height: 200px; border-radius: 18px; padding: 10px; }
  .photoHero img{ width:100%; height:auto; max-height: 260px; }
}

/* Range: columns clean */
.module--range .two{
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(18px, 3vw, 44px);
}
@media (max-width: 991px){
  .module--range .two{ grid-template-columns: 1fr; }
}

/* -------------------------
   6) STORY
-------------------------- */
.module--story{
  background: linear-gradient(-135deg, rgba(28, 26, 62, 0.15), rgba(15, 17, 36, 0.41), rgba(46, 233, 166, 0.18));
}

.bullets{
  display:grid;
  gap: 10px;
  margin-top: 14px;
  color: rgba(255,255,255,.84);
  font-weight: 800;
}
.bullets > div{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.bullets i{ margin-top: 2px; color: rgba(46,233,166,.95); }

.quoteCard{
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(124,92,255,.16), rgba(0,209,255,.10));
  border: 1px solid rgba(255,255,255,.10);
}
.quoteCard i{ font-size: 18px; opacity: .9; }
.quoteCard p{ margin: 10px 0 0 0; color: rgba(255,255,255,.84); line-height: var(--lh); }
.quoteCard span{ display:block; margin-top: 10px; color: rgba(255,255,255,.70); font-weight: 900; font-size: 13px; }

/* Separators */
.section-separator{
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
}
.sectionDividerGlass{
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,209,255,.14), rgba(124,92,255,.10), transparent);
}

/* -------------------------
   7) SERVICES + TARIFS (HOME)
-------------------------- */
.module--services{
  position: relative;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: clamp(64px, 8vw, 120px) 0;
  background:
    radial-gradient(1000px 320px at 20% 0%, rgb(15, 52, 50), transparent 60%),
    radial-gradient(900px 360px at 90% 10%, rgba(124, 92, 255, 0.22), #203a2229 65%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 150, 150, 0));
}

.headRow{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 18px;
  min-width: 0;
}
@media (max-width: 760px){
  .headRow{ align-items:flex-start; flex-direction:column; }
}

.link{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-weight: 950;
  color: rgba(255,255,255,.88);
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  min-height: 44px;
}
.link:hover{ background: rgba(255,255,255,.07); }

/* Layout 60/40 + stretch */
.servicesLayout{
  display:grid;
  grid-template-columns: minmax(0,1.45fr) minmax(0,1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 991px){
  .servicesLayout{ grid-template-columns: 1fr; align-items: initial; }
}

.serviceRows{
  display:flex;
  flex-direction:column;
  gap: 14px;
  min-height: 100%;
}

.sRow{
  display:grid;
  grid-template-columns: minmax(0,280px) minmax(0,1fr) 60px;
  align-items:stretch;
  gap: 16px;
  padding: 14px;
  border-radius: var(--r26);
  background: rgba(10, 53, 70, 0.27);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  min-width: 0;
}
.sRow:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}

/* Image stable */
.sRow__img{
  position: relative;
  border-radius: 20px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  aspect-ratio: 16 / 9;
  min-width: 0;
}
.sRow__img img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.05);
}
.sRow__img.is-contain img{
  object-fit: contain;
  transform: none;
  padding: 10px;
  background: rgba(0,0,0,.18);
}

.tag{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(7,10,18,.35);
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgb(204, 203, 189);
}

.sRow__txt{ min-width: 0; }
.sRow__txt h3{ margin-top: 10px; }
.sRow__txt p{ margin: 8px 0 0 0; color: rgba(255,255,255,.74); line-height: 1.55; }

.sRow__meta{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 12px;
  color: rgba(255,255,255,.72);
  font-weight: 900;
  font-size: 13px;
}
.sRow__meta span{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.sRow__go{
  display:grid;
  place-items:center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(46,233,166,.14), rgba(0,209,255,.10));
  border: 1px solid rgba(255,255,255,.10);
}
.sRow__go i{ font-size: 18px; opacity: .95; }

/* Tarifs Right */
.tarifsRight{ min-height: 100%; height: 100%; display:flex; }
.tarifBox{
  flex: 1;
  width:100%;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,18,28,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  padding: 18px;
  display:flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.tarifPill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}

.tarifBadges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}
.tBadge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,.86);
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.08);
}

.tarifBox__grid{
  display:grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 12px;
}
.tField{ display:grid; gap: 6px; min-width: 0; }
.tField span{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight: 900;
  color: rgba(255,255,255,.92);
  margin-bottom: 6px;
  font-size: 13px;
}

.tField select,
.tField input[type="time"],
.tField input[type="number"],
.tField input[type="text"]{
  width:100%;
  border-radius: 14px;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  outline: none;
  min-height: 44px;
}

.tField select:focus,
.tField input:focus{
  border-color: rgba(0,209,255,.45);
  box-shadow: 0 0 0 4px rgba(0,209,255,.12);
}

.tHint{
  display:block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

.tInline2{
  grid-column: 1 / -1;
  display:grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 12px;
}

.tCheck{
  grid-column: 1 / -1;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-size: 14px;
}
.tCheck input{ width: 18px; height: 18px; accent-color: #00d1ff; }

.tRecap{
  grid-column: 1 / -1;
  width:100%;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  padding: 12px;
}

.tRecap__row{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  color: rgba(255,255,255,.90);
  font-size: 13px;
}
.tRecap__total{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 18px;
  color: rgba(255,255,255,.96);
  font-weight: 950;
}

.tarifBox__actions{
  margin-top: auto;
  display:grid;
  gap: 10px;
}
.tBtn{ width:100%; justify-content:center; }

/* Responsive services */
@media (max-width: 991px){
  .tarifsRight, .tarifBox{ height: auto; min-height: 0; }
  .tarifBox__grid{ grid-template-columns: 1fr; }
  .tInline2{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .sRow{ grid-template-columns: 1fr; }
  .sRow__go{ display:none; }
  .sRow__img{ aspect-ratio: 16/10; }
}

/* -------------------------
   8) FLEET masonry
-------------------------- */
.module--fleet{ padding-top: 76px; }

.masonry{
  display:grid;
  grid-template-columns: minmax(0,1.4fr) minmax(0,1fr) minmax(0,1fr);
  gap: 14px;
  margin-top: 14px;
}
.mItem{
  position: relative;
  border-radius: var(--r26);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
  min-height: 260px;
  margin: 0;
}
.mItem--big{ min-height: 420px; }
.mItem img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.06);
}
.mItem::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(7,10,18,0), rgba(7,10,18,.62));
}
.mItem figcaption{
  position:absolute;
  left: 14px;
  bottom: 14px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(10,16,32,.60);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  font-weight: 950;
  color: rgba(255,255,255,.90);
  z-index: 1;
}

@media (max-width: 1100px){
  .masonry{ grid-template-columns: 1fr 1fr; }
  .mItem--big{ grid-column: 1 / -1; }
}
@media (max-width: 760px){
  .masonry{ grid-template-columns: 1fr; }
}

/* -------------------------
   9) CTA Bar
-------------------------- */
.module--cta{ padding: 56px 0 86px; }

.ctaBar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 22px;
  border-radius: var(--r28);
  background: linear-gradient(135deg, rgba(124,92,255,.18), rgba(0,209,255,.12), rgba(46,233,166,.10));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
@media (max-width: 760px){
  .ctaBar{ flex-direction:column; align-items:flex-start; }
}

/* -------------------------
   10) ScrollToTop (global OK)
-------------------------- */
.scrollToTop{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
  color: rgba(255,255,255,.90);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}
.scrollToTop:hover{ background: rgba(255,255,255,.10); }

/* =========================================================
   11) CALC UI — Select #calcZone (HOME)
   (Nettoyé: une seule version, sans double fix)
========================================================= */
.calc-select-wrap{
  position: relative;
  width: 100%;
}

/* SELECT */
#calcZone{
  width: 100%;
  height: 48px;
  min-height: 48px;
  line-height: 48px;
  display: block;
  box-sizing: border-box;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 0 56px 0 18px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: center;
  text-rendering: geometricPrecision;

  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05)),
    radial-gradient(circle at top left, rgba(0,200,255,0.25), transparent 60%);
  backdrop-filter: blur(14px);

  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.25);

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 10px 30px rgba(0,0,0,0.25);

  cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease, border-color .25s ease;
}

/* Hover */
#calcZone:hover{
  border-color: rgba(0,200,255,0.8);
  box-shadow:
    0 0 0 1px rgba(0,200,255,0.6),
    0 12px 40px rgba(0,200,255,0.35);
  transform: translateY(-1px);
}

/* Focus */
#calcZone:focus{
  outline: none;
  border-color: #00d4ff;
  box-shadow:
    0 0 0 2px rgba(0,212,255,0.35),
    0 18px 60px rgba(0,212,255,0.45);
}

/* FLÈCHE */
.calc-select-wrap::after{
  content: "▾";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #00d4ff;
  pointer-events: none;
  transition: transform 0.3s ease;
}

/* Animation flèche au focus (progressive enhancement) */
@supports selector(:has(*)){
  .calc-select-wrap:has(select:focus)::after{
    transform: translateY(-50%) rotate(180deg);
  }
}

/* OPTIONS */
#calcZone option{
  background: #0c1620;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.4;
}

/* Firefox selected */
#calcZone option:checked{
  background: linear-gradient(135deg, #00c8ff, #0077ff);
  color: #fff;
}

@media (max-width: 768px){
  #calcZone{
    height: 46px;
    min-height: 46px;
    line-height: 46px;
    font-size: 15px;
    border-radius: 12px;
    padding-left: 16px;
    padding-right: 52px;
  }
}
#calcNight:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}