/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
  --color-brand: #0B1F3B;
  --color-accent: #69D5A1;
  --color-zinc-50: #fafafa;
  --color-zinc-200: #e4e4e7;
  --color-zinc-300: #d4d4d8;
  --color-zinc-500: #71717a;
  --color-zinc-600: #52525b;
  --color-zinc-700: #3f3f46;
  --color-zinc-900: #18181b;
  --color-dark-bg: #1C1C1C;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--color-zinc-900);
  background: var(--color-zinc-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: rgba(105, 213, 161, 0.4);
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-zinc-200);
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--color-zinc-900);
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-zinc-500);
  border: 1px solid var(--color-zinc-200);
  border-radius: 9999px;
  padding: 0.125rem 0.5rem;
}

/* Navigation Desktop */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-zinc-900);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-desktop a:hover {
  color: var(--color-accent);
}

.nav-desktop a:hover::after {
  width: 100%;
}
/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--color-accent);
  color: var(--color-brand);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-cta i {
  width: 16px;
  height: 16px;
}

.btn-cta-desktop {
  display: none;
}

@media (min-width: 640px) {
  .btn-cta-desktop {
    display: inline-flex;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 0.375rem;
  border: 1px solid var(--color-zinc-200);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
}

.mobile-menu-btn:hover {
  background: var(--color-zinc-50);
}

.mobile-menu-btn i {
  width: 20px;
  height: 20px;
  color: var(--color-zinc-700);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--color-zinc-200);
  background: white;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-content {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-content a {
  padding: 0.5rem 0;
  color: var(--color-zinc-700);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.mobile-menu-content a:hover {
  color: var(--color-zinc-900);
}

.mobile-menu-content .btn-cta {
  margin-top: 0.5rem;
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  padding: 3rem 1rem 2.5rem;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-image: url('hero-gradient.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hero Pattern Background */
/* .hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  background: white; 
} */



/* Animation subtile des points */
/* @keyframes pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.hero-pattern circle {
  animation: pulse 3s ease-in-out infinite;
}

.hero-pattern circle:nth-child(1) {
  animation-delay: 0s;
}

.hero-pattern circle:nth-child(2) {
  animation-delay: 1s;
}

.hero-pattern circle:nth-child(3) {
  animation-delay: 2s;
}

@media (min-width: 640px) {
  .hero {
    padding: 4rem 1.5rem;
    min-height: 600px;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 700px;
  }
} */

/* Hero Background */
/* .hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 1)
  );
} */

/* Hero Split Layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Hero Content (Left) */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left !important;
  }
}

.hero-title {
  font-size: 3rem;      /* 48px mobile - augmenté */
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--color-zinc-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;  /* 60px tablette - augmenté */
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;   /* 72px desktop - augmenté */
  }
}

.hero-subtitle {
  font-size: 1.25rem;   /* 20px - augmenté */
  color: var(--color-zinc-700);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Hero CTA */
.hero-cta {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; 
  justify-content: center;
  align-items: center; 
}

@media (min-width: 1024px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--color-accent);
  color: var(--color-brand);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hero CTA - Secondary button (ghost effect) */
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  color: var(--color-zinc-900);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: none;
  border: none;
}

.btn-hero-secondary:hover {
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-hero-secondary:active {
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-hero:active {
  transform: translateY(0);
}

.btn-hero i {
  width: 18px;
  height: 18px;
}

/* Hero Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-badges {
    justify-content: flex-start;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-zinc-600);
}

.hero-badge i {
  width: 16px;
  height: 16px;
  color: var(--color-zinc-500);
}

/* Hero Illustration (Right) */
.hero-illustration {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
}

@media (min-width: 1024px) {
  .hero-illustration {
    order: 0;
  }
}

.hero-illustration img {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}


/* ============================================
   DIVIDER
   ============================================ */
.divider {
  width: 100%;
  height: 1px;
  background: #E5E5E5;
}


/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 2rem 1rem;
  background: #fafafa; 
}

@media (min-width: 640px) {
  .stats-section {
    padding: 2rem 1.5rem;
  }
}

.stats-grid-simple {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

@media (min-width: 640px) {
  .stats-grid-simple {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item-simple {
  padding: 0.75rem 1rem;
  text-align: center;
  border-left: 1px solid var(--color-zinc-200);
}

.stat-item-simple:first-child {
  border-left: none;
}

@media (min-width: 640px) {
  .stat-item-simple {
    padding: 1rem 1.5rem;
  }
}

.stat-number-simple {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--color-brand);
}

@media (min-width: 640px) {
  .stat-number-simple {
    font-size: 2.25rem;
  }
}

.stat-label-simple {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-zinc-500);
}
/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  padding: 3rem 1rem;
}

@media (min-width: 640px) {
  .process-section {
    padding: 4rem 1.5rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--color-zinc-900);
}

.section-subtitle {
  text-align: center;
  color: var(--color-zinc-600);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.process-card {
  position: relative;
  background: white;
  border: 1px solid var(--color-zinc-200);
  border-radius: 0.75rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Process Illustration */
.process-illustration {
  margin: 0 auto 1rem;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Process Icon - Caché */
.process-icon {
  display: none;
}

.process-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-zinc-900);
  margin-bottom: 0.5rem;
}

.process-text {
  font-size: 0.875rem;
  color: var(--color-zinc-700);
  line-height: 1.5;
}

/* Process Arrow (timeline hover) */
.process-arrow {
  display: none;
  position: absolute;
  top: 50%;
  right: -3rem;
  transform: translateY(-50%) translateX(0);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--color-accent);
  z-index: 10;
  pointer-events: none;
}

@media (min-width: 768px) {
  .process-arrow {
    display: block;
  }
}

.process-arrow i {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 4px 8px rgba(105, 213, 161, 0.4));
}

.process-card:hover .process-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(10px);
}

/* Remove arrow from last card */
.process-card:last-child .process-arrow {
  display: none;
}

/* ============================================
   AVANTAGES SECTION
   ============================================ */
.avantages-section {
  position: relative;
  padding: 3.5rem 1rem;
  background: linear-gradient(180deg, #0C1F31 0%, #08131f 100%);
  color: white;
  overflow: hidden;
}

@media (min-width: 640px) {
  .avantages-section {
    padding: 5rem 1.5rem;
  }
}

.avantages-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.avantages-svg {
  position: absolute;
  top: -96px;
  right: -96px;
  opacity: 0.08;
}

.section-header-light {
  text-align: left;
  margin-bottom: 2.5rem;
  max-width: 48rem;
}

.section-header-light h2 {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .section-header-light h2 {
    font-size: 2.25rem;
  }
}

.section-header-light p {
  color: #d4d4d8;
  font-size: 1rem;
}

.avantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .avantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .avantages-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.avantage-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .avantage-card {
    padding: 1.5rem;
  }
}

.avantage-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.avantage-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.avantage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: rgba(105, 213, 161, 0.1);
  border: 1px solid rgba(105, 213, 161, 0.2);
  transition: all 0.3s ease;
  color: #69D5A1; /* ← Ajoute ici */
}

