/* ═══════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
  --orange: #FF6A00;
  --orange-light: #FF8C42;
  --orange-pale: #FFF0E6;
  --navy: #102A5C;
  --navy-light: #1d4080;
  --navy-pale: #E8F0FF;
  --white: #FFFFFF;
  --gray-50: #F5F7FA;
  --gray-100: #EEF1F6;
  --gray-200: #DDE3EE;
  --gray-400: #9AA5BE;
  --gray-600: #5A6A8A;
  --gray-800: #2D3A55;
  --text: #102A5C;
  --text-muted: #5A6A8A;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(16,42,92,0.08);
  --shadow-md: 0 8px 32px rgba(16,42,92,0.12);
  --shadow-lg: 0 20px 60px rgba(16,42,92,0.16);
  --shadow-orange: 0 8px 32px rgba(255,106,0,0.25);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.hide-mobile { display: none; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}
.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn--orange:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,106,0,0.35);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  line-height: 1.2;
}
.btn--whatsapp:hover {
  background: #1ebe59;
  transform: translateY(-2px);
}
.btn--whatsapp i { font-size: 1.2rem; }
.btn--whatsapp small { font-size: 0.72rem; font-weight: 400; opacity: 0.9; }

/* ═══════════════════════════════════════════
   BADGES & LABELS
═══════════════════════════════════════════ */
.badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.badge--orange {
  background: var(--orange-pale);
  color: var(--orange);
  border: 1px solid rgba(255,106,0,0.2);
}
.label-pill {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--orange-pale);
  color: var(--orange);
  border: 1px solid rgba(255,106,0,0.2);
  margin-bottom: 1rem;
}
.label-pill--white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════
   SECTION HEADINGS
═══════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-title span { color: var(--orange); }
.section-title em { font-style: normal; color: var(--orange); }
.section-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

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

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 165px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.navbar__logo:hover { opacity: 0.85; }
.navbar__logo-img {
  height: 150px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── Logo centré sur mobile ── */
@media (max-width: 1023px) {
  .navbar__inner {
    position: relative;
  }
  .navbar__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .navbar__logo-img {
    height: 130px;
  }
}

.navbar__nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.navbar__nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
}
.navbar__nav a:hover { color: var(--orange); }

/* ── Dropdown Villes ── */
.navbar__dropdown { position: relative; }
.navbar__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: color var(--transition);
  text-decoration: none;
}
.navbar__dropdown-toggle:hover { color: var(--orange); }
.navbar__chevron { font-size: 0.7rem; transition: transform 0.3s ease; }
.navbar__dropdown.open .navbar__chevron { transform: rotate(180deg); }
.navbar__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  min-width: 180px;
  padding: 0.5rem;
  z-index: 200;
}
.navbar__dropdown.open .navbar__dropdown-menu { display: block; }
.navbar__dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 10px;
  transition: var(--transition);
}
.navbar__dropdown-menu a:hover,
.navbar__dropdown-menu a.nav--active {
  background: var(--orange-pale);
  color: var(--orange);
}
.navbar__dropdown-menu a i { font-size: 0.7rem; color: var(--orange); }

/* WhatsApp button in navbar — icône seule */
.navbar__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 2px solid #25D366;
  border-radius: 50%;
  color: #25D366;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}
.navbar__whatsapp span { display: none; }
.navbar__whatsapp i { font-size: 1.3rem; }
.navbar__whatsapp:hover {
  background: #25D366;
  color: var(--white);
  transform: scale(1.1);
}

.navbar__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.navbar__nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.5rem 1.25rem 2rem;
  gap: 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  z-index: 999;
  overflow-y: auto;
  max-height: calc(100vh - 68px);
}
.navbar__nav.open a { font-size: 1rem; color: var(--navy); }

/* ── Dropdown mobile : inline dans le menu burger ── */
@media (max-width: 1023px) {
  .navbar__dropdown {
    width: 100%;
  }
  .navbar__dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    font-size: 1rem;
    color: var(--navy);
    padding: 0;
  }
  .navbar__dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--orange);
    border-radius: 0;
    background: var(--gray-50, #F9FAFB);
    padding: 0.25rem 0 0.25rem 0.5rem;
    margin-top: 0.5rem;
    min-width: unset;
    width: 100%;
  }
  .navbar__dropdown.open .navbar__dropdown-menu {
    display: block;
  }
  .navbar__dropdown-menu a {
    font-size: 0.95rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
  }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: linear-gradient(160deg, var(--white) 0%, #F0F4FF 60%, #FFF5EE 100%);
  padding: 175px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}
