/* ════════════════════════════════════════════════════
   WOMA — Stylesheet
   Reproduit la structure de Proxy eMobility (fond blanc)
   Couleurs : Orange #F97316 · Vert #18994E
   Police  : Plus Jakarta Sans
════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --orange:     #E27338;
  --orange-lt:  #FFF3EB;
  --orange-dk:  #CC5E26;
  --green:      #05A87A;
  --green-lt:   #E6F8F3;
  --green-dk:   #048762;
  --dark:       #111827;
  --dark-md:    #374151;
  --gray:       #6B7280;
  --gray-lt:    #9CA3AF;
  --border:     #E5E7EB;
  --bg:         #FFFFFF;
  --bg-lt:      #F9FAFB;
  --bg-lter:    #F3F4F6;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);

  --nav-h:      76px;
  --section-v:  100px;
  --container:  1240px;

  --ease:       cubic-bezier(.4,0,.2,1);
  --ease-out:   cubic-bezier(0,0,.2,1);
  --ease-spring:cubic-bezier(.34,1.56,.64,1);
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
strong { font-weight: 800; }
em { font-style: normal; font-weight: inherit; }

/* ─── ACCESSIBILITY ──────────────────────────────── */
.skip-link {
  position: absolute; top: -60px; left: 0;
  background: var(--orange); color: #fff;
  padding: 10px 20px; font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ─── UTILITY ────────────────────────────────────── */
.text-orange { color: var(--orange); font-weight: inherit; }
.text-green  { color: var(--green);  font-weight: inherit; }
.bg-light    { background: var(--bg-lt); }

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-size: .95rem; font-weight: 700; letter-spacing: .02em;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 16px rgba(249,115,22,.35);
}
.btn--primary:hover {
  background: var(--orange-dk);
  box-shadow: 0 6px 24px rgba(249,115,22,.45);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent; color: var(--dark);
  border: 2px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--orange); color: var(--orange);
  transform: translateY(-2px);
}
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: .85rem; }

/* ─── SECTION COMMON ─────────────────────────────── */
.section { padding: var(--section-v) 0; }
.section-container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-subtitle { color: var(--gray); font-size: 1.05rem; margin-top: 16px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow--light { color: rgba(255,255,255,.7); }

.section-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.2;
  color: var(--dark); margin-bottom: 8px;
}
h1 span, h2 span, h3 span, h4 span,
h1 em, h2 em, h3 em, h4 em,
.section-h2 span, .section-h2 em,
.hero-title span, .hero-title em,
.incl-hero-title span, .incl-hero-title em {
  font-weight: 800 !important;
  font-style: normal;
}

.h2-bar {
  width: 48px; height: 4px;
  background: var(--orange); border-radius: 2px;
  margin: 20px 0 28px;
}

.body-text {
  color: var(--dark-md); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 16px;
}

/* ─── SPLIT LAYOUT ───────────────────────────────── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-layout--reverse .split-visual { order: -1; }

.visual-wrapper {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.visual-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.visual-wrapper:hover .visual-img { transform: scale(1.04); }

/* ─── ANIMATIONS ──────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="fade-left"]  { transform: translateX(32px); }
[data-animate].is-visible {
  opacity: 1;
  transform: translate(0);
}

/* ─── NAVBAR (YANGO-STYLE FLOATING CAPSULE) ────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  transition: all .3s var(--ease);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
}
.nav-container {
  max-width: 1440px; margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
  gap: 16px;
}
.nav-logo {
  display: flex; align-items: center; flex-shrink: 0;
  z-index: 2;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .85; }
.logo-img {
  display: block;
  height: 26px;
  width: auto;
  transition: opacity .2s;
}
.footer-brand .logo-img {
  height: 26px;
}

/* ─── YANGO FLOATING PILL MENU CONTAINER ─── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
  background: rgba(243, 244, 246, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: 9999px;
  padding: 4px 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  z-index: 1;
  transition: all 0.25s var(--ease);
}
.nav-link {
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #4b5563;
  border: 1px solid transparent;
  transition: all .2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.nav-link:hover {
  color: #111827;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.nav-link.active {
  color: var(--orange) !important;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-color: rgba(226, 115, 56, 0.12);
  font-weight: 800;
}

/* ─── NAV ACTIONS (CTA & LANGUAGE SWITCHER) ─── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 2;
}
.nav-cta--mobile {
  display: none;
}
.nav-cta--desktop {
  display: inline-flex;
}
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 3px 12px rgba(226, 115, 56, 0.28);
  margin-left: 0;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--ease);
}
.nav-cta:hover {
  background: var(--orange-dk);
  box-shadow: 0 6px 18px rgba(226, 115, 56, 0.38);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 8px;
  z-index: 2;
  cursor: pointer;
  border: none;
  background: transparent;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  padding-top: var(--nav-h);
  display: flex; flex-direction: column;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-container {
  flex: 1;
  max-width: var(--container); margin: 0 auto;
  padding: 60px 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-lt);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .82rem; font-weight: 600; color: var(--dark-md);
  margin-bottom: 28px;
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(24,153,78,.4);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(24,153,78,.4); }
  70%  { box-shadow: 0 0 0 8px rgba(24,153,78,0); }
  100% { box-shadow: 0 0 0 0 rgba(24,153,78,0); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.02em; color: var(--dark);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.1rem; color: var(--dark-md);
  line-height: 1.7; max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; align-items: center; gap: 14px;
}
.trust-avatars { display: flex; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .75rem; font-weight: 700;
  margin-right: -8px;
}
.hero-trust p { font-size: .85rem; color: var(--gray); margin-left: 16px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-wrapper {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
}
.hero-float {
  position: absolute;
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
  min-width: 200px;
}
.hero-float--top { top: 24px; left: -28px; animation: float-up 4s ease-in-out infinite; }
.hero-float--bottom { bottom: 32px; right: -28px; animation: float-up 4s ease-in-out infinite 2s; }
@keyframes float-up {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.float-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-text { display: flex; flex-direction: column; }
.float-label { font-size: .72rem; color: var(--gray); font-weight: 500; }
.float-value { font-size: 1rem; font-weight: 800; color: var(--dark); }

.hero-deco {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: -1;
}
.hero-deco--orange {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 70%);
  bottom: -60px; left: -60px;
}
.hero-deco--green {
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(24,153,78,.12) 0%, transparent 70%);
  top: -40px; right: -40px;
}

.hero-scroll-hint {
  display: flex; justify-content: center;
  padding-bottom: 32px;
}
.scroll-line {
  width: 2px; height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  border-radius: 2px; animation: scroll-fade 2s ease-in-out infinite;
}
@keyframes scroll-fade {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.2); }
}

/* ─── STATS BAND ─────────────────────────────────── */
.stats-band {
  background: var(--bg-lt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-container {
  max-width: var(--container); margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 180px;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  padding: 16px 24px; text-align: center;
}
.stat-icon { opacity: .85; }
.stat-number {
  font-size: 2.2rem; font-weight: 800;
  color: var(--dark); line-height: 1;
  letter-spacing: -.02em;
}
.stat-label { font-size: .85rem; color: var(--gray); font-weight: 500; }
.stat-sep {
  width: 1px; height: 60px;
  background: var(--border); flex-shrink: 0;
}

/* ─── POURQUOI ───────────────────────────────────── */
.pourquoi { background: var(--bg); }

.feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.feature-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color .25s, box-shadow .25s;
}
.feature-row:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(249,115,22,.1);
}
.feat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-icon--orange { background: var(--orange-lt); color: var(--orange); }
.feat-icon--green  { background: var(--green-lt); color: var(--green); }
.feat-icon--navy   { background: #EEF2FF; color: #4F46E5; }
.feat-title { font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.feat-desc  { font-size: .88rem; color: var(--gray); line-height: 1.5; }

/* Floating tags on image */
.floating-tag {
  position: absolute;
  background: #fff; border-radius: 50px;
  box-shadow: var(--shadow-md);
  padding: 10px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 700; color: var(--dark);
}
.tag--1 { top: 20px; left: -20px; animation: float-up 3.5s ease-in-out infinite; }
.tag--2 { top: 50%; left: -24px; transform: translateY(-50%); animation: float-up 3.5s ease-in-out infinite .5s; }
.tag--3 { bottom: 24px; right: -20px; animation: float-up 3.5s ease-in-out infinite 1s; }
.tag-icon {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.visual-wrapper--pourquoi {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
}
.visual-img--pourquoi {
  width: 100%;
  height: auto;
  aspect-ratio: 2408 / 1642;
  object-fit: cover;
  display: block;
}

/* Panoramic step strip */
.pourquoi-strip-wrapper {
  margin-top: 56px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  background: #fff;
}
.pourquoi-strip-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
/* ─── VISION ─────────────────────────────────────── */
.vision {
  position: relative; overflow: hidden;
  padding: var(--section-v) 0;
  color: #fff;
}
.vision-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  filter: brightness(.45) saturate(.7);
}
.vision-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(17,24,39,.85) 0%, rgba(24,153,78,.4) 100%);
}
.vision-container {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  padding: 0 40px;
}
.vision-inner { max-width: 900px; }
.vision-h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 24px;
}
.vision-desc {
  font-size: 1.1rem; line-height: 1.7;
  color: rgba(255,255,255,.8); max-width: 700px;
  margin-bottom: 56px;
}
.vision-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.vision-stat {
  border-left: 3px solid rgba(255,255,255,.2);
  padding-left: 20px;
}
.vstat-num {
  font-size: 2.4rem; font-weight: 800;
  color: var(--orange); line-height: 1;
  margin-bottom: 6px;
}
.vstat-label {
  font-size: .9rem; font-weight: 700;
  margin-bottom: 4px;
}
.vstat-desc { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ─── ECOSYSTEME ──────────────────────────────────── */
.ecosysteme { background: var(--bg); }
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.eco-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; background: var(--bg);
  transition: all .3s var(--ease);
  cursor: default;
}
.eco-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.eco-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.eco-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.eco-card p  { font-size: .9rem; color: var(--gray); line-height: 1.6; margin-bottom: 18px; }
.eco-tag {
  display: inline-block;
  padding: 4px 12px; border-radius: 50px;
  background: var(--bg-lter); color: var(--dark-md);
  font-size: .75rem; font-weight: 600;
}

