/* ===================================
   HOME-V2.CSS — BLEDCAR DESIGN SYSTEM
   Palette : #2563EB (primary) / #0F172A (dark) / #F8FAFC (bg)
   =================================== */

/* Variables */
:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --secondary: #0F172A;
  --text-primary: #1E293B;
  --text-secondary: #64748B;
  --bg-light: #F8FAFC;
  --border-color: #E2E8F0;
  --success: #16A34A;
  --shadow-sm: 0 1px 4px rgba(15,23,42,0.06);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.08);
  --shadow-lg: 0 10px 30px rgba(15,23,42,0.10);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================
   HEADER V2
   =================================== */
.header-v2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0F172A;
  height: 70px;
  display: flex;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.30);
  padding: 0;
}

.nav-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Le container dans le header doit remplir toute la largeur */
.header-v2 .container {
  width: 100%;
  display: flex;
  align-items: center;
}

.logo-v2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.logo-v2 i {
  color: var(--primary);
  font-size: 24px;
}

.nav-links-v2 {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links-v2 a {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links-v2 a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.25s;
}

.nav-links-v2 a:hover { color: var(--primary); }
.nav-links-v2 a:hover::after { width: 100%; }

.nav-actions-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-link {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  padding: 8px 12px;
  border-radius: var(--radius-md);
}

.btn-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn-primary-v2 {
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-primary-v2:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}

/* Éléments mobile-only cachés sur desktop */
.mobile-divider,
.mobile-auth {
  display: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-primary);
  cursor: pointer;
}

/* ===================================
   HERO V2
   =================================== */
.hero-v2 {
  margin-top: 70px;
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-v2--photo { /* photo mode */ }

.hero-bg-v2 {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-v2 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.06);
  transform: scale(1.02);
}

.hero-bg-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(15,23,42,0.88) 0%,
      rgba(15,23,42,0.75) 40%,
      rgba(37,99,235,0.45) 100%
    );
}

.hero-v2--photo .hero-title-v2 {
  color: #fff;
}

.hero-v2--photo .hero-subtitle-v2 {
  color: rgba(255, 255, 255, 0.86);
}

.hero-v2--photo .hero-badge-v2,
.hero-v2--photo .feature-pill {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
}

.hero-v2--photo .btn-hero-secondary {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}

.hero-search-v2 {
  width: min(1180px, 100%);
  margin: 26px auto 10px;
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-search-field {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-search-field input,
.hero-search-field select {
  width: 100%;
  border: 0;
  outline: none;
  padding: 18px 18px;
  font-size: 15px;
  background: transparent;
  color: var(--text-primary);
}

.hero-search-field select {
  appearance: none;
  cursor: pointer;
}

.hero-search-divider {
  width: 1px;
  background: var(--border-color);
}

.hero-search-btn {
  border: 0;
  padding: 0 26px;
  font-weight: 700;
  font-size: 14px;
  background: var(--text-primary);
  color: #fff;
  cursor: pointer;
}

.hero-search-btn:hover {
  opacity: 0.95;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}



.hero-v2::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
}
.hero-content-v2 {
  max-width: 680px;
  text-align: left;
  margin: 0;
  position: relative;
  z-index: 5;
  padding: 60px 0 80px;
}

.hero-badge-v2 {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 8px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.hero-title-v2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.gradient-text-v2 {
  background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle-v2 {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-features-v2 {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.feature-pill i {
  color: var(--success);
}

.hero-cta-v2 {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-hero-primary {
  background: var(--primary);
  color: white;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(37,99,235,0.40);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,235,0.50);
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.70);
  transform: translateY(-2px);
}

/* ===================================
   LOCATION SECTION
   =================================== */
.location-section {
  padding: 80px 0;
  background: white;
}

.section-header-v2 {
  text-align: center;
  margin-bottom: 48px;
}

.section-header-v2 h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-header-v2 p {
  font-size: 18px;
  color: var(--text-secondary);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.location-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: all 0.3s;
}

.location-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.location-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #EFF6FF 0%, var(--bg-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: var(--primary);
}

.location-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.location-benefits {
  list-style: none;
  margin-bottom: 24px;
}

.location-benefits li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.location-benefits i {
  color: var(--success);
  font-size: 14px;
}

.location-tagline {
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
}

/* ===================================
   SERVICES V2 - CATALOG DESIGN
   =================================== */
.services-v2 {
  padding: 80px 0;
  background: var(--bg-light);
}

/* Gender Filter */
.gender-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 2px solid var(--border-color);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn i {
  font-size: 18px;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* Services Catalog */
.services-catalog {
  transition: opacity 0.3s, transform 0.3s;
}

.services-catalog.hidden {
  display: none;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

/* Catalog Card */
.catalog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
}

.catalog-card:hover {
  box-shadow: var(--shadow-md);
}

.catalog-card.expanded {
  border-color: var(--accent-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Catalog Header */
.catalog-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 253, 0.9) 100%);
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: background 0.3s;
}

.catalog-card.expanded .catalog-header {
  background: var(--accent-color);
}

.catalog-card.expanded .catalog-header * {
  color: white !important;
}

.catalog-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s;
}

.catalog-card.expanded .catalog-icon {
  background: white;
  color: var(--accent-color);
}

.catalog-title {
  flex: 1;
}

.catalog-title h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
  transition: color 0.3s;
}

.service-count {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s;
}

.expand-btn {
  width: 32px;
  height: 32px;
  background: var(--bg-light);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}

.catalog-card.expanded .expand-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: rotate(180deg);
}