.avantage-icon i {
  width: 20px;
  height: 20px;
  color: #69D5A1;
}

.avantage-card:hover .avantage-icon {
  box-shadow: 0 0 0 4px rgba(105, 213, 161, 0.1);
}

.avantage-header h3 {
  font-size: 1rem;
  font-weight: 500;
  color: white;
}

.avantage-text {
  font-size: 0.875rem;
  color: #d4d4d8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.avantage-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 0.75rem;
}

.avantage-detail {
  font-size: 0.75rem;
  color: #a1a1aa;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 3.5rem 1rem;
  background: #fafafa; /* ← Ajoute cette ligne */
}

@media (min-width: 640px) {
  .testimonials-section {
    padding: 5rem 1.5rem;
  }
}

.testimonials-scroll {
  margin-top: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 1rem;
}

.testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.testimonials-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 85%;
  gap: 1rem;
  min-width: min-content;
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-auto-columns: 45%;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-auto-columns: 30%;
  }
}

.testimonial-card {
  scroll-snap-align: start;
  background: white;
  border: 1px solid var(--color-zinc-200);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

@media (min-width: 640px) {
  .testimonial-card {
    padding: 1.5rem;
  }
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  object-fit: cover;
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-zinc-900);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--color-zinc-500);
}

.testimonial-text {
  font-size: 0.875rem;
  color: var(--color-zinc-700);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.testimonial-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-accent);
}

.testimonial-stars i {
  width: 16px;
  height: 16px;
}

/* ============================================
   DEVIS SECTION
   ============================================ */
.devis-section {
  padding: 3.5rem 1rem;
  background: white;
}

@media (min-width: 640px) {
  .devis-section {
    padding: 5rem 1.5rem;
  }
}