/* ─── APPLICATION SHOWCASE ───────────────────────── */
.app-section { background: var(--bg); }

.app-features { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 32px; }
.app-feat {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color .25s, box-shadow .25s;
}
.app-feat:hover { border-color: var(--orange); box-shadow: 0 4px 12px rgba(249,115,22,.08); }
.app-feat-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.app-feat strong { display: block; font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.app-feat p { font-size: .85rem; color: var(--gray); line-height: 1.4; margin: 0; }

.app-stores { display: flex; gap: 12px; flex-wrap: wrap; }
.app-store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 50px;
  background: var(--dark); color: #fff;
  font-size: .9rem; font-weight: 600;
  transition: all .25s var(--ease);
}
.app-store-btn:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,.3);
}

.app-visual { display: flex; align-items: center; justify-content: center; }
.app-mockup-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-xl);
}

/* ─── WOMA FEMMES (HOMEPAGE SECTION) ──────────────── */
.femmes-home {
  background: linear-gradient(135deg, #FFFDFB 0%, #FFF7F0 60%, #F2FAF5 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.femmes-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.f-high-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color .25s, box-shadow .25s;
}
.f-high-item:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(249,115,22,.1);
}

.f-high-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.f-high-item strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--dark);
}

.f-high-item p {
  font-size: .86rem;
  color: var(--gray);
  line-height: 1.45;
  margin: 0;
}

.femmes-visual-box {
  position: relative;
  overflow: visible;
  padding-bottom: 24px;
}

.femmes-imgs-duo {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.femmes-img-primary {
  width: 62%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3/4;
}

.femmes-img-secondary {
  width: 36%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3/4;
  margin-bottom: 24px;
}

.femmes-badge-float {
  position: absolute;
  bottom: 0;
  left: -20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: float-up 4s ease-in-out infinite;
}

/* ─── PHILOSOPHIE ────────────────────────────────── */
.philosophie { background: var(--bg-lt); }
.visual-wrapper--philo { overflow: visible; }
.visual-wrapper--philo .visual-img { border-radius: var(--radius-xl); overflow: hidden; }
.philo-quote-card {
  position: absolute; bottom: -24px; right: -24px;
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 24px;
  max-width: 280px;
  border-left: 4px solid var(--green);
}
.philo-quote-card p {
  font-size: .9rem; color: var(--dark-md); line-height: 1.6;
  margin-top: 10px; font-style: italic;
}
.pillars-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 32px;
}
.pillar {
  padding: 20px; border-radius: var(--radius-md);
  border: 1px solid var(--border); background: var(--bg);
  transition: border-color .25s, box-shadow .25s;
}
.pillar:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gray-lt);
}
.pillar-dot { width: 8px; height: 8px; border-radius: 50%; margin-bottom: 10px; }
.pillar-title { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.pillar p { font-size: .85rem; color: var(--gray); line-height: 1.5; }

/* ─── VALEURS ────────────────────────────────────── */
.valeurs { background: var(--bg); }
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.valeur-card {
  padding: 28px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--bg);
  transition: all .3s var(--ease);
}
.valeur-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(249,115,22,.1);
  transform: translateY(-4px);
}
.valeur-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.valeur-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.valeur-card p  { font-size: .88rem; color: var(--gray); line-height: 1.6; }

