/* ═══════════════════════════════════════════════════════════════════
   HASSAN LOCATION — MAIN STYLESHEET
   Design system : Froid · Volcanique · Premium
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. VARIABLES ──────────────────────────────────────────────── */
:root {
  --bg:           #040c1a;
  --bg-card:      rgba(6,18,44,0.72);
  --cold:         #00c6f0;
  --cold-dk:      #0089bb;
  --cold-lt:      #7dd8f5;
  --cold-glow:    rgba(0,198,240,0.18);
  --cold-border:  rgba(0,198,240,0.2);
  --orange:       #ff6820;
  --white:        #ffffff;
  --muted:        rgba(185,225,255,0.65);
  --text:         rgba(220,240,255,0.92);
  --border:       rgba(0,198,240,0.15);
  --success:      #22d366;
  --r-lg:         18px;
  --r-sm:         10px;
  --r-pill:       999px;
  --font-head:    'Space Grotesk', Arial, sans-serif;
  --font-body:    'Inter', Arial, sans-serif;
  --hdr-h:        68px;
}

/* ── 2. RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--hdr-h);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ── 3. CANVAS PARTICULES ──────────────────────────────────────── */
#cv {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 3; opacity: 0.55;
}

/* ── 4. HEADER ──────────────────────────────────────────────────── */
.hdr {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--hdr-h); z-index: 100;
  background: rgba(4,12,26,0.6);
  border-bottom: 1px solid rgba(0,198,240,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .3s, border-color .3s;
}
.hdr.scrolled {
  background: rgba(4,10,22,0.92);
  border-color: rgba(0,198,240,0.15);
}
.hdr__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 22px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.hdr__brand {
  font-family: var(--font-head); font-weight: 900; font-size: 1.12rem;
  background: linear-gradient(135deg,#fff 0%,var(--cold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  white-space: nowrap;
}
.hdr__brand span { -webkit-text-fill-color: var(--cold); color: var(--cold); }
.hdr__actions { display: flex; align-items: center; gap: 12px; }
.hdr__phone {
  display: flex; align-items: center; gap: 7px;
  font-size: .9rem; font-weight: 600; color: var(--muted);
  transition: color .2s;
}
.hdr__phone:hover { color: var(--cold); }

/* ── 5. BOUTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700;
  border-radius: var(--r-pill); border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  white-space: nowrap; line-height: 1; text-decoration: none;
}
.btn:hover:not(:disabled) { transform: translateY(-2px); }
.btn:disabled { opacity: .35; cursor: not-allowed; transform: none !important; }
.btn-cold {
  background: linear-gradient(135deg, var(--cold), var(--cold-dk));
  color: #030c1a; font-size: .95rem; padding: 14px 26px;
  box-shadow: 0 0 22px rgba(0,198,240,0.3);
}
.btn-cold:hover:not(:disabled) { box-shadow: 0 0 36px rgba(0,198,240,0.5); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  font-size: .95rem; padding: 13px 24px;
}
.btn-ghost:hover:not(:disabled) { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.5); }
.btn-wa {
  background: linear-gradient(135deg,#25d366,#1a9e4a);
  color: #fff; font-size: 1rem; padding: 14px 24px;
  box-shadow: 0 0 22px rgba(37,211,102,0.3);
}
.btn-wa:hover:not(:disabled) { box-shadow: 0 0 40px rgba(37,211,102,0.55); }
.btn-email {
  background: linear-gradient(135deg,#4a90e2,#2563eb);
  color: #fff; font-size: 1rem; padding: 14px 24px;
}
.btn-pdf {
  background: rgba(0,198,240,0.12);
  border: 1px solid var(--cold-border);
  color: var(--cold); font-size: 1rem; padding: 13px 24px;
}
.btn-outline-white {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--muted); font-size: .9rem; padding: 11px 20px;
}
.btn-sm { font-size: .82rem; padding: 9px 18px; }
.btn-lg { font-size: 1.05rem; padding: 17px 32px; }
.btn-full { width: 100%; }

/* ── 6. HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; z-index: 1;
}

/* === BACKGROUND PHOTO (replaces SVG scene) === */
.hero__bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero__bg-photo {
  position: absolute; inset: 0;
  background-image: url('../assets/images/hero.webp');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  transform: scale(1.04); /* slight overscan for smooth edges */
}
/* Layer 1 : dégradé gauche→droite (lisibilité du texte) */
.hero__bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,
      rgba(4,12,26,.94) 0%,
      rgba(4,12,26,.72) 38%,
      rgba(4,12,26,.22) 65%,
      rgba(4,12,26,.30) 100%),
    linear-gradient(to bottom,
      rgba(4,12,26,.28) 0%,
      rgba(4,12,26,0)   28%,
      rgba(4,12,26,0)   62%,
      rgba(4,12,26,.98) 100%);
}
/* Layer 2 : teinte froide bleue (dominante premium) */
.hero__bg-cold {
  position: absolute; inset: 0;
  background: rgba(0,15,55,.24);
  mix-blend-mode: multiply;
}
/* Layer 3 : vignettage discret */
.hero__bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 54% 44%,
    transparent 22%,
    rgba(4,12,26,.42) 70%,
    rgba(4,12,26,.80) 100%);
}
/* Layer 4 : fondu haut (header) */
.hero__bg-top {
  position: absolute; top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(4,12,26,.52) 0%, transparent 100%);
}
/* Layer 5 : fusion douce bas → section suivante */
.hero__bg-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 280px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}

