/* ============================================================
   PAGE ACCUEIL & COMPOSANTS PARTAGÉS v2
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--color-navy);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.04);
  animation: hero-zoom 16s ease-out forwards;
}

@keyframes hero-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

/* Overlay navy dominant avec dégradé directionnel */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(9,32,82,.92) 0%,
      rgba(9,32,82,.78) 40%,
      rgba(9,32,82,.5)  70%,
      rgba(5,18,50,.65) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: var(--space-20);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.25rem);
  font-weight: var(--weight-black);
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: var(--space-5);
  max-width: 13ch;
  opacity: 0;
  animation: fade-up .65s .15s ease forwards;
}

.hero__title em {
  font-style: normal;
  color: var(--color-orange);
  position: relative;
}

.hero__subtitle {
  font-size: clamp(var(--text-md), 2.2vw, var(--text-xl));
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: var(--space-10);
  opacity: 0;
  animation: fade-up .65s .3s ease forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
  opacity: 0;
  animation: fade-up .65s .45s ease forwards;
}

/* Trust bar */
.hero__trust {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-4), 3vw, var(--space-8));
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up .65s .6s ease forwards;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.65);
  font-weight: var(--weight-medium);
}

.trust-item svg {
  width: 15px;
  height: 15px;
  color: var(--color-orange);
  flex-shrink: 0;
}

.trust-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.18);
}

/* Badge localisation (coin) */
.hero__badge-location {
  position: absolute;
  bottom: var(--space-10);
  right: var(--space-8);
  z-index: 1;
  background: rgba(9,32,82,.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  opacity: 0;
  animation: fade-left .65s .8s ease forwards;
}

.hero__badge-location svg {
  width: 16px; height: 16px;
  color: var(--color-orange);
  flex-shrink: 0;
}

.hero__badge-location-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.5);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}

.hero__badge-location-value {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  display: block;
  line-height: 1;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-left {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
  .hero__title { max-width: 100%; }
  .hero__subtitle { max-width: 100%; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__badge-location { display: none; }
  .trust-sep { display: none; }
}

/* ══════════════════════════════════════════════════════════
   COMMENT ÇA MARCHE
   ══════════════════════════════════════════════════════════ */

.how-it-works {
  background: var(--color-snow);
}

.how-it-works__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: center;
}

/* Steps */
.how-it-works__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.step-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-5);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  border: 1.5px solid transparent;
}

.step-item:hover,
.step-item.is-active {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.step-item.is-active {
  border-color: rgba(254,109,28,.2);
}

.step-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy-light);
  border-radius: var(--radius-lg);
  color: var(--color-navy);
  transition: all var(--transition-base);
}

.step-item.is-active .step-icon {
  background: var(--color-orange);
  color: var(--color-white);
}

.step-item.is-active .step-icon svg { color: var(--color-white); }

.step-title {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-ink);
  margin-bottom: var(--space-1);
  line-height: var(--leading-snug);
}

.step-desc {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: var(--leading-normal);
}

/* Visuel */
.how-it-works__visual {
  position: sticky;
  top: 110px;
}

.how-visual-frame {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--color-navy);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-xl);
}

.how-video-frame {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-xl);
  align-self: center;
}

.how-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity var(--transition-spring);
}

.visual-img.is-visible { opacity: 1; }

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,32,82,.75) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.visual-caption {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  right: var(--space-6);
  z-index: 2;
  color: var(--color-white);
}

.visual-caption-step {
  font-size: var(--text-xs);
  color: var(--color-orange);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}

.visual-caption-text {
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
}

.visual-dots {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.visual-dot {
  height: 2px;
  background: rgba(255,255,255,.3);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  flex: 1;
}

.visual-dot.is-active { background: var(--color-orange); }

@media (max-width: 1024px) {
  .how-it-works__layout { grid-template-columns: 1fr; }
  .how-it-works__visual { position: static; }
  .how-visual-frame { max-width: 420px; margin: 0 auto; }
}

/* ══════════════════════════════════════════════════════════
   NOS STATIONS (home)
   ══════════════════════════════════════════════════════════ */

.stations-section { background: var(--color-white); }

.stations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.station-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-pearl);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-slow);
}

.station-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.station-card__img-wrap {
  position: relative;
  /* Même ratio pour toutes les cartes stations */
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.station-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-spring);
}

.station-card:hover .station-card__img-wrap img { transform: scale(1.05); }

.station-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,32,82,.6) 0%, transparent 55%);
}

.station-card__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
}

.station-card__body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.station-card__location {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-slate);
  font-size: var(--text-xs);
  margin-bottom: var(--space-2);
  font-weight: var(--weight-medium);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.station-card__location svg {
  width: 12px; height: 12px;
  color: var(--color-orange);
}

.station-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
  line-height: var(--leading-tight);
}

.station-card__desc {
  font-size: var(--text-sm);
  color: var(--color-ink-light);
  line-height: var(--leading-normal);
  flex: 1;
  margin-bottom: var(--space-5);
}

.station-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-pearl);
  margin-bottom: var(--space-4);
}

.station-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-slate);
  font-weight: var(--weight-medium);
}

.station-meta-item svg {
  width: 12px; height: 12px;
  color: var(--color-orange);
}