.expand-btn:hover {
  background: var(--primary);
  color: white;
}

/* Catalog Content */
.catalog-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.catalog-card.expanded .catalog-content {
  max-height: 800px;
  padding: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.service-tags span {
  background: var(--bg-light);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.2s;
}

.service-tags span:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

.catalog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.availability {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.availability i {
  color: var(--accent-color);
}

.btn-catalog {
  background: var(--text-primary);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-catalog:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Responsive Catalog */
@media (max-width: 768px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .gender-filter {
    gap: 8px;
  }

  .filter-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .catalog-header {
    padding: 16px;
  }

  .catalog-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .catalog-title h3 {
    font-size: 16px;
  }

  .catalog-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-catalog {
    width: 100%;
    text-align: center;
  }
}

/* ===================================
   HOW IT WORKS V2
   =================================== */
.how-it-works-v2 {
  padding: 80px 0;
  background: white;
}

.steps-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.step-v2 {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.step-v2 h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-v2 p {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ===================================
   TESTIMONIALS V2
   =================================== */
.testimonials-v2 {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.testimonial-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #F39C12;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===================================
   TRUST V2
   =================================== */
.trust-v2 {
  padding: 60px 0;
  background: white;
  border-top: 1px solid var(--border-color);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}

.trust-item {
  text-align: center;
}

.trust-item i {
  font-size: 32px;
  color: var(--success);
  margin-bottom: 12px;
}

.trust-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.trust-tagline {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===================================
   UNIQUE VALUE
   =================================== */
.unique-value {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  color: white;
}

.value-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.value-column {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}

.column-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.column-header i {
  font-size: 28px;
}

.others .column-header i {
  color: #E74C3C;
}

.bledcar .column-header i {
  color: #27AE60;
}

.column-header h3 {
  font-size: 20px;
  font-weight: 700;
}

.value-column ul {
  list-style: none;
}

.value-column li {
  padding: 10px 0;
  font-size: 15px;
  opacity: 0.9;
}

.value-message {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.value-message p {
  font-size: 20px;
  margin-bottom: 8px;
}

.value-message strong {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================================
   CTA FINAL
   =================================== */
.cta-final {
  padding: 80px 0;
  background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
  text-align: center;
}

.cta-final h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.cta-final p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-buttons-v2 {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: var(--primary);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 99, 235, 0.50);
}

.btn-cta-secondary {
  background: white;
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--border-color);
  transition: all 0.3s;
}

.btn-cta-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===================================
   FOOTER V2
   =================================== */
.footer-v2 {
  background: var(--text-primary);
  color: white;
  padding: 60px 0 20px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-logo i {
  color: var(--primary);
  font-size: 24px;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 20px;
}

.social-links-v2 {
  display: flex;
  gap: 12px;
}

.social-links-v2 a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.2s;
}

.social-links-v2 a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.6;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links-v2 {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 16px 20px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 999;
    gap: 0;
  }

  .nav-links-v2.active {
    display: flex;
  }

  /* ===== texte sombre sur fond blanc ===== */
  .nav-links-v2 li a {
    color: #0F172A !important;
    font-size: 16px;
    font-weight: 500;
    padding: 13px 0;
    display: block;
    border-bottom: 1px solid #F1F5F9;
  }

  .nav-links-v2 li a::after {
    display: none;
  }

  .nav-links-v2 li:last-child a {
    border-bottom: none;
  }

  /* Séparateur + boutons auth dans le menu mobile */
  .nav-links-v2 .mobile-divider,
  .nav-links-v2 .mobile-auth {
    display: block;
  }

  .nav-links-v2 .mobile-divider {
    height: 1px;
    background: #E2E8F0;
    margin: 8px 0;
  }

  .nav-links-v2 .mobile-auth a {
    color: #2563EB !important;
    font-weight: 600;
  }

  .nav-links-v2 .mobile-register {
    display: inline-block;
    margin-top: 8px;
    background: #2563EB;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  /* Forcer le texte blanc sur le bouton S'inscrire (spécificité plus haute) */
  .nav-links-v2 li.mobile-auth a.mobile-register {
    color: #fff !important;
  }

  /* Masquer les actions desktop sur mobile */
  .nav-actions-v2 {
    display: none !important;
  }

  .hero-title-v2 {
    font-size: 36px;
  }

  .hero-subtitle-v2 {
    font-size: 18px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid-v2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .value-comparison {
    grid-template-columns: 1fr;
  }

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

  .cta-final h2 {
    font-size: 32px;
  }

  .section-header-v2 h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title-v2 {
    font-size: 28px;
  }

  .hero-cta-v2 {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* ===================================
   NOUVEAUX ÉLÉMENTS BLEDCAR
   =================================== */

/* Hero eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.20);
  border: 1px solid rgba(96, 165, 250, 0.40);
  color: #93C5FD;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-eyebrow i {
  color: #60A5FA;
  font-size: 8px;
}

/* Hero trust badges */
.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.80);
  font-size: 13px;
  font-weight: 500;
}

.trust-badge i {
  color: #60A5FA;
  font-size: 14px;
}

/* Section badge BledCar */
.section-badge-bc {
  display: inline-block;
  background: rgba(37, 99, 235, 0.08);
  color: #2563EB;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

/* Stats Ribbon */
.stats-ribbon {
  background: #0F172A;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 12px;
}

.stat-item .stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.stat-item .stat-label {
  display: block;
  font-size: 13px;
  color: #64748B;
  margin-top: 4px;
}

/* Step Icon */
.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.30);
}

.step-icon i {
  font-size: 24px;
  color: #fff;
}

/* Advantages Section */
.advantages-section {
  background: #F1F5F9;
  padding: 80px 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.advantage-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.10);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.advantage-icon i {
  font-size: 24px;
  color: #2563EB;
}

.advantage-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.advantage-card p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
}

/* Responsive nouveaux éléments */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-trust {
    gap: 14px;
  }

  /* Hero simplification mobile */
  .hero-eyebrow {
    display: none;
  }

  .hero-content-v2 {
    padding: 36px 0 48px;
  }

  /* Barre de recherche empilée sur mobile */
  .hero-search-v2 {
    flex-direction: column;
    border-radius: 12px;
    background: rgba(255,255,255,0.97);
    overflow: visible;
    gap: 0;
  }

  .hero-search-field {
    border-bottom: 1px solid #E2E8F0;
    border-right: none;
    padding: 4px 0;
  }

  .hero-search-field input,
  .hero-search-field select {
    padding: 14px 14px;
    font-size: 14px;
  }

  .hero-search-field i {
    padding-left: 14px;
  }

  .hero-search-divider {
    display: none;
  }

  .hero-search-btn {
    width: 100%;
    padding: 14px;
    border-radius: 0 0 12px 12px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .stat-item .stat-number {
    font-size: 28px;
  }

  /* Hero encore plus compact sur très petit écran */
  .hero-subtitle-v2 {
    display: none;
  }

  .hero-title-v2 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .hero-cta-v2 {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 8px;
  }
}
