/* =============================================================
   ALHADYN — Design System (inDrive-inspired, custom palette)
   Auto-applied via existing class names: .hero, .btn-primary,
   .btn-secondary, .service-card, .footer, .header, etc.
   ============================================================= */

:root {
  /* ===== Palette Alhadyn (dérivé inDrive) ===== */
  --al-lime: #FFD60A;            /* Primary signature */
  --al-lime-soft: #FFE97A;
  --al-lime-deep: #E6BD00;
  --al-mint: #2563EB;            /* Accent secondaire Alhadyn */
  --al-black: #0B0B0F;           /* Texte / fonds sombres */
  --al-ink: #1A1B23;             /* Surfaces sombres profondes */
  --al-graphite: #2A2D3A;
  --al-gray-900: #111318;
  --al-gray-700: #4B4F5C;
  --al-gray-500: #8A8F9C;
  --al-gray-300: #D5D8E0;
  --al-gray-200: #EAECF0;
  --al-gray-100: #F4F6F8;
  --al-cream: #FBFFEF;           /* Fond crème inDrive-like */
  --al-white: #FFFFFF;

  /* ===== Radius (généreux) ===== */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* ===== Shadows douces ===== */
  --sh-xs: 0 1px 2px rgba(11,11,15,.04);
  --sh-sm: 0 4px 12px rgba(11,11,15,.06);
  --sh-md: 0 8px 28px rgba(11,11,15,.08);
  --sh-lg: 0 18px 48px rgba(11,11,15,.12);
  --sh-glow: 0 12px 36px rgba(255,214,10,.45);

  /* ===== Spacing ===== */
  --sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4rem;
  --sp-9: 6rem; --sp-10: 8rem;

  /* ===== Easing ===== */
  --ease: cubic-bezier(.2,.8,.2,1);
}

/* ===== Reset minimal ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--al-black);
  background: var(--al-white);
  line-height: 1.55;
  -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }

/* ===== Typo display inDrive-like ===== */
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; letter-spacing: -.02em; line-height: 1.05; color: var(--al-black); }
h1 { font-weight: 900; font-size: clamp(2.4rem, 5vw, 4.6rem); }
h2 { font-weight: 900; font-size: clamp(1.9rem, 3.6vw, 3.2rem); letter-spacing: -.025em; }
h3 { font-weight: 800; font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -.015em; }
p  { color: var(--al-gray-700); font-size: 1.0625rem; }

/* Helper highlight (texte surligné lime à la inDrive) */
.al-mark, .highlight {
  background: var(--al-lime);
  color: var(--al-black) !important;
  padding: .04em .25em .12em;
  border-radius: var(--r-xs);
  -webkit-text-fill-color: var(--al-black) !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  animation: none !important;
  display: inline;
}

/* =============================================================
   HEADER (override .header, .header-container, .nav-menu, etc.)
   ============================================================= */
.header,
header.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--al-white);
  border-bottom: 1px solid var(--al-gray-200);
  background-image: none !important;
  box-shadow: var(--sh-xs);
  padding: 0;
}
.header-container {
  max-width: 1280px; margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
/* Logo iD-style (badge lime + wordmark) */
.header .logo,
.header a.logo {
  display: inline-flex; align-items: center; gap: .65rem;
  font-weight: 900; font-size: 1.5rem; letter-spacing: -.02em;
  color: var(--al-black);
}
.header .logo img { display: none; } /* on cache l'ancien logo image */
.header .logo::before {
  content: "Al";
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--al-lime);
  color: var(--al-black);
  border-radius: 14px;
  font-weight: 900; font-size: 1.15rem; letter-spacing: -.04em;
  box-shadow: 0 6px 16px rgba(255,214,10,.4);
}
.header .logo::after {
  content: "Alhadyn";
  font-weight: 900; font-size: 1.55rem; letter-spacing: -.03em;
  color: var(--al-black);
}

/* Nav */
.header nav .nav-menu,
.header .nav-menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: .25rem;
}
.header .nav-menu li a {
  display: inline-flex; align-items: center;
  padding: .65rem 1rem; border-radius: var(--r-pill);
  font-weight: 600; font-size: .96rem; color: var(--al-gray-700);
  transition: all .2s var(--ease);
}
.header .nav-menu li a:hover { background: var(--al-gray-100); color: var(--al-black); }
.header .nav-menu li a.active,
.header .nav-menu li.active a { background: var(--al-black); color: var(--al-white); }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.header-actions .language-selector,
.header select.language-selector {
  appearance: none;
  border: 1px solid var(--al-gray-200);
  background: var(--al-white);
  border-radius: var(--r-pill);
  padding: .55rem 2rem .55rem 1rem;
  font-weight: 600; font-size: .9rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230B0B0F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .75rem center;
}

/* CTA "Get the App" optionnel : ajouter classe .btn-app */
.btn-app, .header .btn-app {
  background: var(--al-lime);
  color: var(--al-black);
  font-weight: 800;
  padding: .75rem 1.4rem;
  border-radius: var(--r-pill);
  border: none;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-app:hover { transform: translateY(-1px); box-shadow: var(--sh-glow); }

.mobile-menu-toggle {
  display: none;
  background: var(--al-black); color: var(--al-white);
  border: none; border-radius: var(--r-pill);
  padding: .65rem .9rem; cursor: pointer;
}

@media (max-width: 900px) {
  .header .nav-menu { display: none; }
  .header .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--al-white); padding: 1rem;
    border-top: 1px solid var(--al-gray-200);
    box-shadow: var(--sh-md);
  }
  .mobile-menu-toggle { display: inline-flex; }
}

/* =============================================================
   HERO (refonte façon inDrive : grand titre noir + highlight lime)
   ============================================================= */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--al-cream) !important;
  background-image: none !important;
  animation: none !important;
  display: flex; align-items: center;
  padding: clamp(3rem, 8vh, 6rem) 0 clamp(3rem, 8vh, 6rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -120px -120px auto auto;
  width: 480px; height: 480px;
  background: var(--al-lime);
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
  filter: blur(0px);
  opacity: .55;
  z-index: 0;
  transform: rotate(-12deg);
}
.hero::after {
  content: "";
  position: absolute; left: -160px; bottom: -180px;
  width: 380px; height: 380px;
  background: var(--al-mint);
  border-radius: 50%;
  opacity: .25; z-index: 0;
  filter: blur(40px);
}
.hero-container {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 900; color: var(--al-black);
  line-height: .98; letter-spacing: -.035em;
  margin: 0 0 1.5rem;
}
.hero-text h1 .highlight {
  display: inline-block;
  background: var(--al-lime); color: var(--al-black) !important;
  padding: 0 .25em .08em;
  border-radius: 6px;
  -webkit-text-fill-color: var(--al-black) !important;
}
.hero-text p {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--al-gray-700);
  max-width: 560px;
  margin: 0 0 2.25rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ===== Boutons (override radical) ===== */
.btn-primary,
a.btn-primary,
button.btn-primary {
  background: var(--al-lime) !important;
  color: var(--al-black) !important;
  border: none !important;
  padding: 1.05rem 1.85rem !important;
  border-radius: var(--r-pill) !important;
  font-weight: 800; font-size: 1.02rem;
  display: inline-flex; align-items: center; gap: .65rem;
  box-shadow: none !important;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--sh-glow) !important; }

.btn-secondary,
a.btn-secondary,
button.btn-secondary {
  background: var(--al-black) !important;
  color: var(--al-white) !important;
  border: none !important;
  padding: 1.05rem 1.85rem !important;
  border-radius: var(--r-pill) !important;
  font-weight: 700; font-size: 1.02rem;
  display: inline-flex; align-items: center; gap: .65rem;
  transition: transform .2s var(--ease), background .2s var(--ease);
  text-decoration: none;
}
.btn-secondary:hover { transform: translateY(-2px); background: var(--al-graphite) !important; }

.btn-ghost {
  background: transparent !important;
  color: var(--al-black) !important;
  border: 1.5px solid var(--al-black) !important;
  padding: 1rem 1.75rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-ghost:hover { background: var(--al-black) !important; color: var(--al-white) !important; }

/* Hero visual: cacher l'ancien SVG / floating icons et afficher illustration moderne */
.hero-visual {
  position: relative; min-height: 360px;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual .hero-car { display: none; }
.hero-visual .floating-icon { display: none; }
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 500'><defs><linearGradient id='g' x1='0' x2='1' y1='0' y2='1'><stop offset='0' stop-color='%23FFD60A'/><stop offset='1' stop-color='%232563EB'/></linearGradient></defs><polygon points='300,40 540,200 460,460 140,460 60,200' fill='url(%23g)' opacity='.85'/><circle cx='300' cy='250' r='110' fill='%230B0B0F'/><path d='M250 250 L300 200 L350 250 L300 300 Z' fill='%23FFD60A'/></svg>") no-repeat center / contain;
  filter: drop-shadow(0 30px 60px rgba(11,11,15,.18));
}

/* Tabs Ride/Delivery/Money/Heroes (à la inDrive) */
.hero-tabs {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 1.5rem auto 0; padding: 0 1.5rem;
  display: flex; gap: 2.5rem;
  border-top: 1px solid rgba(11,11,15,.08);
  padding-top: 1rem;
}
.hero-tabs a {
  font-weight: 700; color: var(--al-gray-500);
  padding: .75rem 0; position: relative;
}
.hero-tabs a.active { color: var(--al-black); }
.hero-tabs a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 3px; background: var(--al-black); border-radius: 2px;
}

/* =============================================================
   SECTIONS génériques
   ============================================================= */
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section-cream { background: var(--al-cream); }
.section-dark { background: var(--al-black); color: var(--al-white); }
.section-dark h2, .section-dark h3 { color: var(--al-white); }
.section-dark p { color: rgba(255,255,255,.78); }

