/* ============================================
   STYLE - Pack Bornes Recharge IRVE
   Calque exact sur tirzepatide-nearme.com
   Variables --primary / --secondary injectees via header.php
   ============================================ */

:root {
  --dark: #0f172a;
  --muted: #64748b;
  --bg: #fafbfc;
  --border: #e2e8f0;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-accent: linear-gradient(135deg, var(--secondary) 0%, color-mix(in srgb, var(--secondary) 60%, white) 100%);
}
* { box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-weight: 800; letter-spacing: -0.02em; color: var(--dark) }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================
   1. SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0%;
  background: var(--gradient);
  z-index: 9999;
  transition: width .08s linear;
  box-shadow: 0 0 10px color-mix(in srgb, var(--primary) 60%, transparent);
}

/* ============================================
   2. NAVBAR (glassmorphism)
   ============================================ */
.navbar-custom {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,.6);
  padding: .9rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.navbar-brand {
  font-weight: 900;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.brand-icon {
  width: 42px; height: 42px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--primary) 35%, transparent);
}
.btn-cta {
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: .7rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--primary) 40%, transparent);
  transition: all .3s;
  position: relative;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--primary) 55%, transparent);
  color: #fff;
}
.btn-cta.pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid var(--secondary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1 }
  100% { transform: scale(1.25); opacity: 0 }
}

/* ============================================
   3. HERO
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 8%, white) 0%, color-mix(in srgb, var(--primary) 15%, white) 50%, color-mix(in srgb, var(--secondary) 8%, white) 100%);
  padding: 5rem 0 4rem;
  min-height: 550px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, color-mix(in srgb, var(--primary) 12%, transparent) 0, transparent 40%),
                     radial-gradient(circle at 80% 70%, color-mix(in srgb, var(--secondary) 10%, transparent) 0, transparent 40%);
  pointer-events: none;
}
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .5;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}
.shape-1 { width: 180px; height: 180px; background: radial-gradient(circle, var(--primary) 0%, transparent 70%); top: 10%; left: 5%; animation-delay: 0s }
.shape-2 { width: 120px; height: 120px; background: radial-gradient(circle, var(--secondary) 0%, transparent 70%); top: 60%; left: 40%; animation-delay: 2s }
.shape-3 { width: 220px; height: 220px; background: radial-gradient(circle, color-mix(in srgb, var(--primary) 60%, white) 0%, transparent 70%); top: 20%; right: 10%; animation-delay: 4s }
.shape-4 { width: 90px; height: 90px; background: radial-gradient(circle, var(--secondary) 0%, transparent 70%); bottom: 15%; right: 30%; animation-delay: 1s }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1) }
  50% { transform: translate(20px,-30px) scale(1.08) }
}
.hero-content { position: relative; z-index: 2 }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.3rem;
  font-weight: 900;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-reassure {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin-top: 2rem;
  font-size: .95rem;
  color: var(--muted);
}
.hero-reassure span { display: flex; align-items: center; gap: .5rem }
.hero-reassure i { color: var(--primary); font-size: 1.1rem }

/* Hero illustration */
.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

/* Social proof stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid color-mix(in srgb, var(--primary) 15%, transparent);
}
.hero-stat { text-align: center }
.hero-stat-num {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat-lbl { font-size: .85rem; color: var(--muted); font-weight: 500 }

/* ============================================
   4. TRUST BAR
   ============================================ */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 0;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--dark);
  font-weight: 600;
  font-size: .95rem;
}
.trust-item i {
  font-size: 1.6rem;
  color: var(--secondary);
  background: color-mix(in srgb, var(--secondary) 10%, white);
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================
   5. BREADCRUMB
   ============================================ */
.breadcrumb-section {
  padding: 1.5rem 0;
  background: var(--bg);
}
.breadcrumb {
  justify-content: flex-start;
  margin-bottom: 0;
  font-size: .9rem;
}
.breadcrumb-item a { color: var(--primary); text-decoration: none }
.breadcrumb-item.active { color: var(--muted) }

/* ============================================
   6. TRUST BADGE CARD
   ============================================ */
.trust-badge-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
  margin: 0 auto;
}
.rating-stars { color: #fbbf24; font-size: 1.3rem }
.rating-num { font-size: 1.8rem; font-weight: 900; color: var(--dark) }
.verified-badge {
  background: color-mix(in srgb, var(--primary) 10%, white);
  color: var(--primary);
  padding: .5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

/* Urgency badge */
.urgency-badge {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: .6rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,.3);
}
.urgency-badge .dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 50% { opacity: .3 } }

