/* ============================================================
   ODYSSÉE LOISIRS — COMPOSANTS CSS v1
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   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: 70% 40%;
  transform: scale(1.04);
  animation: hero-zoom 18s ease-out forwards;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg,
      rgba(224,86,16,.92)  0%,
      rgba(254,109,28,.82) 40%,
      rgba(180,60,5,.60)   70%,
      rgba(9,32,82,.40)    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.015em;
  font-feature-settings: 'liga' 0, 'kern' 1;
  color: var(--color-white);
  margin-bottom: var(--space-5);
  max-width: 14ch;
  opacity: 0;
  animation: fade-up .65s .15s ease forwards;
}

.hero__title em {
  font-style: normal;
  color: var(--color-navy);
}

.hero__subtitle {
  font-size: clamp(var(--text-md), 2.2vw, var(--text-xl));
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  max-width: 46ch;
  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-navy);
  flex-shrink: 0;
}

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

/* Badge coin */
/* Label & séparateur dans le hero (fond orange) */
.hero .section__label {
  color: rgba(255,255,255,.9);
}
.hero .section__label::before {
  background: rgba(255,255,255,.9);
}

.hero__badge-corner {
  position: absolute;
  bottom: var(--space-10);
  right: var(--space-8);
  z-index: 1;
  background: rgba(9,32,82,.25);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(9,32,82,.35);
  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-corner svg {
  width: 16px; height: 16px;
  color: var(--color-white);
  flex-shrink: 0;
}

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

.hero__badge-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-corner { 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: start;
}

.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);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-base);
  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: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-orange-light);
  border-radius: var(--radius-lg);
  color: var(--color-orange);
  transition: all var(--transition-base);
}

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

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

.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-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-pearl);
  overflow: hidden;
}

.how-visual-header {
  background: linear-gradient(135deg, var(--color-orange) 0%, #FF8C42 100%);
  padding: var(--space-8) var(--space-8) var(--space-6);
  color: white;
}

.how-visual-header h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-2);
}

.how-visual-header p {
  font-size: var(--text-sm);
  opacity: .85;
}

.how-visual-steps-mini {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.how-mini-step {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-snow);
  border: 1px solid var(--color-pearl);
  transition: all var(--transition-base);
}

.how-mini-step.is-active-mini {
  background: var(--color-orange-light);
  border-color: rgba(254,109,28,.2);
}

.how-mini-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-orange);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-mini-step__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-ink);
}

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

/* ══════════════════════════════════════════════════════════
   NOS ÉQUIPEMENTS
   ══════════════════════════════════════════════════════════ */

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

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

.equip-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-pearl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.equip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), #FF8C42);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

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

.equip-card:hover::before {
  transform: scaleX(1);
}

.equip-card__icon {
  width: 56px;
  height: 56px;
  background: var(--color-orange-light);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  flex-shrink: 0;
}

.equip-card__icon svg {
  width: 26px; height: 26px;
}

.equip-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  line-height: var(--leading-tight);
}

.equip-card__desc {
  font-size: var(--text-sm);
  color: var(--color-ink-light);
  line-height: var(--leading-normal);
  flex: 1;
}

.equip-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.equip-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  background: var(--color-orange-light);
  color: var(--color-orange-dark);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
}

.equip-notice {
  margin-top: var(--space-10);
  padding: var(--space-5) var(--space-6);
  background: var(--color-orange-light);
  border-left: 3px solid var(--color-orange);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  color: var(--color-ink-light);
  font-style: italic;
}

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

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

/* ══════════════════════════════════════════════════════════
   NOS STATIONS — bientôt disponibles
   ══════════════════════════════════════════════════════════ */

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

.stations-coming {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

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

.station-preview-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  border: 1px dashed var(--color-mist);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  transition: all var(--transition-base);
}

.station-preview-card:hover {
  border-color: var(--color-orange);
  box-shadow: var(--shadow-md);
}

.station-preview-icon {
  width: 52px; height: 52px;
  background: var(--color-orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
}

.station-preview-icon svg {
  width: 22px; height: 22px;
}

.station-preview-title {
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
  font-size: var(--text-base);
}

.station-preview-sub {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: var(--leading-normal);
}

.stations-cta-group {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

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

@media (max-width: 640px) {
  .stations-grid-preview { grid-template-columns: 1fr; }
  .stations-cta-group { flex-direction: column; align-items: stretch; }
  .stations-cta-group .btn { justify-content: center; }
}

/* ══════════════════════════════════════════════════════════
   CARTE — PLACEHOLDER
   ══════════════════════════════════════════════════════════ */

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

.map-placeholder {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  height: 380px;
  background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-pearl) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-4);
  border: 2px dashed var(--color-mist);
  text-align: center;
  padding: var(--space-8);
}

.map-placeholder__icon {
  width: 64px; height: 64px;
  background: var(--color-orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
}

.map-placeholder__icon svg { width: 28px; height: 28px; }

.map-placeholder__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-navy);
  font-weight: var(--weight-bold);
}

.map-placeholder__sub {
  font-size: var(--text-base);
  color: var(--color-slate);
  max-width: 40ch;
  line-height: var(--leading-normal);
}

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

.launch-section {
  background: linear-gradient(135deg, #7A2A06 0%, #A33A0A 45%, #C2480D 100%);
  position: relative;
  overflow: hidden;
}

.launch-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 65%);
  pointer-events: none;
}