/* ── Mobile : photo en premier, texte en second ── */
.hero__content { flex: 1; order: 2; }
.hero__visual   { order: 1; }
.hero__title {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0.85rem 0 1.1rem;
  color: var(--navy);
}
.hero__title em { font-style: normal; color: var(--orange); }
/* Hero stats */
.hero__stats {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.hero__stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.75rem;
  box-shadow: var(--shadow-sm);
  flex: 1;
  min-width: 0;
  transition: var(--transition);
}
.hero__stat:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.hero__stat-icon { font-size: 1.1rem; flex-shrink: 0; }
.hero__stat div { display: flex; flex-direction: column; line-height: 1.1; }
.hero__stat strong {
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
}
.hero__stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__icon-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--orange-pale);
  border: 1.5px solid rgba(255,106,0,0.2);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange);
}
.hero__icon-tag i { font-size: 1rem; }
.hero__sub {
  font-size: 1.2rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.hero__chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 0.4rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.hero__chips i { color: var(--orange); font-size: 0.85rem; }
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
}
.hero__feature i { color: var(--orange); font-size: 0.9rem; }

/* Hero photo visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  flex: 1;
}
.hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
  z-index: 2;
}
.hero__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
  animation: float 6s ease-in-out infinite;
}
.hero__img-chip {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: var(--orange);
  color: var(--white);
  border-radius: 14px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: var(--shadow-orange);
  z-index: 4;
  animation: float-badge 7s ease-in-out infinite;
}
.hero__img-chip i { font-size: 1rem; }

/* Hero floating badges */
.hero__badge-location {
  position: absolute;
  top: 20px;
  left: -10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 3;
  max-width: 200px;
  line-height: 1.3;
}
.hero__badge-location i { color: var(--orange); font-size: 1rem; flex-shrink: 0; }
.hero__box-deco {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--orange-pale);
  border: 2px solid rgba(255,106,0,0.15);
  border-radius: 14px;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.hero__box-deco i { color: var(--orange); }
.hero__box-deco b { color: var(--orange); }
.hero__wave {
  position: relative;
  bottom: -2px;
  line-height: 0;
}
.hero__wave svg { width: 100%; display: block; }

/* ═══════════════════════════════════════════
   PROBLEM
═══════════════════════════════════════════ */
.problem {
  background: var(--gray-50);
  padding: 5rem 0 4rem;
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.problem__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.problem__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gray-200);
}
.problem__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  color: var(--orange);
}
.problem__card p { font-size: 1rem; color: var(--gray-600); font-weight: 500; line-height: 1.6; }
.problem__card p strong { color: var(--navy); font-weight: 800; }
.problem__result {
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  box-shadow: var(--shadow-orange);
}
.problem__result i { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.problem__result strong { font-weight: 800; white-space: nowrap; }

/* ═══════════════════════════════════════════
   SOLUTION
═══════════════════════════════════════════ */
.solution {
  background: var(--white);
  padding: 5rem 0;
}
.solution__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.solution__left .section-title { text-align: left; }
.solution__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.solution__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.solution__list i { color: var(--orange); font-size: 1.1rem; flex-shrink: 0; }
.solution__tagline {
  font-size: 1.05rem;
  color: var(--orange);
  font-weight: 600;
  line-height: 1.6;
}

.solution__app-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.solution__features { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.75rem; }
.solution__feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.solution__feat:hover { background: var(--navy-pale); border-color: rgba(16,42,92,0.15); }
.feat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feat-icon--orange { background: var(--orange); color: var(--white); }
.feat-icon--navy { background: var(--navy); color: var(--white); }
.solution__feat strong { font-size: 1rem; color: var(--navy); display: block; margin-bottom: 0.2rem; }
.solution__feat p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

.solution__amazon {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.solution__amazon p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.amazon-logo span {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  font-family: Arial, sans-serif;
  position: relative;
}
.amazon-logo span::after {
  content: '↗';
  position: absolute;
  bottom: -2px;
  right: -16px;
  font-size: 0.9rem;
  color: var(--orange);
}

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process {
  background: var(--gray-50);
  padding: 5rem 0;
}
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.process__step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  width: 100%;
  max-width: 400px;
  position: relative;
  transition: var(--transition);
}
.process__step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
}
.step-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy-pale), rgba(16,42,92,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.6rem;
  color: var(--navy);
}
.process__step h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.process__step p { font-size: 1rem; color: var(--text-muted); }

