*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #ff8c1e;
  --orange-dark:  #d96f00;
  --orange-light: #fff4e6;
  --orange-pale:  #fff8f0;
  --black:        #0a0a0a;
  --dark:         #3A4647;
  --dark-2:       #1a1a1a;
  --mid:          #666666;
  --light-mid:    #999999;
  --border:       #e4e0da;
  --bg:           #fafaf8;
  --white:        #ffffff;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
  --shadow:       0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 16px 56px rgba(0,0,0,0.14);
  --r:            10px;
  --font:         'League Spartan', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════════════
   NAV
════════════════════════════════════ */
nav {
  position: fixed;
  background: white;
  top: 0; left: 0; right: 0;
  z-index: 200;
  border-bottom: 1px solid white;
}

.nav-logo { display: flex; align-items: center; gap: 40px; }

.nav-inner {
  
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; gap: 10px; text-decoration: none; }
.logo img { width: 180px; }

.suite-logo { color:#3A4647 ; font-size: 1.6rem; font-weight: 900; font-family: 'League Spartan', sans-serif; }
.nav-location{
  font-weight: 900 !important; font-size: 1.5rem; margin-left: 50px; font-family: 'League Spartan', sans-serif !important;
}

.nav-actions { display: flex; align-items: center; gap: 20px; }

#navBurger {
  background: none; border: none; cursor: pointer;
  padding: 10px; z-index: 500;
  display: flex; flex-direction: column; align-items: flex-end; gap: 5px;
}
#navBurger span {
  display: block; height: 4px; background: var(--orange); border-radius: 2px;
  transition: all .38s cubic-bezier(.23,1,.32,1);
}
#navBurger span:nth-child(1) { width: 28px; }
#navBurger span:nth-child(2) { width: 20px; }
#navBurger span:nth-child(3) { width: 28px; }
#navBurger.open span:nth-child(1) { width: 26px; transform: translateY(7px) rotate(45deg); }
#navBurger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#navBurger.open span:nth-child(3) { width: 26px; transform: translateY(-7px) rotate(-45deg); }

.nav-contact-btn {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--white);
  background: var(--orange);
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.nav-contact-btn:hover { background: var(--orange-dark); }

@media (max-width: 640px) { .nav-contact-btn { display: none; } }
/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 78vh;
  background: url("./assets/fond\ test.png")  center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 64px;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0a0a0a 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(105deg,
    rgba(0, 0, 0, 0.198) 0%,
    rgba(0, 0, 0, 0.123) 50%,
    rgba(0, 0, 0, 0.031) 100%
  );
  pointer-events: none;
}

.hero-accent-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  z-index: 10;
}

/* ── Barre localisation : directement sous la nav ── */
.hero-location-bar {
  position: relative;
  z-index: 2;
  background-color: #ff8b1e8d;
  border-bottom: 1px solid rgba(255,140,30,0.28);
  padding: 11px 48px;
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color:#3A4647;
  text-align:center;
}
.hero-location-bar span { color: var(--orange); }

/* ── Inner layout ── */
.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 32px;
  align-items: start;
}

/* ── Gauche ── */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-h1 {
  font-family: var(--font);
  font-weight: 900;
  line-height: 1;
  z-index: 4;
  margin-top: 380px;
  color: var(--white);
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: 4px;
  text-shadow: 4px 4px #19191ab1;
}
.hero-h2 {
  font-family: var(--font);
  font-weight: 900;
  line-height: 1;
  z-index: 4;
  margin-top: 60px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-word-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

#heroWord {
  display: inline-block;
  color: #ff8c1e;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease;
}

#heroWord.exit {
  transform: translateY(-60%);
  opacity: 0;
}

#heroWord.enter {
  transform: translateY(60%);
  opacity: 0;
  transition: none;
}

.hero-sub {
  font-size: clamp(20px, 2.4vw, 45px);
  letter-spacing: 2px;
  color: white;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero-sub-2 {
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: 2px;
  color: white;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 110px;
  text-transform: uppercase;
}

.hero-cta {
  position: absolute;
  top: 260px;
  z-index: 90;
  left: 0px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--orange);
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 4px 8px 20px rgba(24, 23, 22, 0.857);
  transition: all 0.18s;
  align-self: flex-start;
}
.hero-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(255,140,30,0.55);
}

/* ── Mascotte ── */


