/* ============================================================
   C-AIR GLOBAL — style.css
   Thème sombre/clair via variables CSS sur :root[data-theme]
   ============================================================ */

:root {
  --bg: #0a0b0f;
  --bg2: #13151b;
  --bg3: #1c1f27;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f4f5f7;
  --text2: #a7abb6;
  --text3: #6d727c;
  --accent: #3b8eff;
  --accent2: #ffb547;
  --accent-glow: rgba(59, 142, 255, 0.35);
  --header-bg: rgba(10, 11, 15, 0.72);
  --shadow: rgba(0, 0, 0, 0.35);
}

:root[data-theme="light"] {
  --bg: #f6f7f9;
  --bg2: #ffffff;
  --bg3: #eef0f3;
  --line: rgba(10, 15, 25, 0.1);
  --text: #10131a;
  --text2: #4a4f5a;
  --text3: #7a7f8a;
  --accent: #1a63d6;
  --accent2: #c2670a;
  --accent-glow: rgba(26, 99, 214, 0.22);
  --header-bg: rgba(246, 247, 249, 0.78);
  --shadow: rgba(20, 30, 50, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s ease, color 0.3s ease;
}

::selection { background: var(--accent); color: #fff; }

img { max-width: 100%; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ---------- Typo ---------- */
.display {
  font-family: 'Big Shoulders Display', sans-serif;
  text-transform: uppercase;
  margin: 0;
  color: var(--text);
}

h2.display { font-weight: 800; font-size: clamp(34px, 4.2vw, 54px); line-height: 1.08; letter-spacing: 0.005em; }
h3.display { font-weight: 800; font-size: 24px; }

.eyebrow {
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.lead { color: var(--text2); font-size: 17px; line-height: 1.75; margin: 28px 0 0; }
.lead + .lead { margin-top: 20px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 17px 32px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px var(--accent-glow);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px var(--accent-glow); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost-light:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.is-scrolled { box-shadow: 0 10px 30px var(--shadow); }

.header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__logo { display: flex; align-items: center; height: 40px; flex-shrink: 0; }
.header__logo img { height: 100%; width: auto; display: block; }

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

.nav__link {
  color: var(--text2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--text); }
.nav__link:hover { color: var(--accent); }

.nav__cta {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 11px 22px;
  border-radius: 100px;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px var(--accent-glow);
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px var(--accent-glow); }

.icon-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg2);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }

.header__mobile-actions { display: none; align-items: center; gap: 10px; }

.mobile-menu {
  display: none;
  background: var(--bg2);
  border-top: 1px solid var(--line);
  padding: 20px 32px;
  flex-direction: column;
  gap: 18px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-menu .mobile-menu__cta {
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 100px;
  text-align: center;
}

@media (max-width: 899px) {
  .header__nav { display: none; }
  .header__mobile-actions { display: flex; }
}

/* ============================================================
   SCROLL-VIDEO HERO (page d'accueil)
   Section haute de 420vh ; l'écran reste "sticky" et la vidéo
   est scrubbee en fonction de la progression du scroll.
   ============================================================ */
.scrolly { position: relative; height: 420vh; background: #06070a; }

.scrolly__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.scrolly__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scrolly__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 7, 10, 0.5) 0%, rgba(6, 7, 10, 0.25) 35%, rgba(6, 7, 10, 0.45) 70%, rgba(6, 7, 10, 0.8) 100%);
  pointer-events: none;
}

/* Chapitres superposés */
.scrolly__stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 32px;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
.scrolly__stage.is-live { pointer-events: auto; }

.scrolly__kicker {
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.scrolly__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 1.02;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  max-width: 1000px;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.45);
}
.scrolly__title .accent { color: var(--accent); }

.scrolly__sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  max-width: 620px;
  margin: 24px 0 0;
}

.scrolly__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; justify-content: center; }