/* ─── CONTACT / CTA AVEC FOND PANORAMIQUE ─────────── */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #fff;
  background: #0b1120;
}
.contact-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.contact-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(14px) brightness(0.35) saturate(1.15);
  transform: scale(1.12);
}
.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.90) 0%, rgba(11, 17, 32, 0.80) 50%, rgba(11, 17, 32, 0.96) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.contact-container {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.contact-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: #fff; line-height: 1.2;
  margin-bottom: 20px;
}
.contact-desc {
  font-size: 1.1rem; color: rgba(255,255,255,.7);
  max-width: 560px; margin: 0 auto 40px; line-height: 1.7;
}
.contact-form {
  display: flex; gap: 12px;
  max-width: 480px; margin: 0 auto 28px;
}
.contact-input {
  flex: 1; padding: 14px 20px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08); color: #fff;
  font-family: inherit; font-size: .95rem;
  outline: none;
  transition: border-color .25s;
}
.contact-input::placeholder { color: rgba(255,255,255,.4); }
.contact-input:focus { border-color: var(--orange); }
.contact-info {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; flex-wrap: wrap;
  color: rgba(255,255,255,.6); font-size: .9rem;
}
.contact-link {
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.contact-link:hover { color: var(--orange); }
.contact-sep { opacity: .4; }

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--bg-lt);
  border-top: 1px solid var(--border);
}
.footer-container {
  max-width: var(--container); margin: 0 auto; padding: 0 40px;
}
.footer-top {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 64px; padding: 64px 0 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-tagline {
  font-size: .9rem; color: var(--gray); line-height: 1.8;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark-md);
  transition: all .2s var(--ease);
}
.social-btn:hover {
  background: var(--orange); color: #fff;
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer-nav {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a {
  font-size: .9rem; color: var(--gray);
  transition: color .2s;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .85rem; color: var(--gray);
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { color: var(--gray); transition: color .2s; }
.footer-legal a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  :root { --section-v: 72px; }
  .hero-container { gap: 40px; }
  .split-layout { gap: 48px; }
  .vision-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
}

/* ── Desktop Tight Navigation (1025px - 1280px) ── */
@media (max-width: 1280px) and (min-width: 1025px) {
  .nav-container { padding: 0 16px; gap: 8px; }
  .nav-menu { gap: 1px; padding: 3px 4px; }
  .nav-link { padding: 5px 9px; font-size: 0.67rem; letter-spacing: 0.025em; }
  .nav-cta { padding: 6px 13px; font-size: 0.70rem; }
  .lang-switcher { padding: 4px 7px; font-size: 0.68rem; }
}

/* ── Navigation Responsive (Tablets & Mobile <= 1024px) ── */
@media (max-width: 1024px) {
  :root { --nav-h: 68px; }

  .nav-container { padding: 0 20px; }
  .nav-hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    transform: translateY(-120%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0 0 24px 24px;
    border: none;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 4px;
    padding: 18px 20px 24px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    z-index: 999;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #1f2937;
    width: 100%;
    justify-content: flex-start;
  }
  .nav-link:hover, .nav-link.active {
    background: rgba(226, 115, 56, 0.08);
    color: var(--orange) !important;
    box-shadow: none;
  }
  .nav-cta--desktop {
    display: none;
  }
  .nav-cta--mobile {
    display: flex;
    margin: 12px 0 4px;
    border-radius: 9999px;
    text-align: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.82rem;
  }
  .nav-actions {
    gap: 8px;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  :root { --section-v: 60px; }

  .hero-container {
    grid-template-columns: 1fr;
    padding: 40px 20px 32px;
    gap: 36px;
  }
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-badge {
    margin: 0 auto 16px auto;
  }
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }
  .hero-desc {
    text-align: center;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 32px auto;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-social-proof {
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }
  .hero-visual { order: -1; }
  .hero-float--top  { left: 12px; }
  .hero-float--bottom { right: 12px; }

  .section-container { padding: 0 20px; }
  .stats-container    { padding: 0 20px; flex-direction: column; gap: 0; }
  .stat-sep           { width: 80%; height: 1px; }

  .split-layout, .split-layout--reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .split-content .eyebrow {
    justify-content: center;
  }
  .split-content .h2-bar {
    margin: 12px auto 20px auto;
  }
  .split-content .feature-pills {
    justify-content: center;
  }
  .split-content .btn {
    margin: 0 auto;
    width: 100%;
    max-width: 360px;
    justify-content: center;
    text-align: center;
  }
  .split-layout--reverse .split-visual { order: 0; }

  .eco-grid    { grid-template-columns: 1fr; }
  .energie-duo-grid { grid-template-columns: 1fr !important; }
  .valeurs-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }

  .vision-stats { grid-template-columns: repeat(2, 1fr); }

  .contact-form { flex-direction: column; }
  .contact-input, .contact-form .btn { border-radius: var(--radius-md); width: 100%; justify-content: center; }

  .footer-top    { padding: 40px 0 32px; }
  .footer-nav    { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .floating-tag { display: none; }
  .hero-float   { display: none; }
  .femmes-badge-float { display: none; }
  .femmes-img-primary { width: 58%; }
  .visual-img--pourquoi { aspect-ratio: auto; }
  .pourquoi-strip-wrapper {
    margin-top: 32px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .pourquoi-strip-img {
    min-width: 650px;
    width: 100%;
  }
  .philo-quote-card { position: static; margin-top: 24px; max-width: 100%; border-radius: var(--radius-md); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .vision-stats { grid-template-columns: 1fr 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; gap: 8px; align-items: center; }
}

/* ─── FORM FEEDBACK & SPINNER ───────────────────────── */
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin .7s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── FORM FOCUS GLOW ───────────────────────────────── */
input:focus, select:focus, textarea:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(226, 115, 56, 0.18) !important;
  outline: none;
}

/* ─── HARDWARE & STATION CARDS HOVER ────────────────── */
.station-card, .eco-card, .valeur-card, .feature-row, .app-feat, .f-high-item {
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.station-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.09) !important;
  border-color: rgba(226, 115, 56, 0.3) !important;
}
.station-card img {
  transition: transform .4s var(--ease);
}
.station-card:hover img {
  transform: scale(1.03);
}

/* ─── WHATSAPP FLOATING BUTTON ───────────────────────── */
.woma-whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff !important;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.woma-whatsapp-float:hover {
  background: #20BA56;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #ffffff !important;
}
.woma-whatsapp-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.woma-whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}
.woma-whatsapp-label {
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .woma-whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 12px;
    border-radius: 50%;
  }
  .woma-whatsapp-label {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════
   1. SCROLL PROGRESS INDICATOR
═══════════════════════════════════════════════════ */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange) 0%, #F59E0B 50%, var(--green) 100%);
  z-index: 10001;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(226, 115, 56, 0.5);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   2. INTERACTIVE HOTSPOTS ON ECOSYSTEM
═══════════════════════════════════════════════════ */
.hero-img-wrapper {
  position: relative;
}
.hotspot {
  position: absolute;
  z-index: 20;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.hotspot-beacon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hotspot-dot {
  width: 14px;
  height: 14px;
  background: var(--orange);
  border: 2.5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  z-index: 2;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.hotspot--green .hotspot-dot {
  background: var(--green);
}
.hotspot-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(226, 115, 56, 0.45);
  animation: hotspotPulse 2.2s infinite ease-out;
}
.hotspot--green .hotspot-ring {
  background: rgba(5, 168, 122, 0.45);
}
@keyframes hotspotPulse {
  0% { transform: scale(0.6); opacity: 0.95; }
  100% { transform: scale(2.3); opacity: 0; }
}
.hotspot:hover .hotspot-dot,
.hotspot.is-active .hotspot-dot {
  transform: scale(1.35);
  background: #fff;
}
.hotspot:hover .hotspot-ring,
.hotspot.is-active .hotspot-ring {
  animation: none;
  opacity: 0.6;
}

/* Hotspot Card / Tooltip (Desktop Hover & Click) */
.hotspot-card {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 260px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(226, 115, 56, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s var(--ease);
  z-index: 35;
}
.hotspot--green .hotspot-card {
  border-color: rgba(5, 168, 122, 0.35);
}
.hotspot:hover .hotspot-card,
.hotspot.is-active .hotspot-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.hotspot-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.hotspot-card h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hotspot-card h4 .icon-svg {
  color: var(--orange);
}
.hotspot--green .hotspot-card h4 .icon-svg {
  color: var(--green);
}
.hotspot-card-close {
  display: none;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-lter);
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}
.hotspot-card p {
  font-size: 0.82rem;
  color: var(--dark-md);
  line-height: 1.5;
  margin: 0 0 10px 0;
}
.hotspot-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--orange-lt);
  color: var(--orange);
}
.hotspot--green .hotspot-badge {
  background: var(--green-lt);
  color: var(--green);
}

/* Icon SVG Utility */
.icon-svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  stroke: currentColor;
}