@media (max-width: 1024px) {
  .stations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .stations-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   B2B — LANCER MA STATION
   ══════════════════════════════════════════════════════════ */

.launch-section {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.launch-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(254,109,28,.1) 0%, transparent 65%);
  pointer-events: none;
}

.launch-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14,180,194,.06) 0%, transparent 65%);
  pointer-events: none;
}

.launch-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: center;
}

.launch-targets {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-8);
  margin-bottom: var(--space-10);
}

.launch-target {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: default;
}

.launch-target:hover {
  background: rgba(254,109,28,.08);
  border-color: rgba(254,109,28,.2);
  transform: translateX(4px);
}

.launch-target__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(254,109,28,.12);
  border-radius: var(--radius-md);
  color: var(--color-orange);
  flex-shrink: 0;
}

.launch-target__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: rgba(255,255,255,.82);
}

/* Avantages qualitatifs droite */
.launch-qualites {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.launch-qualite {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5) var(--space-6);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.launch-qualite:hover {
  background: rgba(254,109,28,.07);
  border-color: rgba(254,109,28,.15);
}

.launch-qualite__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(254,109,28,.12);
  border-radius: var(--radius-lg);
  color: var(--color-orange);
  flex-shrink: 0;
}

.launch-qualite__title {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.launch-qualite__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
  line-height: var(--leading-normal);
}

@media (max-width: 1024px) {
  .launch-inner { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   CARTE
   ══════════════════════════════════════════════════════════ */

.map-section { background: var(--color-snow); }

.map-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-5);
  align-items: start;
}

.map-sidebar {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-pearl);
}

.map-station-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-4);
  border-bottom: 1px solid var(--color-pearl);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.map-station-item:last-child { border-bottom: none; }

.map-station-item:hover,
.map-station-item.is-active {
  background: var(--color-navy-light);
}

.map-station-item.is-active .map-station-name {
  color: var(--color-navy);
}

.map-station-pin {
  width: 30px;
  height: 30px;
  background: var(--color-navy);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-station-pin svg {
  width: 13px; height: 13px;
  color: var(--color-white);
}

.map-station-name {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-ink);
  transition: color var(--transition-fast);
}

.map-station-sub {
  font-size: var(--text-xs);
  color: var(--color-slate);
  margin-top: 1px;
}

.map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

#map {
  height: 440px;
  width: 100%;
  z-index: 0;
}

@media (max-width: 1024px) {
  .map-layout { grid-template-columns: 1fr; }
  .map-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .map-station-item {
    border-bottom: none;
    border-right: 1px solid var(--color-pearl);
  }
  .map-station-item:last-child { border-right: none; }
}

@media (max-width: 640px) {
  .map-sidebar { grid-template-columns: 1fr; }
  .map-station-item { border-right: none; border-bottom: 1px solid var(--color-pearl); }
  #map { height: 340px; }
}

/* ══════════════════════════════════════════════════════════
   FOOTER PARTAGÉ (identique sur toutes les pages)
   ══════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--color-ink-deep);
  color: rgba(255,255,255,.6);
}

.footer-top {
  padding: clamp(3.5rem, 7vw, 5rem) 0 clamp(3rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-12));
}

.footer-brand {}

/* Logo original sur fond sombre → blanc */
.footer-brand img {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .88;
  margin-bottom: var(--space-4);
}

.footer-brand-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  max-width: 26ch;
  margin-bottom: var(--space-6);
  color: rgba(255,255,255,.5);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-2px);
}

.social-link svg { width: 15px; height: 15px; }

.footer-col-title {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.5);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-link::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--color-orange);
  transition: width var(--transition-base), margin-right var(--transition-base);
}

.footer-link:hover { color: rgba(255,255,255,.88); }
.footer-link:hover::before { width: 12px; margin-right: var(--space-2); }

.footer-bottom {
  padding: var(--space-5) 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.3);
}

.footer-legal {
  display: flex;
  gap: var(--space-5);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.3);
  transition: color var(--transition-fast);
}

.footer-legal a:hover { color: rgba(255,255,255,.65); }

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO (pages intérieures)
   ══════════════════════════════════════════════════════════ */

.page-hero {
  background: var(--color-navy);
  padding-top: clamp(7rem, 12vw, 9rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .14;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(9,32,82,.97) 35%, rgba(9,32,82,.7) 100%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.4);
  margin-bottom: var(--space-5);
  letter-spacing: 0.02em;
}

.page-hero__breadcrumb a {
  color: rgba(255,255,255,.4);
  transition: color var(--transition-fast);
}

.page-hero__breadcrumb a:hover { color: rgba(255,255,255,.7); }
.page-hero__breadcrumb-sep { color: rgba(255,255,255,.2); }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: var(--weight-black);
  color: var(--color-white);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: var(--space-4);
}

.page-hero__subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  color: rgba(255,255,255,.68);
  line-height: var(--leading-loose);
  max-width: 54ch;
}

/* ══════════════════════════════════════════════════════════
   CTA BAR (bande de conversion)
   ══════════════════════════════════════════════════════════ */

.cta-bar {
  background: var(--color-navy-light);
  border: 1px solid rgba(9,32,82,.12);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-8), 5vw, var(--space-12)) clamp(var(--space-8), 5vw, var(--space-12));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .cta-bar { flex-direction: column; align-items: flex-start; }
}