/* ── Stats verticales ── */
.hero-stats {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  max-width: 1300px;
  align-items: center;
  text-align: center;
  gap: 0;
  opacity: 0;
  
transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.hero-stats.visible { opacity: 1; transform: translateX(0); }

.hero-stat-item { padding: 16px 0; }

.hero-stat-num {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 900;
  color: white;
  letter-spacing: -2px;
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-top: 4px;
  line-height: 1.2;
}

.hero-stat-sep {
  width: 32px;
  height: 1px;
  background: rgba(255,140,30,0.25);
}

/* ════════════════════════════════════
   COMMENT CA MARCHE
════════════════════════════════════ */
.section-ccm { padding: 90px 0; background: var(--white); }

.section-inner { max-width: 1360px; margin: 0 auto; padding: 0 32px; }

.section-eyebrow {
  font-family: var(--font);
  font-size: 1.2rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--orange); margin-bottom: 10px;
}

.section-h2 {
  font-family: var(--font);
  font-size: clamp(30px, 5.5vw, 60px);
  font-weight: 900; letter-spacing: -1.2px;
  color: var(--dark); line-height: 1.05; margin-bottom: 12px;
}

.section-sub { font-size: 1.1rem; color: var(--mid); max-width: 480px; line-height: 1.7; }

.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 56px;
  border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden;
}

.step-block {
  padding: 36px 28px; border-right: 1.5px solid var(--border);
  position: relative; transition: background 0.2s;
}
.step-block:last-child { border-right: none; }
.step-block:hover { background: var(--orange-pale); }

.step-block-num {
  font-family: var(--font); font-size: 0.9rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--orange); margin-bottom: 18px;
}

.step-icon-wrap {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: all 0.2s;
}
.step-block:hover .step-icon-wrap { background: var(--orange); border-color: var(--orange); }
.step-block:hover .step-icon-wrap svg { stroke: white; }

.step-block-title {
  font-family: var(--font); font-size: 1.2rem; font-weight: 800;
  color: var(--dark); letter-spacing: -0.2px; margin-bottom: 8px;
}
.step-block-desc { font-size: 0.9rem; color: var(--mid); line-height: 1.65; }

/* ════════════════════════════════════
   CAROUSEL
════════════════════════════════════ */
.offre-section { position: relative; overflow: hidden; background: var(--dark); }

.offre-eyebrow {
  position: absolute; top: 36px; left: 50%; transform: translateX(-50%);
  z-index: 20; font-family: var(--font); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,0.5); pointer-events: none;
}

.carousel-track { display: flex; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); }

.carousel-slide {
  flex: 0 0 100%; min-height: 620px;
  position: relative; display: flex; align-items: stretch;
}

.slide-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide-1 .slide-img { background-image: url('./assets/Offre chaudière.jpg'); }
.slide-3 .slide-img { background-image: url('./assets/Climatisation.jpg');background: linear-gradient(); }

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(10, 10, 10, 0.577) rgba(10, 10, 10, 0.415).61) 38%, rgba(10, 10, 10, 0.087) 70%, transparent 100%;
}

.slide-content {
  position: relative; z-index: 2; margin-left: auto;
  width: 100%; max-width: 1360px; padding: 0 20px 0 32px;
  display: flex; align-items: center; justify-content: flex-end;
}

.slide-panel { width: 420px; flex-shrink: 0; }

.slide-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); border-radius: 4px; padding: 4px 12px;
  font-family: var(--font); font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--white); margin-bottom: 18px;
}

.slide-title {
  font-family: var(--font); font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 900; letter-spacing: -1px; color: var(--white);
  line-height: 1.08; margin-bottom: 12px;
}
.slide-title span { color: var(--orange); }

.slide-desc { font-size: 1rem; color: var(--orange-light); line-height: 1.7; margin-bottom: 28px; }

.slide-action { display: flex; align-items: center; gap: 20px; }

.slide-price-label {
  font-family: var(--font); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--orange-light); margin-bottom: 6px;
}

.slide-price-value {
  font-family: var(--font); font-size: 2.5rem; font-weight: 900;
  letter-spacing: -1.5px; color: var(--white); line-height: 1;
}
.slide-price-value small { font-size: 1rem; font-weight: 600; color: var(--orange-light); letter-spacing: 0; }
.slide-price-note { font-size: 0.9rem; color: var(--orange-light); margin-top: 3px; }

.btn-commande {
  flex-shrink: 0; padding: 14px 26px; background: var(--orange);
  border: none; border-radius: 8px; font-family: var(--font);
  font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--white); cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.18s; white-space: nowrap;
}
.btn-commande:hover { background: var(--orange-dark); transform: translateY(-2px); }

.carousel-controls {
  position: absolute; bottom: 32px; right: 64px;
  display: flex; align-items: center; gap: 14px; z-index: 10;
}