/* Hotspots Chips Navigation & Docked Info Display */
.hero-hotspots-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}
.hero-hotspot-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  background: #ffffff;
  border: 1.5px solid var(--border);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--dark-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.hero-hotspot-chip .icon-svg {
  color: var(--orange);
  transition: stroke 0.25s, color 0.25s;
}
.hero-hotspot-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.hero-hotspot-chip.active {
  border-color: var(--orange);
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(226, 115, 56, 0.35);
  transform: translateY(-2px);
}
.hero-hotspot-chip.active .icon-svg {
  color: #ffffff;
  stroke: #ffffff;
}

/* Docked Card under hero visual */
.hero-docked-card {
  margin-top: 14px;
  background: #ffffff;
  border: 1.5px solid rgba(226, 115, 56, 0.3);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
  transition: all 0.3s var(--ease);
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}
.hero-docked-card.theme-green {
  border-color: rgba(5, 168, 122, 0.35);
}
.docked-card-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.docked-card-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--orange-lt);
  color: var(--orange);
  transition: all 0.25s;
}
.hero-docked-card.theme-green .docked-card-badge {
  background: var(--green-lt);
  color: var(--green);
}
.docked-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.docked-card-title .icon-svg {
  color: var(--orange);
}
.hero-docked-card.theme-green .docked-card-title .icon-svg {
  color: var(--green);
}
.docked-card-desc {
  font-size: 0.84rem;
  color: var(--dark-md);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-hotspots-nav {
    display: flex;
    justify-content: center;
    gap: 6px;
  }
  .hero-hotspot-chip {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
  .hotspot-card {
    display: none !important; /* On mobile, docked card handles 100% of display cleanly with zero clipping */
  }
  .hero-docked-card {
    padding: 14px 16px;
    text-align: left;
  }
  .docked-card-title {
    font-size: 0.98rem;
  }
  .docked-card-desc {
    font-size: 0.8rem;
  }
}

/* ═══════════════════════════════════════════════════
   3. CALCULATEUR D'ÉCONOMIES & IMPACT INTERACTIF
═══════════════════════════════════════════════════ */
.sim-section {
  background: linear-gradient(135deg, #F0FDF4 0%, #E6F8F3 50%, #F5FAF8 100%);
  color: var(--dark);
  position: relative;
  overflow: hidden;
  padding: var(--section-v) 0;
  border-top: 1px solid rgba(5, 168, 122, 0.15);
  border-bottom: 1px solid rgba(5, 168, 122, 0.15);
}
.sim-box {
  background: #ffffff;
  border: 1px solid rgba(5, 168, 122, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 16px 48px rgba(5, 168, 122, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.sim-controls {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.sim-toggles {
  display: flex;
  gap: 8px;
  background: var(--bg-lter);
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: 50px;
  margin-bottom: 28px;
  width: fit-content;
}
.sim-btn-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark-md);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sim-btn-tab .icon-svg {
  color: var(--dark-md);
  transition: color 0.25s, stroke 0.25s;
}
.sim-btn-tab.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(226, 115, 56, 0.35);
}
.sim-btn-tab.active .icon-svg {
  color: #fff;
  stroke: #fff;
}
.sim-slider-group {
  margin-bottom: 24px;
  width: 100%;
}
.sim-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.sim-slider-val {
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  font-weight: 800;
  color: var(--orange);
}
.sim-range {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 6px;
  background: #E5E7EB;
  outline: none;
  cursor: pointer;
}
.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s;
}
.sim-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.sim-range-ticks {
  position: relative;
  width: 100%;
  height: 20px;
  margin-top: 6px;
}
.sim-range-ticks span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  user-select: none;
  transition: color 0.15s, font-weight 0.15s;
  white-space: nowrap;
}
.sim-range-ticks span:hover {
  color: var(--green);
  font-weight: 700;
}

/* Sim Results Grid */
.sim-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.sim-res-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  box-sizing: border-box;
}
.sim-res-card:hover {
  transform: translateY(-3px);
  border-color: rgba(5, 168, 122, 0.4);
  box-shadow: 0 10px 24px rgba(5, 168, 122, 0.1);
}
.sim-res-card--highlight {
  background: linear-gradient(135deg, #FFF9F5 0%, #F0FDF4 100%);
  border-color: rgba(226, 115, 56, 0.28);
}
.sim-res-card--eco-hero {
  background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF4 60%, #E6F8F3 100%);
  border: 1.5px solid rgba(5, 168, 122, 0.4);
  box-shadow: 0 10px 28px rgba(5, 168, 122, 0.12);
  grid-column: span 2;
}
.sim-res-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sim-res-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 4px;
}
.sim-res-card--eco-hero .sim-res-num {
  font-size: 2.35rem;
  color: var(--green);
}
.sim-res-card--highlight .sim-res-num {
  font-size: 2.0rem;
  color: var(--orange);
}
.sim-eco-trees-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(5, 168, 122, 0.12);
  color: #047857;
  border: 1px solid rgba(5, 168, 122, 0.28);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 8px;
}
.sim-res-sub {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.4;
}