/* Step with real photo */
.process__step--photo {
  padding: 0;
  overflow: hidden;
}
.process__step--photo .step-number {
  top: 14px;
  z-index: 5;
  box-shadow: var(--shadow-orange), 0 0 0 3px rgba(255,255,255,0.6);
}
.step-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.process__step--photo:hover .step-img {
  transform: scale(1.05);
}
.process__step--photo h4,
.process__step--photo p {
  padding: 0 1.5rem;
}
.process__step--photo h4 {
  padding-top: 1.25rem;
  margin-bottom: 0.4rem;
}
.process__step--photo p {
  padding-bottom: 1.5rem;
}

.process__arrow {
  color: var(--orange);
  font-size: 1.2rem;
  transform: rotate(90deg);
  opacity: 0.5;
}



/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing {
  background: var(--white);
  padding: 5rem 0;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.pricing__card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.pricing__card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pricing__card--featured {
  background: linear-gradient(160deg, var(--orange) 0%, #FF8C42 100%);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
  transform: scale(1.03);
}
.pricing__card--featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 50px rgba(255,106,0,0.35);
}
.pricing__card--featured h3,
.pricing__card--featured p { color: rgba(255,255,255,0.92); }
.pricing__card--featured h3 { color: var(--white); font-size: 1.35rem; }
.pricing__card--featured .pricing__icon { background: rgba(255,255,255,0.2); color: var(--white); }
.pricing__card--featured .pricing__size-badge { background: rgba(255,255,255,0.25); color: var(--white); font-weight: 800; }
.pricing__card--featured .price-amount { color: var(--white); }
.pricing__card--featured .price-currency,
.pricing__card--featured .price-period { color: rgba(255,255,255,0.85); }
.pricing__card--featured .pricing__popular { background: var(--white); color: var(--orange); }
.pricing__card--featured .btn {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  font-weight: 800;
}
.pricing__card--featured .btn:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.pricing__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.pricing__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--orange);
}
.pricing__size-badge {
  display: inline-block;
  background: var(--navy-pale);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.pricing__card h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 0.85rem; }
.pricing__card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* Liste détails box */
.pricing__details {
  list-style: none;
  padding: 0; margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: left;
}
.pricing__details li {
  font-size: 0.95rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.45;
}
.pricing__details li i { color: var(--orange); font-size: 0.9rem; width: 18px; text-align: center; flex-shrink: 0; }
.pricing__card--featured .pricing__details li { color: rgba(255,255,255,0.85); }
.pricing__card--featured .pricing__details li i { color: rgba(255,255,255,0.9); }

/* Badge idéal pour */
.pricing__ideal {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--navy-pale);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.25rem;
  display: inline-block;
  text-align: left;
}
.pricing__card--featured .pricing__ideal {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}
.price-amount { font-size: 2.8rem; font-weight: 900; color: var(--navy); line-height: 1; }
.price-currency { font-size: 1.1rem; font-weight: 700; color: var(--text-muted); }
.price-period { font-size: 0.85rem; color: var(--text-muted); }