.container, .services-container, .cta-container, .footer-container {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
}

.section-eyebrow {
  display: inline-block;
  background: var(--al-white); color: var(--al-black);
  border: 1px solid var(--al-gray-200);
  padding: .5rem 1.1rem; border-radius: var(--r-pill);
  font-weight: 700; font-size: .85rem;
  margin-bottom: 1.25rem;
}

.services-header { text-align: center; margin-bottom: 3rem; }
.services-header h2 { margin: 0 0 .75rem; }
.services-header p  { color: var(--al-gray-700); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* =============================================================
   SERVICE CARDS (grille type "One app, many services")
   ============================================================= */
.services-grid-text,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: var(--al-white);
  border: 1px solid var(--al-gray-200);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: .75rem;
  text-decoration: none; color: var(--al-black);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  overflow: hidden;
  min-height: 240px;
}
.service-card::before {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 160px; height: 160px;
  background: var(--al-lime);
  border-radius: 30% 70% 50% 50% / 60% 40% 60% 40%;
  opacity: 0; transform: rotate(0deg) scale(.8);
  transition: opacity .35s var(--ease), transform .5s var(--ease);
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--al-lime);
}
.service-card:hover::before { opacity: .45; transform: rotate(20deg) scale(1); }
.service-card > * { position: relative; z-index: 1; }
.service-number {
  font-weight: 900; font-size: 2.5rem;
  color: var(--al-lime-deep);
  line-height: 1; letter-spacing: -.04em;
}
.service-title {
  font-size: 1.35rem; font-weight: 800;
  letter-spacing: -.015em; margin: 0;
}
.service-description { color: var(--al-gray-700); margin: 0; font-size: .98rem; }
.service-link {
  margin-top: auto;
  font-weight: 700; color: var(--al-black);
  display: inline-flex; align-items: center; gap: .35rem;
}

/* =============================================================
   STATS / FEATURES
   ============================================================= */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.stat {
  background: var(--al-white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: left;
}
.stat-value { font-size: 2.5rem; font-weight: 900; color: var(--al-black); letter-spacing: -.03em; }
.stat-label { color: var(--al-gray-700); font-weight: 500; }

.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature {
  background: var(--al-white);
  border: 1px solid var(--al-gray-200);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.feature:hover { border-color: var(--al-lime); transform: translateY(-4px); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--al-lime); color: var(--al-black);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}

/* =============================================================
   CTA section
   ============================================================= */
.cta {
  background: var(--al-black) !important;
  color: var(--al-white);
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative; overflow: hidden;
  background-image: none !important;
}
.cta::before {
  content: ""; position: absolute; right: -120px; bottom: -120px;
  width: 380px; height: 380px; background: var(--al-lime); opacity: .15;
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%; transform: rotate(-15deg);
}
.cta-container { text-align: center; position: relative; z-index: 1; }
.cta h2 { color: var(--al-white) !important; margin: 0 0 1rem; }
.cta p  { color: rgba(255,255,255,.78) !important; max-width: 560px; margin: 0 auto 2.25rem; font-size: 1.1rem; }
.cta-buttons { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.app-button {
  background: var(--al-white) !important;
  color: var(--al-black) !important;
  display: inline-flex; align-items: center; gap: .85rem;
  padding: 1rem 1.6rem; border-radius: var(--r-pill);
  text-decoration: none; font-weight: 700;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  border: none !important;
}
.app-button:hover { transform: translateY(-2px); box-shadow: var(--sh-glow); }
.app-button i { font-size: 1.4rem; }
.app-button-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.app-button-text small { font-size: .72rem; opacity: .7; font-weight: 500; }
.app-button-text strong { font-size: 1rem; font-weight: 800; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--al-black) !important;
  color: var(--al-white);
  padding: 4rem 0 2rem;
}
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-column h3 {
  color: var(--al-white) !important;
  font-size: 1rem; font-weight: 800; margin: 0 0 1rem;
  text-transform: uppercase; letter-spacing: .05em;
}
.footer-column ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .65rem; }
.footer-column ul li a {
  color: rgba(255,255,255,.65); font-size: .95rem;
  transition: color .15s var(--ease);
}
.footer-column ul li a:hover { color: var(--al-lime); }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--al-white); transition: all .2s var(--ease);
}
.social-link:hover { background: var(--al-lime); color: var(--al-black); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem; text-align: center;
  color: rgba(255,255,255,.55); font-size: .9rem;
}

/* =============================================================
   FORMS (location véhicule, interurbain — préserve les name=")
   ============================================================= */
.al-form, .form-card {
  background: var(--al-white);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--sh-lg);
}
.al-form .form-group, .al-form .field { margin-bottom: 1.25rem; }
.al-form label { font-weight: 600; font-size: .9rem; color: var(--al-black); display: block; margin-bottom: .35rem; }
.al-form input[type="text"],
.al-form input[type="email"],
.al-form input[type="tel"],
.al-form input[type="number"],
.al-form input[type="date"],
.al-form select,
.al-form textarea {
  width: 100%;
  border: 1.5px solid var(--al-gray-200);
  background: var(--al-white);
  border-radius: var(--r-md);
  padding: .9rem 1rem;
  font-size: 1rem; font-family: inherit;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.al-form input:focus, .al-form select:focus, .al-form textarea:focus {
  outline: none; border-color: var(--al-black);
  box-shadow: 0 0 0 4px rgba(255,214,10,.25);
}

/* =============================================================
   TÉMOIGNAGES (carrousel losange lime)
   ============================================================= */
.testimonial {
  position: relative;
  background: var(--al-cream);
  padding: 4rem 1.5rem;
}
.testimonial-card {
  position: relative; max-width: 980px; margin: 0 auto;
  background: var(--al-white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  display: grid; grid-template-columns: 280px 1fr; gap: 2rem;
  align-items: center; box-shadow: var(--sh-md);
}
.testimonial-photo {
  position: relative; width: 240px; height: 240px;
  background: var(--al-lime);
  transform: rotate(45deg);
  border-radius: 32px;
  overflow: hidden;
}
.testimonial-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transform: rotate(-45deg) scale(1.4);
}
.testimonial-quote { font-size: 1.15rem; color: var(--al-black); font-weight: 600; line-height: 1.5; }
.testimonial-author { color: var(--al-gray-700); margin-top: .75rem; font-size: .95rem; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { min-height: 280px; order: -1; }
  .hero { min-height: auto; padding: 4rem 0 3rem; }
  .testimonial-card { grid-template-columns: 1fr; text-align: center; }
  .testimonial-photo { margin: 0 auto; }
}
@media (max-width: 560px) {
  .hero-text h1 { font-size: 2.4rem; }
  .btn-primary, .btn-secondary { padding: .9rem 1.4rem !important; font-size: .95rem; }
  .header-container { padding: .85rem 1rem; gap: 1rem; }
  .header .logo::after { display: none; } /* mobile : juste le badge */
}

/* =============================================================
   UTILITAIRES
   ============================================================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.al-divider { height: 1px; background: var(--al-gray-200); border: 0; margin: 3rem 0; }

/* Désactive d'anciennes animations gradients qui cassent le look inDrive */
.hero, .services-section, .cta { animation: none !important; }

/* =============================================================
   HOMEPAGE V2 — Hero photo + booking card, services illustrés
   ============================================================= */

/* HERO V2 ---------------------------------------------------- */
.hero-v2 {
  position: relative;
  min-height: 92vh;
  background: var(--al-cream);
  overflow: hidden;
  padding: 0;
  display: flex; align-items: center;
}
.hero-v2::before, .hero-v2::after { content: none !important; }
.hero-v2 .hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background: #000;
}
.hero-v2 .hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  will-change: transform;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}
.hero-v2 .hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,.18) 100%);
  pointer-events: none;
}
.hero-v2 .hero-text h1,
.hero-v2 .hero-text h1 .highlight,
.hero-v2 .hero-text p {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 2px 18px rgba(0,0,0,.45), 0 1px 3px rgba(0,0,0,.35);
}
.hero-v2 .hero-text p { color: rgba(255,255,255,.95) !important; }
.hero-v2 .hero-container {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem clamp(4rem, 8vw, 7rem);
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem;
  align-items: center;
}
.hero-v2 .hero-text h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 900; line-height: 1.04;
  letter-spacing: -.035em; color: var(--al-black);
  margin: 0 0 1.5rem;
}
.hero-v2 .hero-text p {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--al-gray-700);
  max-width: 540px; margin: 0 0 2.25rem;
}
.hero-v2 .hero-buttons { display: flex; flex-wrap: wrap; gap: .85rem; }