/* Simulation Share Card */
.sim-share-card {
  grid-column: span 2;
  background: #F8FAFC;
  border: 1px dashed rgba(5, 168, 122, 0.35);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-top: 4px;
  box-sizing: border-box;
}
.sim-share-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sim-share-text {
  flex: 1;
  min-width: 200px;
}
.sim-share-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  background: rgba(5, 168, 122, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
}
.sim-share-desc {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.4;
}
.sim-share-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: none;
  text-decoration: none;
}
.btn-share--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}
.btn-share--whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}
.btn-share--copy {
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-share--copy:hover {
  background: #F1F5F9;
  border-color: var(--dark-md);
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .sim-box {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 28px 20px;
  }
}
@media (max-width: 580px) {
  .sim-results {
    grid-template-columns: 1fr;
  }
  .sim-res-card--highlight,
  .sim-res-card[style*="grid-column"],
  .sim-share-card {
    grid-column: span 1 !important;
  }
  .sim-share-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .sim-share-actions {
    flex-direction: column;
  }
  .btn-share {
    justify-content: center;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════
   3b. SIMULATEUR DE REVENUS CONDUCTEUR (TAXI & MOTO)
═══════════════════════════════════════════════════ */
.woma-calc-section {
  background: linear-gradient(180deg, #F8FAF9 0%, #EFF6F3 50%, #F5FAF7 100%);
  color: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 85px 0 75px;
  border-top: 1px solid rgba(5, 168, 122, 0.12);
  border-bottom: 1px solid rgba(5, 168, 122, 0.12);
}
.woma-calc-container {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

/* Nav Switcher Tabs (TAXI vs MOTO) */
.woma-calc-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #E2E8F0;
  padding: 6px;
  border-radius: 16px;
  box-sizing: border-box;
  margin-bottom: 4px;
}
.woma-calc-tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #475569;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}
.woma-calc-tab-btn svg {
  stroke: #64748B;
  transition: stroke 0.25s, transform 0.25s;
}
.woma-calc-tab-btn:hover {
  color: var(--dark);
  background: rgba(255, 255, 255, 0.6);
}
.woma-calc-tab-btn.active {
  background: #ffffff;
  color: var(--orange);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.woma-calc-tab-btn.active svg {
  stroke: var(--orange);
  transform: scale(1.08);
}

/* Cards Base */
.woma-calc-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(11, 17, 32, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Card 1: Earnings */
.woma-calc-card--earnings {
  position: relative;
}
.woma-calc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.woma-calc-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748B;
}
.woma-calc-sound-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(232, 100, 10, 0.1);
  color: var(--orange);
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.woma-calc-sound-btn:hover {
  background: var(--orange);
  color: #ffffff;
  transform: scale(1.08);
}
.woma-calc-main-price {
  font-size: clamp(2.3rem, 6vw, 3.2rem);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 6px 0 16px 0;
  word-break: break-word;
  transition: color 0.3s;
}
.woma-calc-card-divider {
  height: 1px;
  background: #F1F5F9;
  margin: 16px 0 18px 0;
}
.woma-calc-day-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.woma-calc-day-price {
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  font-weight: 800;
  color: var(--dark);
}

/* Card 2: Controls / Sliders */
.woma-calc-slider-block {
  width: 100%;
}
.woma-calc-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.woma-calc-slider-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
}
.woma-calc-slider-title svg {
  color: var(--orange);
}
.woma-calc-badge-val {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--orange);
}

/* Custom Range Slider */
.woma-custom-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 8px;
  background: #E2E8F0;
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
}
.woma-custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--orange);
  box-shadow: 0 3px 12px rgba(226, 115, 56, 0.35);
  cursor: pointer;
  transition: transform 0.15s, border-color 0.2s;
}
.woma-custom-range::-webkit-slider-thumb:hover {
  transform: scale(1.18);
}
.woma-custom-range::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--orange);
  box-shadow: 0 3px 12px rgba(226, 115, 56, 0.35);
  cursor: pointer;
}
.woma-calc-range-ticks {
  position: relative;
  width: 100%;
  height: 20px;
  margin-top: 8px;
}
.woma-calc-range-ticks span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  font-size: 0.76rem;
  font-weight: 600;
  color: #94A3B8;
  cursor: pointer;
  user-select: none;
  transition: color 0.15s, font-weight 0.15s;
  white-space: nowrap;
}
.woma-calc-range-ticks span:hover {
  color: var(--orange);
  font-weight: 700;
}

/* CTA Row inside Controls Card */
.woma-calc-cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}
.woma-calc-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--orange);
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(226, 115, 56, 0.35);
}
.woma-calc-cta-btn:hover {
  background: #c95c18;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(226, 115, 56, 0.45);
}
.woma-calc-cta-sound-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFF3EB;
  color: var(--orange);
  border: 1px solid rgba(226, 115, 56, 0.3);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.woma-calc-cta-sound-btn:hover {
  background: var(--orange);
  color: #ffffff;
  transform: scale(1.06);
}

/* Card 3: Solde Recharge (Dark Card) */
.woma-calc-dark-box {
  background: #0B1120;
  border-radius: 24px;
  padding: 24px 28px;
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(11, 17, 32, 0.15);
  box-sizing: border-box;
}
.woma-calc-dark-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 10px;
}
.woma-calc-dark-amount {
  font-size: clamp(1.8rem, 4.5vw, 2.3rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.woma-calc-dark-sub {
  font-size: 0.82rem;
  color: #94A3B8;
  line-height: 1.5;
}

/* Card 4: Tous les Paramètres (Accordéon) */
.woma-calc-params-container {
  width: 100%;
}
.woma-calc-params-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: #ffffff;
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 800;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}
.woma-calc-params-btn:hover {
  background: #F8FAFC;
  border-color: var(--orange);
  color: var(--orange);
}
.woma-params-chevron {
  transition: transform 0.25s var(--ease);
}
.woma-calc-params-btn.is-open .woma-params-chevron {
  transform: rotate(180deg);
}

.woma-calc-params-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px 26px;
  margin-top: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.woma-calc-params-title {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #F1F5F9;
}
.woma-calc-params-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.woma-params-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px dashed #F1F5F9;
  font-size: 0.9rem;
}
.woma-params-k {
  color: #64748B;
  font-weight: 600;
}
.woma-params-v {
  color: var(--dark);
  font-weight: 800;
  text-align: right;
}