/* ============================================
   7. MAIN CTA
   ============================================ */
.main-cta {
  background: var(--gradient);
  position: relative;
  padding: 4.5rem 0;
  color: #fff;
  overflow: hidden;
  margin: 4rem 0;
  border-radius: 32px;
}
.main-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 30m-2 0a2 2 0 1 0 4 0a2 2 0 1 0-4 0' fill='%23ffffff' fill-opacity='.08'/%3E%3C/svg%3E");
  opacity: .6;
}
.main-cta-content { position: relative; z-index: 2; text-align: center }
.main-cta h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem }
.main-cta .btn-white {
  background: #fff; color: var(--primary);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  transition: all .3s;
  text-decoration: none;
  display: inline-block;
}
.main-cta .btn-white:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,.3); color: var(--primary) }
.cta-reassure {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem;
  margin-top: 2rem;
  font-size: .9rem;
  opacity: .95;
}
.cta-reassure span { display: flex; align-items: center; gap: .4rem }

/* ============================================
   8. STATS ROW
   ============================================ */
.stats-row { padding: 3rem 0; background: #fff }
.stat-card { text-align: center; padding: 1.5rem }
.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-lbl { color: var(--muted); font-weight: 500; font-size: .95rem }

/* ============================================
   9. HOW IT WORKS
   ============================================ */
.how-section { padding: 5rem 0; background: var(--bg) }
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .8rem }
.section-title p { color: var(--muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto }
.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}
.how-step {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(15,23,42,.04);
  transition: all .3s;
  position: relative;
}
.how-step:hover { transform: translateY(-6px); box-shadow: 0 20px 40px color-mix(in srgb, var(--primary) 12%, transparent) }
.how-step-num {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--primary) 40%, transparent);
}
.how-step-svg {
  width: 140px; height: 140px;
  margin: 0 auto 1.5rem;
}
.how-step-img {
  width: 100%; height: 180px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}
.how-step h3 { font-size: 1.3rem; margin-bottom: .6rem }
.how-step p { color: var(--muted); font-size: .95rem; margin-bottom: 0 }
.how-connector {
  width: 60px;
  height: 2px;
  border-top: 2px dashed color-mix(in srgb, var(--primary) 40%, white);
  position: relative;
}
.how-connector::after {
  content: '';
  position: absolute;
  right: -6px; top: -5px;
  border: 6px solid transparent;
  border-left-color: color-mix(in srgb, var(--primary) 40%, white);
}
@media (max-width: 991px) {
  .how-grid { grid-template-columns: 1fr; gap: 2rem }
  .how-connector { display: none }
}

/* ============================================
   10. TREATMENT / AIDE CARDS (with top-border reveal)
   ============================================ */