/* Indicateur de progression (droite) */
.scrolly__progress {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 5;
}
.scrolly__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.scrolly__dot.is-active {
  background: var(--accent);
  transform: scale(1.5);
  box-shadow: 0 0 14px var(--accent-glow);
}

/* Invitation à scroller */
.scrolly__hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 5;
  transition: opacity 0.4s ease;
}
.scrolly__hint i { animation: hintBounce 1.6s ease-in-out infinite; font-size: 15px; }

@keyframes hintBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

@media (max-width: 899px) {
  .scrolly { height: 340vh; }
  .scrolly__progress { right: 14px; }
}

/* Repli : mouvement réduit → section normale, pas de scrub */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scrolly { height: 100vh; }
  .scrolly__stage { opacity: 0; }
  .scrolly__stage[data-stage="0"] { opacity: 1; pointer-events: auto; }
  .scrolly__hint, .scrolly__progress { display: none; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: cairMarquee 26s linear infinite;
  gap: 64px;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; gap: 64px; flex-shrink: 0; }
.marquee__word {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text3);
  white-space: nowrap;
}
.marquee__sep { font-size: 5px; color: var(--accent2); }

@keyframes cairMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* ---------- Stats ---------- */
.stats { padding: 96px 32px; background: var(--bg); }
.stats__grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.stat {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.stat:hover { border-color: var(--accent); transform: translateY(-6px); }
.stat__value {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 52px;
  color: var(--accent);
  line-height: 1;
}
.stat__label { color: var(--text2); font-weight: 700; font-size: 14px; margin-top: 10px; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------- Sections génériques ---------- */
.section { padding: 140px 32px; background: var(--bg); }
.section--alt { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { max-width: 640px; margin: 0 0 72px; }
.section__head--center { margin: 0 auto 64px; text-align: center; }

.grid-2 {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 72px;
  align-items: center;
}

/* ---------- About ---------- */
.about__media { position: relative; border-radius: 28px; overflow: hidden; box-shadow: 0 40px 80px var(--shadow); }
.about__media img { width: 100%; height: 560px; object-fit: cover; display: block; }
.about__media-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55) 100%); }
.about__media-caption {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.chip-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg2);
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 100px;
  transition: border-color 0.25s ease;
}
.chip:hover { border-color: var(--accent); }
.chip i { color: var(--accent); }

/* ---------- Cartes services ---------- */
.cards {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.card { display: flex; flex-direction: column; }
.card__media { position: relative; height: 220px; overflow: hidden; border-radius: 20px 20px 0 0; }
.card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.card:hover .card__media img { transform: scale(1.07); }
.card__media-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.65) 100%); }
.card__icon {
  position: absolute;
  bottom: 16px; left: 16px;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.card__body {
  padding: 28px;
  background: var(--bg);
  border-radius: 0 0 20px 20px;
  border: 1px solid var(--line);
  border-top: none;
  flex: 1;
}
.card__title { font-family: 'Big Shoulders Display', sans-serif; font-weight: 800; font-size: 24px; color: var(--text); margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.01em; }
.card__desc { color: var(--text2); font-size: 15px; line-height: 1.7; margin: 0 0 20px; }

.bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.bullet { display: flex; align-items: center; gap: 10px; color: var(--text3); font-size: 13.5px; }
.bullet::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: gap 0.25s ease;
}
.card__link:hover { gap: 14px; }

/* ---------- Conteneur maritime 3D ---------- */
.crate-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
  -webkit-perspective: 1400px;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 46px var(--accent-glow));
}
.crate {
  width: 300px; height: 160px;
  position: relative;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  will-change: transform;
}

/* Pas de `filter` sur les faces : un filter sur un élément transformé en 3D
   est mal géré par certains moteurs (Safari en particulier) et peut casser
   tout l'assemblage. Chaque face a donc sa propre couleur en dur pour simuler
   l'éclairage, et `will-change: transform` fige chaque face sur sa propre
   couche GPU pour éviter le scintillement aux jointures pendant la rotation. */