@media (max-width: 640px) {
  .woma-calc-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
  .woma-calc-dark-box {
    padding: 20px 18px;
    border-radius: 20px;
  }
  .woma-calc-cta-row {
    flex-direction: column;
  }
  .woma-calc-cta-btn {
    width: 100%;
  }
  .woma-calc-cta-sound-btn {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════
   4. TIMELINE DU SWAP EN 30 SECONDES
═══════════════════════════════════════════════════ */
.swap-timeline-section {
  padding: 60px 0 20px;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  margin-top: 40px;
}
.timeline-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.timeline-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(226, 115, 56, 0.12);
}
.timeline-num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(226, 115, 56, 0.15);
  position: absolute;
  top: 20px;
  right: 24px;
  transition: color 0.3s;
}
.timeline-card:hover .timeline-num {
  color: rgba(226, 115, 56, 0.35);
}
.timeline-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--orange-lt);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.timeline-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.timeline-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}
.timeline-badge-time {
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 860px) {
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ═══════════════════════════════════════════════════
   5. AMBIENT ENERGY GLOW ORBS
═══════════════════════════════════════════════════ */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  animation: glowFloat 12s ease-in-out infinite alternate;
}
.ambient-glow--orange {
  background: radial-gradient(circle, var(--orange) 0%, rgba(226, 115, 56, 0) 70%);
}
.ambient-glow--green {
  background: radial-gradient(circle, var(--green) 0%, rgba(5, 168, 122, 0) 70%);
}
@keyframes glowFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.15); }
  100% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ═══════════════════════════════════════════════════
   6. LANGUAGE SWITCHER (FR / EN)
═══════════════════════════════════════════════════ */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(243, 244, 246, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: 9999px;
  padding: 5px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray);
  user-select: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.lang-globe-icon {
  color: #6b7280;
  flex-shrink: 0;
  margin-right: 2px;
}
.lang-btn {
  background: transparent;
  border: none;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
  padding: 2px 4px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  line-height: 1;
}
.lang-btn:hover {
  color: #111827;
}
.lang-btn.active {
  color: var(--orange);
  font-weight: 800;
  background: transparent;
  box-shadow: none;
}
.lang-divider {
  font-size: 0.7rem;
  color: var(--border-dk, #cbd5e1);
  margin: 0 1px;
}

/* Footer Language Switcher */
.lang-switcher--footer {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-left: 14px;
}
.lang-switcher--footer .lang-globe-icon {
  color: rgba(255, 255, 255, 0.6);
}
.lang-switcher--footer .lang-btn {
  color: rgba(255, 255, 255, 0.65);
}
.lang-switcher--footer .lang-btn:hover {
  color: #ffffff;
}
.lang-switcher--footer .lang-btn.active {
  color: var(--orange);
  font-weight: 800;
}
.lang-switcher--footer .lang-divider {
  color: rgba(255, 255, 255, 0.25);
}

/* ═══════════════════════════════════════════════════
   7. INTERACTIVE FAQ SECTION WITH LIVE SEARCH & FILTER
═══════════════════════════════════════════════════ */
.faq-section {
  padding: var(--section-v) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.faq-container {
  max-width: 920px;
  margin: 0 auto;
}
.faq-search-wrapper {
  position: relative;
  max-width: 640px;
  margin: 0 auto 28px;
  width: 100%;
}
.faq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  pointer-events: none;
}
.booking-october-banner {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.booking-october-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(226, 115, 56, 0.08);
  border: 1px solid rgba(226, 115, 56, 0.22);
  color: var(--orange-dk);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 9999px;
}

.booking-container-card {
  max-width: 1040px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* Left Visual Card */
.booking-visual-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0f172a;
  min-height: 490px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.booking-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.4s ease;
}

/* Right Form Card */
.booking-form-card {
  background: #ffffff;
  border: 1px solid #eef0f3;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 32px -4px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Pill Switcher */
.booking-nav-pill {
  background: #f4f5f7;
  border-radius: 9999px;
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.booking-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: #52525b;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.booking-tab-btn:hover {
  color: #18181b;
}
.booking-tab-btn.active {
  background: #18181b;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Uber Style Schedule Bar */
.booking-schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0 16px;
  position: relative;
}
.booking-schedule-wrapper {
  position: relative;
}
.booking-schedule-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f4f5f7;
  border: 1px solid #e4e4e7;
  border-radius: 9999px;
  padding: 7px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #18181b;
  cursor: pointer;
  transition: all 0.2s ease;
}
.booking-schedule-btn:hover {
  background: #e4e4e7;
}
.schedule-clock-icon {
  color: #52525b;
}
.schedule-chevron-icon {
  color: #71717a;
  transition: transform 0.2s;
}
.booking-schedule-btn[aria-expanded="true"] .schedule-chevron-icon {
  transform: rotate(180deg);
}

.booking-city-tag {
  font-size: 0.82rem;
  color: #71717a;
  font-weight: 500;
}

/* Schedule Popover */
.booking-schedule-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 50;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  padding: 12px;
  min-width: 290px;
  display: none;
  animation: bkFade 0.2s ease;
}
.booking-schedule-popover.is-open {
  display: block;
}
.schedule-popover-opt {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.schedule-popover-opt:hover {
  background: #f4f5f7;
}
.schedule-popover-opt.active {
  background: #f4f5f7;
}
.schedule-popover-opt svg {
  margin-top: 2px;
  color: #18181b;
  flex-shrink: 0;
}
.schedule-popover-text strong {
  display: block;
  font-size: 0.86rem;
  color: #18181b;
  font-weight: 700;
  margin-bottom: 2px;
}
.schedule-popover-text span {
  display: block;
  font-size: 0.76rem;
  color: #71717a;
  line-height: 1.35;
}

.schedule-picker-inline {
  border-top: 1px solid #e4e4e7;
  margin-top: 8px;
  padding-top: 10px;
}
.schedule-picker-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}
.schedule-picker-box {
  background: #f4f5f7;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  padding: 6px 10px;
}
.schedule-picker-box label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: #71717a;
  margin-bottom: 2px;
}
.schedule-input-native {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
  color: #18181b;
  font-family: inherit;
  outline: none;
  padding: 0;
}
.schedule-confirm-btn {
  width: 100%;
  padding: 8px;
  background: #18181b;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
}
.schedule-confirm-btn:hover {
  background: #000000;
}

/* Panels */
.booking-panels-body {
  flex: 1;
}
.booking-panel {
  display: none;
}
.booking-panel.active {
  display: block;
  animation: bkFade 0.25s ease;
}

/* Uber-Style Connected Route Track */
.booking-route-track-wrap {
  display: flex;
  align-items: stretch;
  gap: 14px;
}
.booking-route-line-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 16px;
  padding: 16px 0 38px;
  flex-shrink: 0;
}
.route-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #18181b;
  flex-shrink: 0;
}
.route-node--dest {
  border-radius: 2px;
}
.route-connector-line {
  width: 2px;
  flex: 1;
  background: #d4d4d8;
  margin: 6px 0;
}
.booking-route-fields-col {
  flex: 1;
  min-width: 0;
}