.devis-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .devis-layout {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
  }
}

.devis-info h2 {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--color-zinc-900);
  margin-bottom: 0.5rem;
}

.devis-info p {
  color: var(--color-zinc-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.devis-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.devis-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-zinc-600);
}

.devis-feature i {
  width: 16px;
  height: 16px;
  color: #059669;
}

/* Devis Illustration */
.devis-illustration {
  display: none;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .devis-illustration {
    display: block;
  }
}

.devis-illustration img {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Form reste identique - pas de changement */
.devis-form {
  background: white;
  border: 1px solid var(--color-zinc-200);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
  .devis-form {
    padding: 1.5rem;
  }
}


.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.875rem;
  color: var(--color-zinc-700);
  font-weight: 500;
}

.form-group input,
.form-group select {
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--color-zinc-300);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: inherit;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input::placeholder {
  color: var(--color-zinc-400);
}

/* Trip Buttons */
.form-group .trip-buttons {
  display: inline-flex;
  border: 1px solid var(--color-zinc-300);
  border-radius: 9999px;
  overflow: hidden;
  width: auto; /* ← Garde ça */
}

/* Trip Buttons */
.trip-buttons {
  display: inline-flex;
  border: 1px solid var(--color-zinc-300);
  border-radius: 9999px;
  overflow: hidden;
}

.trip-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  background: white;
  color: var(--color-zinc-700);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  font-weight: 500;
}

.trip-btn:hover {
  background: #f4f4f5;
}

.trip-btn.active {
  background: #f4f4f5;
  color: var(--color-zinc-900);
}

.trip-btn + .trip-btn {
  border-left: 1px solid var(--color-zinc-300);
}

/* Options */
.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .options-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.option-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--color-zinc-300);
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.option-label:hover {
  background: var(--color-zinc-50);
}

.option-label input {
  display: none;
}

.option-checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-zinc-300);
  border-radius: 0.25rem;
  transition: all 0.2s;
}

.option-label input:checked + .option-checkbox {
  background: #10b981;
  border-color: #10b981;
}

.option-label input:checked + .option-checkbox::after {
  content: '✓';
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Form Footer */
.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-calculate {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--color-accent);
  color: var(--color-brand);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-family: inherit;
}

.btn-calculate:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.btn-calculate i {
  width: 16px;
  height: 16px;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-zinc-500);
}

.form-note i {
  width: 16px;
  height: 16px;
}

/* Estimate Result */
.estimate-result {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--color-zinc-50);
  border: 1px solid var(--color-zinc-200);
  border-radius: 0.5rem;
}

.estimate-result.active {
  display: block;
}

.estimate-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.estimate-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-zinc-900);
  font-weight: 500;
}

.estimate-label i {
  width: 20px;
  height: 20px;
  color: #059669;
}

.estimate-price {
  font-weight: 500;
  color: var(--color-zinc-900);
}

.estimate-breakdown {
  font-size: 0.875rem;
  color: var(--color-zinc-700);
  margin-bottom: 0.75rem;
}

.estimate-distance {
  font-size: 0.75rem;
  color: var(--color-zinc-500);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 3.5rem 1rem;
  background: #fafafa; 
}

@media (min-width: 640px) {
  .faq-section {
    padding: 5rem 1.5rem;
  }
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-section .section-header h2 {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--color-zinc-900);
  margin-bottom: 0.5rem;
}

.faq-section .section-header p {
  color: var(--color-zinc-600);
  font-size: 1rem;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--color-zinc-200);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-zinc-900);
  font-family: inherit;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--color-zinc-50);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-zinc-500);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-zinc-700);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: linear-gradient(180deg, #0C1F31 0%, #08131f 100%);
  color: white;
  padding: 2.5rem 1rem;
}

@media (min-width: 640px) {
  .footer {
    padding: 3rem 1.5rem;
  }
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 0.75rem;
}

.footer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 20rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem;
  transition: all 0.2s;
  color: #ffffffb3;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-social i {
  width: 20px;
  height: 20px;
  color: white!important;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-legal {
  display: none;
}

@media (min-width: 640px) {
  .footer-legal {
    display: block;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Délais progressifs */
.reveal:nth-child(1) { transition-delay: 0.2s; }
.reveal:nth-child(2) { transition-delay: 0.4s; }
.reveal:nth-child(3) { transition-delay: 0.6s; }
.reveal:nth-child(4) { transition-delay: 0.8s; }