.crate__face {
  position: absolute;
  /* centrées sur le pivot de rotation du cube (top/left 50% + margin négative) :
     sans ça, chaque face pivote autour de son propre centre au lieu du centre
     du cube, et l'assemblage se disloque pendant la rotation. */
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  background-repeat: repeat, no-repeat;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 3px, transparent 3px 15px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

/* avant/arrière : 300 x 160, profondeur 150 */
.crate__face--front {
  width: 300px; height: 160px;
  margin: -80px 0 0 -150px;
  transform: translateZ(75px);
  background-color: #3b7bdc;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 3px, transparent 3px 15px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(0, 0, 0, 0.08));
}
.crate__face--back {
  width: 300px; height: 160px;
  margin: -80px 0 0 -150px;
  transform: rotateY(180deg) translateZ(75px);
  background-color: #1d3f7a;
}
/* faces latérales : 150 x 160, positionnées à la demi-largeur (150) */
.crate__face--left {
  width: 150px; height: 160px;
  margin: -80px 0 0 -75px;
  transform: rotateY(-90deg) translateZ(150px);
  background-color: #24549e;
}
.crate__face--right {
  width: 150px; height: 160px;
  margin: -80px 0 0 -75px;
  transform: rotateY(90deg) translateZ(150px);
  background-color: #2f68bc;
}
/* dessus/dessous : 300 x 150, positionnées à la demi-hauteur (80) */
.crate__face--top {
  width: 300px; height: 150px;
  margin: -75px 0 0 -150px;
  transform: rotateX(90deg) translateZ(80px);
  background-color: #4f8ce6;
}
.crate__face--bottom {
  width: 300px; height: 150px;
  margin: -75px 0 0 -150px;
  transform: rotateX(-90deg) translateZ(80px);
  background-color: #163363;
}

/* logo C-Air Global centré sur la face avant, rien d'autre */
.crate__badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4), 0 0 0 5px rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}
.crate__badge img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ---------- Industries ---------- */
.industries {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.industry {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 20px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.industry:hover { border-color: var(--accent); transform: translateY(-6px); }
.industry__icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
}
.industry span { color: var(--text); font-weight: 700; font-size: 14px; }

/* ---------- Témoignages ---------- */
.testimonials {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
}
.testimonial {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  position: relative;
}
.testimonial > .fa-quote-right { position: absolute; top: 32px; right: 32px; font-size: 40px; color: var(--line); }
.testimonial__stars { display: flex; gap: 4px; margin-bottom: 20px; color: var(--accent2); font-size: 14px; }
.testimonial__quote { color: var(--text2); font-size: 16.5px; line-height: 1.75; font-style: italic; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { padding: 120px 32px; background: var(--bg2); border-top: 1px solid var(--line); }
.cta-band__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.cta-band .lead { max-width: 520px; margin-left: auto; margin-right: auto; margin-top: 24px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 40px; }

/* ---------- Footer ---------- */
.footer { background: var(--bg2); border-top: 1px solid var(--line); padding: 96px 32px 40px; }
.footer__inner { max-width: 1320px; margin: 0 auto; }
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 56px;
  margin-bottom: 64px;
}
.footer__brand { grid-column: span 2; }
.footer__brand img { height: 88px; width: auto; display: block; margin-bottom: 24px; }
.footer__brand p { color: var(--text2); font-size: 15px; line-height: 1.7; max-width: 400px; margin: 0; }
.footer h4 {
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { color: var(--text2); text-decoration: none; font-size: 14.5px; font-weight: 600; transition: color 0.25s ease; }
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.footer__bottom p { color: var(--text3); font-size: 13.5px; margin: 0; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.footer__social a:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 640px) {
  .footer__brand { grid-column: span 1; }
}

/* ---------- Pages internes (services / contact) ---------- */
.page-hero { padding: 200px 32px 90px; background: var(--bg); text-align: center; }
.page-hero__inner { max-width: 820px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6.5vw, 74px);
  line-height: 1.04;
  color: var(--text);
  text-transform: uppercase;
  margin: 0;
}
.page-hero h1 .accent { color: var(--accent); }
.page-hero p { color: var(--text2); font-size: 18px; line-height: 1.7; max-width: 640px; margin: 24px auto 0; }

.media-rounded { border-radius: 24px; overflow: hidden; box-shadow: 0 30px 70px var(--shadow); }
.media-rounded img { width: 100%; height: 460px; object-fit: cover; display: block; }

.grid-bullets { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; margin-top: 24px; }
.grid-bullets .bullet { font-size: 14px; }

.trio { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 48px; }
.trio p { color: var(--text2); font-size: 15.5px; line-height: 1.75; margin: 16px 0 0; }

.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-top: 56px; }
.process__step { text-align: center; }
.process__icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 22px;
}
.process__step h4 { color: var(--text); font-weight: 800; font-size: 16px; margin: 0 0 10px; }
.process__step p { color: var(--text3); font-size: 14px; line-height: 1.6; margin: 0; }