/* Hero layout */
.hero__inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 90px 22px 70px;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 40px; align-items: center; width: 100%;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,198,240,0.1); border: 1px solid var(--cold-border);
  color: var(--cold-lt);
  padding: 5px 15px; border-radius: var(--r-pill);
  font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero__badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cold); box-shadow: 0 0 6px var(--cold);
  animation: dotPulse 2s ease infinite;
}
@keyframes dotPulse { 0%,100%{opacity:1;}50%{opacity:.4;} }

.hero__title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2.2rem,5.2vw,3.8rem);
  line-height: 1.06; letter-spacing: -.02em;
  margin-bottom: 18px; color: var(--white);
}
.hero__title em {
  font-style: normal; display: block;
  background: linear-gradient(120deg,var(--cold-lt),var(--cold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__title .hot {
  background: linear-gradient(120deg,#ffb340,var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__sub {
  font-size: 1.08rem; color: var(--muted);
  margin-bottom: 30px; max-width: 490px; line-height: 1.65;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 38px; }
.hero__kpis { display: flex; gap: 30px; flex-wrap: wrap; }
.hero__kpi strong {
  display: block; font-family: var(--font-head); font-weight: 900;
  font-size: 1.7rem; line-height: 1;
  background: linear-gradient(135deg,#fff,var(--cold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__kpi span { display: block; font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-top: 3px; }

/* === LOGO (remplace le camion SVG animé) === */
.hero__visual {
  display: flex; align-items: center; justify-content: center; position: relative;
}
.hero__logo-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: floatLogo 4.2s ease-in-out infinite;
}
@keyframes floatLogo {
  0%,100% { transform: translateY(0)    perspective(1100px) rotateY(-7deg) rotateX(3deg); }
  50%      { transform: translateY(-15px) perspective(1100px) rotateY(-7deg) rotateX(3deg); }
}
/* Halo glow */
.hero__logo-glow {
  position: absolute; width: 115%; height: 115%; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(0,198,240,.55) 0%,
    rgba(0,80,200,.25)  40%,
    transparent         70%);
  filter: blur(30px);
  animation: logoPulse 3.5s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
@keyframes logoPulse { 0%,100%{opacity:.6;transform:scale(1);}50%{opacity:1;transform:scale(1.12);} }
/* Ombre au sol */
.hero__logo-shadow {
  position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
  width: 65%; height: 32px;
  background: rgba(0,198,240,.22); border-radius: 50%; filter: blur(14px);
}
/* Conteneur circular (détourage) */
.hero__logo-circle {
  width: 320px; height: 320px; border-radius: 50%; overflow: hidden;
  position: relative; z-index: 1;
  box-shadow:
    0 26px 70px rgba(0,198,240,.38),
    0 10px 30px rgba(0,0,0,.55),
    0  0   0 2px rgba(0,198,240,.22),
    inset 0 2px 4px rgba(255,255,255,.12);
  transition: box-shadow .4s ease;
}
.hero__logo-circle:hover {
  box-shadow:
    0 32px 90px rgba(0,198,240,.5),
    0 12px 36px rgba(0,0,0,.5),
    0  0   0 3px rgba(0,198,240,.4);
}
/* Reflet shine */
.hero__logo-circle::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(255,255,255,.22) 0%,
    transparent 38%,
    transparent 62%,
    rgba(0,198,240,.07) 100%);
  pointer-events: none; z-index: 2;
}
/* Image logo : crop pour effacer l'interface du téléphone */
/* Image originale : 470×1020px (screenshot téléphone)        */
/* Le logo circulaire est ≈ centré à x=235, y=445 (0-1020)   */
/* Scale par largeur : 320/470 = 0.681 → height scaled=695px  */
/* Logo center scaled : y=445×0.681=303 ; container-center=160 */
/* top visible area : 303-160=143 ; overflow=695-320=375       */
/* object-position-y : 143/375 = 38%                           */
.hero__logo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  display: block;
  filter: saturate(1.08) contrast(1.05) brightness(1.02);
}

/* ── 7. DIVIDER ─────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cold-border), transparent);
}

/* ── 8. SECTIONS ────────────────────────────────────────────────── */
.sec { padding: 82px 22px; position: relative; z-index: 2; }
.sec--alt { background: rgba(3,10,26,.6); }
.sec__inner { max-width: 1200px; margin: 0 auto; }
.sec__head { text-align: center; margin-bottom: 52px; }
.sec__label {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--cold-glow); border: 1px solid var(--cold-border);
  color: var(--cold); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: var(--r-pill); margin-bottom: 13px;
}
.sec__title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.7rem,3.5vw,2.6rem);
  letter-spacing: -.015em; line-height: 1.18; color: var(--white); margin-bottom: 12px;
}
.sec__sub { font-size: 1rem; color: var(--muted); max-width: 540px; margin: 0 auto; }