/* Booking card (Course / Travais) */
.booking-card {
  position: relative;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--r-xl);
  padding: 1.25rem;
  box-shadow: 0 24px 60px rgba(11,11,15,.18);
  width: 100%; max-width: 420px; margin-left: auto;
}
.booking-tabs {
  display: flex; background: rgba(255,255,255,.55);
  border-radius: var(--r-pill); padding: .35rem;
  margin-bottom: 1rem;
}
.booking-tab {
  flex: 1; text-align: center;
  padding: .65rem 1rem; border-radius: var(--r-pill);
  font-weight: 800; color: var(--al-gray-700);
  cursor: pointer; border: none; background: transparent;
  transition: all .2s var(--ease);
  font-size: .98rem;
}
.booking-tab.active {
  background: var(--al-lime); color: var(--al-black);
  box-shadow: 0 4px 14px rgba(255,214,10,.5);
}
.booking-field {
  background: rgba(255,255,255,.6);
  border-radius: var(--r-md);
  padding: .75rem 1rem;
  margin-bottom: .65rem;
  border: 1px solid rgba(255,255,255,.7);
  display: flex; flex-direction: column; gap: .15rem;
}
.booking-field label {
  font-size: .72rem; font-weight: 700;
  color: var(--al-gray-700); text-transform: capitalize;
  letter-spacing: .02em;
}
.booking-field .input-row {
  display: flex; align-items: center; gap: .5rem;
}
.booking-field i { color: var(--al-black); }
.booking-field input {
  border: none; background: transparent;
  font-size: 1rem; font-weight: 600; color: var(--al-black);
  width: 100%; outline: none; padding: 0;
}
.booking-field input::placeholder { color: var(--al-gray-500); font-weight: 500; }
.booking-cta {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; background: var(--al-lime); color: var(--al-black);
  border: none; border-radius: var(--r-pill);
  padding: 1rem 1.4rem;
  font-weight: 800; font-size: 1.02rem;
  cursor: pointer; margin-top: .35rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.booking-cta:hover { transform: translateY(-2px); box-shadow: var(--sh-glow); }
.booking-cta .price { font-size: .85rem; font-weight: 700; color: var(--al-graphite); }

/* SERVICES V2 (8 cards illustrées) ----------------------------- */
.services-v2 { background: #F4F7EE; padding: clamp(4rem, 8vw, 7rem) 0; }
.services-v2 .services-header h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
.services-grid-v2 {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1080px) { .services-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .services-grid-v2 { grid-template-columns: 1fr; } }
.service-card-v2 {
  background: var(--al-white);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: .65rem;
  border: 1px solid rgba(11,11,15,.04);
  box-shadow: 0 4px 14px rgba(11,11,15,.04);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  text-decoration: none; color: var(--al-black);
  min-height: 280px;
}
.service-card-v2:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(11,11,15,.10); }
.service-illustration {
  height: 120px; display: flex; align-items: center; justify-content: center;
  margin-bottom: .25rem;
}
.service-illustration svg { width: 100%; height: 100%; max-width: 200px; }
.service-card-v2 h3 {
  font-size: 1.2rem; font-weight: 800; margin: 0; color: var(--al-black);
  letter-spacing: -.015em;
}
.service-card-v2 p {
  font-size: .92rem; color: var(--al-gray-700); margin: 0; flex: 1;
}
.service-link-v2 {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; color: var(--al-black);
  margin-top: .35rem;
}
.service-link-v2 .arrow {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--al-lime); color: var(--al-black);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .8rem;
}

/* IMPACT STATS V2 ---------------------------------------------- */
.impact-section { background: var(--al-white); padding: clamp(4rem, 8vw, 7rem) 0; }
.impact-header { text-align: center; margin-bottom: 3rem; }
.impact-header h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 1rem 0 0; }
.impact-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) { .impact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .impact-grid { grid-template-columns: 1fr; } }
.impact-stat { text-align: center; }
.impact-icon-wrap {
  position: relative; width: 160px; height: 160px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
}
.impact-icon-wrap svg.deco { position: absolute; inset: 0; width: 100%; height: 100%; }
.impact-value {
  position: relative; z-index: 2;
  font-size: 3rem; font-weight: 900; color: var(--al-black);
  letter-spacing: -.03em; line-height: 1;
}
.impact-value.has-icon { font-size: 2.4rem; }
.impact-label {
  font-size: 1rem; color: var(--al-gray-700); font-weight: 500;
}

/* WHY (Le juste prix) lime panel ------------------------------- */
.why-section { background: var(--al-lime-soft); padding: clamp(4rem, 8vw, 7rem) 0; }
.why-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem;
  align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
.why-section .section-eyebrow {
  background: rgba(255,255,255,.7); border-color: rgba(11,11,15,.08);
}
.why-section h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin: 1rem 0 1.5rem; }
.why-section .why-text p { font-size: 1.05rem; color: var(--al-gray-700); }
.why-visual {
  position: relative;
  background: var(--al-white);
  border-radius: var(--r-xl);
  padding: 2rem; min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 48px rgba(11,11,15,.08);
}

/* FEATURES V2 (cards lime icons) ------------------------------ */
.features-v2 { background: #F4F7EE; padding: clamp(4rem, 8vw, 7rem) 0; }
.features-grid-v2 {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .features-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid-v2 { grid-template-columns: 1fr; } }
.feature-card-v2 {
  background: var(--al-white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1px solid rgba(11,11,15,.04);
  box-shadow: 0 4px 14px rgba(11,11,15,.04);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.feature-card-v2:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(11,11,15,.08); }
.feature-icon-v2 {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, #FFFFFF, #F2F8DA);
  border: 1px solid rgba(168,224,32,.25);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(168,224,32,.18);
}
.feature-icon-v2 svg { width: 36px; height: 36px; }
.feature-card-v2 h3 {
  font-size: 1.2rem; font-weight: 800; color: var(--al-black);
  margin: 0 0 .5rem; letter-spacing: -.015em;
}
.feature-card-v2 p { font-size: .95rem; color: var(--al-gray-700); margin: 0; }

/* HERO V2 responsive */
@media (max-width: 900px) {
  .hero-v2 { min-height: auto; }
  .hero-v2 .hero-container { grid-template-columns: 1fr; gap: 2rem; padding-top: 3rem; padding-bottom: 4rem; }
  .booking-card { margin: 0 auto; }
}

/* =============================================================
   SERVICES NIKE-STYLE — cinematic, bold, motion-driven
   ============================================================= */
.services-nike {
  background: #0B0B0F;
  color: #fff;
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.services-nike::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,214,10,.10) 0%, transparent 35%),
    radial-gradient(circle at 88% 92%, rgba(37,99,235,.08) 0%, transparent 40%);
  pointer-events: none;
}
.services-nike .nike-container {
  max-width: 1380px; margin: 0 auto; padding: 0 1.5rem;
  position: relative; z-index: 1;
}
.nike-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 2rem;
  margin-bottom: 3.5rem;
}
.nike-eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .25em;
  color: var(--al-lime);
}
.nike-eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--al-lime);
}
.nike-title {
  font-size: clamp(2.6rem, 6vw, 5.5rem) !important;
  font-weight: 900; line-height: .95; letter-spacing: -.04em;
  color: #fff !important; margin: 1rem 0 0;
  text-transform: uppercase;
}
.nike-title em { font-style: italic; color: var(--al-lime); font-weight: 900; }
.nike-subtitle {
  max-width: 460px; color: rgba(255,255,255,.65);
  font-size: 1.05rem; margin: 0;
}

.nike-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.nike-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #1A1B23;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  display: block;
}
.nike-card:hover { transform: translateY(-6px); }

.nike-card .nike-media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .6s var(--ease);
  filter: saturate(1.1) contrast(1.05);
}
.nike-card:hover .nike-media { transform: scale(1.12); filter: saturate(1.2) contrast(1.1); }

.nike-card .nike-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,15,.0) 0%, rgba(11,11,15,.0) 35%, rgba(11,11,15,.85) 100%);
  z-index: 1;
  transition: opacity .35s var(--ease);
}
.nike-card::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(circle at 50% 100%, rgba(255,214,10,.0), rgba(255,214,10,0));
  transition: background .4s var(--ease);
  pointer-events: none;
}
.nike-card:hover::after {
  background: radial-gradient(circle at 50% 100%, rgba(255,214,10,.18), rgba(255,214,10,0) 60%);
}

.nike-card .nike-num {
  position: absolute; top: 1.25rem; left: 1.25rem; z-index: 3;
  font-size: .78rem; font-weight: 800; letter-spacing: .2em;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  padding: .35rem .7rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
}
.nike-card .nike-tag {
  position: absolute; top: 1.25rem; right: 1.25rem; z-index: 3;
  font-size: .7rem; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--al-black);
  background: var(--al-lime);
  padding: .35rem .7rem; border-radius: 999px;
}
.nike-card .nike-content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 1.5rem 1.5rem 1.4rem;
  display: flex; flex-direction: column; gap: .35rem;
}
.nike-card .nike-kicker {
  font-size: .72rem; font-weight: 800; letter-spacing: .25em;
  color: var(--al-lime); text-transform: uppercase;
}
.nike-card .nike-name {
  font-size: clamp(1.35rem, 1.8vw, 1.85rem); font-weight: 900;
  line-height: 1; letter-spacing: -.02em; margin: .15rem 0 0;
  text-transform: uppercase; color: #fff;
}
.nike-card .nike-desc {
  font-size: .92rem; color: rgba(255,255,255,.78);
  margin: .55rem 0 0; max-width: 420px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.nike-card:hover .nike-desc { opacity: 1; transform: translateY(0); }

.nike-card .nike-arrow {
  position: absolute; right: 1.25rem; bottom: 1.5rem; z-index: 4;
  width: 48px; height: 48px; border-radius: 999px;
  background: #fff; color: var(--al-black);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform .35s var(--ease), background .25s var(--ease);
}
.nike-card:hover .nike-arrow {
  background: var(--al-lime);
  transform: translateY(-4px) rotate(-45deg);
}

/* Bento spans (12 cols) */
.nike-card.col-6 { grid-column: span 6; }
.nike-card.col-4 { grid-column: span 4; }
.nike-card.col-3 { grid-column: span 3; }
.nike-card.col-8 { grid-column: span 8; }
.nike-card.row-2 { grid-row: span 2; }
.nike-card.row-1 { grid-row: span 1; }

/* Marquee style ticker between sections (Nike vibe) */
.nike-marquee {
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  padding: 1.4rem 0;
  display: flex;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.nike-marquee-track {
  display: inline-flex; gap: 3.5rem; align-items: center;
  animation: nikeScroll 28s linear infinite;
  font-size: 1.4rem; font-weight: 900; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
}
.nike-marquee-track span { display: inline-flex; align-items: center; gap: 3.5rem; }
.nike-marquee-track .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--al-lime);
}
@keyframes nikeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 1080px) {
  .nike-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; }
  .nike-card.col-6, .nike-card.col-8 { grid-column: span 6; }
  .nike-card.col-4 { grid-column: span 3; }
  .nike-card.col-3 { grid-column: span 3; }
  .nike-card.row-2 { grid-row: span 2; }
}
@media (max-width: 640px) {
  .nike-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .nike-card.col-6, .nike-card.col-8, .nike-card.col-4, .nike-card.col-3 { grid-column: span 1; }
  .nike-card.row-2 { grid-row: span 1; }
  .nike-card .nike-desc { opacity: 1; transform: none; }
}