.treatments-section { padding: 5rem 0; background: #fff }
.treatment-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}
.treatment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.treatment-card:hover::before { transform: scaleX(1) }
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px color-mix(in srgb, var(--primary) 15%, transparent);
  border-color: var(--primary);
}
.treatment-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, white), color-mix(in srgb, var(--secondary) 10%, white));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.3rem;
}
.treatment-card h3 { font-size: 1.25rem; margin-bottom: .6rem }
.treatment-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 1rem 0;
}
.treatment-card p { color: var(--muted); font-size: .92rem; margin-bottom: 1.2rem }
.treatment-card ul { list-style: none; padding: 0; margin: 0 }
.treatment-card ul li {
  padding: .4rem 0;
  color: var(--dark);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.treatment-card ul li i { color: var(--primary) }

/* ============================================
   11. TRANSFORMATION / KEY NUMBERS SECTION
   ============================================ */
.transformation {
  padding: 6rem 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--secondary) 5%, white) 0%, color-mix(in srgb, var(--primary) 8%, white) 100%);
  position: relative;
  overflow: hidden;
}
.transformation::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, color-mix(in srgb, var(--secondary) 8%, transparent), transparent);
  top: -150px; right: -150px;
  border-radius: 50%;
}
.transformation::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary) 10%, transparent), transparent);
  bottom: -100px; left: -100px;
  border-radius: 50%;
}
.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.transform-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--primary) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 10%, transparent);
  transition: all .4s;
}
.transform-card:hover { transform: translateY(-10px); box-shadow: 0 30px 80px color-mix(in srgb, var(--primary) 20%, transparent) }
.transform-num {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: .8rem;
  letter-spacing: -0.04em;
}
.transform-card.accent .transform-num {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.transform-lbl {
  color: var(--muted);
  font-weight: 600;
  font-size: 1rem;
}
@media (max-width: 767px) { .transform-grid { grid-template-columns: 1fr } }

/* ============================================
   12. DEVIS SECTION (form integration)
   ============================================ */
.devis-section {
  padding: 4rem 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}
.devis-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 30m-2 0a2 2 0 1 0 4 0a2 2 0 1 0-4 0' fill='%23ffffff' fill-opacity='.08'/%3E%3C/svg%3E");
  opacity: .6;
}
.devis-card {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 25px 60px rgba(0,0,0,.15);
  text-align: center;
  position: relative;
  z-index: 2;
}
.devis-card h2 { font-weight: 800; color: var(--primary); margin-bottom: .5rem }

/* ============================================
   13. PROVIDER / INSTALLATEUR CARDS
   ============================================ */
.providers-section { padding: 5rem 0; background: #fff }
.provider-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all .3s;
}
.provider-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px color-mix(in srgb, var(--primary) 12%, transparent); border-color: var(--primary) }
.provider-avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 2rem;
  margin-bottom: 1.2rem;
}
.provider-card h4 { font-size: 1.2rem; margin-bottom: .3rem }
.provider-specialty { color: var(--primary); font-weight: 600; font-size: .9rem; margin-bottom: .8rem }
.provider-card p { color: var(--muted); font-size: .9rem; margin-bottom: 1.2rem }
.btn-outline-primary-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: .55rem 1.3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  transition: all .3s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-primary-custom:hover { background: var(--primary); color: #fff }
.badge-irve {
  display: inline-block;
  background: color-mix(in srgb, var(--primary) 12%, white);
  color: var(--primary);
  font-size: .75rem; font-weight: 700;
  padding: .3rem .8rem; border-radius: 50px;
}
.badge-rge {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-size: .75rem; font-weight: 700;
  padding: .3rem .8rem; border-radius: 50px;
}
.badge-distance {
  display: inline-block;
  background: #f1f5f9;
  color: var(--muted);
  font-size: .75rem; font-weight: 600;
  padding: .3rem .8rem; border-radius: 50px;
}

/* ============================================
   14. FAQ
   ============================================ */
.faq-section { padding: 5rem 0; background: #fff }
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 16px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}
.accordion-button {
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.3rem 1.5rem;
  background: #fff;
  color: var(--dark);
}
.accordion-button:not(.collapsed) {
  background: color-mix(in srgb, var(--primary) 6%, white);
  color: var(--primary);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: var(--primary) }
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='currentColor'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body { padding: 0 1.5rem 1.5rem; color: var(--muted); line-height: 1.75 }

/* ============================================
   15. SEO CONTENT
   ============================================ */
.seo-section { padding: 5rem 0; background: var(--bg) }
.seo-section h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--primary);
}
.seo-section h2:first-child { margin-top: 0 }
.seo-section p { color: #334155; line-height: 1.8; margin-bottom: 1rem }

/* ============================================
   16. NEARBY CITIES
   ============================================ */
.nearby-section { padding: 5rem 0; background: #fff }
.nearby-section .accordion-button { font-size: 1.2rem }
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 767px) { .nearby-grid { grid-template-columns: 1fr } }
.nearby-link {
  background: var(--bg);
  padding: 1rem 1.3rem;
  border-radius: 12px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.nearby-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateX(4px) }
.nearby-link i { color: var(--primary); transition: color .3s }
.nearby-link:hover i { color: #fff }

/* ============================================
   17. DEPARTEMENT / COMMUNE GRIDS
   ============================================ */
.state-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
  text-decoration: none;
  color: var(--dark);
  transition: all .3s;
  display: block;
  height: 100%;
}
.state-card:hover { border-color: var(--primary); box-shadow: 0 10px 30px color-mix(in srgb, var(--primary) 10%, transparent); transform: translateY(-3px); color: var(--primary) }
.state-card h3 { font-size: 1rem; margin-bottom: .2rem; color: var(--primary); font-weight: 700 }
.state-card span { font-size: .8rem; color: var(--muted) }

.ville-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .8rem;
}
.ville-link {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .9rem 1.1rem;
  text-decoration: none;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .3s;
}
.ville-link:hover { border-color: var(--primary); color: var(--primary); transform: translateX(3px) }

