
:root {
--red: #C62828;
--red-dark: #8B0000;
--red-light: #EF5350;
--orange: #E65100;
--orange-light: #FF8F00;
--yellow: #FFB300;
--yellow-light: #FFD54F;
--white: #FFFFFF;
--gray-light: #FFF8F0;
--gray: #F5F0EB;
--text-dark: #1A0000;
--text-mid: #4A1010;
--pharmacy: #0EA5E9;
--pharmacy-dark: #0284C7;
--green: #22C55E;
--accent: #FFB703;
--border: #E5E7EB;
--shadow: 0 2px 16px rgba(0,0,0,0.08);
--shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
--r: 20px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }

/* ─── HEADER ─── */
header {
  position: fixed; 
  top: 0; 
  width: 100%; 
  z-index: 1000;
  background: var(--red-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 0 5%;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  height: 70px;
}
.logo-img { 
  height: 150px; 
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); 
}
nav { 
  display: flex; 
  gap: 32px; 
  align-items: center; 
}
nav a {
  color: var(--yellow-light); 
  text-decoration: none;
  font-family: 'Poppins', sans-serif; 
  font-weight: 500; 
  font-size: 14px;
  letter-spacing: 0.5px; 
  transition: color 0.2s;
}
nav a:hover { 
  color: var(--white); 
}
.btn-nav {
  background: var(--yellow); 
  color: var(--red-dark) !important;
  padding: 10px 22px; 
  border-radius: 50px;
  font-weight: 700 !important; 
  font-size: 14px !important;
  transition: all 0.2s !important; 
  box-shadow: 0 3px 12px rgba(255,179,0,0.4);
}
.btn-nav:hover { 
  background: var(--yellow-light) !important; 
  transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; 
  padding-top: 70px;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--orange) 100%);
  display: flex; 
  align-items: center;
  position: relative; 
  overflow: hidden;
}

.hero::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.04'%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");
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px; /* espace général entre les éléments */
}

.hero-badge {
  display: inline-block; 
  background: var(--yellow);
  color: var(--red-dark); 
  padding: 6px 18px ; 
  border-radius: 50px;
  font-family: 'Poppins', sans-serif; 
  font-weight: 700; font-size: 12px;
  letter-spacing: 1px; 
  text-transform: uppercase; 
  backdrop-filter: blur(4px);
  margin-bottom: 8px;
  box-shadow: 0 4px 15px rgba(255,179,0,0.5);
  animation: pulse-badge 2s infinite;
}


@keyframes pulse-badge { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }

.hero h1 {
  font-family: 'Poppins', sans-serif; 
  font-weight: 900;
  font-size: clamp(36px, 5vw, 62px); 
  line-height: 1.1;
  color: var(--white); 
  margin-bottom: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 span { color: var(--yellow); }

.hero p {
  font-size: 18px; 
  color: rgba(255,255,255,0.88);
  line-height: 1.7; 
  margin-bottom: 0; 
  max-width: 480px;
}

.hero-btns { 
  display: flex;
  gap: 16px; 
  flex-wrap: wrap; 
  margin-top: 8px;
  justify-content: center;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: var(--red-dark);
  padding: 16px 32px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 16px;
  text-decoration: none; transition: all 0.25s;
  box-shadow: 0 6px 25px rgba(255,179,0,0.5);
  animation: bounce-btn 3s infinite;
}

@keyframes bounce-btn { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

.btn-primary:hover { 
  background: var(--white); 
  transform: translateY(-3px) !important; 
  box-shadow: 0 10px 30px rgba(255,179,0,0.6); 
  animation: none; 
}

.btn-secondary {
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  background: transparent; 
  color: var(--white);
  padding: 16px 32px; 
  border-radius: 50px; 
  border: 2px solid rgba(255,255,255,0.5);
  font-family: 'Poppins', sans-serif; 
  font-weight: 600; 
  font-size: 16px;
  text-decoration: none; 
  transition: all 0.25s;
}

.btn-secondary:hover { 
  background: var(--white);
  border-color: var(--white);
  color: var(--white);
} 

.btn-secondary {
  transition: all 0.25s;
}

.hero-stats {
  display: flex; 
  gap: 40px;
  padding-top: 32px; 
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 0;
  margin-bottom: 8px;
}

.stat { text-align: center; }

.stat-num { 
  font-family: 'Poppins', sans-serif; 
  font-weight: 800; 
  font-size: 28px; 
  color: var(--yellow); 
}

.stat-label { 
  font-size: 13px; 
  color: rgba(255,255,255,0.75); 
  margin-top: 2px; 
}

.hero-visual {
  width: 45%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  position: relative; 
  z-index: 2;
}

.hero-img-wrap {
  width: 480px; 
  height: 480px; 
  border-radius: 50%;
  position: relative; 
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border: 6px solid rgba(255,179,0,0.4);
  animation: float 4s ease-in-out infinite;
}

.hero-food-img {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-img-wrap:hover .hero-food-img { transform: scale(1.06); }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Badges flottants (déjà définis) */

.badge-float {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-float.b1 { top: 20px; left: -20px; background: #0EA5E9; color: white; animation: float-b 3s ease-in-out infinite 0.2s; }
.badge-float.b2 { bottom: 60px; right: -20px; background: #E63946; color: white; animation: float-b 3s ease-in-out infinite 0.6s; }
.badge-float.b3 { top: 40%; left: -30px; background: #FFB703; color: #1D1D1D; animation: float-b 3s ease-in-out infinite 1s; }

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

/* ─── HOW IT WORKS ─── */
.how { padding: 100px 8%; background: var(--white); }
.section-tag {
display: inline-block; background: rgba(198,40,40,0.1);
color: var(--red); padding: 6px 18px; border-radius: 50px;
font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 12px;
letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
font-family: 'Poppins', sans-serif; font-weight: 800;
font-size: clamp(28px, 4vw, 42px); line-height: 1.2;
color: var(--text-dark); margin-bottom: 12px;
}
.section-title span { color: var(--red); }
.section-sub { font-size: 17px; color: #666; line-height: 1.7; max-width: 520px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.step {
background: var(--gray-light); border-radius: 24px; padding: 40px 32px;
text-align: center; position: relative; transition: all 0.3s;
border: 2px solid transparent;
}
.step:hover { transform: translateY(-8px); border-color: var(--yellow); box-shadow: 0 20px 50px rgba(198,40,40,0.12); }
.step-num {
position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
width: 36px; height: 36px; background: var(--red); color: var(--white);
border-radius: 50%; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 16px;
display: flex; align-items: center; justify-content: center;
box-shadow: 0 4px 15px rgba(198,40,40,0.4);
}
.step-icon { font-size: 56px; margin-bottom: 20px; }
.step h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 12px; color: var(--text-dark); }
.step p { font-size: 15px; color: #666; line-height: 1.6; }


/* ── SECTION TITRE ── */
.section {
  padding: 60px 5%;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .pill {
  display: inline-block; background: rgba(230,57,70,0.1); color: var(--primary);
  padding: 4px 16px; border-radius: 50px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; margin-bottom: 12px; text-transform: uppercase;
}
.section-header h2 {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: clamp(24px, 4vw, 38px); margin-bottom: 10px;
}
.section-header h2 span { color: var(--primary); }
.section-header p { color: var(--text2); font-size: 15px; max-width: 500px; margin: 0 auto; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── SERVICE CARD BASE ── */
.sc {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all .3s ease;
  position: relative;
}

/* ACTIVE CARD */
.sc.active {
  cursor: pointer;
  border-color: transparent;
  box-shadow: var(--shadow);
}
.sc.active:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.sc.active:hover .sc-icon-wrap { transform: scale(1.08); }
.sc.active .sc-btn { pointer-events: auto; }

/* COMING SOON CARD */
.sc.soon {
  cursor: not-allowed;
  opacity: 0.72;
  filter: grayscale(0.6);
}
.sc.soon .sc-img { filter: grayscale(0.4); }
.sc.soon:hover { transform: none; box-shadow: var(--shadow); }

/* CARD IMAGE AREA */
.sc-img {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.sc-icon-wrap {
  font-size: 72px;
  transition: transform .3s;
  position: relative; z-index: 1;
}
/* Backgrounds per category */
.bg-pharmacy { background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%); }
.bg-restaurant { background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%); }
.bg-hardware { background: linear-gradient(135deg, #F1F5F9 0%, #CBD5E1 100%); }
.bg-fashion { background: linear-gradient(135deg, #FDF4FF 0%, #F3E8FF 100%); }
.bg-transport { background: linear-gradient(135deg, #ECFDF5 0%, #A7F3D0 100%); }
.bg-cafe { background: linear-gradient(135deg, #FEF9C3 0%, #FDE68A 100%); }

/* BADGES */
.sc-badge-soon {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.55); color: #fff;
  padding: 4px 12px; border-radius: 50px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
}
.sc-badge-active {
  position: absolute; top: 12px; left: 12px;
  background: var(--green); color: #fff;
  padding: 4px 12px; border-radius: 50px;
  font-size: 10px; font-weight: 700;
}
.sc-badge-new {
  position: absolute; top: 12px; right: 12px;
  background: var(--accent); color: #1D1D1D;
  padding: 4px 12px; border-radius: 50px;
  font-size: 10px; font-weight: 800;
}

/* CARD BODY */
.sc-body { padding: 20px; }
.sc-name {
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 18px;
  margin-bottom: 6px;
}
.sc-desc { font-size: 13px; color: var(--text2); line-height: 1.5; margin-bottom: 16px; }
.sc-meta {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.sc-tag {
  background: var(--bg); padding: 4px 10px; border-radius: 50px;
  font-size: 11px; font-weight: 600; color: var(--text2);
}
.sc-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.sc-delivery { font-size: 12px; color: var(--text2); font-weight: 500; }
.sc-delivery strong { color: var(--text); }

/* CARD BUTTON */
.sc-btn {
  background: var(--pharmacy); color: #fff;
  padding: 10px 20px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .2s; display: inline-block;
}
.sc-btn:hover { background: var(--pharmacy-dark); transform: translateY(-1px); }
.sc-btn.soon-btn {
  background: var(--border); color: var(--text2); cursor: not-allowed;
}
.sc-btn.soon-btn:hover { transform: none; background: var(--border); }



/* ── ANIMATION SCROLL ── */
.fi {
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fi.vis { opacity: 1; transform: none; }

/* ══════════════════════
   RESPONSIVE
   ══════════════════════ */
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-link { display: none; }
  .hero { padding: 48px 4% 60px; }
  .hero-stats { gap: 24px; }
  .section { padding: 44px 4%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .sc-img { height: 120px; }
  .sc-icon-wrap { font-size: 50px; }
  .sc-body { padding: 14px; }
  .sc-name { font-size: 15px; }
  .sc-desc { font-size: 12px; margin-bottom: 12px; }
  .sc-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sc-btn { width: 100%; text-align: center; }
  .zones-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
/* ─── PASS ─── */
.pass-section { padding: 100px 3%; background: var(--white); }
.pass-header { text-align: center; margin-bottom: 60px; }
.pass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.pass-card {
border-radius: 24px; padding: 36px 100px; text-align: center;
transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden;
background: var(--gray-light); border: 2px solid transparent;
}

.pass-card:hover { transform: translateY(-10px); }
.pass-card.featured {
background: linear-gradient(135deg, var(--red-dark), var(--orange));
color: white; border-color: var(--yellow);
box-shadow: 0 15px 50px rgba(198,40,40,0.35);
}
.pass-card.featured::before {
content: '⭐ POPULAIRE'; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
background: var(--yellow); color: var(--red-dark);
padding: 4px 14px; border-radius: 50px;
font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 10px;
letter-spacing: 1px; white-space: nowrap;
}
.pass-icon { font-size: 42px; margin-bottom: 16px; margin-top: 24px; }
.pass-name {
font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 20px;
margin-bottom: 8px;
}
.pass-card:not(.featured) .pass-name { color: var(--red-dark); }
.pass-card.featured .pass-name { color: var(--yellow); }
.pass-price-box { margin: 20px 0; }
.pass-price {
font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 38px; line-height: 1;
}
.pass-card:not(.featured) .pass-price { color: var(--red); }
.pass-card.featured .pass-price { color: var(--white); }
.pass-period { font-size: 13px; opacity: 0.7; margin-top: 4px; }
.pass-divider { height: 1px; background: rgba(0,0,0,0.08); margin: 20px 0; }
.pass-card.featured .pass-divider { background: rgba(255,255,255,0.2); }
.pass-perks { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pass-perks li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; line-height: 1.4; }
.pass-card:not(.featured) .pass-perks li { color: var(--text-mid); }
.pass-card.featured .pass-perks li { color: rgba(255,255,255,0.9); }
.perk-check { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; margin-top: 1px; }
.perk-bonus { background: transparent !important; font-size: 16px !important; width: auto !important; height: auto !important; }
.pass-card:not(.featured) .perk-check { background: var(--red); color: white; }
.pass-card.featured .perk-check { background: var(--yellow); color: var(--red-dark); }
.pass-btn {
width: 100%; padding: 14px; border-radius: 50px; border: none; cursor: pointer;
font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
transition: all 0.25s;
}
.pass-card:not(.featured) .pass-btn { background: var(--red); color: white; }
.pass-card:not(.featured) .pass-btn:hover { background: var(--red-dark); transform: scale(1.02); }
.pass-card.featured .pass-btn { background: var(--yellow); color: var(--red-dark); box-shadow: 0 6px 20px rgba(255,179,0,0.5); }
.pass-card.featured .pass-btn:hover { background: var(--yellow-light); transform: scale(1.02); }

/* ─── ZONES ─── */
.zones { padding: 100px 8%; background: var(--gray); }
.zones-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.zone-map {
background: linear-gradient(135deg, var(--red-dark), var(--red), var(--orange));
border-radius: 28px; padding: 40px; min-height: 360px;
display: flex; align-items: center; justify-content: center;
position: relative; overflow: hidden;
box-shadow: 0 20px 60px rgba(198,40,40,0.3);
}
.zone-map-text { text-align: center; position: relative; z-index: 1; }
.zone-map-icon { font-size: 80px; margin-bottom: 16px; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3)); }
.zone-map h3 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 24px; color: var(--white); margin-bottom: 8px; }
.zone-map p { color: rgba(255,255,255,0.8); font-size: 15px; }
.zone-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.zone-item {
background: var(--white); border-radius: 16px; padding: 24px 28px;
display: flex; align-items: center; justify-content: space-between;
box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s;
border-left: 4px solid transparent;
}
.zone-item:hover { transform: translateX(6px); border-left-color: var(--red); }
.zone-item-left { display: flex; align-items: center; gap: 16px; }
.zone-dot { width: 12px; height: 12px; border-radius: 50%; }
.zone-dot.normal { background: var(--red); }
.zone-dot.far { background: var(--orange); }
.zone-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; color: var(--text-dark); }
.zone-desc { font-size: 13px; color: #999; margin-top: 2px; }
.zone-price { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 20px; color: var(--red); }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 100px 8%; background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
background: var(--gray-light); border-radius: 24px; padding: 36px 32px;
transition: all 0.3s; position: relative;
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.review-card::before {
content: '"'; position: absolute; top: 20px; right: 24px;
font-size: 80px; color: rgba(198,40,40,0.1); font-family: Georgia, serif;
line-height: 1;
}
.stars { font-size: 20px; margin-bottom: 20px; }
.review-text { font-size: 16px; color: #555; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
width: 48px; height: 48px; border-radius: 50%;
background: linear-gradient(135deg, var(--red), var(--orange));
display: flex; align-items: center; justify-content: center;
font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; color: white;
}
.reviewer-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; color: var(--text-dark); }
.reviewer-loc { font-size: 13px; color: #999; margin-top: 2px; }

/* ─── CTA ─── */
.cta {
padding: 100px 8%;
background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 40%, var(--orange) 100%);
text-align: center; position: relative; overflow: hidden;
}
.cta::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.04'%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");
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta h2 {
font-family: 'Poppins', sans-serif; font-weight: 900;
font-size: clamp(32px, 5vw, 52px); color: var(--white); margin-bottom: 16px;
}
.cta h2 span { color: var(--yellow); }
.cta p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 48px; line-height: 1.6; }
.cta-number {
font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 28px;
color: var(--yellow); margin-bottom: 36px; letter-spacing: 1px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-whatsapp {
display: inline-flex; align-items: center; gap: 12px;
background: #25D366; color: white;
padding: 18px 38px; border-radius: 50px;
font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 18px;
text-decoration: none; transition: all 0.25s;
box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.6); }
.cta-info { display: flex; gap: 40px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.cta-info-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 15px; }
.cta-info-item strong { color: var(--yellow); font-family: 'Poppins', sans-serif; font-weight: 700; }

/* ─── FOOTER ─── */
footer {
background: var(--text-dark); padding: 60px 8% 32px;
color: rgba(255,255,255,0.7);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 52px; margin-bottom: 20px; filter: brightness(0) invert(1) opacity(0.9); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1);
display: flex; align-items: center; justify-content: center; font-size: 18px;
text-decoration: none; transition: all 0.25s;
}
.social-btn:hover { background: var(--red); transform: translateY(-3px); }
.footer-col h4 {
font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
color: var(--white); letter-spacing: 1px; text-transform: uppercase;
margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px;
transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px;
display: flex; justify-content: space-between; align-items: center;
font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom span { color: var(--yellow); font-weight: 600; }

/* ── REMPLACE l'ancien media query ── */
@media (max-width: 900px) {

  /* Cacher la nav desktop */
  nav {
    display: none !important;
  }

  /* Afficher le bouton hamburger */
  #menuBtn {
    display: flex !important;
  }

  /* Hero */
  .hero { flex-direction: column; padding: 100px 6% 60px; text-align: center; }
  .hero-content { width: 100%; padding: 0; gap: 20px; }
  .hero .hero-badge {
  padding: 4px 12px !important;
  font-size: 10px !important;
  margin-bottom: 8px !important;
  letter-spacing: 0.5px !important;
}
  .hero-visual { width: 100%; margin-top: 40px; display: flex; justify-content: center; }
  .hero-img-wrap { width: 280px; height: 280px; }
  .hero-stats { justify-content: center; gap: 24px; }
  .hero-btns { justify-content: center; }

  /* Steps */
  .steps { grid-template-columns: 1fr; }

  /* Services */
  .service-card { grid-template-columns: 1fr; }
  .service-visual { min-height: 200px; font-size: 80px; }

  /* ─ PASS : 1 par ligne comme les steps ─ */
  .pass-section { padding: 80px 5%; }
  .pass-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 28px;
  }
  .pass-card {
    padding: 36px 32px;
  }
  /* Le featured ne se scale plus — ça évite qu'il déborde */
  .pass-card.featured {
    transform: none;
  }
  .pass-card.featured:hover {
    transform: translateY(-10px);
  }

  /* Zones */
  .zones-inner { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .badge-float { display: none; }
}