/* ============================================================
   IMPACT — NIKE STYLE (bento + counters + motion)
   ============================================================ */
.impact-nike {
  position: relative;
  background: #0B0B0F;
  color: #fff;
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
  isolation: isolate;
}
/* Nike Container Base (Shared) */
.nike-container {
  position: relative; z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 5%;
}

@media (min-width: 1024px) {
  .nike-container { padding: 0 80px; }
}

@media (max-width: 768px) {
  .nike-container { padding: 0 20px; }
}

.impact-nike .nike-container { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; width: 100%; }

/* Fix Impact Tile for Africa */
.tile-num-text i {
    text-shadow: 0 0 20px rgba(255, 214, 10, 0.4);
}
.ci-text {
    font-size: 2.2rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, #fff, #FFD60A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Feature Cards Global Restyle to Yellow */
.features-nike .fn-card {
    background: var(--al-lime) !important;
    border: none !important;
    box-shadow: var(--sh-sm) !important;
}
.features-nike .fn-card .fn-num, 
.features-nike .fn-card h3, 
.features-nike .fn-card p,
.features-nike .fn-card .fn-arrow {
    color: var(--al-black) !important;
}
.features-nike .fn-card .fn-icon {
    background: rgba(0,0,0,0.06) !important;
    color: var(--al-black) !important;
}
.features-nike .fn-card .fn-arrow {
    border-color: rgba(0,0,0,0.1) !important;
}
.features-nike .fn-card p {
    opacity: 0.8 !important;
}
.features-nike .fn-card .fn-card-bg {
    display: none !important;
}

/* Background decor */
.impact-nike-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.impact-nike-bg .halo {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55;
  animation: impactFloat 14s ease-in-out infinite;
}
.impact-nike-bg .halo.h1 { width: 540px; height: 540px; background: #FFD60A; top: -120px; left: -120px; }
.impact-nike-bg .halo.h2 { width: 480px; height: 480px; background: #2563EB; bottom: -160px; right: -120px; animation-delay: -7s; opacity: .35; }
.impact-nike-bg .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 70%);
  opacity: .9;
}
@keyframes impactFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(40px,-30px) scale(1.08); }
}

/* Header */
.impact-nike-header { max-width: 880px; margin: 0 auto 3.5rem; text-align: center; }
.impact-pill {
  display: inline-block;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  backdrop-filter: blur(8px);
  margin-bottom: 1.25rem;
}
.impact-nike-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.02;
  margin: 0 0 1rem;
  color: #fff;
}
.impact-nike-title em {
  font-style: italic;
  color: #FFD60A;
  background: linear-gradient(180deg, transparent 62%, rgba(255,214,10,.18) 62%);
  padding: 0 .15em;
}
.impact-nike-sub {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(255,255,255,.7);
  max-width: 620px; margin: 0 auto;
}

/* Bento grid */
.impact-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 1.25rem;
}
.tile-1 { grid-column: span 5; grid-row: span 1; }
.tile-2 { grid-column: span 7; grid-row: span 1; }
.tile-3 { grid-column: span 7; grid-row: span 1; }
.tile-4 { grid-column: span 5; grid-row: span 1; }

@media (max-width: 980px) {
  .tile-1, .tile-2, .tile-3, .tile-4 { grid-column: span 6; }
}
@media (max-width: 620px) {
  .tile-1, .tile-2, .tile-3, .tile-4 { grid-column: span 12; }
}

.impact-tile {
  position: relative;
  background: linear-gradient(180deg, #14141A 0%, #0E0E14 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 1.75rem;
  display: flex; flex-direction: column;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), border-color .3s, box-shadow .4s;
  will-change: transform;
}
.impact-tile::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx,50%) var(--my,0%), rgba(255,214,10,.12), transparent 40%);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.impact-tile:hover { border-color: rgba(255,214,10,.35); box-shadow: 0 30px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,214,10,.15); }
.impact-tile:hover::before { opacity: 1; }

.tile-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  align-self: flex-start;
  background: #FFD60A; color: #0B0B0F;
  border-radius: 999px;
  padding: .35rem .75rem;
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 1rem;
}
.tile-tag.tag-dark { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(6px); }
.dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2563EB; box-shadow: 0 0 0 0 rgba(37,99,235,.5);
  animation: pulseLive 1.6s ease-out infinite;
}
@keyframes pulseLive {
  0% { box-shadow: 0 0 0 0 rgba(37,99,235,.6); }
  100% { box-shadow: 0 0 0 12px rgba(37,99,235,0); }
}