.carousel-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.18s; backdrop-filter: blur(8px);
}
.carousel-btn:hover { background: var(--orange); border-color: var(--orange); }

.carousel-dots { display: flex; gap: 6px; }
.carousel-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer;
  transition: all 0.22s; border: none; padding: 0;
}
.carousel-dot.active { background: var(--orange); width: 20px; border-radius: 4px; }

/* ════════════════════════════════════
   POURQUOI BATMAX
════════════════════════════════════ */
.why-section { padding: 90px 0; background: linear-gradient(to right, rgba(255, 255, 255, 0.788), rgba(255, 255, 255, 0.247)) ,url("/assets/h-co--odUkx8C2gg-unsplash\ 1\ \(1\).png"), center/cover; }

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start; margin-top: 52px;
}

.why-items {
  display: flex; flex-direction: column; gap: 0;
  border: 1.5px solid var(--border); border-radius: 14px;
  overflow: hidden; background: var(--white);
}

.why-item {
  display: flex; gap: 18px; padding: 24px 26px;
  border-bottom: 1.5px solid var(--border); transition: background 0.18s;
}
.why-item:last-child { border-bottom: none; }
.why-item:hover { background: var(--orange-pale); }

.why-item-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.18s;
}
.why-item:hover .why-item-icon { background: var(--orange); border-color: var(--orange); }
.why-item:hover .why-item-icon svg { stroke: white; }

.why-item-title {
  font-family: var(--font); font-size: 1.2rem; font-weight: 700;
  color: var(--dark); letter-spacing: -0.2px; margin-bottom: 5px;
}
.why-item-desc { font-size: 1rem; color: var(--mid); line-height: 1.65; }

.why-right { position: sticky; top: 120px; }

.payment-card {
  background: var(--dark); border-radius: 16px; padding: 32px;
  overflow: hidden; position: relative;
}
.payment-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,30,0.2) 0%, transparent 65%);
}

.payment-card-label {
  font-family: var(--font); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--orange-light); margin-bottom: 6px;
}
.payment-card-title {
  font-family: var(--font); font-size: 1.5rem; font-weight: 700;
  color: var(--white); letter-spacing: -0.3px; margin-bottom: 28px;
}

.payment-steps { display: flex; flex-direction: column; gap: 8px; }

.pay-step {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.18s;
}
.pay-step.featured { background: rgba(255,140,30,0.1); border-color: rgba(255,140,30,0.25); }

.pay-step-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pay-step.featured .pay-step-icon { background: rgba(255,140,30,0.15); }
.pay-step.featured .pay-step-icon svg { stroke: var(--orange); }

.pay-step-title {
  font-family: var(--font); font-size: 1.2rem; font-weight: 600;
  color: var(--white); margin-bottom: 2px;
}
.pay-step.featured .pay-step-title { color: var(--orange); }
.pay-step-sub { font-size: 0.9rem; color: var(--orange-light); }

/* ════════════════════════════════════
   CONTACT
════════════════════════════════════ */
.contact-section {
  padding: 36px 0; background: var(--dark);
  text-align: center; position: relative; overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%); width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,140,30,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.contact-inner { position: relative; max-width: 860px; margin: 0 auto; padding: 0 32px; }

.contact-eyebrow {
  font-family: var(--font); font-size: 1rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--orange); margin-bottom: 14px;
}
.contact-h2 {
  font-family: var(--font); font-size: clamp(42px, 5vw, 60px);
  font-weight: 900; letter-spacing: -1px; color: var(--white);
  line-height: 0.9; margin-bottom: 14px;
}
.contact-h2 span { color: var(--orange); }
.contact-sub { font-size: 1.2rem; color: var(--orange-light); line-height: 1.7; margin-bottom: 16px; }