/* ── 9. AVANTAGES ───────────────────────────────────────────────── */
.av-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; }
.av-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px 24px; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.av-card::after {
  content: ''; position: absolute; top: -60%; right: -30%; width: 180%; height: 180%;
  background: radial-gradient(circle at top right,rgba(0,198,240,.06),transparent 55%);
  pointer-events: none;
}
.av-card:hover { transform: translateY(-4px); border-color: rgba(0,198,240,.35); box-shadow: 0 0 28px rgba(0,198,240,.12); }
.av-card__icon {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: var(--cold-glow); border: 1px solid var(--cold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem; margin-bottom: 18px;
}
.av-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.av-card__text { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ── 10. PRODUCT CARD ───────────────────────────────────────────── */
.product-card {
  max-width: 680px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 60px rgba(0,198,240,.09);
}
.product-card__img {
  background: #04111e; display: flex; align-items: center; justify-content: center;
  padding: 0; position: relative; overflow: hidden; border-bottom: 1px solid var(--border);
}
.product-card__img img {
  width: 100%; max-height: 280px; object-fit: cover;
  filter: brightness(.88) saturate(1.05) contrast(1.08);
}
.product-card__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,transparent 45%,rgba(6,18,44,.75) 100%),
              linear-gradient(90deg,transparent 50%,rgba(0,198,240,.06) 100%);
}
.product-card__body { padding: 30px; }
.product-tag {
  display: inline-block;
  background: linear-gradient(135deg,rgba(0,198,240,.18),rgba(0,137,187,.1));
  border: 1px solid var(--cold-border); color: var(--cold);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 12px; border-radius: var(--r-pill); margin-bottom: 12px;
}
.product-name { font-family: var(--font-head); font-weight: 900; font-size: 1.55rem; color: var(--white); margin-bottom: 10px; }
.product-specs { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 22px; }
.spec { display: flex; align-items: center; gap: 9px; font-size: .87rem; color: var(--muted); }
.spec__ic {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  background: var(--cold-glow); display: flex; align-items: center; justify-content: center; font-size: .88rem;
}
.product-price-row {
  display: flex; align-items: flex-end; gap: 14px;
  background: rgba(0,198,240,.06); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 18px; margin-bottom: 20px; flex-wrap: wrap;
}
.price-big {
  font-family: var(--font-head); font-weight: 900; font-size: 2.8rem; line-height: 1;
  background: linear-gradient(135deg,#fff,var(--cold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.price-unit { font-size: 1rem; color: var(--muted); padding-bottom: 5px; }
.price-note { font-size: .75rem; color: var(--cold); margin-left: auto; text-align: right; line-height: 1.45; }

/* ── 11. SECTION CTA RÉSERVATION (mini-section landing) ─────────── */
.cta-booking {
  text-align: center; padding: 70px 22px; position: relative; z-index: 2;
}
.cta-booking__card {
  max-width: 620px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--cold-border);
  border-radius: 24px; padding: 44px 36px;
  box-shadow: 0 0 60px rgba(0,198,240,.1);
}
.cta-booking__title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.5rem,3vw,2rem); color: var(--white); margin-bottom: 10px;
}
.cta-booking__sub { color: var(--muted); margin-bottom: 28px; }
.cta-booking__prices {
  display: flex; justify-content: center; gap: 30px; margin-bottom: 32px; flex-wrap: wrap;
}
.cta-price {
  text-align: center;
}
.cta-price strong {
  display: block; font-family: var(--font-head); font-weight: 900; font-size: 1.6rem; color: var(--white);
}
.cta-price span { font-size: .78rem; color: var(--muted); }
.cta-price .badge-green {
  display: inline-block; margin-top: 4px;
  background: rgba(34,211,102,.12); border: 1px solid rgba(34,211,102,.25);
  color: #4dd87a; font-size: .65rem; font-weight: 700; padding: 2px 8px; border-radius: var(--r-pill);
}