.tile-num {
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1;
  color: #fff;
  margin: .25rem 0 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #FFD60A 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Tile 1 — progress bar */
.tile-progress {
  position: relative;
  height: 8px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  margin-bottom: 1rem;
}
.tile-progress span {
  position: absolute; inset: 0;
  width: var(--w, 80%);
  background: linear-gradient(90deg, #FFD60A, #2563EB);
  border-radius: 999px;
  animation: progressIn 1.6s cubic-bezier(.2,.7,.3,1) both;
  transform-origin: left center;
}
@keyframes progressIn { from { transform: scaleX(0);} to { transform: scaleX(1);} }

/* Tile 2 — bars */
.tile-bars {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
  align-items: end; height: 76px; margin-bottom: 1rem;
}
.tile-bars span {
  display: block; width: 100%;
  height: var(--h, 50%);
  background: linear-gradient(180deg, #FFD60A, #C99F00);
  border-radius: 8px 8px 4px 4px;
  transform-origin: bottom center;
  animation: barRise .9s cubic-bezier(.2,.7,.3,1) both;
}
.tile-bars span:nth-child(1) { animation-delay: .05s; }
.tile-bars span:nth-child(2) { animation-delay: .15s; background: linear-gradient(180deg,#FFE053,#E6BD00); }
.tile-bars span:nth-child(3) { animation-delay: .25s; background: linear-gradient(180deg,#FFE97A,#FFD60A); }
.tile-bars span:nth-child(4) { animation-delay: .35s; background: linear-gradient(180deg,#FFD60A,#A67F00); }
.tile-bars span:nth-child(5) { animation-delay: .45s; background: linear-gradient(180deg,#2563EB,#1E4FC2); }
@keyframes barRise { from { transform: scaleY(0);} to { transform: scaleY(1);} }

/* Tile 3 — clock */
.tile-clock {
  position: absolute; top: 1.75rem; right: 1.75rem;
  width: 86px; height: 86px;
  border-radius: 50%;
  border: 2px dashed rgba(255,214,10,.45);
  background: rgba(255,214,10,.05);
}
.tile-clock .hand {
  position: absolute; left: 50%; bottom: 50%;
  background: #FFD60A;
  border-radius: 4px;
  transform-origin: bottom center;
}
.tile-clock .h-h { width: 3px; height: 22px; margin-left: -1.5px; animation: spinH 24s linear infinite; }
.tile-clock .h-m { width: 2px; height: 32px; margin-left: -1px; background: #2563EB; animation: spinH 4s linear infinite; }
.tile-clock .dot-c { position: absolute; left: 50%; top: 50%; width: 8px; height: 8px; margin: -4px 0 0 -4px; background: #fff; border-radius: 50%; }
@keyframes spinH { from { transform: rotate(0);} to { transform: rotate(360deg);} }

/* Tile 4 — CI flag + pin */
.tile-num-text { display: inline-flex; align-items: center; gap: 1rem; }
.ci-flag {
  display: inline-flex; width: 78px; height: 56px;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.1);
}
.ci-flag .band { flex: 1; }
.ci-flag .orange { background: #F77F00; }
.ci-flag .white  { background: #fff; }
.ci-flag .green  { background: #009A44; }
.ci-text { font-weight: 900; }
.tile-pin {
  position: absolute; top: 1.5rem; right: 1.75rem;
  width: 22px; height: 28px;
  background: #FFD60A;
  clip-path: path('M11 0 C17 0 22 5 22 11 C22 19 11 28 11 28 C11 28 0 19 0 11 C0 5 5 0 11 0 Z');
  filter: drop-shadow(0 6px 14px rgba(255,214,10,.4));
  animation: pinBounce 2.6s ease-in-out infinite;
}
.tile-pin::after {
  content: ""; position: absolute; left: 50%; top: 8px;
  width: 8px; height: 8px; margin-left: -4px;
  background: #0B0B0F; border-radius: 50%;
}
@keyframes pinBounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* Footer area inside tile */
.tile-foot { margin-top: auto; }
.tile-foot h3 {
  font-size: 1.15rem; font-weight: 800; color: #fff;
  margin: 0 0 .35rem; letter-spacing: -.01em;
}
.tile-foot p {
  font-size: .92rem; color: rgba(255,255,255,.65);
  margin: 0; line-height: 1.5;
}

/* Arrow */
.tile-arrow {
  position: absolute; bottom: 1.4rem; right: 1.4rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff; color: #0B0B0F;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), background .25s, color .25s;
}
.impact-tile:hover .tile-arrow {
  background: #FFD60A;
  transform: rotate(-45deg) scale(1.05);
  box-shadow: 0 10px 24px rgba(255,214,10,.35);
}

/* Marquee runner */
.impact-runner {
  margin-top: 3.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.impact-runner-track {
  display: inline-flex; white-space: nowrap;
  animation: impactRun 28s linear infinite;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -.02em;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
}
.impact-runner-track span { padding-right: 2rem; }
@keyframes impactRun { from { transform: translateX(0);} to { transform: translateX(-50%);} }

@media (prefers-reduced-motion: reduce) {
  .impact-nike-bg .halo,
  .tile-clock .hand,
  .tile-pin,
  .impact-runner-track,
  .dot-live { animation: none !important; }
}

/* ============================================================
   WHY — NIKE STYLE (split + animated phone mockup)
   ============================================================ */
.why-nike {
  position: relative;
  background: linear-gradient(180deg, #FBFFEF 0%, #F2FBD9 100%);
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
  isolation: isolate;
}
.why-nike .nike-container { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; }

/* Background blobs */
.why-nike-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.why-nike-bg .why-blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .55;
  animation: whyFloat 16s ease-in-out infinite;
}
.why-nike-bg .why-blob.b1 { width: 520px; height: 520px; background: #FFD60A; top: -160px; right: -120px; }
.why-nike-bg .why-blob.b2 { width: 440px; height: 440px; background: #2563EB; bottom: -160px; left: -120px; opacity: .35; animation-delay: -8s; }
.why-nike-bg .why-noise {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(11,11,15,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 80%);
  opacity: .5;
}
@keyframes whyFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-30px,40px) scale(1.08); }
}

/* Layout */
.why-nike-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 980px) { .why-nike-grid { grid-template-columns: 1fr; } }

/* Text side */
.why-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff;
  border: 1px solid rgba(11,11,15,.08);
  color: #0B0B0F;
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: .78rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(11,11,15,.06);
  margin-bottom: 1.5rem;
}
.why-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FFD60A;
  box-shadow: 0 0 0 0 rgba(255,214,10,.6);
  animation: pulseLive 1.6s ease-out infinite;
}

.why-nike-title {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.02;
  color: #0B0B0F;
  margin: 0 0 1.5rem;
}
.why-nike-title em {
  font-style: italic;
  background: linear-gradient(180deg, transparent 62%, #FFD60A 62%);
  padding: 0 .15em;
  color: #0B0B0F;
}
.why-nike-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: #4B4F5C;
  max-width: 540px;
  margin: 0 0 2rem;
  line-height: 1.55;
}
.why-nike-lead strong { color: #0B0B0F; font-weight: 800; }

/* Bullet points */
.why-points { list-style: none; padding: 0; margin: 0 0 2.25rem; display: flex; flex-direction: column; gap: 1rem; }
.why-points li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(11,11,15,.06);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), border-color .25s, box-shadow .25s;
}
.why-points li:hover { transform: translateX(6px); border-color: rgba(255,214,10,.6); box-shadow: 0 12px 28px rgba(11,11,15,.06); }
.why-check {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 12px;
  background: #FFD60A; color: #0B0B0F;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .9rem;
  box-shadow: 0 6px 14px rgba(255,214,10,.4);
}
.why-points strong { display: block; font-size: 1rem; font-weight: 800; color: #0B0B0F; margin-bottom: .15rem; }
.why-points span { display: block; font-size: .9rem; color: #4B4F5C; line-height: 1.45; }

/* CTAs */
.why-cta-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.why-cta-primary {
  display: inline-flex; align-items: center; gap: .65rem;
  background: #0B0B0F; color: #fff;
  border-radius: 999px;
  padding: 1rem 1.6rem;
  font-weight: 800; font-size: 1rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.why-cta-primary:hover { transform: translateY(-2px); background: #1A1A22; box-shadow: 0 14px 30px rgba(11,11,15,.25); color: #fff; }
.why-cta-ghost {
  display: inline-flex; align-items: center; gap: .65rem;
  background: transparent; color: #0B0B0F;
  border: 1.5px solid #0B0B0F;
  border-radius: 999px;
  padding: 1rem 1.6rem;
  font-weight: 800; font-size: 1rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.why-cta-ghost:hover { background: #FFD60A; border-color: #FFD60A; color: #0B0B0F; }

/* Stage / phone */
.why-stage {
  position: relative;
  min-height: 580px;
  display: flex; align-items: center; justify-content: center;
}
.why-phone {
  position: relative;
  width: min(330px, 80%);
  background: #0B0B0F;
  border-radius: 44px;
  padding: 18px;
  box-shadow:
    0 30px 80px rgba(11,11,15,.25),
    0 0 0 8px rgba(11,11,15,.04),
    inset 0 0 0 2px rgba(255,255,255,.04);
  animation: phoneFloat 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes phoneFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-12px) rotate(-2deg); }
}
.why-phone-notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 22px;
  background: #000; border-radius: 0 0 14px 14px;
  z-index: 3;
}
.why-screen {
  position: relative;
  background: linear-gradient(180deg, #FBFFEF 0%, #FFFFFF 60%);
  border-radius: 30px;
  padding: 44px 18px 18px;
  min-height: 520px;
  overflow: hidden;
}

/* Screen top */
.why-screen-top {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: #4B4F5C; font-weight: 700;
  margin-bottom: 1rem;
}
.dot-online {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2563EB;
  animation: pulseLive 1.6s ease-out infinite;
}
.why-screen-title { color: #0B0B0F; }
.why-screen-min { margin-left: auto; color: #8A8F9C; font-weight: 600; }

/* Route list */
.why-route {
  position: relative;
  background: #fff;
  border: 1px solid rgba(11,11,15,.06);
  border-radius: 20px;
  padding: 1rem 1rem 1.1rem 2.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(11,11,15,.04);
}
.route-line {
  position: absolute; left: 1.4rem; top: 1.6rem; bottom: 1.6rem;
  width: 2px;
  background: repeating-linear-gradient(180deg, #FFD60A 0 6px, transparent 6px 12px);
}
.route-stop { display: flex; align-items: flex-start; gap: .75rem; padding: .35rem 0; position: relative; }
.route-stop + .route-stop { margin-top: .55rem; }
.route-stop small { display: block; font-size: .68rem; color: #8A8F9C; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.route-stop strong { display: block; font-size: .92rem; color: #0B0B0F; font-weight: 800; }
.route-dot {
  position: absolute; left: -1.45rem; top: .6rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 3px solid #0B0B0F;
}
.route-dot.end { background: #FFD60A; border-color: #0B0B0F; }
.route-car {
  position: absolute; right: 1rem; bottom: .9rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: #FFD60A; color: #0B0B0F;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(255,214,10,.5);
  animation: carNudge 2.2s ease-in-out infinite;
}
@keyframes carNudge {
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(-4px); }
}

/* Offer card */
.why-offer {
  background: linear-gradient(180deg, #0B0B0F, #1A1A22);
  color: #fff;
  border-radius: 20px;
  padding: 1.1rem;
}
.why-offer-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: .85rem;
}
.why-offer-label { font-size: .78rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.why-offer-value {
  font-size: 1.6rem; font-weight: 900; color: #FFD60A; letter-spacing: -.02em;
}
.why-offer-value small { font-size: .8rem; color: rgba(255,255,255,.7); font-weight: 700; margin-left: .15rem; }

/* Slider */
.why-slider {
  position: relative;
  height: 6px; border-radius: 999px;
  background: rgba(255,255,255,.1);
  margin: 1rem 0 .65rem;
}
.why-slider-fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #FFD60A, #2563EB);
  border-radius: 999px;
  width: 30%;
  animation: sliderFill 3.6s cubic-bezier(.2,.7,.3,1) infinite alternate;
}
.why-slider-thumb {
  position: absolute; top: 50%; left: 30%;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 3px solid #FFD60A;
  transform: translate(-50%,-50%);
  box-shadow: 0 4px 14px rgba(255,214,10,.5);
  animation: sliderThumb 3.6s cubic-bezier(.2,.7,.3,1) infinite alternate;
}
@keyframes sliderFill { from { width: 30%; } to { width: 78%; } }
@keyframes sliderThumb { from { left: 30%; } to { left: 78%; } }
.why-slider-ticks {
  position: absolute; left: 0; right: 0; bottom: -10px;
  display: flex; justify-content: space-between;
}
.why-slider-ticks span { width: 2px; height: 6px; background: rgba(255,255,255,.18); border-radius: 1px; }

.why-offer-meta {
  display: flex; justify-content: space-between;
  font-size: .76rem; color: rgba(255,255,255,.65);
  margin: .85rem 0;
  font-weight: 600;
}
.why-offer-meta i { color: #FFD60A; margin-right: .25rem; }

.why-offer-cta {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: #FFD60A; color: #0B0B0F;
  border: none; border-radius: 999px;
  padding: .9rem 1.1rem;
  font-weight: 800; font-size: .95rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.why-offer-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,214,10,.4); }
.why-offer-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: #0B0B0F; color: #FFD60A;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .75rem;
}

/* Floating chips around phone */
.why-chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: .75rem;
  background: #fff;
  border-radius: 16px;
  padding: .75rem 1rem;
  box-shadow: 0 18px 40px rgba(11,11,15,.12);
  border: 1px solid rgba(11,11,15,.05);
  animation: chipFloat 5s ease-in-out infinite;
}
.why-chip strong { display: block; font-size: .88rem; font-weight: 800; color: #0B0B0F; line-height: 1.1; }
.why-chip small { display: block; font-size: .72rem; color: #8A8F9C; font-weight: 600; }
.chip-icon {
  width: 36px; height: 36px; border-radius: 12px;
  background: #FFD60A; color: #0B0B0F;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.chip-icon.dark { background: #0B0B0F; color: #FFD60A; }
.chip-1 { top: 12%;  left: 4%;  animation-delay: -1s; }
.chip-2 { bottom: 14%; right: 4%; animation-delay: -3s; }
@keyframes chipFloat {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%     { transform: translateY(-10px) rotate(-3deg); }
}
.chip-2 { transform: rotate(3deg); }
.chip-2 { animation-name: chipFloat2; }
@keyframes chipFloat2 {
  0%,100% { transform: translateY(0) rotate(3deg); }
  50%     { transform: translateY(-10px) rotate(3deg); }
}

/* Orbits + sparks */
.why-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(11,11,15,.12);
  animation: orbitSpin 30s linear infinite;
  pointer-events: none;
}
.why-orbit.o1 { width: 480px; height: 480px; top: 50%; left: 50%; margin: -240px 0 0 -240px; }
.why-orbit.o2 { width: 360px; height: 360px; top: 50%; left: 50%; margin: -180px 0 0 -180px; border-color: rgba(255,214,10,.28); animation-direction: reverse; animation-duration: 22s; }
@keyframes orbitSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.why-spark {
  position: absolute;
  width: 14px; height: 14px;
  background: #FFD60A;
  border-radius: 4px;
  box-shadow: 0 0 22px rgba(255,214,10,.7);
  animation: sparkPulse 3.4s ease-in-out infinite;
}
.why-spark.s1 { top: 22%; right: 18%; }
.why-spark.s2 { bottom: 24%; left: 16%; animation-delay: -1.2s; background: #2563EB; box-shadow: 0 0 22px rgba(37,99,235,.7); }
.why-spark.s3 { top: 50%; right: 8%;  animation-delay: -2s; }
@keyframes sparkPulse {
  0%,100% { transform: scale(1) rotate(45deg); opacity: .9; }
  50%     { transform: scale(1.4) rotate(45deg); opacity: .5; }
}

@media (max-width: 980px) {
  .why-stage { min-height: 540px; margin-top: 2rem; }
  .why-orbit.o1 { width: 380px; height: 380px; margin: -190px 0 0 -190px; }
  .why-orbit.o2 { width: 280px; height: 280px; margin: -140px 0 0 -140px; }
}

@media (prefers-reduced-motion: reduce) {
  .why-blob, .why-phone, .why-chip, .why-orbit, .why-spark,
  .route-car, .why-slider-fill, .why-slider-thumb, .dot-online, .why-pill .dot { animation: none !important; }
}

/* ============================================================
   FEATURES — NIKE STYLE (asymmetric bento + spotlight)
   ============================================================ */
.features-nike {
  position: relative;
  background: #FBFFEF;
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
  isolation: isolate;
}
.features-nike .nike-container { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; }

/* Background */
.features-nike-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.features-nike-bg .fn-blob {
  position: absolute; border-radius: 50%;
  filter: blur(110px); opacity: .45;
  animation: fnFloat 18s ease-in-out infinite;
}
.features-nike-bg .fn-blob.b1 { width: 540px; height: 540px; background: #FFD60A; top: -180px; left: -150px; }
.features-nike-bg .fn-blob.b2 { width: 460px; height: 460px; background: #2563EB; bottom: -180px; right: -120px; opacity: .3; animation-delay: -9s; }
.features-nike-bg .fn-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,11,15,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,11,15,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 75%);
  opacity: .6;
}
@keyframes fnFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(40px,-30px) scale(1.08); }
}

/* Header */
.features-nike-header { max-width: 880px; margin: 0 auto 3.5rem; text-align: center; }
.fn-pill {
  display: inline-block;
  background: #0B0B0F;
  color: #FFD60A;
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-size: .76rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.features-nike-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.02;
  color: #0B0B0F;
  margin: 0 0 1rem;
}
.features-nike-title em {
  font-style: italic;
  background: linear-gradient(180deg, transparent 62%, #FFD60A 62%);
  padding: 0 .15em;
  color: #0B0B0F;
}
.features-nike-sub {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: #4B4F5C;
  max-width: 620px; margin: 0 auto;
}

/* Grid — asymmetric bento (12 col) */
.features-nike-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 1.25rem;
}
.fn-card-1 { grid-column: span 5; }
.fn-card-2 { grid-column: span 4; }
.fn-card-3 { grid-column: span 3; }
.fn-card-4 { grid-column: span 4; }
.fn-card-5 { grid-column: span 5; }
.fn-card-6 { grid-column: span 3; }

@media (max-width: 1080px) {
  .fn-card-1, .fn-card-2, .fn-card-3,
  .fn-card-4, .fn-card-5, .fn-card-6 { grid-column: span 6; }
}
@media (max-width: 620px) {
  .fn-card-1, .fn-card-2, .fn-card-3,
  .fn-card-4, .fn-card-5, .fn-card-6 { grid-column: span 12; }
}

/* Card */
.fn-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(11,11,15,.06);
  border-radius: 28px;
  padding: 1.85rem;
  display: flex; flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  color: #0B0B0F;
  transition:
    transform .55s cubic-bezier(.2,.7,.3,1),
    opacity   .55s cubic-bezier(.2,.7,.3,1),
    border-color .3s,
    box-shadow .4s;
  opacity: 0; transform: translateY(28px);
}
.fn-card.fn-in { opacity: 1; transform: translateY(0); }

.fn-card:hover {
  border-color: rgba(255,214,10,.5);
  box-shadow: 0 30px 60px rgba(11,11,15,.08), 0 0 0 1px rgba(255,214,10,.2);
}
/* Spotlight follow-cursor */
.fn-card-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(255,214,10,.18), transparent 55%);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.fn-card:hover .fn-card-bg { opacity: 1; }
.fn-card > * { position: relative; z-index: 1; }

/* Special dark card for #2 (Chauffeurs vérifiés) */
.fn-card-2 {
  background: linear-gradient(180deg, #0B0B0F 0%, #14141A 100%);
  color: #fff;
  border-color: rgba(255,255,255,.08);
}
.fn-card-2 h3 { color: #fff; }
.fn-card-2 p  { color: rgba(255,255,255,.7); }
.fn-card-2 .fn-num { color: rgba(255,255,255,.18); }
.fn-card-2 .fn-icon {
  background: rgba(255,214,10,.12);
  color: #FFD60A;
  border-color: rgba(255,214,10,.3);
}
.fn-card-2 .fn-arrow { background: #FFD60A; color: #0B0B0F; }
.fn-card-2:hover { border-color: rgba(255,214,10,.4); }

/* Special lime card for #5 (Paiement) */
.fn-card-5 {
  background: linear-gradient(160deg, #FFEA82 0%, #FFD60A 100%);
  border-color: rgba(11,11,15,.08);
}
.fn-card-5 .fn-num { color: rgba(11,11,15,.15); }
.fn-card-5 .fn-icon {
  background: #0B0B0F; color: #FFD60A;
  border-color: rgba(11,11,15,.1);
}
.fn-card-5 .fn-arrow { background: #0B0B0F; color: #FFD60A; }
.fn-card-5:hover { border-color: rgba(11,11,15,.2); box-shadow: 0 30px 60px rgba(168,224,32,.4); }

/* Number watermark */
.fn-num {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-size: 1rem; font-weight: 900;
  letter-spacing: .04em;
  color: rgba(11,11,15,.12);
  z-index: 1;
}

/* Icon block */
.fn-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #FBFFEF, #FFE97A);
  border: 1px solid rgba(168,224,32,.3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #0B0B0F;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 18px rgba(168,224,32,.25);
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .3s;
}
.fn-card:hover .fn-icon {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 14px 28px rgba(168,224,32,.45);
}

/* Heading + body */
.fn-card h3 {
  font-size: 1.32rem;
  font-weight: 900;
  letter-spacing: -.02em;
  margin: 0 0 .55rem;
  color: #0B0B0F;
}
.fn-card p {
  font-size: .96rem;
  color: #4B4F5C;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

/* Pay row (card #5) */
.fn-pay-row {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-top: 1rem;
}
.fn-pay {
  display: inline-flex; align-items: center;
  background: rgba(11,11,15,.08);
  color: #0B0B0F;
  border-radius: 999px;
  padding: .35rem .75rem;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .02em;
  border: 1px solid rgba(11,11,15,.06);
}

/* Arrow */
.fn-arrow {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #0B0B0F; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), background .25s, color .25s;
  z-index: 2;
}
.fn-card:hover .fn-arrow {
  transform: rotate(-45deg) scale(1.05);
  background: #FFD60A; color: #0B0B0F;
  box-shadow: 0 10px 22px rgba(255,214,10,.35);
}
.fn-card-2:hover .fn-arrow,
.fn-card-5:hover .fn-arrow {
  transform: rotate(-45deg) scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .fn-blob, .fn-card, .fn-icon { animation: none !important; transition: none !important; }
  .fn-card { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   HERO — NIKE STYLE upgrade (preserves video bg)
   ============================================================ */
.hero-nike {
  position: relative;
  min-height: 100vh;
  background: #000;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}
.hero-nike .hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-nike .hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
  animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

/* Vignette / overlays */
.hero-nike .hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 18% 40%, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,0) 75%),
    linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.18) 35%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.hero-nike .hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 30% 60%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 60%, #000 0%, transparent 70%);
  opacity: .5;
  pointer-events: none;
}
.hero-nike .hero-noise {
  position: absolute; inset: 0; opacity: .12; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Top ribbon */
.hero-ribbon {
  position: relative; z-index: 3;
  margin-top: 1rem;
  padding: .55rem 0;
  background: linear-gradient(90deg, rgba(255,214,10,.0), rgba(255,214,10,.95) 18%, rgba(255,214,10,.95) 82%, rgba(255,214,10,.0));
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero-ribbon-track {
  display: inline-flex; white-space: nowrap;
  animation: heroRun 28s linear infinite;
  font-weight: 900; color: #0B0B0F;
  font-size: clamp(.85rem, 1.05vw, 1rem);
  letter-spacing: .02em; text-transform: uppercase;
}
.hero-ribbon-track span { padding-right: 2rem; }
@keyframes heroRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Container */
.hero-nike .hero-container {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) 1.5rem clamp(8rem, 12vw, 10rem);
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 980px) { .hero-nike .hero-container { grid-template-columns: 1fr; } }

/* Kicker */
.hero-kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-weight: 700;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .55rem 1.05rem; border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-kicker-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FFD60A;
  box-shadow: 0 0 0 0 rgba(255,214,10,.6);
  animation: pulseLive 1.6s ease-out infinite;
}

/* Title */
.hero-title-nike {
  font-size: clamp(2.8rem, 6vw, 5.4rem) !important;
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.045em;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 22px rgba(0,0,0,.5);
}
.hero-title-nike .line {
  display: block;
  opacity: 0; transform: translateY(28px);
  animation: heroLineIn .9s cubic-bezier(.2,.7,.3,1) forwards;
}
.hero-title-nike .line:nth-child(1) { animation-delay: .1s; }
.hero-title-nike .line:nth-child(2) { animation-delay: .25s; }
.hero-title-nike .line:nth-child(3) { animation-delay: .4s; }
.hero-title-nike em {
  font-style: italic;
  background: #FFD60A; color: #0B0B0F;
  -webkit-text-fill-color: #0B0B0F;
  padding: 0 .25em;
  border-radius: 8px;
  text-shadow: none;
  display: inline-block;
  transform: skew(-6deg);
}
.hero-title-nike .amp {
  font-style: italic; color: #FFD60A;
  -webkit-text-fill-color: #FFD60A;
  font-weight: 800;
}
@keyframes heroLineIn { to { opacity: 1; transform: translateY(0); } }

.hero-nike .hero-text p {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  color: rgba(255,255,255,.92) !important;
  -webkit-text-fill-color: rgba(255,255,255,.92) !important;
  max-width: 580px; margin: 0 0 2rem;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0,0,0,.45);
}

/* Buttons */
.hero-btn-lime {
  display: inline-flex !important; align-items: center; gap: .65rem;
  background: #FFD60A !important; color: #0B0B0F !important;
  border: none !important; border-radius: 999px !important;
  padding: 1rem 1.65rem !important;
  font-weight: 800; font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(255,214,10,.4);
  transition: transform .25s, box-shadow .25s;
}
.hero-btn-lime:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(255,214,10,.55); }
.hero-btn-lime i { transition: transform .3s; }
.hero-btn-lime:hover i { transform: translateX(4px); }

.hero-btn-ghost {
  display: inline-flex !important; align-items: center; gap: .65rem;
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1.5px solid rgba(255,255,255,.3) !important;
  border-radius: 999px !important;
  padding: 1rem 1.65rem !important;
  font-weight: 800; font-size: 1rem;
  text-decoration: none;
  transition: background .25s, border-color .25s;
}
.hero-btn-ghost:hover { background: rgba(255,255,255,.18) !important; border-color: rgba(255,255,255,.5) !important; color: #fff !important; }

/* Trust row */
.hero-trust {
  display: inline-flex; align-items: center; gap: 1rem;
  margin-top: 2rem;
  padding: .65rem 1rem .65rem .65rem;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
}
.hero-trust-avatars { display: inline-flex; }
.hero-trust-avatars .ta {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #0B0B0F;
  margin-left: -8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: #0B0B0F;
}
.hero-trust-avatars .ta:first-child { margin-left: 0; }
.hero-trust-avatars .a1 { background: linear-gradient(135deg, #FFD60A, #2563EB); }
.hero-trust-avatars .a2 { background: linear-gradient(135deg, #FFD166, #F77F00); }
.hero-trust-avatars .a3 { background: linear-gradient(135deg, #2563EB, #007054); }
.hero-trust-avatars .a4 { background: #FFD60A; }
.hero-trust-text { display: flex; flex-direction: column; line-height: 1.15; }
.hero-trust-text strong { color: #fff; font-weight: 800; font-size: .92rem; }
.hero-trust-text span { color: rgba(255,255,255,.72); font-size: .76rem; font-weight: 600; }
.hero-trust-text i { color: #FFD60A; margin-right: .15rem; }

/* Booking card upgrade */
.hero-booking-nike {
  position: relative;
  margin-bottom: 100px;
  background: rgba(20,20,26,.55) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 30px 70px rgba(0,0,0,.45), 0 0 0 1px rgba(255,214,10,.05) inset !important;
  color: #fff;
  padding: 1.4rem !important;
  max-width: 440px !important;
}
.booking-card-glow {
  position: absolute; inset: -1px; z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,214,10,.4), transparent 30%, transparent 70%, rgba(37,99,235,.35));
  filter: blur(14px); opacity: .65;
  pointer-events: none;
}
.booking-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.booking-live {
  display: inline-flex; align-items: center; gap: .45rem;
  color: #FFD60A;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #FFD60A;
  box-shadow: 0 0 0 0 rgba(255,214,10,.55);
  animation: pulseLive 1.6s ease-out infinite;
}
.booking-eta { color: rgba(255,255,255,.65); }
.booking-eta i { color: #FFD60A; margin-right: .25rem; }

.hero-booking-nike .booking-tabs {
  background: rgba(0,0,0,.35) !important;
  border: 1px solid rgba(255,255,255,.1);
}
.hero-booking-nike .booking-tab {
  color: rgba(255,255,255,.65) !important;
}
.hero-booking-nike .booking-tab.active {
  background: #FFD60A !important;
  color: #0B0B0F !important;
}
.hero-booking-nike .booking-tab i { margin-right: .35rem; font-size: .9em; }

.booking-field-nike {
  background: rgba(0,0,0,.3) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
}
.booking-field-nike label {
  color: rgba(255,255,255,.55) !important;
  font-size: .68rem !important;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.booking-field-nike input {
  color: #fff !important;
  font-weight: 700;
}
.booking-field-nike input::placeholder { color: rgba(255,255,255,.4) !important; }
.field-pin {
  position: relative;
  width: 12px; height: 12px; border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid #fff;
}
.field-pin.start { background: transparent; }
.field-pin.end {
  background: #FFD60A; border-color: #FFD60A;
  box-shadow: 0 0 0 4px rgba(255,214,10,.18);
}
.field-search { color: rgba(255,255,255,.55) !important; }

/* Connector dots between fields */
.booking-link {
  position: relative;
  margin: -.15rem 0 -.15rem 1.6rem;
  padding: .15rem 0;
  display: flex; flex-direction: column; gap: 3px;
  align-items: flex-start;
}
.booking-link .dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,.35);
}
.booking-swap {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,214,10,.15);
  border: 1px solid rgba(255,214,10,.4);
  color: #FFD60A;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .75rem;
  transition: transform .25s, background .2s;
}
.booking-swap:hover { transform: translateY(-50%) rotate(180deg); background: rgba(255,214,10,.3); }

.booking-meta {
  display: flex; justify-content: space-between;
  margin: .85rem 0 .85rem;
  font-size: .76rem; color: rgba(255,255,255,.7); font-weight: 600;
}
.booking-meta i { color: #FFD60A; margin-right: .3rem; }

.booking-cta-nike {
  background: #FFD60A !important;
  color: #0B0B0F !important;
  padding: 1rem 1.25rem !important;
  border-radius: 18px !important;
  align-items: center;
}
.booking-cta-nike .cta-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 800; font-size: 1.05rem;
}
.booking-cta-nike .cta-price {
  display: flex; flex-direction: column; align-items: flex-end;
  font-size: .68rem; color: rgba(11,11,15,.65);
  text-transform: uppercase; letter-spacing: .08em;
  font-weight: 700;
  line-height: 1.1;
}
.booking-cta-nike .cta-price strong { font-size: .98rem; color: #0B0B0F; letter-spacing: -.01em; text-transform: none; margin-top: 2px; }
.booking-cta-nike:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(255,214,10,.5); }

/* Bottom stats bar */
.hero-stats {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 0 1.5rem 1.5rem;
}
.hero-stats-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap;
  gap: 1rem 1.5rem;
  background: rgba(11,11,15,.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 1rem 2rem;
}
.hs-item { display: flex; flex-direction: column; align-items: center; line-height: 1.1; }
.hs-item strong {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 900; color: #fff;
  letter-spacing: -.02em;
}
.hs-item span { font-size: .7rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-top: .15rem; }
.hs-sep { width: 1px; height: 28px; background: rgba(255,255,255,.18); }
@media (max-width: 720px) { .hs-sep { display: none; } .hero-stats-inner { padding: 1rem 1.25rem; } }

/* Scroll indicator */
.hero-scroll {
  position: absolute; right: 1.5rem; bottom: 7.5rem; z-index: 4;
  display: inline-flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
}
.hs-line {
  width: 2px; height: 56px;
  background: linear-gradient(180deg, transparent, #FFD60A);
  position: relative; overflow: hidden;
}
.hs-line::after {
  content: ""; position: absolute; left: 0; top: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent, #fff);
  animation: scrollGlow 2.2s ease-in-out infinite;
}
@keyframes scrollGlow {
  0%   { top: -100%; }
  100% { top: 100%; }
}
.hs-text { writing-mode: vertical-rl; transform: rotate(180deg); }
@media (max-width: 980px) { .hero-scroll { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .hero-video, .hero-ribbon-track, .hero-title-nike .line, .live-dot, .hero-kicker-dot, .hs-line::after { animation: none !important; }
  .hero-title-nike .line { opacity: 1; transform: none; }
}

/* ============================================================
   HEADER — NIKE STYLE (floating pill + glass + mobile drawer)
   ============================================================ */
.header-nike {
  position: fixed;
  top: 16px; left: 0; right: 0;
  z-index: 100;
  padding: 0 1rem;
  transition: top .35s cubic-bezier(.2,.7,.3,1), transform .35s cubic-bezier(.2,.7,.3,1);
  pointer-events: none;
}
.header-nike.is-hidden { transform: translateY(-120%); }
.header-nike .header-container {
  pointer-events: auto;
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: .65rem .65rem .65rem 1.1rem;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(11,11,15,.06);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(11,11,15,.08), 0 1px 0 rgba(255,255,255,.8) inset;
  transition: background .3s, box-shadow .3s, border-radius .3s;
}
.header-nike.is-scrolled .header-container {
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 46px rgba(11,11,15,.12), 0 1px 0 rgba(255,255,255,.9) inset;
}

/* Logo */
.logo-nike {
  display: inline-flex; align-items: center; gap: .65rem;
  text-decoration: none;
  padding: .25rem .4rem;
  border-radius: 999px;
  transition: transform .25s;
}
.logo-nike:hover { transform: translateX(2px); }
.logo-mark {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFD60A 0%, #E6BD00 100%);
  color: #0B0B0F;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.15rem;
  letter-spacing: -.04em;
  box-shadow: 0 6px 16px rgba(255,214,10,.45), 0 0 0 1px rgba(11,11,15,.06) inset;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-mark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 20% 20%, rgba(255,255,255,.45), transparent 45%);
  pointer-events: none;
}
.logo-mark-inner { position: relative; z-index: 1; }
.logo-mark-dot {
  position: absolute; right: 5px; bottom: 5px;
  width: 7px; height: 7px; border-radius: 50%;
  background: #0B0B0F;
  box-shadow: 0 0 0 0 rgba(11,11,15,.4);
  animation: pulseLive 1.8s ease-out infinite;
}
.logo-word { display: inline-flex; flex-direction: column; line-height: 1; }
.logo-word-main {
  font-weight: 900; font-size: 1.08rem; color: #0B0B0F;
  letter-spacing: -.02em;
}
.logo-word-sub {
  font-size: .62rem; font-weight: 800; color: #8A8F9C;
  letter-spacing: .18em; text-transform: uppercase;
  margin-top: 2px;
}
@media (max-width: 540px) { .logo-word-sub { display: none; } .logo-word-main { font-size: 1rem; } }

/* Nav */
.header-nav { display: flex; align-items: center; }
.header-nike .nav-menu {
  list-style: none; display: flex; align-items: center; gap: .15rem;
  margin: 0; padding: .25rem;
  background: rgba(11,11,15,.04);
  border-radius: 999px;
}
.header-nike .nav-link {
  position: relative;
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  color: #0B0B0F;
  font-size: .92rem; font-weight: 700;
  text-decoration: none;
  transition: color .2s, background .25s, transform .25s;
}
.header-nike .nav-link:hover { background: rgba(11,11,15,.06); }
.header-nike .nav-link.active {
  background: #0B0B0F;
  color: #fff;
  box-shadow: 0 6px 14px rgba(11,11,15,.2);
}
.nav-badge {
  background: #FFD60A; color: #0B0B0F;
  font-size: .62rem; font-weight: 900;
  padding: .1rem .4rem;
  border-radius: 999px;
  margin-left: .15rem;
  letter-spacing: .02em;
}
.header-nike .nav-link.active .nav-badge { background: #FFD60A; color: #0B0B0F; }
@media (max-width: 980px) { .header-nav { display: none; } }

/* Actions */
.header-nike .header-actions {
  display: flex; align-items: center; gap: .5rem;
}

.header-icon-btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(11,11,15,.08);
  background: rgba(255,255,255,.7);
  color: #0B0B0F;
  font-size: .95rem;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s, border-color .2s;
}
.header-icon-btn:hover { background: #0B0B0F; color: #FFD60A; border-color: #0B0B0F; transform: translateY(-1px); }
@media (max-width: 720px) { .header-icon-btn { display: none; } }

/* Language */
.lang-wrap { position: relative; display: inline-flex; }
.lang-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  height: 40px; padding: 0 .85rem;
  border: 1px solid rgba(11,11,15,.08);
  background: rgba(255,255,255,.7);
  color: #0B0B0F;
  border-radius: 999px;
  font-weight: 800; font-size: .85rem;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.lang-btn:hover { background: #fff; border-color: rgba(11,11,15,.18); }
.lang-btn .lang-caret { font-size: .7rem; transition: transform .2s; color: #8A8F9C; }
.lang-btn:hover .lang-caret { transform: rotate(180deg); }
.lang-wrap .language-selector {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
  border: none; background: transparent;
  appearance: none; -webkit-appearance: none;
}
.lang-btn .lang-flag { font-size: 1.05rem; line-height: 1; display: inline-flex; }
.lang-wrap.open .lang-btn .lang-caret { transform: rotate(180deg); }

/* Custom dropdown */
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 140px;
  background: #fff;
  border: 1px solid rgba(11,11,15,.08);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.05);
  list-style: none; margin: 0; padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 1100;
}
.lang-wrap.open .lang-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-menu li {
  display: flex; align-items: center; gap: .55rem;
  padding: .55rem .8rem;
  font-size: .85rem; font-weight: 700; color: #0B0B0F;
  border-radius: 10px; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.lang-menu li:hover, .lang-menu li:focus { background: #F5F5F7; outline: none; }
.lang-menu li.active { background: #FFF8D6; color: #0B0B0F; }
.lang-menu li .lang-flag { font-size: 1.05rem; line-height: 1; }

@media (max-width: 720px) { .lang-wrap { display: none; } }

/* App CTA */
.btn-app-nike {
  position: relative;
  display: inline-flex; align-items: center; gap: .5rem;
  height: 44px; padding: 0 1.25rem;
  background: #0B0B0F;
  color: #fff;
  border-radius: 999px;
  font-weight: 800; font-size: .92rem;
  text-decoration: none;
  overflow: hidden;
  transition: background .25s, transform .25s, box-shadow .25s, color .25s;
}
.btn-app-nike i { color: #FFD60A; }
.btn-app-nike:hover {
  background: #FFD60A; color: #0B0B0F;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255,214,10,.45);
}
.btn-app-nike:hover i { color: #0B0B0F; }
.btn-app-pulse {
  position: absolute; top: -50%; left: -20%;
  width: 40%; height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,214,10,.35), transparent);
  transform: skewX(-18deg);
  animation: btnShine 3.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShine {
  0%   { left: -40%; }
  60%  { left: 110%; }
  100% { left: 110%; }
}
@media (max-width: 540px) { .btn-app-nike span { display: none; } .btn-app-nike { padding: 0; width: 44px; justify-content: center; } }

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: #0B0B0F; color: #fff;
  border: none; border-radius: 999px;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  transition: background .2s;
}
.mobile-menu-toggle .mmt-bar {
  display: block;
  width: 18px; height: 2px;
  background: #FFD60A;
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), opacity .2s, width .3s;
  transform-origin: center;
}
.mobile-menu-toggle .mmt-bar:nth-child(2) { width: 12px; }
.mobile-menu-toggle.active .mmt-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); width: 18px; }
.mobile-menu-toggle.active .mmt-bar:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active .mmt-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 980px) { .mobile-menu-toggle { display: inline-flex; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 78px;
  left: 1rem; right: 1rem;
  max-height: calc(100vh - 100px);
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(11,11,15,.06);
  border-radius: 28px;
  padding: 1rem;
  box-shadow: 0 30px 70px rgba(11,11,15,.18);
  opacity: 0; visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .3s, transform .3s cubic-bezier(.2,.7,.3,1), visibility 0s linear .3s;
  z-index: 99;
  overflow: auto;
}
.mobile-drawer.open {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .3s, transform .3s cubic-bezier(.2,.7,.3,1), visibility 0s linear 0s;
}
.mobile-nav { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .35rem; }
.mobile-nav a {
  display: flex; align-items: center; gap: .85rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  color: #0B0B0F;
  font-weight: 800; font-size: 1rem;
  text-decoration: none;
  background: rgba(11,11,15,.03);
  border: 1px solid rgba(11,11,15,.04);
  transition: background .2s, border-color .2s, transform .25s;
}
.mobile-nav a i { color: #0B0B0F; font-size: 1rem; width: 22px; text-align: center; }
.mobile-nav a .ar { margin-left: auto; color: #8A8F9C; transition: transform .25s, color .2s; }
.mobile-nav a:hover, .mobile-nav a.active {
  background: #FFD60A; border-color: #0B0B0F; transform: translateX(4px);
}
.mobile-nav a:hover .ar, .mobile-nav a.active .ar { transform: rotate(-45deg); color: #0B0B0F; }

.mobile-cta {
  width: 100%; justify-content: center;
  margin-top: 1rem;
  height: 52px;
  font-size: 1rem;
}
.mobile-drawer-foot {
  display: flex; justify-content: space-between;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(11,11,15,.06);
  font-size: .72rem; color: #8A8F9C; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}

/* Mobile language switcher (inside drawer) */
.mobile-lang {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11,11,15,.06);
  display: flex; flex-direction: column; gap: .6rem;
}
.mobile-lang-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; color: #8A8F9C; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.mobile-lang-label i { color: #0B0B0F; }
.mobile-lang-options {
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.mobile-lang-opt {
  flex: 1 1 auto;
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  height: 44px; padding: 0 .9rem;
  background: #fff;
  border: 1px solid rgba(11,11,15,.12);
  border-radius: 999px;
  color: #0B0B0F; font-weight: 700; font-size: .9rem;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.mobile-lang-opt:hover { background: #F5F5F7; }
.mobile-lang-opt.active {
  background: #FFD60A; border-color: #FFD60A; color: #0B0B0F;
}
.mobile-lang-opt .lang-flag { font-size: 1.05rem; line-height: 1; }

@media (min-width: 981px) { .mobile-drawer { display: none !important; } }

/* Ensure page content is not overlapped by fixed header on dark hero */
.hero-nike { padding-top: 0; }
body { scroll-padding-top: 96px; }

/* When the hero is in view, header tint adapts via class; fallback remains light */
@media (prefers-reduced-motion: reduce) {
  .logo-mark-dot, .btn-app-pulse { animation: none !important; }
}