.minicards { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.minicard {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.minicard:hover { border-color: var(--accent); transform: translateY(-6px); }
.minicard__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  font-size: 22px;
}
.minicard h3 { color: var(--text); font-weight: 800; font-size: 17px; margin: 0 0 10px; }
.minicard p { color: var(--text2); font-size: 14px; line-height: 1.6; margin: 0 0 16px; }
.minicard__checks { display: flex; flex-direction: column; gap: 8px; }
.minicard__checks span { color: var(--text3); font-size: 12.5px; }
.minicard__checks i { color: var(--accent); margin-right: 6px; }

/* Cartes cliquables (aperçu services) */
.overview-card {
  text-decoration: none;
  display: block;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.overview-card:hover { border-color: var(--accent); transform: translateY(-6px); }
.overview-card__media { position: relative; height: 200px; overflow: hidden; }
.overview-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.overview-card__body { padding: 26px; }
.overview-card__body h3 { font-family: 'Big Shoulders Display', sans-serif; font-weight: 800; font-size: 22px; color: var(--text); margin: 0 0 10px; text-transform: uppercase; }
.overview-card__body p { color: var(--text2); font-size: 14.5px; line-height: 1.65; margin: 0 0 14px; }
.overview-card__body span { color: var(--accent); font-weight: 700; font-size: 13.5px; }

/* ---------- Formulaire contact ---------- */
.contact-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 64px;
  align-items: start;
}
@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-panel {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px;
}
@media (max-width: 640px) { .form-panel { padding: 32px 24px; } }

.form { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.form label { display: block; color: var(--text3); font-weight: 600; font-size: 13px; margin-bottom: 8px; }
.form input, .form select, .form textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.25s ease;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--accent); }
.form input.is-invalid, .form select.is-invalid, .form textarea.is-invalid { border-color: #e5484d; }
.form textarea { resize: vertical; }
.form input::placeholder, .form textarea::placeholder { color: inherit; opacity: 0.35; }

.form__error { color: #e5484d; font-size: 12.5px; margin-top: 6px; display: none; }
.form__error.is-visible { display: block; }

.form__submit {
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 15.5px;
  padding: 18px;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 10px 28px var(--accent-glow);
  font-family: inherit;
  transition: transform 0.25s ease;
}
.form__submit:hover { transform: translateY(-2px); }

.form-success {
  display: none;
  margin-top: 36px;
  padding: 32px;
  border-radius: 18px;
  background: var(--bg3);
  text-align: center;
}
.form-success.is-visible { display: block; }
.form-success i { color: var(--accent); font-size: 34px; margin-bottom: 14px; }
.form-success h3 { color: var(--text); font-weight: 800; font-size: 19px; margin: 0 0 8px; }
.form-success p { color: var(--text2); font-size: 14.5px; margin: 0; }

.info-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}
.info-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 19px;
}
.info-card__icon--accent { background: var(--accent); }
.info-card__icon--accent2 { background: var(--accent2); }
.info-card__icon--muted { background: var(--bg3); color: var(--accent); }
.info-card small { color: var(--text3); font-size: 13px; font-weight: 600; display: block; margin-bottom: 4px; }
.info-card a, .info-card strong { color: var(--text); text-decoration: none; font-weight: 800; font-size: 19px; }
.info-card a:hover { color: var(--accent); }