/* ── 12. MODAL DE RÉSERVATION ───────────────────────────────────── */
.bk-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(2,8,18,.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 80px 16px 40px; overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}
.bk-overlay.open { opacity: 1; visibility: visible; }
.bk-modal {
  background: rgba(6,16,38,.95); border: 1px solid rgba(0,198,240,.2);
  border-radius: 24px; width: 100%; max-width: 820px; padding: 40px;
  position: relative; margin: auto;
  transform: translateY(28px);
  transition: transform .4s ease;
  box-shadow: 0 50px 140px rgba(0,0,0,.65), 0 0 80px rgba(0,198,240,.07);
}
.bk-overlay.open .bk-modal { transform: translateY(0); }
.bk-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,198,240,.1); border: 1px solid rgba(0,198,240,.2);
  color: var(--muted); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
}
.bk-close:hover { background: rgba(0,198,240,.22); color: var(--white); }

/* Indicateur de progression */
.bk-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 36px;
}
.bk-step-wrap { display: flex; flex-direction: column; align-items: center; }
.bk-dot {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid rgba(0,198,240,.22);
  background: rgba(0,198,240,.06); color: rgba(185,225,255,.4);
  font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); transition: all .3s;
}
.bk-dot.active { border-color: var(--cold); background: rgba(0,198,240,.15); color: var(--cold); box-shadow: 0 0 14px rgba(0,198,240,.35); }
.bk-dot.done { border-color: var(--success); background: rgba(34,211,102,.15); color: var(--success); }
.bk-dot-label { font-size: .68rem; color: rgba(185,225,255,.4); margin-top: 5px; transition: color .3s; }
.bk-step-wrap.active .bk-dot-label { color: var(--cold); }
.bk-step-line { width: 56px; height: 2px; background: rgba(0,198,240,.12); margin-bottom: 20px; transition: background .4s; }
.bk-step-line.done { background: rgba(34,211,102,.35); }