/* Fields & Inputs */
.booking-field-group {
  margin-bottom: 12px;
}
.booking-input-box {
  height: 48px;
  border: 1px solid #e4e4e7;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 0 12px 0 14px;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-input-box:focus-within {
  border-color: #18181b;
  box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.06);
}
.booking-field-icon {
  color: #71717a;
  flex-shrink: 0;
}
.booking-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.92rem;
  color: #18181b;
  font-weight: 500;
  font-family: inherit;
}
.booking-input::placeholder {
  color: #a1a1aa;
  font-weight: 400;
}

/* GPS Action Button inside Input */
.booking-geo-action-btn {
  background: transparent;
  border: none;
  color: #71717a;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.booking-geo-action-btn:hover {
  color: var(--orange);
  background: rgba(226, 115, 56, 0.08);
}
.booking-geo-action-btn.is-locating {
  animation: geoPulse 1s infinite alternate;
  color: var(--orange);
}
@keyframes geoPulse {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(1.15); opacity: 1; }
}

/* Chips */
.booking-chips-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.booking-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 9999px;
  padding: 4px 10px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #3f3f46;
  cursor: pointer;
  transition: all 0.15s ease;
}
.booking-chip svg {
  color: #71717a;
}
.booking-chip:hover {
  border-color: #a1a1aa;
  background: #f4f5f7;
  color: #18181b;
}
.booking-chip.chip-geo {
  border-color: rgba(226, 115, 56, 0.35);
  background: rgba(226, 115, 56, 0.04);
  color: var(--orange-dk);
}
.booking-chip.chip-geo svg {
  color: var(--orange);
}
.booking-chip.chip-geo:hover {
  background: rgba(226, 115, 56, 0.12);
  border-color: var(--orange);
}

/* Action Button */
.booking-cta-btn {
  height: 50px;
  background: #18181b;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  width: 100%;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(24, 24, 27, 0.15);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.booking-cta-btn:hover {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(24, 24, 27, 0.25);
}
.booking-cta-btn:active {
  transform: translateY(0);
}

/* Responsive: Masquer la réservation web sur smartphone pour inciter au téléchargement de l'application mobile */
@media (max-width: 900px) {
  .web-booking-section {
    display: none !important;
  }
}
.faq-search-input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: var(--bg-lt);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  transition: all 0.25s var(--ease);
  box-sizing: border-box;
}
.faq-search-input:focus {
  background: #ffffff;
  border-color: var(--orange) !important;
  box-shadow: 0 6px 24px rgba(226, 115, 56, 0.15) !important;
  outline: none;
}
.faq-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
}
.faq-cat-btn {
  padding: 9px 18px;
  border-radius: 50px;
  background: var(--bg-lt);
  border: 1px solid var(--border);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--dark-md);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.faq-cat-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.faq-cat-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(226, 115, 56, 0.3);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.faq-item:hover {
  border-color: rgba(226, 115, 56, 0.35);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.faq-item.is-open {
  border-color: var(--orange);
  box-shadow: 0 10px 28px rgba(226, 115, 56, 0.1);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 22px 24px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}
.faq-question-text {
  flex: 1;
}
.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-lt);
  color: var(--dark-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
}
.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  background: var(--orange-lt);
  color: var(--orange);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 24px;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--dark-md);
}
.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding: 0 24px 22px 24px;
  transition: max-height 0.35s ease-in-out, padding 0.3s ease;
}
.faq-answer p {
  margin: 0 0 12px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-badge-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--green-lt);
  color: var(--green);
  margin-right: 8px;
}
.faq-empty-state {
  display: none;
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-lt);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
}

/* ═══════════════════════════════════════════════════
   8. WOMA WEB EXPRESS (PORTAIL DE COMMANDE WEB HUB)
═══════════════════════════════════════════════════ */
.web-hub-section {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-v) 0;
  position: relative;
}

.hub-october-banner {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.hub-october-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(226, 115, 56, 0.08);
  border: 1px solid rgba(226, 115, 56, 0.22);
  color: var(--orange-dk);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 9999px;
  box-shadow: 0 2px 10px rgba(226, 115, 56, 0.06);
}

.web-hub-card {
  max-width: 1160px;
  margin: 36px auto 0;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  box-shadow: 0 16px 48px -8px rgba(15, 23, 42, 0.07);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  padding: 32px;
  overflow: hidden;
}

/* Tabs */
.hub-nav-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: #f1f5f9;
  padding: 6px;
  border-radius: 9999px;
  margin-bottom: 24px;
}
.hub-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.hub-tab-btn:hover {
  color: #0f172a;
}
.hub-tab-btn.active {
  background: #ffffff;
  color: var(--orange);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  font-weight: 800;
}

/* Panels */
.hub-panel {
  display: none;
}
.hub-panel.active {
  display: block;
  animation: hubFadeIn 0.3s var(--ease);
}
@keyframes hubFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.hub-form-group {
  margin-bottom: 20px;
}
.hub-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}
.hub-sublabel {
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.hub-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.hub-input-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  pointer-events: none;
}
.hub-input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  transition: all 0.2s var(--ease);
}
.hub-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(226, 115, 56, 0.12);
}

.hub-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.hub-chip {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 9999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.18s var(--ease);
}
.hub-chip:hover {
  background: #e2e8f0;
  color: #0f172a;
  border-color: #cbd5e1;
}

/* Option Cards (VTC, Colis) */
.hub-options-grid {
  display: grid;
  gap: 10px;
}
.hub-options-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.hub-option-card {
  position: relative;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.hub-option-card:hover {
  border-color: #cbd5e1;
  background: #ffffff;
  transform: translateY(-1px);
}
.hub-option-card.active {
  border-color: var(--orange);
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(226, 115, 56, 0.12);
}
.hub-badge-pop {
  position: absolute;
  top: -8px;
  right: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--green);
  color: #ffffff;
  padding: 2px 7px;
  border-radius: 9999px;
}
.hub-option-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.hub-option-name {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f172a;
}
.hub-option-price {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--orange-dk);
}
.hub-option-meta {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
}

/* Food Categories & Restaurants */
.hub-food-cats {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 16px;
  scrollbar-width: none;
}
.hub-food-cats::-webkit-scrollbar {
  display: none;
}
.hub-cat-pill {
  white-space: nowrap;
  font-size: 0.76rem;
  font-weight: 700;
  color: #475569;
  background: #f1f5f9;
  padding: 6px 14px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.18s;
}
.hub-cat-pill:hover {
  background: #e2e8f0;
}
.hub-cat-pill.active {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(226, 115, 56, 0.25);
}