/* ============================================
   18. FINAL CTA
   ============================================ */
.final-cta {
  padding: 5rem 0;
  background: var(--gradient);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, color-mix(in srgb, var(--secondary) 25%, transparent), transparent 50%),
                     radial-gradient(circle at 70% 50%, rgba(139,92,246,.25), transparent 50%);
}
.final-cta-content { position: relative; z-index: 2 }
.final-cta h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1rem }
.final-cta p { font-size: 1.15rem; opacity: .95; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto }
.final-cta .btn-white {
  background: #fff; color: var(--primary);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  text-decoration: none;
  display: inline-block;
  transition: all .3s;
}
.final-cta .btn-white:hover { transform: translateY(-3px); color: var(--primary) }

/* ============================================
   19. FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 4rem 0 2rem;
}
.footer h5 { color: #fff; margin-bottom: 1.2rem; font-size: 1.05rem }
.footer a { color: #cbd5e1; text-decoration: none; display: block; padding: .3rem 0; transition: color .2s }
.footer a:hover { color: #fff }
.footer-brand { display: flex; align-items: center; gap: .6rem; font-weight: 900; font-size: 1.2rem; color: #fff; margin-bottom: 1rem }
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 2rem 0;
  margin: 2rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-trust span {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem;
  color: #94a3b8;
}
.footer-trust i { color: var(--primary) }
.footer-disclaimer {
  font-size: .78rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-top: 1.5rem;
}

/* ============================================
   20. FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  background: var(--gradient);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--primary) 50%, transparent);
  display: flex;
  align-items: center;
  gap: .6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .4s;
}
.floating-cta.visible { opacity: 1; visibility: visible; transform: translateY(0) }
.floating-cta:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 20px 50px color-mix(in srgb, var(--primary) 65%, transparent) }
.floating-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid color-mix(in srgb, var(--secondary) 50%, transparent);
  animation: pulse 2s infinite;
}

/* ============================================
   21. HERO SEARCH (index page)
   ============================================ */
.hero-search {
  background: #fff;
  border-radius: 50px;
  padding: .4rem;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--primary) 15%, transparent);
  display: flex;
  align-items: center;
}
.hero-search input {
  border: none;
  outline: none;
  flex: 1;
  padding: .8rem 1.2rem;
  font-size: 1rem;
  background: transparent;
  border-radius: 50px;
}
.hero-search button {
  background: var(--gradient);
  border: none;
  color: #fff;
  padding: .8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
}
.search-results {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(15,23,42,.15);
  margin-top: .5rem;
  max-height: 400px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}
.search-results.show { display: block }
.search-results .dropdown-item {
  padding: .8rem 1.2rem;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.search-results .dropdown-item:hover { background: var(--bg); color: var(--primary) }

/* ============================================
   22. MAP SECTION
   ============================================ */
.map-section { padding: 4rem 0; background: var(--bg) }
.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15,23,42,.1);
  border: 4px solid #fff;
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0 }

/* ============================================
   23. COUNTER ANIMATION
   ============================================ */
.counter { font-variant-numeric: tabular-nums }

/* ============================================
   24. RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
  .hero { padding: 3rem 0 2.5rem }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: .5rem }
  .hero-stat-num { font-size: 1.4rem }
  .hero-stat-lbl { font-size: .72rem }
  .main-cta { margin: 2rem 0; border-radius: 24px; padding: 3rem 0 }
  .trust-item { margin-bottom: 1rem }
  .stat-num { font-size: 1.8rem }
  .floating-cta { bottom: 16px; right: 16px; padding: .8rem 1.2rem; font-size: .9rem }
}
