/* Nav progress bar */
.nav-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--orange);
  transition: width 0.1s linear;
}

/* Hero entrance */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-animate {
  animation: heroIn 0.7s ease both;
}

.hero-animate:nth-child(1) { animation-delay: 0.1s; }
.hero-animate:nth-child(2) { animation-delay: 0.25s; }
.hero-animate:nth-child(3) { animation-delay: 0.4s; }
.hero-animate:nth-child(4) { animation-delay: 0.55s; }
.hero-animate:nth-child(5) { animation-delay: 0.7s; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* Scroll animations */
.anim-hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.07) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: left 0.08s linear, top 0.08s linear;
}

/* 3D tilt */
.brand-card,
.problem-card,
.hype-card,
.compare-card {
  will-change: transform;
  transition: transform 0.15s ease, box-shadow 0.3s ease !important;
}

:root {
  --orange: #FF6B35;
  --orange-dark: #E55A2B;
  --navy: #1A1A2E;
  --navy-light: #16213E;
  --yellow: #FFD93D;
  --green: #28A745;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-400: #ADB5BD;
  --gray-600: #6C757D;
  --gray-800: #343A40;

  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Satoshi', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-orange: 0 10px 40px rgba(255,107,53,0.3);

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p { font-size: 1.125rem; }

.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-gray   { color: var(--gray-600); }
.text-white  { color: var(--white); }

/* ============================================
   LAYOUT
============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(255,107,53,0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-lg {
  padding: 20px 40px;
  font-size: 1.125rem;
}

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: invert(1);
  transition: opacity 0.3s, filter 0.3s;
}

.nav-logo-img:hover { opacity: 0.85; }

.nav.scrolled .nav-logo-img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(346deg) brightness(103%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: var(--gray-600); }
.nav-links a:hover,
.nav.scrolled .nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--white);
  color: var(--navy) !important;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
}
.nav.scrolled .nav-cta {
  background: var(--orange);
  color: var(--white) !important;
}
.nav.scrolled .nav-cta:hover {
  background: var(--orange-dark) !important;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.nav-mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  transform-origin: center;
}
.nav.scrolled .nav-mobile-toggle span { background: var(--navy); }

/* Hamburger → croix */
.nav-mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d0d1a 0%, #12122a 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 60px;
}