.hub-restaurants-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hub-rest-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.hub-rest-card:hover {
  border-color: #cbd5e1;
  background: #ffffff;
}
.hub-rest-card.active {
  border-color: var(--orange);
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(226, 115, 56, 0.1);
}
.hub-rest-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
}
.hub-rest-star {
  font-size: 0.74rem;
  font-weight: 800;
  color: #f59e0b;
  margin-left: 6px;
}
.hub-rest-desc {
  font-size: 0.74rem;
  color: #64748b;
  margin: 2px 0;
}
.hub-rest-dish {
  font-size: 0.76rem;
  color: #334155;
}
.hub-rest-pricing {
  text-align: right;
  flex-shrink: 0;
}
.hub-rest-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--orange-dk);
}
.hub-rest-fee {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 600;
}

/* Colis Promo */
.hub-colis-promo {
  background: #ecfdf5;
  border: 1px dashed var(--green);
  color: var(--green-dk);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Contact & Phone */
.hub-contact-card {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1.5px dashed #e2e8f0;
}
.hub-phone-group {
  display: flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.2s;
}
.hub-phone-group:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(226, 115, 56, 0.12);
}
.hub-phone-prefix {
  background: #f1f5f9;
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
  border-right: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hub-input--phone {
  border: none !important;
  border-radius: 0 !important;
  padding: 12px 14px !important;
  font-size: 0.96rem !important;
  box-shadow: none !important;
}
.hub-phone-help {
  font-size: 0.74rem;
  color: #64748b;
  margin: 8px 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hub-submit-btn {
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(226, 115, 56, 0.3);
}

/* Right Side: Preview Panel */
.hub-preview-panel {
  display: flex;
  flex-direction: column;
}
.hub-preview-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hub-preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.hub-preview-visual {
  position: relative;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: 100%;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}
.hub-preview-mockup {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  display: block;
}
.hub-preview-floating-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hub-preview-breakdown {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hub-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
}
.hub-row-label {
  color: #64748b;
  font-weight: 600;
}
.hub-row-val {
  color: #0f172a;
  font-weight: 700;
  text-align: right;
}
.hub-breakdown-row--highlight {
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
}
.hub-price-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--orange-dk);
}

.hub-eco-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  color: var(--green-dk);
  border: 1px solid rgba(5, 168, 122, 0.2);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.hub-btn-whatsapp-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff !important;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  margin-top: auto;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
  transition: all 0.2s var(--ease);
}
.hub-btn-whatsapp-direct:hover {
  background: #1eb954;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.38);
}

/* Modale */
.woma-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.woma-modal-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}
.woma-modal-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 24px 64px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}
.woma-modal-backdrop.is-active .woma-modal-card {
  transform: scale(1) translateY(0);
}
.woma-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  font-size: 1.4rem;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.woma-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}
.woma-modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ecfdf5;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.woma-modal-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(226, 115, 56, 0.1);
  color: var(--orange-dk);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}
.woma-modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.woma-modal-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}
.woma-modal-summary {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
  font-size: 0.86rem;
  color: #334155;
  line-height: 1.6;
}
.woma-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn--whatsapp-cta {
  background: #25d366 !important;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3) !important;
}
.btn--whatsapp-cta:hover {
  background: #1eb954 !important;
}

/* Responsive Hub */
@media (max-width: 900px) {
  .web-hub-card {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 24px;
  }
  .hub-options-grid--3 {
    grid-template-columns: 1fr;
  }
  .hub-nav-tabs {
    grid-template-columns: 1fr;
    border-radius: 16px;
    gap: 4px;
  }
  .hub-tab-btn {
    border-radius: 12px;
    padding: 10px;
  }
}

/* ═══════════════════════════════════════════════════
   SOGA SCIENTIFIC EVIDENCE & HEALTH DATA BOXES
═══════════════════════════════════════════════════ */
.pourquoi-soga-box {
  background: linear-gradient(135deg, #F8FAFC 0%, #F0FDF4 100%);
  border: 1.5px solid rgba(5, 168, 122, 0.28);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-top: 24px;
  box-shadow: 0 4px 16px rgba(5, 168, 122, 0.06);
}
.soga-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ECFDF5;
  color: #047857;
  border: 1px solid rgba(5, 168, 122, 0.3);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.soga-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.soga-stat-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 14px;
}
.soga-stat-num {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}
.soga-stat-label {
  font-size: 0.78rem;
  color: var(--dark-md);
  line-height: 1.4;
}
@media (max-width: 600px) {
  .soga-stat-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   SOGA AIR QUALITY OBSERVATORY SECTION (DASHBOARD)
═══════════════════════════════════════════════════ */
.soga-observatory-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 50%, #F0FDF4 100%);
  position: relative;
  overflow: hidden;
  padding: var(--section-v) 0;
  border-top: 1px solid rgba(5, 168, 122, 0.15);
  border-bottom: 1px solid rgba(5, 168, 122, 0.15);
}
.soga-dashboard-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: start;
}
.soga-bars-card {
  background: #ffffff;
  border: 1px solid rgba(5, 168, 122, 0.25);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 12px 36px rgba(5, 168, 122, 0.08);
}
.soga-card-header {
  margin-bottom: 24px;
}
.soga-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ECFDF5;
  color: #047857;
  border: 1px solid rgba(5, 168, 122, 0.3);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.soga-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}
.soga-bars-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.soga-bar-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.soga-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.88rem;
}
.soga-bar-value {
  font-weight: 700;
}
.soga-bar-track {
  width: 100%;
  height: 10px;
  background: #F1F5F9;
  border-radius: 9999px;
  overflow: hidden;
}
.soga-bar-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 1s ease-out;
}
.soga-bar-caption {
  font-size: 0.75rem;
  color: var(--gray);
}
.soga-bar-row--alert .soga-bar-track {
  background: #FEE2E2;
}
.soga-bar-row--target .soga-bar-track {
  background: #E6F8F3;
}
.soga-impact-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.soga-fact-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.soga-fact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.soga-fact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.soga-fact-content {
  flex: 1;
}
.soga-fact-num {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.soga-fact-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 4px 0;
}
.soga-fact-desc {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}
.soga-download-box {
  background: linear-gradient(135deg, #F0FDF4 0%, #E6F8F3 100%);
  border: 1.5px dashed rgba(5, 168, 122, 0.4);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.soga-download-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #047857;
}
.soga-download-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
}
.soga-download-info span {
  font-size: 0.78rem;
  color: var(--gray);
}
.btn--download {
  background: var(--green) !important;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 0.86rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(5, 168, 122, 0.3);
  transition: transform 0.15s, background 0.15s;
  text-decoration: none;
}
.btn--download:hover {
  background: #048a64 !important;
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .soga-dashboard-grid {
    grid-template-columns: 1fr;
  }
}