/* ---------- Équipe ---------- */
.team { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.team-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.3s ease;
}
.team-card:hover { border-color: var(--accent); }
.team-card__avatar {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.team-card__info { min-width: 0; flex: 1; }
.team-card__info p { color: var(--text); font-weight: 800; font-size: 16px; margin: 0 0 6px; }
.team-card__role {
  display: inline-block;
  background: var(--bg3);
  color: var(--accent);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.team-card__info a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}
.team-card__info a:hover { color: var(--text); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal--left { transform: translateX(-36px); }
.reveal--right { transform: translateX(36px); }
.reveal.is-visible { opacity: 1; transform: translate(0, 0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--left, .reveal--right { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
}

/* ---------- Assistant de devis (quote.html) ---------- */
.quote-steps {
  max-width: 900px;
  margin: 0 auto 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.quote-steps::before {
  content: "";
  position: absolute;
  top: 25px; left: 0; right: 0;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.quote-step { display: flex; flex-direction: column; align-items: center; gap: 12px; position: relative; z-index: 1; flex: 1; }
.quote-step__circle {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  font-size: 16px;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.quote-step__label { color: var(--text3); font-weight: 700; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; }
.quote-step.is-active .quote-step__circle { background: var(--accent); border-color: var(--accent); color: #fff; transform: scale(1.08); box-shadow: 0 8px 20px var(--accent-glow); }
.quote-step.is-active .quote-step__label { color: var(--text); }
.quote-step.is-done .quote-step__circle { background: var(--accent); border-color: var(--accent); color: #fff; }
.quote-step.is-done .quote-step__label { color: var(--text2); }

.quote-panel { background: var(--bg2); border: 1px solid var(--line); border-radius: 28px; padding: 48px; max-width: 1080px; margin: 0 auto; }
@media (max-width: 640px) { .quote-panel { padding: 32px 22px; } }

.quote-step-content { display: none; }
.quote-step-content.is-active { display: block; }
.is-hidden-section { display: none; }
.quote-step-content > h2 { font-family: 'Big Shoulders Display', sans-serif; font-weight: 800; font-size: clamp(24px, 3vw, 32px); text-transform: uppercase; color: var(--text); margin: 0 0 32px; }
.quote-step-content h3 { font-family: 'Big Shoulders Display', sans-serif; font-weight: 800; font-size: 17px; text-transform: uppercase; color: var(--text); margin: 0 0 4px; display: flex; align-items: center; gap: 10px; }
.quote-step-content h3 i { color: var(--accent); }

.quote-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 44px; }
.quote-cols .form { margin-top: 18px; }

.quote-actions { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; }
.quote-actions.is-end { justify-content: flex-end; }

.input-narrow { max-width: 220px; }

.ship-type-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 32px; }
.ship-type-option { position: relative; display: block; border: 2px solid var(--line); border-radius: 18px; padding: 26px 20px; text-align: center; cursor: pointer; transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease; background: var(--bg3); }
.ship-type-option input { position: absolute; opacity: 0; pointer-events: none; }
.ship-type-option:hover { border-color: var(--accent); transform: translateY(-4px); }
.ship-type-option.is-selected { border-color: var(--accent); background: var(--bg); box-shadow: 0 0 0 1px var(--accent); }
.ship-type-option i { font-size: 28px; color: var(--accent); margin-bottom: 12px; display: block; }
.ship-type-option h4 { color: var(--text); font-weight: 800; font-size: 15px; margin: 0 0 6px; text-transform: uppercase; }
.ship-type-option p { color: var(--text3); font-size: 13px; margin: 0; }

.quote-item { background: var(--bg3); border: 1px solid var(--line); border-radius: 20px; padding: 28px; margin-bottom: 20px; animation: quoteItemIn 0.35s ease-out; }
.quote-item .form { margin-top: 0; gap: 18px; }
.quote-item__title { font-family: 'Big Shoulders Display', sans-serif; font-weight: 800; font-size: 15px; text-transform: uppercase; color: var(--text); margin: 0 0 18px; display: flex; align-items: center; gap: 10px; }
.quote-item__title i { color: var(--accent2); }
.quote-item__hint { color: var(--text3); font-size: 12px; margin: 6px 0 0; }

@keyframes quoteItemIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.dims-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dims-row span { display: block; color: var(--text3); font-size: 11px; margin-top: 4px; }
.unit-row { display: flex; gap: 12px; }
.unit-row select { max-width: 110px; flex-shrink: 0; }

.check-row { display: flex; align-items: flex-start; gap: 12px; margin-top: 8px; }
.check-row input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; }
.check-row label { color: var(--text2); font-size: 14px; font-weight: 600; cursor: pointer; }
.check-row a { color: var(--accent); }

.value-input { position: relative; }
.value-input span { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text3); font-weight: 700; }
.value-input input { padding-left: 32px; }

.review-card { background: var(--bg3); border: 1px solid var(--line); border-radius: 18px; padding: 26px; margin-bottom: 16px; }
.review-card h3 { font-family: 'Big Shoulders Display', sans-serif; font-weight: 800; font-size: 14px; text-transform: uppercase; color: var(--text); margin: 0 0 14px; display: flex; align-items: center; gap: 10px; }
.review-card h3 i { color: var(--accent); }
.review-card p { color: var(--text2); font-size: 14px; line-height: 1.7; margin: 0 0 4px; }
.review-card p strong { color: var(--text); }
.review-line { border-left: 3px solid var(--accent); padding-left: 14px; margin-bottom: 14px; }
.review-line p { margin: 0 0 3px; }
.review-line p:first-child { color: var(--text); font-weight: 800; }

.next-steps { background: var(--bg3); border: 1px solid var(--line); border-radius: 18px; padding: 28px; margin: 32px 0; }
.next-steps h3 { color: var(--text); font-weight: 800; font-size: 15px; margin: 0 0 16px; display: flex; align-items: center; gap: 10px; }
.next-steps h3 i { color: var(--accent); }
.next-steps ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.next-steps li { display: flex; align-items: flex-start; gap: 10px; color: var(--text2); font-size: 14px; line-height: 1.6; }
.next-steps li i { color: var(--accent); margin-top: 3px; }

.quote-success { text-align: center; padding: 20px 0 8px; }
.quote-success i.fa-circle-check { font-size: 58px; color: var(--accent); margin-bottom: 22px; }
.quote-success h2 { margin-bottom: 12px; }
.quote-success p { color: var(--text2); font-size: 16px; margin: 0 auto 10px; max-width: 520px; }
.quote-success__list { text-align: left; max-width: 520px; margin: 24px auto 28px; display: flex; flex-direction: column; gap: 12px; }
.quote-success__list div { display: flex; align-items: flex-start; gap: 10px; color: var(--text2); font-size: 14.5px; line-height: 1.6; }
.quote-success__list i { color: var(--accent); margin-top: 3px; }
.quote-success__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }

@media (max-width: 640px) {
  .quote-steps { flex-wrap: wrap; row-gap: 20px; }
  .quote-steps::before { display: none; }
  .quote-actions { flex-direction: column-reverse; }
  .quote-actions .btn { width: 100%; justify-content: center; }
}

/* ---------- Retour en haut ---------- */
.to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg2);
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  z-index: 90;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { border-color: var(--accent); color: var(--accent); }