/* Grain texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}



.wave-divider {
  line-height: 0;
  margin-top: -2px;
  margin-bottom: -2px;
  pointer-events: none;
}
.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--orange);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}
.hero h1 span { color: var(--orange); }

.hero-animated-title {
  font-size: clamp(3.5rem, 6vw, 5.5rem) !important;
  line-height: 1.05 !important;
}

.hero-zero {
  display: block;
  color: var(--white) !important;
  text-indent: 0;
}


.animated-word-wrap {
  display: block;
  overflow: hidden;
  height: 1.2em;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  text-indent: 0;
}

.animated-word {
  display: inline-block;
  color: var(--orange);
  white-space: nowrap;
  animation: wordIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animated-word.exit {
  animation: wordOut 0.4s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}

@keyframes wordIn {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes wordOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-100%); }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.75;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-platform-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.35s backwards;
}
.hero-platform-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.hero-platform-logo {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@keyframes statPop {
  0%   { opacity: 0; transform: scale(0.6) translateY(16px); }
  70%  { transform: scale(1.1) translateY(-4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  animation: statPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.hero-stat:nth-child(1) .hero-stat-value { animation-delay: 0.5s; }
.hero-stat:nth-child(2) .hero-stat-value { animation-delay: 0.7s; }
.hero-stat:nth-child(3) .hero-stat-value { animation-delay: 0.9s; }

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeIn 1s ease 0.5s backwards;
  margin-top: -40px;
}

/* ── HERO DASHBOARD ── */
.hero-dashboard {
  background: linear-gradient(160deg, #1a1a2e 0%, #12121e 60%, #1a0e04 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 32px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.hero-dashboard::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.hd-header-title {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hd-header-badge {
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.25);
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.hd-brands {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.hd-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 16px;
}
.hd-brand-avatar {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  flex-shrink: 0;
}
.hd-brand-avatar--shack  { background: #2e1c08; }
.hd-brand-avatar--hot    { background: #4a3020; }
.hd-brand-avatar--bucket { background: #180d2e; }
.hd-brand-avatar--wingsy { background: #2e0e0e; }
.hd-brand-avatar img { width: 100%; height: 100%; object-fit: contain; }
.hd-brand-info { display: flex; flex-direction: column; gap: 3px; }
.hd-brand-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.hd-brand-check {
  font-size: 0.7rem;
  color: #06C167;
  font-weight: 600;
}

.hd-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}
.hd-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #06C167;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6,193,103,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(6,193,103,0); }
}

/* ── HERO MOCKUP (legacy, kept for responsive) ── */
.hero-mockup {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.05);
}

.hero-brands {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hero-brand-card {
  border-radius: 20px;
  padding: 20px 16px 14px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.hero-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.hero-brand-shack  { background: linear-gradient(145deg, #2e1c08, #1a0e04); }
.hero-brand-hot    { background: linear-gradient(145deg, #2e0e0e, #1a0606); }
.hero-brand-bucket { background: linear-gradient(145deg, #180d2e, #0e0618); }
.hero-brand-wingsy { background: linear-gradient(145deg, #0c2018, #060e0c); }

.hero-brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 6px;
  display: block;
  position: relative;
  z-index: 2;
}

.hero-brand-food {
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 90px;
  height: 90px;
  object-fit: contain;
  opacity: 0.25;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.hero-brand-card:hover .hero-brand-food { opacity: 0.45; }

.hero-brand-name {
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  position: relative;
  z-index: 2;
}

/* Floating cards */
.hero-floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.06);
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}
.hero-floating-card.card-1 { top: -18px; right: -24px; animation-delay: 0s; }
.hero-floating-card.card-2 { bottom: -18px; left: -24px; animation-delay: 1s; }

.floating-stat { display: flex; align-items: center; gap: 12px; }

.floating-stat-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.floating-stat-content strong { display: block; color: var(--navy); font-size: 1.1rem; }
.floating-stat-content span   { font-size: 0.75rem; color: var(--gray-600); }

/* ============================================
   PLATFORMS
============================================ */
.trust-bar {
  background: var(--gray-50);
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
}
.trust-icon {
  color: var(--orange);
  font-weight: 700;
}
.trust-sep {
  width: 1px;
  height: 16px;
  background: var(--gray-300);
}
@media (max-width: 768px) {
  .trust-sep { display: none; }
  .trust-bar-inner { gap: 12px; }
}

.platforms {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-200);
}

.platforms-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.platforms-phase {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.platforms-phase-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
}

.platforms-arrow {
  font-size: 2rem;
  color: var(--gray-200);
  font-weight: 300;
  margin-top: 24px;
}

.platforms-next {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Carte plateforme de base */
.platform-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 2px solid;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.platform-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Uber Eats — vert #06C167 */
.platform-ubereats {
  background: #f0faf4;
  border-color: #06C167;
  color: #06C167;
}
.platform-ubereats .platform-dot { background: #06C167; }

.platform-status-live {
  font-size: 0.8rem;
  font-weight: 500;
  color: #06C167;
  opacity: 0.8;
  margin-left: 6px;
}

/* Deliveroo — turquoise #00CCBC */
.platform-deliveroo {
  background: #f0fdfb;
  border-color: #00CCBC;
  color: #00CCBC;
  opacity: 0.55;
}
.platform-deliveroo .platform-dot { background: #00CCBC; }

/* Just Eat — orange #FF8000 */
.platform-justeat {
  background: #fff6f0;
  border-color: #FF8000;
  color: #FF8000;
  opacity: 0.55;
}
.platform-justeat .platform-dot { background: #FF8000; }

/* Delicity — violet #7B2D8B */
.platform-delicity {
  background: #faf0fb;
  border-color: #7B2D8B;
  color: #7B2D8B;
  opacity: 0.55;
}
.platform-delicity .platform-dot { background: #7B2D8B; }

@media (max-width: 768px) {
  .platforms-inner    { flex-direction: column; align-items: center; gap: 20px; }
  .platforms-phase    { align-items: center; }
  .platforms-arrow    { transform: rotate(90deg); margin: 0; }
  .platform-card      { font-size: 0.9rem; padding: 12px 18px; }
  .platforms-next     { flex-direction: column; align-items: center; }
}

/* ============================================
   PROBLEM
============================================ */
.problem { background: var(--gray-50); padding: 40px 0 80px; overflow-x: clip; }

.problem-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}

.problem-header {
  text-align: left;
  padding: 0;
  margin-top: -60px;
}
.problem-header h2 {
  font-size: clamp(2.8rem, 4vw, 4rem);
}
.problem-sub {
  margin-top: 20px;
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.problem-swiper-wrap {
  min-width: 0;
  padding-bottom: 50px;
  max-width: 500px;
  margin-left: auto;
  margin-right: 100px;
}

.problem-swiper {
  width: 100%;
  padding-bottom: 50px !important;
  overflow: visible !important;
}

.problem-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  overflow: hidden;
}

.problem-btn-prev,
.problem-btn-next {
  background: none;
  border: 2px solid var(--orange);
  color: var(--orange);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.problem-btn-prev:hover,
.problem-btn-next:hover {
  background: var(--orange);
  color: var(--white);
}

@media (max-width: 900px) {
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .problem-header { text-align: center; }
}


.problem-big-card {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  overflow: hidden;
  cursor: grab;
  position: relative;
}

.problem-big-card--1 {
  background: linear-gradient(135deg, #1A1A2E 0%, #2d1f3d 100%);
  box-shadow: inset 0 0 0 1px rgba(139,92,246,0.25), 0 0 40px rgba(139,92,246,0.06);
}
.problem-big-card--2 {
  background: linear-gradient(135deg, #7B2D8B 0%, #4a1a6e 100%);
  box-shadow: inset 0 0 0 1px rgba(210,120,255,0.25), 0 0 40px rgba(196,100,255,0.08);
}
.problem-big-card--3 {
  background: linear-gradient(135deg, #FF6B35 0%, #c94a1a 100%);
  box-shadow: inset 0 0 0 1px rgba(255,180,130,0.25), 0 0 40px rgba(255,107,53,0.1);
}

.problem-big-num {
  position: absolute;
  top: 48px;
  right: 64px;
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}

.problem-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.problem-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-card-icon--1 { background: rgba(139,92,246,0.2); color: #c4b5fd; }
.problem-card-icon--2 { background: rgba(255,255,255,0.12); color: #fff; }
.problem-card-icon--3 { background: rgba(255,255,255,0.15); color: #fff; }

.problem-card-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 99px;
  padding: 5px 12px;
}

.problem-card-bottom {
  position: relative;
  z-index: 1;
}

.problem-big-card h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.problem-big-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 600px;
}

.problem-pagination { display: none !important; }

@media (max-width: 768px) {
  .problem-big-card { padding: 40px 32px; height: 440px; }
  .problem-big-num  { font-size: 6rem; }
  .problem-deck     { height: 520px; }
}

/* ============================================
   SOLUTION
============================================ */
.solution {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-content { position: relative; z-index: 2; }

.solution h2 { margin-bottom: 24px; }
.solution h2 span { color: var(--orange); }

.solution-text {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.8;
}

.solution-features { display: flex; flex-direction: column; gap: 0; }

.solution-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 28px;
}

.solution-feature-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.solution-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,53,0.08);
  flex-shrink: 0;
}

.solution-step-line {
  width: 2px;
  flex: 1;
  min-height: 24px;
  background: linear-gradient(to bottom, rgba(255,107,53,0.4), rgba(255,107,53,0.05));
  margin-top: 6px;
}

.solution-feature-body { padding-top: 10px; }
.solution-feature-body h4 { color: var(--white); margin-bottom: 6px; font-size: 1.05rem; }
.solution-feature-body p  { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.6; }

.solution-visual { position: relative; z-index: 2; }

.solution-card {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.solution-card-value {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.solution-card-label {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}

.solution-card-desc {
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 1rem;
  color: var(--white);
}

/* Comparaison deux colonnes */
.compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.compare-card {
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compare-yes {
  background: linear-gradient(145deg, #fff 0%, #fff8f5 100%);
  border: 2px solid var(--orange);
  box-shadow: 0 20px 60px rgba(255,107,53,0.18), 0 4px 20px rgba(255,107,53,0.08);
}

.compare-yes:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(255,107,53,0.22);
}

.compare-no {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.compare-no .compare-list li { color: rgba(255,255,255,0.45); }
.compare-no .compare-card-title .compare-badge-no { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }

.compare-card-title {
  margin-bottom: 28px;
}

.compare-badge-yes {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.compare-badge-no {
  display: inline-block;
  background: var(--gray-200);
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-800);
}

.compare-no .compare-list li {
  color: var(--gray-600);
}

.compare-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.compare-icon.yes {
  background: var(--orange);
  color: var(--white);
}

.compare-icon.no {
  background: var(--gray-200);
  color: var(--gray-600);
}

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

/* ============================================
   HOW IT WORKS
============================================ */
.how-it-works { background: var(--white); }

.how-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--green));
  border-radius: 3px;
  z-index: 0;
}

.step { position: relative; z-index: 1; text-align: center; }

.step-number {
  width: 100px;
  height: 100px;
  background: var(--white);
  border: 4px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}
.step:hover .step-number {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1);
}

.step h4 { margin-bottom: 12px; color: var(--navy); }
.step p   { color: var(--gray-600); font-size: 0.95rem; }

/* ============================================
   BRANDS
============================================ */
.brands {
  background: var(--navy);
  overflow: hidden;
  padding-bottom: 100px;
}

.brands-dark-header {
  text-align: center;
  padding: 100px 24px 60px;
  max-width: 700px;
  margin: 0 auto;
}

.brands-dark-header .section-label {
  color: var(--orange);
}

.brands-big-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.brands-big-title span { color: var(--orange); }

.brands-big-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
}

/* Bento grid */
.brands-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand-bento-card {
  border-radius: 24px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 300px;
  cursor: default;
  transition: transform 0.15s ease, box-shadow 0.3s ease;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.brand-bento-shack  { background-color: #2e1c08; }
.brand-bento-hot    { background-color: #4a3020; }
.brand-bento-bucket { background-color: #0e0618; }
.brand-bento-wingsy { background-color: #2e0e0e; }


/* ── GLOW CARD EFFECT ── */
[data-glow] {
  --hue: calc(var(--base, 220) + (var(--xp, 0) * var(--spread, 150)));
  border: 1.5px solid rgba(255,255,255,0.08) !important;
  background-image: radial-gradient(
    320px 320px at calc(var(--lx, -300) * 1px) calc(var(--ly, -300) * 1px),
    hsl(var(--hue) 100% 65% / 0.12), transparent
  );
  box-shadow:
    0 0 0 1px hsl(var(--hue) 80% 55% / var(--glow-opacity, 0)),
    0 0 40px 0  hsl(var(--hue) 100% 55% / calc(var(--glow-opacity, 0) * 0.4));
  transition: box-shadow 0.3s ease;
}
[data-glow]:hover { --glow-opacity: 0.6; }


.brand-bento-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.brand-bento-logo img {
  height: 90px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.brand-bento-text {
  text-align: center;
  position: relative;
  z-index: 1;
}

.brand-bento-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.brand-bento-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.brand-bento-empty {
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.brand-bento-product {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  position: relative;
  z-index: 1;
}

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

@media (max-width: 480px) {
  .brands-bento { grid-template-columns: 1fr; }
  .brand-bento-card { min-height: 200px; }
}

/* ============================================
   ZONE GEO
============================================ */
.zone { background: var(--white); }

.zone-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.zone-wrapper {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: center;
}

.zone-map {
  height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.zone-map.map-visible {
  opacity: 1;
  transform: scale(1);
}

/* Override Leaflet */
.leaflet-control-attribution { display: none; }
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  border-radius: 8px !important;
  border: 1px solid var(--gray-200) !important;
  color: var(--navy) !important;
  font-size: 1.2rem !important;
}

/* Marqueur custom Foodsy */
.zone-marker {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(255,107,53,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zone-cities {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zone-city {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}

.zone-city strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.zone-city span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.zone-city-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.zone-city-dot.active {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.2);
}

.zone-city-dot.soon {
  background: var(--gray-400);
}

@media (max-width: 768px) {
  .zone-wrapper { grid-template-columns: 1fr; }
  .zone-map     { height: 300px; }
}

/* ============================================
   SIMULATION
============================================ */
.simulation {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.simulation-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.simulation-header h2 span { color: var(--orange); }

.simulation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.simulation-inputs {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.simulation-inputs h4 { margin-bottom: 30px; color: var(--orange); }

.input-group { margin-bottom: 24px; }

.input-group label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.input-group label span { color: var(--orange); font-weight: 600; }

.input-group input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  appearance: none;
  outline: none;
  cursor: pointer;
}
.input-group input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
  transition: transform 0.2s;
}
.input-group input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.input-group input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}

.simulation-results { display: flex; flex-direction: column; gap: 20px; }

.result-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.result-card.highlight { background: var(--orange); border-color: var(--orange); }

.result-label  { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); }
.result-card.highlight .result-label { color: var(--white); }

.result-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.result-main {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border: none;
  padding: 40px;
  text-align: center;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(255,107,53,0.35);
  position: relative;
  overflow: hidden;
}
.result-main::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.result-main .result-label { color: rgba(255,255,255,0.9); font-size: 1rem; margin-bottom: 8px; }
.result-main .result-value { font-size: 3rem; position: relative; z-index: 1; }
.result-main .result-value { font-size: 3.5rem; }
.result-main .result-sub   { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-top: 8px; }

/* ============================================
   PRICING
============================================ */
.pricing { background: var(--white); }

.pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.pricing-card:hover { border-color: var(--orange); transform: translateY(-5px); }

.pricing-card.featured {
  border-color: var(--orange);
  background: linear-gradient(to bottom, #FFF5F0 0%, var(--white) 100%);
  transform: scale(1.05);
}
.pricing-card.featured:hover { transform: scale(1.08); }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-desc { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 24px; }

.pricing-price { margin-bottom: 24px; }

.pricing-price .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
}
.pricing-price .currency { font-size: 1.5rem; color: var(--gray-600); }
.pricing-price .period   { font-size: 0.9rem; color: var(--gray-600); }

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-800);
}
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; }

.pricing-note {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 40px;
  text-align: center;
}
.pricing-note p      { font-size: 0.9rem; color: var(--gray-600); }
.pricing-note strong { color: var(--orange); }

/* ============================================
   TESTIMONIALS
============================================ */
/* ============================================
   HYPE
============================================ */
.hype { background: var(--navy); color: var(--white); overflow: hidden; }

.hype-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.hype-header h2 { color: var(--white); }

.hype-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 16px;
}

/* Ticker */
.hype-ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-bottom: 60px;
}

.hype-ticker {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: ticker 30s linear infinite;
  align-items: center;
  white-space: nowrap;
}

.hype-ticker span {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

.hype-dot {
  color: var(--orange) !important;
  font-size: 0.7rem !important;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Cards */
.hype-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hype-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.hype-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.hype-card--urgent {
  border-color: rgba(255,80,80,0.2);
  background: rgba(255,50,50,0.04);
}
.hype-card--urgent:hover { border-color: rgba(255,80,80,0.4); }

.hype-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hype-card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hype-card-icon-wrap--orange { background: rgba(255,107,53,0.15); color: var(--orange); }
.hype-card-icon-wrap--purple { background: rgba(139,92,246,0.15); color: #a78bfa; }
.hype-card-icon-wrap--red    { background: rgba(255,60,60,0.15);  color: #f87171; }

.hype-card-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
}
.hype-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.hype-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .hype-cards { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ
============================================ */
.faq { background: var(--gray-50); }

.faq-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item:hover {
  border-color: rgba(255,107,53,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.faq-item.active {
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(255,107,53,0.1);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.faq-question::after {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,107,53,0.1);
  border: 1.5px solid rgba(255,107,53,0.3);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23FF6B35' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.active .faq-question::after { transform: rotate(180deg); }
.faq-item.active .faq-question { color: var(--orange); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); }
.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 28px 22px;
  color: var(--gray-600);
  line-height: 1.75;
  font-size: 0.95rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
  margin: 0 28px 22px;
  padding-left: 0;
  padding-right: 0;
}

/* ============================================
   CONTACT
============================================ */
.contact { background: var(--navy); color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 { color: var(--white); margin-bottom: 16px; }
.contact-left p  { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.7; }

.contact-reassurance { display: flex; flex-direction: column; gap: 14px; }

.contact-reassurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

.reassurance-icon {
  width: 24px;
  height: 24px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

/* Ce qui se passe ensuite */
.contact-next {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-next-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.contact-next-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-next-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-next-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-next-step strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 2px;
}

.contact-next-step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}

/* Liens contact */
.contact-info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.contact-info-link:hover { color: var(--orange); }

/* Formulaire */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-optional { font-weight: 400; color: var(--gray-400); }

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--orange); }

.form-group textarea { resize: vertical; min-height: 90px; }

.form-legal {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: -8px;
}

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

@media (max-width: 768px) {
  .contact-form { padding: 32px 24px; }
  .form-row     { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: #0a0a18;
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-cta-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1f3d 100%);
  padding: 60px 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-cta-inner h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 8px;
}

.footer-cta-inner p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .footer-cta-inner { flex-direction: column; text-align: center; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand { max-width: 300px; }

.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: invert(1);
}

.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; }

.footer-col h5 { color: var(--white); font-size: 1rem; margin-bottom: 20px; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.875rem; }

.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--orange); transform: translateY(-3px); }

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-15px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================
   COOKIE BANNER
============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 760px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
}
.cookie-banner-text {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.cookie-icon { font-size: 1.6rem; flex-shrink: 0; }
.cookie-banner-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.cookie-banner-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-decline {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.cookie-btn-accept {
  background: var(--orange);
  color: var(--white);
}
@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ============================================
   RESPONSIVE
============================================ */

/* ── TABLET (≤ 1024px) ── */
@media (min-width: 769px) {
  .brands-bento .brand-bento-card { order: unset; }
}

@media (max-width: 1024px) {
  .hero-grid,
  .solution-grid,
  .simulation-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }

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

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.featured { transform: none; }

  .hype-cards { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .hero-visual { margin-top: 0; width: 100%; max-width: 100%; overflow: hidden; }
  .hero-dashboard { width: 100%; max-width: 100%; box-sizing: border-box; }
}

/* ── MOBILE (≤ 768px) ── */
@media (max-width: 768px) {

  /* ── HERO ── */
  .hero { padding: 100px 0 60px; min-height: unset; }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .hero-content { order: 1; max-width: 100%; }
  .hero-visual  { order: 2; width: 100%; max-width: 100%; overflow: hidden; margin-top: 0; }
  .hero-dashboard { width: 100%; max-width: 100%; box-sizing: border-box; margin: 0; padding: 20px; }

  .hero-animated-title {
    font-size: clamp(2.8rem, 10vw, 3.5rem) !important;
  }

  .hero-floating-card { display: none; }
  .hero-mockup {
    margin: 0;
    padding: 24px 12px 32px;
  }
  .hero-mockup-grid {
    gap: 10px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: center;
  }
  .hero-stat { align-items: center; }
  .hero-stat-value { font-size: 1.8rem; }

  .hero-ctas  { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  .hero-platform-badge { justify-content: flex-start; }

  /* ── SECTION PADDING ── */
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }

  /* ── NAV MOBILE ── */
  .nav.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255,255,255,0.98);
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .nav-links.nav-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .nav-links a { font-size: 1.5rem; color: var(--white) !important; }
  .nav-links .nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 16px 40px;
  }
  .nav-mobile-toggle {
    display: flex;
    position: relative;
    z-index: 1003;
  }

  /* ── PROBLEM ── */
  .problem-inner { grid-template-columns: 1fr; gap: 32px; }
  .problem-header { text-align: center; margin-top: 0; }
  .problem-swiper-wrap { margin-right: 0; max-width: 100%; }

  /* ── GRIDS ── */
  .steps        { grid-template-columns: 1fr; }
  .compare-wrap { grid-template-columns: 1fr; }
  .simulation-grid { grid-template-columns: 1fr; gap: 24px; }
  .solution-grid   { gap: 32px; }

  .brands-showcase { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .brand-card { padding: 28px 16px; }

  /* ── BRANDS BENTO : damier sur mobile ── */
  /* Ligne 1 : shack-txt | shack-img  */
  /* Ligne 2 : hot-img   | hot-txt    (inversé = damier) */
  /* Ligne 3 : bucket-txt| bucket-img */
  /* Ligne 4 : wingsy-img| wingsy-txt (inversé = damier) */
  .brands-bento { grid-template-columns: repeat(2, 1fr); }
  .brands-bento .brand-bento-card:nth-child(1) { order: 1; } /* shack-txt  */
  .brands-bento .brand-bento-card:nth-child(5) { order: 2; } /* shack-img  */
  .brands-bento .brand-bento-card:nth-child(2) { order: 3; } /* hot-img    */
  .brands-bento .brand-bento-card:nth-child(6) { order: 4; } /* hot-txt    */
  .brands-bento .brand-bento-card:nth-child(3) { order: 5; } /* bucket-txt */
  .brands-bento .brand-bento-card:nth-child(7) { order: 6; } /* bucket-img */
  .brands-bento .brand-bento-card:nth-child(4) { order: 7; } /* wingsy-img */
  .brands-bento .brand-bento-card:nth-child(8) { order: 8; } /* wingsy-txt */

  /* ── SOLUTION ── */
  .solution-feature { flex-direction: row; align-items: flex-start; }
  .compare-card { padding: 28px 20px; }

  /* ── SIMULATION ── */
  .simulation-inputs { padding: 24px 16px; }
  .result-card       { padding: 18px 20px; }
  .result-cards      { gap: 12px; }

  /* ── FAQ ── */
  .faq-grid { grid-template-columns: 1fr; }
  .faq-question { font-size: 0.95rem; padding: 18px 16px; }
  .faq-answer   { padding: 0 16px 16px; }

  /* ── CONTACT ── */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 20px; }
  .form-row     { grid-template-columns: 1fr; }

  /* ── FOOTER CTA ── */
  .footer-cta-banner { padding: 40px 0; }
  .footer-cta-inner  { flex-direction: column; text-align: center; gap: 24px; }
  .footer-cta-inner .btn { width: 100%; }

  /* ── FOOTER ── */
  .footer-grid   { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .footer-logo-img { height: 80px; }

  /* ── HYPE ── */
  .hype-cards { grid-template-columns: 1fr; }

  /* ── TYPOGRAPHIE ── */
  h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .hero-subtitle { font-size: 1rem; }
  .solution-card-value { font-size: 3.5rem; }
}

/* ── PETIT MOBILE (≤ 480px) ── */
@media (max-width: 480px) {
  .hero-animated-title { font-size: 2.5rem !important; }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stat:last-child { grid-column: 1 / -1; }

  .problem-big-card { height: auto; min-height: 280px; padding: 28px 24px; }

  .brands-bento { grid-template-columns: repeat(2, 1fr); }
  .brand-bento-card { min-height: 180px; padding: 24px 16px; }

  .simulation-inputs { padding: 20px 14px; }
  .result-card { padding: 14px 16px; }

  .footer-cta-inner h3 { font-size: 1.4rem; }

  .faq-question { font-size: 0.9rem; }
}