.pricing__simulator {
  background: linear-gradient(135deg, var(--orange-pale), rgba(255,106,0,0.05));
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.simulator__left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.simulator__left > i {
  width: 48px; height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.simulator__left strong { font-size: 1rem; color: var(--navy); display: block; margin-bottom: 0.25rem; }
.simulator__left p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ═══════════════════════════════════════════
   SECTION DÉMÉNAGEMENT (index.html)
═══════════════════════════════════════════ */
.idx-dem {
  background: #FFF8F4;
  padding: 5rem 0 4rem;
}

/* ── Centre sans photo ── */
.idx-dem__center {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.idx-dem__center h2,
.idx-dem__center .idx-dem__sub,
.idx-dem__center .idx-dem__accent,
.idx-dem__center .idx-dem__btn {
  margin-left: auto;
  margin-right: auto;
}
.idx-dem__center .idx-dem__accent {
  justify-content: center;
}
.idx-dem__center h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #102A5C;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.idx-dem__content h2 span { color: #FF6A00; }
.idx-dem__sub {
  font-size: 1rem;
  color: #5a6a8a;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.idx-dem__accent {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FF6A00;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
}
.idx-dem__accent i { font-size: 0.9rem; }
.idx-dem__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FF6A00;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  box-shadow: 0 6px 20px rgba(255,106,0,.3);
}
.idx-dem__btn:hover { background: #e85f00; transform: translateY(-2px); }

/* Photo */
.idx-dem__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(16,42,92,.12);
  aspect-ratio: 4/3;
}
.idx-dem__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.idx-dem__img-wrap:hover .idx-dem__img { transform: scale(1.03); }

/* ── 4 Features ── */
.idx-dem__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.idx-dem__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: #fff;
  border: 1.5px solid #EEF1F6;
  border-radius: 14px;
  padding: 1.1rem 1rem;
  box-shadow: 0 2px 8px rgba(16,42,92,.05);
  transition: box-shadow .2s, transform .2s;
}
.idx-dem__feature:hover {
  box-shadow: 0 6px 20px rgba(255,106,0,.1);
  transform: translateY(-2px);
}
.idx-dem__feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: #FFF0E6;
  color: #FF6A00;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.idx-dem__feature strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #102A5C;
  margin-bottom: 0.2rem;
}
.idx-dem__feature span {
  font-size: 0.78rem;
  color: #6b7a99;
  line-height: 1.4;
}

/* ── Bannière trust ── */
.idx-dem__trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: #fff;
  border: 1.5px solid #EEF1F6;
  border-radius: 14px;
  padding: 1.1rem 1.5rem;
  box-shadow: 0 2px 8px rgba(16,42,92,.05);
}
.idx-dem__trust-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.idx-dem__trust-left > i {
  font-size: 1.4rem;
  color: #FF6A00;
  flex-shrink: 0;
}
.idx-dem__trust-left strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #102A5C;
  margin-bottom: 0.15rem;
}
.idx-dem__trust-left span {
  font-size: 0.8rem;
  color: #6b7a99;
}
.idx-dem__trust-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #102A5C;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.idx-dem__trust-btn:hover { background: #1d4080; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .idx-dem__features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .idx-dem__hero { grid-template-columns: 1fr; gap: 2rem; }
  .idx-dem__features { grid-template-columns: repeat(2, 1fr); }
  .idx-dem__trust { flex-direction: column; align-items: flex-start; }
  .idx-dem__trust-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .idx-dem__features { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   WAREHOUSE
═══════════════════════════════════════════ */
.warehouse {
  background: var(--white);
  padding: 5rem 0 4rem;
}
.warehouse__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.warehouse__main,
.warehouse__side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.warehouse__img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.warehouse__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.warehouse__img-wrap:hover .warehouse__img { transform: scale(1.04); }
.warehouse__label {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(10,31,77,0.85);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.warehouse__label i { color: var(--orange); }

/* App block */
.warehouse__app {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1d4080 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.warehouse__app-img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}
.warehouse__app-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.warehouse__app-content {
  padding: 2rem 1.75rem 2.5rem;
  color: var(--white);
}
.warehouse__app-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,106,0,0.2);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,106,0,0.3);
}
.warehouse__app-content h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}
.warehouse__app-content h3 em {
  color: var(--orange);
  font-style: normal;
}
.warehouse__app-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.warehouse__app-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.warehouse__app-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.warehouse__app-features li i { color: var(--orange); font-size: 0.8rem; }

/* Badges */
.warehouse__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.warehouse__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.warehouse__badge:hover {
  border-color: var(--orange);
  background: var(--orange-pale);
  color: var(--orange);
}
.warehouse__badge i { color: var(--orange); }