.launch-section::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -8%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(9,32,82,.08) 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,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.launch-target:hover {
  background: rgba(9,32,82,.15);
  border-color: rgba(9,32,82,.2);
  transform: translateX(4px);
}

.launch-target__icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9,32,82,.2);
  border-radius: var(--radius-md);
  color: var(--color-white);
  flex-shrink: 0;
}

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

.launch-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

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

.launch-feature:hover {
  background: rgba(9,32,82,.15);
  border-color: rgba(9,32,82,.2);
}

.launch-feature__icon {
  width: 40px; height: 40px;
  background: rgba(9,32,82,.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}

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

.launch-feature__desc {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.5);
  line-height: var(--leading-normal);
}

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

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 780px;
  margin-inline: auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-pearl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-item.is-open {
  box-shadow: var(--shadow-md);
  border-color: rgba(254,109,28,.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
  font-size: var(--text-base);
  transition: color var(--transition-fast);
  list-style: none;
  user-select: none;
}

.faq-question:hover { color: var(--color-orange); }

.faq-chevron {
  width: 20px; height: 20px;
  color: var(--color-orange);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-spring);
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-ink-light);
  line-height: var(--leading-loose);
  border-top: 1px solid var(--color-pearl);
  padding-top: var(--space-4);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--color-ink-deep);
  color: rgba(255,255,255,.65);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: var(--space-8);
}

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

.footer-brand {}

.footer-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
  margin-bottom: var(--space-5);
}

.footer-tagline {
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  max-width: 32ch;
  margin-bottom: var(--space-6);
}

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

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

.footer-social:hover {
  background: var(--color-orange);
  color: white;
}

.footer-social svg { width: 16px; height: 16px; }

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

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

.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
  transition: color var(--transition-fast);
}

.footer-col a:hover { color: var(--color-orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap;
}

.footer-copy {
  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,.6); }

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

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════════════
   PAGES INTÉRIEURES — Sections communes
   ══════════════════════════════════════════════════════════ */

/* Page hero (intérieur) */
.page-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
  padding-top: clamp(6rem, 14vw, 9rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(254,109,28,.1) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 40%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(254,109,28,.06) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: var(--weight-black);
  color: var(--color-white);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-5);
}

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

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

/* Grid 2 colonnes générique */
.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}

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

/* Card générique */
.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-pearl);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: all var(--transition-slow);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(254,109,28,.15);
}

.feature-card__icon {
  width: 52px; height: 52px;
  background: var(--color-orange-light);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
}

.feature-card__icon svg { width: 24px; height: 24px; }

.feature-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy);
}

.feature-card__body {
  font-size: var(--text-sm);
  color: var(--color-ink-light);
  line-height: var(--leading-loose);
}

/* Liste avec check */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-ink-light);
  line-height: var(--leading-normal);
}

.check-item svg {
  width: 18px; height: 18px;
  color: var(--color-orange);
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTA section centrale */
.cta-section {
  background: linear-gradient(135deg, #7A2A06 0%, #A33A0A 45%, #C2480D 100%);
  text-align: center;
  padding-block: clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 65%);
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
  position: relative;
}

.cta-section__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,.82);
  margin-bottom: var(--space-8);
  position: relative;
}

.cta-section .btn--ghost {
  border-color: rgba(255,255,255,.55);
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  position: relative;
}

/* Concept timeline */
.concept-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.concept-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-orange), var(--color-navy-light));
}

.timeline-item {
  display: flex;
  gap: var(--space-6);
  padding-bottom: var(--space-8);
  position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--color-white), 0 0 0 6px rgba(254,109,28,.2);
}

.timeline-dot svg { width: 18px; height: 18px; }

.timeline-content {
  padding-top: var(--space-2);
  flex: 1;
}

.timeline-content h3 {
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

.timeline-content p {
  font-size: var(--text-sm);
  color: var(--color-ink-light);
  line-height: var(--leading-loose);
}

/* Équipements page — familles */
.family-section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.family-section:nth-child(even) {
  background: var(--color-snow);
}

.family-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.family-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--color-orange) 0%, #FF8C42 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-orange);
}

.family-icon-wrap svg { width: 28px; height: 28px; }

.family-header__text h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.family-header__text p {
  color: var(--color-ink-light);
  font-size: var(--text-base);
  line-height: var(--leading-loose);
}

.family-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-4);
}

.family-item {
  background: var(--color-white);
  border: 1px solid var(--color-pearl);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transition: all var(--transition-base);
}

.family-item:hover {
  border-color: var(--color-orange);
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}

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

.family-item span {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-ink);
}

/* Stations page coming soon */
.stations-full-page {
  text-align: center;
}

.stations-coming-big {
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}

.stations-coming-big .stations-icon {
  width: 80px; height: 80px;
  background: var(--color-orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.stations-coming-big .stations-icon svg {
  width: 36px; height: 36px;
}

.stations-coming-big h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-5);
}

.stations-coming-big p {
  font-size: var(--text-base);
  color: var(--color-ink-light);
  line-height: var(--leading-loose);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.notify-form {
  display: flex;
  gap: var(--space-3);
  max-width: 440px;
  margin-inline: auto;
}

.notify-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--color-pearl);
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: var(--text-sm);
  color: var(--color-ink);
  background: var(--color-white);
  transition: border-color var(--transition-fast);
  outline: none;
}

.notify-input:focus {
  border-color: var(--color-orange);
}

@media (max-width: 640px) {
  .notify-form { flex-direction: column; }
  .notify-input { text-align: center; }
}