.btn-contact {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: var(--orange);
  border: none; border-radius: 8px; font-family: var(--font);
  font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--white); cursor: pointer; text-decoration: none; transition: all 0.18s;
}
.btn-contact:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
footer {
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, #aa4d00 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 0%, #aa4d00 0%, transparent 55%),
    linear-gradient(145deg, #e17b1b 0%, #eea94f 65%, #AA4C00 100%) !important;

}

.footer-inner { max-width: 1360px; margin: 0 auto; padding: 0 40px; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 5px;
}

.footer-top-text{
  margin-top: 35px;
}

.footer-logo-text { display: block; }
.footer-logo-text img { width: 280px; margin-bottom: 10px; }

.footer-col-title {
  font-family: var(--font); font-size: 1.4rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: white; margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  text-decoration: none; font-family: var(--font);
  font-size: 1.3rem; font-weight: 500;
  line-height: 1.2;
  color: white; transition: color 0.18s;
}
.footer-links a:hover { color: #000; }

/* Coordonnées en valeur au-dessus du footer-bottom */
.footer-contacts-bar {
  border-top: 1px solid rgba(0,0,0,0.12);
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 48px;
}
.footer-contact-block { display: flex; flex-direction: column; gap: 3px; }
.footer-contact-block .lbl {
  font-family: var(--font); font-size: 0.9rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px; color: white;
}
.footer-contact-block a {
  font-family: var(--font); font-size: 1.2rem; font-weight: 600;
  line-height: 1.2;
  color: white; text-decoration: none; letter-spacing: -0.3px;
  transition: opacity 0.18s;
}
.footer-contact-block a:hover { opacity: 0.65; }

.footer-bottom {
  background: rgba(0,0,0,0.15);
  padding: 16px 40px;
  margin: 0 -40px;

}

.footer-adress{
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.footer-copy {
  font-family: var(--font); font-size: 0.9rem;
  padding-left: 20px;
  font-weight: 600; color: white;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-family: var(--font); font-size: 0.8rem; font-weight: 600;
  color: white; text-decoration: none; transition: color 0.18s;
}
.footer-legal a:hover { color: rgba(0,0,0,0.75); }

/* ════════════════════════════════════
   ROUE DES POLES
════════════════════════════════════ */
#polesOverlay {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  z-index: 9999; background: rgba(6,6,6,.98); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
#polesOverlay.open { opacity: 1; pointer-events: all; }
#polesOverlay > div { display: flex; align-items: center; justify-content: center; gap: 60px; width: 100%; max-width: 1100px; padding: 0 40px; }

#polesClose {
  position: fixed; top: 28px; right: 32px; z-index: 10000;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); background: transparent;
  color: #fff; font-size: 1.1rem; cursor: pointer;
  display: grid; place-items: center; transition: background .2s, border-color .2s;
}
#polesClose:hover { background: var(--orange); border-color: var(--orange); }

#wheelWrap { width: min(560px, 55vh); height: min(560px, 55vh); flex-shrink: 0; position: relative; }
svg#wheel { width: 100%; height: 100%; overflow: visible; }

.s-lnk { transform-origin: 200px 200px; transition: transform .28s cubic-bezier(.34,1.56,.64,1); cursor: pointer; }
.s-lnk:hover { transform: scale(1.09); }
.sect { fill: var(--gris-sect); transition: fill .22s; }
.s-lnk:hover .sect { fill: rgba(240,131,0,.22); }
.ibg { fill: #e8eaec; transition: fill .22s; }
.s-lnk:hover .ibg { fill: #fff; }
.curved-label { font: 900 15px 'Arial Black', Arial, sans-serif; letter-spacing: 2.5px; text-transform: uppercase; fill: transparent; transition: fill .2s; pointer-events: none; }
.s-lnk:hover .curved-label { fill: #fff; }
.curved-label2 { font: 700 12px Arial, sans-serif; letter-spacing: 1.5px; text-transform: uppercase; fill: transparent; transition: fill .2s; pointer-events: none; }
.s-lnk:hover .curved-label2 { fill: rgba(255,255,255,.75); }
.clbl { fill: var(--orange); font: 900 26px/1 'Arial Black', Arial, sans-serif; text-anchor: middle; dominant-baseline: middle; letter-spacing: 2px; pointer-events: none; }



.stats-band {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,140,30,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stats-band-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stats-band-item {
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.stats-band-num {
  font-family: var(--font); font-size: 2.4rem; font-weight: 900;
  color: var(--orange); line-height: 1; letter-spacing: -1px;
}
.stats-band-label {
  font-family: var(--font); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
}
.stats-band-sep {
  width: 1px; margin: 20% 0;
  background: linear-gradient(to bottom, transparent, rgba(255,140,30,0.25), transparent);
}

#truckImg {
  position: absolute;
  bottom: 10%;
  left: 20vw;
  width: min(1200px, 45vw);
  z-index: 0;
  pointer-events: none;
  transition: left 1.1s cubic-bezier(.6,0,1,.4);
}
#truckImg.moving {
  left: 110vw;
}nav#mainNav { z-index: 10000 !important; }

/* ── Nav user badge ── */
.nav-user-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1.5px solid var(--orange);
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  cursor: pointer;
  background: none;
  transition: background .18s, color .18s;
}
.nav-user-badge:hover { background: var(--orange); color: #fff; }
.nav-user-badge .avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.nav-user-badge:hover .avatar { background: #fff; color: var(--orange); }

/* ════════════════════════════════════
   NAV — responsive
════════════════════════════════════ */
@media (max-width: 900px) {
  .suite-logo { display: none; }
  .nav-location { display: none; }
  .logo img { width: 140px; }
  .nav-inner { padding: 0 16px; height: 56px; }
}

/* ════════════════════════════════════
   HERO — responsive
════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; padding: 40px 32px; }
  .hero-stats { display: none; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .step-block:nth-child(2) { border-right: none; }
  .step-block:nth-child(1),
  .step-block:nth-child(2) { border-bottom: 1.5px solid var(--border); }
  .why-grid { grid-template-columns: 1fr; }
  .why-right { position: static; }
  .slide-panel { width: 360px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    background-position: 70% center;
  }
  .hero::after {
    background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.3) 100%);
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 32px 20px 48px;
    margin-top: 56px;
  }
  .hero-h1 { margin-top: 40px; }
  .hero-h2 { margin-top: 20px; }
  .hero-sub { font-size: clamp(32px, 5vw, 32px); margin-top: 240px;}
  .hero-sub-2 { font-size: clamp(38px, 5.5vw, 42px); margin-top: -60px; }
  .hero-cta {
    position: static;
    width: 100%;
    justify-content: center;
    margin-top: -15px;
    font-size: 1.2rem;
  }
  .stats { padding: 16px 0; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0 16px;
  }
  .hero-stat-sep { display: none; }
  .hero-stat-item { padding: 12px 8px; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.75rem; }
  .steps-row { grid-template-columns: 1fr; border-radius: 10px; }
  .step-block { border-right: none !important; border-bottom: 1.5px solid var(--border) !important; }
  .step-block:last-child { border-bottom: none !important; }
  .slide-panel { width: 100%; max-width: 340px; }
  .slide-action { flex-direction: column; align-items: flex-start; gap: 14px; }
  .btn-commande { width: 100%; justify-content: center; }
  .carousel-controls { right: 20px; bottom: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-contacts-bar { flex-direction: column; gap: 16px; }
  .footer-inner { padding: 0 20px; }
  .footer-bottom { padding: 16px 20px; margin: 0 -20px; }
  .footer-adress { flex-direction: column; gap: 10px; }
  .section-inner { padding: 0 20px; }
  .section-ccm { padding: 60px 0; }
  .why-section { padding: 60px 0; }
  .contact-inner { padding: 0 20px; }
  .contact-h2 { font-size: clamp(32px, 8vw, 48px); }
}

/* ════════════════════════════════════
   SELECTION — responsive
════════════════════════════════════ */
@media (max-width: 1024px) {
  .product-layout { grid-template-columns: 1fr; }
  .devis-card { position: static; }
}
@media (max-width: 600px) {
  .icon-grid { grid-template-columns: repeat(2, 1fr); justify-items: stretch; }
  .icon-card { width: 100%; }
}

@media (max-width: 860px) {
  .icon-grid { grid-template-columns: repeat(3, 1fr); }
  .text-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .sel-page { padding: 80px 16px 60px; }
  .icon-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .text-grid { grid-template-columns: 1fr; }
  .sel-question { font-size: 18px; }
  .icon-card { padding: 18px 10px 14px; font-size: 12px; }
  .icon-circle { width: 56px; height: 56px; }
  .icon-circle--cat { width: 64px; height: 64px; }
  .icon-circle--cat img { width: 48px; height: 48px; }
  .product-main-title { font-size: 22px; }
  .product-photo { width: 100%; }
  .devis-price { font-size: 36px; }
  .btn-prev { font-size: 0.9rem; padding: 14px 16px; }
}

@media (max-width: 768px) {
  #truckImg { display: block; bottom: 30%;
  left: -15vw;
  width: min(1200px, 85vw);}
  .footer-inner { padding: 0 20px; }
  .footer-top { 
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "logo presta" "espace info";
    gap: 16px; 
    padding-bottom: 20px; 
  }
  .footer-logo-text { grid-area: logo; }
  .footer-top-text:nth-of-type(1) { grid-area: presta; margin-top: 0; }
  .footer-top-text:nth-of-type(2) { grid-area: espace; margin-top: 0; }
  .footer-top-text:nth-of-type(3) { grid-area: info; margin-top: 0; }
  .footer-logo-text img { width: 140px; margin: 16px 0 8px; }
  .footer-col-title { font-size: 1rem; margin-bottom: 8px; }
  .footer-links a { font-size: 1rem; }
  .footer-contacts-bar { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 0; }
  .footer-adress { flex-direction: column !important; gap: 8px; align-items: flex-start !important; }
}