/* ═══════════════════════════════════════════
   SECURITY
═══════════════════════════════════════════ */
.security {
  background: linear-gradient(160deg, var(--navy) 0%, #0a1f4d 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.security::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.security__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.security__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.security__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
}
.security__item i { color: var(--orange); font-size: 1.1rem; flex-shrink: 0; }
.security__visual { display: flex; justify-content: center; }
.security__badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.security__big-badge {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,106,0,0.4);
  border-radius: 50%;
  width: 160px; height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  box-shadow: 0 0 60px rgba(255,106,0,0.2);
}
.security__big-badge i { color: var(--orange); font-size: 2rem; }
.security__big-badge strong { color: var(--white); font-size: 1.8rem; font-weight: 900; }
.security__big-badge span { color: rgba(255,255,255,0.7); font-size: 0.8rem; }
.security__stats { display: flex; gap: 1rem; }
.security__stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  text-align: center;
}
.security__stat strong { color: var(--white); font-size: 1.6rem; font-weight: 900; display: block; }
.security__stat span { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials {
  background: var(--gray-50);
  padding: 5rem 0;
}
/* Barre note globale */
.testimonials__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
}
.stars { color: #FFB800; font-size: 1.3rem; display: flex; gap: 3px; }

/* Score + étoiles */
.rating__score-block {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.rating__score {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.rating__stars-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.rating__count {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Avatars empilés */
.rating__avatars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.rating__avatar-stack {
  display: flex;
  align-items: center;
}
.rav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  margin-left: -10px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.rav:first-child { margin-left: 0; }
.rav--more {
  background: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.rating__join {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.testimonial__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.testimonial__card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
/* Top de la carte avis */
.testimonial__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.testimonial__stars { color: #FFB800; font-size: 1rem; display: flex; gap: 3px; }
.testimonial__verified {
  font-size: 0.78rem;
  font-weight: 600;
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.testimonial__verified i { font-size: 0.85rem; }
.testimonial__card p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial__author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial__author strong { font-size: 1rem; color: var(--navy); display: block; }
.testimonial__author small {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.testimonial__author small i { color: var(--orange); font-size: 0.8rem; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq {
  background: var(--white);
  padding: 5rem 0;
}
.faq__inner { max-width: 750px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq__item {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq__item.open { border-color: var(--orange); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}
.faq__question i { color: var(--orange); transition: transform var(--transition); flex-shrink: 0; }
.faq__item.open .faq__question i { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.25rem;
}
.faq__answer p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 1.1rem;
}
.faq__item.open .faq__answer { max-height: 200px; }

/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
.cta-final {
  background: linear-gradient(135deg, #FF6A00 0%, #FF8C42 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.cta-final::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -50px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(16,42,92,0.12);
  pointer-events: none;
}
.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.cta-final__gift {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
}
.cta-final__text h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900; color: var(--white); margin-bottom: 0.5rem; }
.cta-final__text p { font-size: 1rem; color: rgba(255,255,255,0.85); }
.cta-final .btn--orange {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.cta-final .btn--orange:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--navy);
}

/* Footer grid layout */
.footer__main {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer__brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0.75rem 0 1.25rem;
  max-width: 280px;
}
.footer__logo-img {
  height: 120px;
  width: auto;
  filter: brightness(0) invert(1);
}
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 540px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.footer__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1.1rem;
  border-radius: 20px;
  text-decoration: none;
  transition: var(--transition);
}
.footer__wa-btn:hover { background: #1ebe5d; color: var(--white); }
.footer__wa-btn i { font-size: 1rem; }

.footer__col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}
.footer__col ul li a:hover { color: var(--orange); }

/* Trust bar */
.footer__trust-bar {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__trust-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer__trust-item > i {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--orange);
  flex-shrink: 0;
}
.footer__trust-item strong { color: var(--white); font-size: 0.85rem; display: block; }
.footer__trust-item small { color: rgba(255,255,255,0.45); font-size: 0.75rem; }

/* Bottom */
.footer__bottom { padding: 1.25rem 0; }
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  text-align: center;
}
.footer__logo-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.footer__logo-text span { color: var(--white); font-weight: 900; }
.footer__logo-text b { color: var(--orange); font-weight: 900; }
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════
   TABLET (≥ 640px)
═══════════════════════════════════════════ */
@media (min-width: 640px) {
  .hero__ctas { flex-direction: row; flex-wrap: wrap; }
  .problem__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__rating { flex-direction: row; justify-content: space-between; align-items: center; }
  .rating__avatars { align-items: flex-end; }
  .footer__trust-inner { flex-direction: row; justify-content: space-around; flex-wrap: wrap; }
  .security__stats { display: flex; }
}

/* ═══════════════════════════════════════════
   DESKTOP (≥ 1024px)
═══════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hide-mobile { display: inline; }
  .navbar__nav { display: flex; }
  .navbar__burger { display: none; }

  .hero__inner { flex-direction: row; align-items: center; gap: 4rem; padding-top: 2rem; }
  .hero__content { flex: 1.1; order: 1; }
  .hero__visual { flex: 0.9; order: 2; }
  .hero__ctas { flex-direction: row; }
  .hero__features { grid-template-columns: repeat(4, auto); gap: 1rem; }

  .solution__inner { flex-direction: row; align-items: flex-start; gap: 4rem; }
  .solution__left { flex: 1; }
  .solution__right { flex: 1; }

  .process__steps { flex-direction: row; align-items: flex-start; }
  .process__arrow { transform: none; }
  .process__step { max-width: none; flex: 1; }

  .pricing__grid { grid-template-columns: repeat(4, 1fr); }

  .pricing__simulator { flex-direction: row; align-items: center; justify-content: space-between; }
  .simulator__left { flex: 1; }

  .security__inner { flex-direction: row; align-items: center; gap: 4rem; }
  .security__content { flex: 1.2; }
  .security__visual { flex: 0.8; }
  .security__badge-wrap { flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }

  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }

  /* Warehouse desktop */
  .warehouse__grid {
    flex-direction: row;
    align-items: stretch;
    height: 420px;
  }
  .warehouse__main { flex: 1.4; }
  .warehouse__side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .warehouse__side .warehouse__img-wrap { flex: 1; }
  .warehouse__img { height: 100%; }
  .warehouse__app {
    flex-direction: row;
    align-items: stretch;
  }
  .warehouse__app-img-wrap {
    width: 45%;
    height: auto;
    flex-shrink: 0;
  }
  .warehouse__app-content { padding: 2.5rem; }

  .footer__top-inner { flex-direction: row; gap: 3rem; align-items: flex-start; }
  .footer__brand { flex: 1.5; }
  .footer__col { flex: 1; }
  .footer__trust-inner { flex-direction: row; justify-content: space-between; }
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; }

  .solution__amazon { flex-direction: row; align-items: center; }
}

/* ═══════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ═══════════════════════════════════════════
   KEYFRAME ANIMATIONS
═══════════════════════════════════════════ */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  33%       { transform: translateY(-6px) translateX(4px); }
  66%       { transform: translateY(4px) translateX(-3px); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255,106,0,0.35); }
  70%  { box-shadow: 0 0 0 16px rgba(255,106,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,106,0,0); }
}
@keyframes shine {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes bounce-x {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(5px); }
}
@keyframes gradient-bg {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes fade-in-up {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ── Apply float to phone ── */
.hero__phone {
  animation: float 5s ease-in-out infinite;
}
/* ── Float badges ── */
.hero__badge-location {
  animation: float-badge 6s ease-in-out infinite;
}
.hero__box-deco {
  animation: float-badge 7s ease-in-out infinite reverse;
}
/* ── Pulse on orange CTA ── */
.btn--orange:not(:hover) {
  animation: pulse-ring 3s ease-out infinite;
}
/* ── Arrow bounce in process ── */
.process__arrow {
  animation: bounce-x 1.5s ease-in-out infinite;
}
/* ── Gradient hero title ── */
.hero__title em {
  background: linear-gradient(90deg, var(--orange) 0%, #FF8C42 50%, var(--orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 3s linear infinite;
}

/* ── Shine effect on featured pricing card ── */
.pricing__card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Glowing security badge ── */
.security__big-badge {
  animation: pulse-ring 3s ease-out infinite;
}

/* ── Animated gradient on CTA final ── */
.cta-final {
  background-size: 200% 200%;
  animation: gradient-bg 6s ease infinite;
}

/* ═══════════════════════════════════════════
   MICRO-INTERACTIONS & POLISH
═══════════════════════════════════════════ */

/* Smooth logo hover */
.navbar__logo:hover .logo-mova,
.navbar__logo:hover .logo-box {
  letter-spacing: 0.01em;
  transition: letter-spacing 0.3s ease;
}

/* Hero chip hover */
.hero__chips span:hover {
  background: var(--orange-pale);
  border-color: rgba(255,106,0,0.3);
  transform: translateY(-2px);
  cursor: default;
  transition: var(--transition);
}

/* Step icon hover */
.process__step:hover .step-icon {
  background: linear-gradient(135deg, var(--orange-pale), rgba(255,106,0,0.08));
  color: var(--orange);
  transition: var(--transition);
}

/* Testimonial quote mark */
.testimonial__card p::before {
  content: '\201C';
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.8rem;
  color: var(--orange);
  font-weight: 900;
  margin-right: 2px;
  opacity: 0.3;
}

/* ═══════════════════════════════════════════
   STICKY CTA
═══════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -4px 24px rgba(16,42,92,0.12);
  padding: 0.85rem 1.25rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-cta__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.sticky-cta__text strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
}
.sticky-cta__text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.sticky-cta__btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Sur mobile : bouton full width */
@media (max-width: 480px) {
  .sticky-cta__inner { flex-direction: column; gap: 0.75rem; }
  .sticky-cta__btn { width: 100%; }
  .sticky-cta__text { align-items: center; text-align: center; }
}

/* Bottom WhatsApp floating button */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse-ring 3s ease-out infinite;
  animation-delay: 1.5s;
}
.fab-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,0.6);
  animation: none;
}
.fab-whatsapp .fab-tooltip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(6px);
}
.fab-whatsapp .fab-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
  border-right: none;
}
.fab-whatsapp:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #FF8C42);
  z-index: 1100;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(255,106,0,0.5);
}

/* Section dividers */
.problem::before,
.pricing::before,
.testimonials::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.2;
  margin-bottom: 0;
}