/* Panneaux des étapes */
.bk-panel { display: none; }
.bk-panel.active { display: block; animation: panelIn .3s ease; }
@keyframes panelIn { from{opacity:0;transform:translateX(18px);}to{opacity:1;transform:none;} }

.bk-panel-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.3rem,2.5vw,1.75rem);
  color: var(--white); margin-bottom: 6px; text-align: center;
}
.bk-panel-sub { color: var(--muted); font-size: .9rem; text-align: center; margin-bottom: 28px; }

/* ── 13. CALENDRIER ─────────────────────────────────────────────── */
.cal-wrap { width: 100%; }
.cal-nav-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px;
}
.cal-nav-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(0,198,240,.07);
  color: var(--muted); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; flex-shrink: 0;
}
.cal-nav-btn:hover { background: rgba(0,198,240,.18); color: var(--white); border-color: var(--cold); }
.cal-months-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; flex: 1; margin: 0 12px;
}
.cal-month-title {
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  color: var(--white); text-align: center; margin-bottom: 14px; text-transform: capitalize;
}
.cal-weekdays {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: 2px; margin-bottom: 6px;
}
.cal-weekdays span {
  text-align: center; font-size: .68rem; font-weight: 600;
  color: rgba(185,225,255,.4); text-transform: uppercase; letter-spacing: .05em;
}
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
.cal-day {
  aspect-ratio: 1; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 500; color: var(--muted);
  cursor: default; transition: all .15s; position: relative;
}
.cal-day.selectable { cursor: pointer; }
.cal-day.selectable:hover { background: rgba(0,198,240,.15); color: var(--white); }
.cal-day.past { opacity: .25; cursor: not-allowed; }
.cal-day.blocked { background: rgba(255,60,60,.08); color: rgba(255,100,100,.5); cursor: not-allowed; text-decoration: line-through; }
.cal-day.start,.cal-day.end {
  background: linear-gradient(135deg,var(--cold),var(--cold-dk));
  color: #030c1a; font-weight: 800; border-radius: 10px;
}
.cal-day.in-range { background: rgba(0,198,240,.12); color: var(--white); border-radius: 0; }
.cal-day.start.in-range { border-radius: 10px 0 0 10px; }
.cal-day.end.in-range { border-radius: 0 10px 10px 0; }
.cal-day.blocked::after {
  content: '✕'; position: absolute; font-size: .55rem; top: 2px; right: 3px; color: rgba(255,80,80,.4);
}
/* Price summary under calendar */
.cal-summary {
  background: rgba(0,198,240,.06); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 16px 18px; margin-top: 20px; margin-bottom: 24px;
  display: none;
}
.cal-summary.visible { display: block; }
.cal-sum-row {
  display: flex; justify-content: space-between; font-size: .88rem; color: var(--muted);
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.04);
}
.cal-sum-row:last-child { border: none; }
.cal-sum-row.total { color: var(--white); font-weight: 700; font-size: 1rem; padding-top: 10px; }
.cal-sum-row.total .val {
  font-family: var(--font-head); font-size: 1.4rem;
  background: linear-gradient(135deg,#fff,var(--cold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.badge-discount {
  background: rgba(34,211,102,.12); border: 1px solid rgba(34,211,102,.25);
  color: #4dd87a; font-size: .68rem; font-weight: 700;
  padding: 2px 7px; border-radius: var(--r-pill); margin-left: 6px;
}

/* ── 14. OPTIONS DE PAIEMENT ────────────────────────────────────── */
.pay-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.pay-card {
  border: 2px solid var(--border); border-radius: var(--r-lg);
  padding: 22px 18px; text-align: center; cursor: pointer;
  transition: all .22s; background: transparent; color: var(--white);
  position: relative; overflow: hidden;
}
.pay-card:hover { border-color: rgba(0,198,240,.4); background: rgba(0,198,240,.05); }
.pay-card.selected {
  border-color: var(--cold); background: rgba(0,198,240,.1);
  box-shadow: 0 0 22px rgba(0,198,240,.2);
}
.pay-card.selected::before {
  content: '✓'; position: absolute; top: 10px; right: 12px;
  font-size: .75rem; font-weight: 700; color: var(--cold);
}
.pay-card__label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.pay-card__amount {
  font-family: var(--font-head); font-weight: 900; font-size: 1.8rem; line-height: 1;
  background: linear-gradient(135deg,#fff,var(--cold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pay-card__note { font-size: .7rem; color: var(--muted); margin-top: 7px; line-height: 1.4; }
.pay-recap {
  background: rgba(0,198,240,.05); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 14px 18px;
  font-size: .85rem; color: var(--muted); margin-bottom: 22px;
  display: none; line-height: 1.75;
}
.pay-recap.visible { display: block; }
.pay-recap strong { color: var(--white); }

/* ── 15. STRIPE REDIRECT STEP ───────────────────────────────────── */
.stripe-step { text-align: center; padding: 40px 20px; }
.stripe-loader {
  width: 56px; height: 56px; margin: 0 auto 20px;
  border: 3px solid rgba(0,198,240,.15);
  border-top-color: var(--cold);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.stripe-step p { color: var(--muted); margin-bottom: 8px; }
.stripe-step .secure-badge {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  background: rgba(34,211,102,.08); border: 1px solid rgba(34,211,102,.2);
  color: #4dd87a; font-size: .75rem; padding: 5px 12px; border-radius: var(--r-pill);
}

/* ── 16. FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: rgba(2,8,20,.9); border-top: 1px solid var(--border);
  padding: 48px 22px 32px; text-align: center; position: relative; z-index: 2;
}
.footer__logo {
  font-family: var(--font-head); font-weight: 900; font-size: 1.45rem;
  background: linear-gradient(135deg,#fff,var(--cold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px;
}
.footer__tag { color: var(--muted); font-size: .88rem; margin-bottom: 26px; }
.footer__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 28px; }
.footer__link {
  display: flex; align-items: center; gap: 7px;
  color: var(--muted); font-size: .9rem; transition: color .2s;
}
.footer__link:hover { color: var(--cold); }
.footer__copy { font-size: .74rem; color: rgba(185,225,255,.25); margin-top: 20px; }

/* ── 17. SCROLL REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1{transition-delay:.1s;} .reveal.d2{transition-delay:.2s;}
.reveal.d3{transition-delay:.3s;} .reveal.d4{transition-delay:.4s;}

/* ── 18. BOUTON WA FLOTTANT ─────────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg,#25d366,#1a9e4a);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,.6); }

/* ── 19. PAGE CONFIRMATION ──────────────────────────────────────── */
.confirm-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 40px 22px; position: relative; z-index: 2; text-align: center;
}
.confirm-card {
  background: var(--bg-card); border: 1px solid rgba(34,211,102,.3);
  border-radius: 28px; padding: 52px 44px; max-width: 560px; width: 100%;
  box-shadow: 0 0 80px rgba(34,211,102,.12);
}
.confirm-icon {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 24px;
  background: linear-gradient(135deg,var(--success),#14883e);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 40px rgba(34,211,102,.4);
  animation: confirmPop .5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes confirmPop { from{transform:scale(0) rotate(-45deg);opacity:0;}to{transform:scale(1) rotate(0);opacity:1;} }
.confirm-title {
  font-family: var(--font-head); font-weight: 900; font-size: 2rem;
  color: var(--white); margin-bottom: 10px;
}
.confirm-sub { color: var(--muted); margin-bottom: 8px; }
.confirm-ref {
  font-size: .78rem; color: rgba(185,225,255,.35); margin-bottom: 28px;
}
.confirm-steps {
  background: rgba(0,198,240,.06); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 16px 18px; margin-bottom: 28px;
  text-align: left;
}
.confirm-step {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; color: var(--muted); padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.confirm-step:last-child { border: none; }
.confirm-step .cs-num {
  width: 22px; height: 22px; border-radius: 50%; background: rgba(34,211,102,.15);
  border: 1px solid rgba(34,211,102,.3); color: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 700; flex-shrink: 0;
}
.confirm-step span { color: var(--white); }

/* ── 20. PAGE CONTRAT ───────────────────────────────────────────── */
.contrat-page {
  max-width: 820px; margin: 0 auto; padding: 40px 22px 80px;
  position: relative; z-index: 2;
}
.contrat-header {
  text-align: center; margin-bottom: 36px; padding-top: 20px;
}
/* Encart d'avertissement (très visible) */
.contrat-alert {
  background: linear-gradient(135deg,rgba(255,104,32,.12),rgba(255,104,32,.06));
  border: 2px solid rgba(255,104,32,.5);
  border-radius: 18px; padding: 28px 28px; margin-bottom: 32px;
  position: relative; overflow: hidden;
}
.contrat-alert::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--orange),#ffb340,var(--orange));
}
.contrat-alert__icon { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.contrat-alert__title {
  font-family: var(--font-head); font-weight: 900; font-size: 1.2rem;
  color: var(--white); margin-bottom: 14px; line-height: 1.3;
}
.contrat-alert__steps {
  list-style: none; margin: 12px 0 16px; display: flex; flex-direction: column; gap: 8px;
}
.contrat-alert__steps li {
  display: flex; align-items: center; gap: 9px;
  font-size: .9rem; color: rgba(220,240,255,.85);
}
.contrat-alert__steps li::before {
  content: '•'; color: var(--orange); font-size: 1.2rem; flex-shrink: 0;
}
.contrat-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px;
}
/* Contract text */
.contrat-body {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  backdrop-filter: blur(14px);
}
.contrat-body h3 {
  font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .08em; color: var(--cold);
  margin: 24px 0 8px;
}
.contrat-body h3:first-child { margin-top: 0; }
.contrat-body p { font-size: .88rem; color: var(--muted); line-height: 1.75; margin-bottom: 8px; }
.contrat-body .contrat-info-row {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px;
}
.contrat-body .ci-label { font-size: .8rem; color: var(--cold); font-weight: 600; min-width: 140px; flex-shrink: 0; }
.contrat-body .ci-val { font-size: .88rem; color: var(--white); }

/* ── 21. RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding: 70px 20px 52px; }
  .hero__content { order: 1; }
  .hero__visual { order: 0; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__kpis { justify-content: center; }
  .hero__logo-circle { width: 230px; height: 230px; }
  .hero__logo-wrap { animation: floatLogoSm 4.2s ease-in-out infinite; }
  @keyframes floatLogoSm {
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
  }
  .cal-months-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --hdr-h: 60px; }
  .hdr__phone { display: none; }
  .sec { padding: 60px 18px; }
  .hero__logo-circle { width: 185px; height: 185px; }
  .av-grid { grid-template-columns: 1fr; }
  .product-specs { grid-template-columns: 1fr; }
  .pay-opts { grid-template-columns: 1fr; }
  .bk-modal { padding: 28px 18px; margin-top: 0; }
  .contrat-actions { flex-direction: column; }
  .contrat-page { padding: 20px 16px 60px; }
  .confirm-card { padding: 36px 22px; }
  .wa-fab { bottom: 16px; right: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