/* Logo-text inline fix */
.logo-text {
  line-height: 1.1;
}
.logo-mova, .logo-box {
  display: inline;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* ── Stat numbers style in security ── */
.security__stat strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
}

/* ── phone-items overflow ── */
.phone-items {
  max-height: 224px;
  overflow: hidden;
}

/* ── Nice selection color ── */
::selection {
  background: var(--orange);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   LIENS CGV / CONDITIONS GÉNÉRALES
═══════════════════════════════════════════ */

/* Lien discret sous CTA hero */
.cta-reassurance {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.cta-reassurance__link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity var(--transition);
}
.cta-reassurance__link:hover { opacity: 0.75; }

/* Lien "Voir les conditions" sous la grille tarifs */
.pricing__cgv-link {
  text-align: center;
  margin: 0.5rem 0 1rem;
}
.pricing__cgv-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  transition: all var(--transition);
  background: var(--white);
}
.pricing__cgv-btn:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: var(--orange-pale);
}
.pricing__cgv-btn i { font-size: 0.72rem; }

/* Checkbox CGV dans le formulaire devis */
.cgv-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.85rem 1rem;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.cgv-checkbox:hover {
  border-color: var(--orange);
  background: var(--orange-pale);
}
.cgv-checkbox input[type="checkbox"] {
  display: none;
}
.cgv-checkbox__box {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--transition);
}
.cgv-checkbox__box i {
  font-size: 0.65rem;
  color: var(--white);
  display: none;
}
.cgv-checkbox input:checked ~ .cgv-checkbox__box {
  background: var(--orange);
  border-color: var(--orange);
}
.cgv-checkbox input:checked ~ .cgv-checkbox__box i {
  display: block;
}
.cgv-checkbox__label {
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.cgv-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cgv-link:hover { opacity: 0.8; }

/* Colonne Légal dans footer */
.footer__link--active {
  color: var(--orange) !important;
  font-weight: 600 !important;
}

/* ── Focus ring ── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Print hide ── */
@media print {
  .navbar, .fab-whatsapp, .scroll-progress { display: none; }
}

/* ═══════════════════════════════════════════
   CGV – LIENS DISCRETS SOUS CTA
═══════════════════════════════════════════ */

/* Texte discret "Sans engagement • ... • Conditions" */
.cta-reassurance {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.cta-reassurance__link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.cta-reassurance__link:hover { color: #e55a00; }

/* Lien "Voir les conditions complètes" sous la grille tarifs */
.pricing__cgv-link {
  text-align: center;
  margin: 0.5rem 0 1.5rem;
}
.pricing__cgv-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  transition: all var(--transition);
  background: var(--white);
}
.pricing__cgv-btn:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: var(--orange-pale);
}
.pricing__cgv-btn i { font-size: 0.75rem; }

/* ── Checkbox CGV dans le formulaire ── */
.cgv-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}
.cgv-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.cgv-checkbox__box {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--transition);
}
.cgv-checkbox__box i {
  font-size: 0.6rem;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}
.cgv-checkbox input:checked ~ .cgv-checkbox__box {
  background: var(--orange);
  border-color: var(--orange);
}
.cgv-checkbox input:checked ~ .cgv-checkbox__box i { opacity: 1; }
.cgv-checkbox:hover .cgv-checkbox__box { border-color: var(--orange); }
.cgv-checkbox__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.cgv-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.cgv-link:hover { color: #e55a00; }
