/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand colors */
  --navy: #18273B;
  --red: #C52B40;
  --red-hover: #a82336;
  --green: #086E5A;
  --white: #ffffff;
  --background: #fafafa;
  --secondary-bg: #f3f4f5;
  --card-bg: #ffffff;
  --border: #e5e6e8;
  --foreground: #0f1a2e;
  --muted: #6b7280;
  --radius: 0.75rem;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'DM Sans', 'Inter', system-ui, sans-serif;
  --max-width: 80rem; /* 1280px */
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  outline: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: 700;
  text-wrap: balance;
}


/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  color: var(--foreground);
  line-height: 1.15;
  text-wrap: balance;
}

.section-subtitle {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3.5rem;
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-lg {
  height: 3.5rem;
  padding: 0 2rem;
  font-size: 1rem;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(183, 28, 28, 0.25);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(12, 29, 54, 0.2);
}
.btn-navy:hover {
  background: #0a1729;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
}


/* ===== SVG ICONS (inline) ===== */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.icon-sm {
  width: 1rem;
  height: 1rem;
}
.icon-lg {
  width: 2rem;
  height: 2rem;
}


/* (urgency bar removed) */


/* ============================================
   NAVBAR / HEADER
   ============================================ */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-img {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--white);
}

/* Desktop CTA area */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}
.nav-cta-btn {
  font-size: 0.875rem;
  height: 2.75rem;
  padding: 0 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-cta-btn .icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.25s ease;
}
.nav-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(197, 43, 64, 0.35);
}
.nav-cta-btn:hover .icon {
  transform: translateX(3px);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 0.25rem;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--navy);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu ul a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}
.mobile-menu .mobile-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-menu .btn {
  width: 100%;
}

@media (max-width: 1023px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: block;
  }
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #18273B 0%, #1e3a5f 50%, #18273B 100%);
}

/* Centered hero content */
.hero-content--centered {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 2rem;
}

.hero-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  background: rgba(197, 43, 64, 0.15);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  max-width: 52rem;
}
.hero h1 .highlight {
  color: var(--white);
  background-color: var(--red);
  padding: 0.05em 0.3em;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-text {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 40rem;
}

.hero-cta {
  margin-top: 2.5rem;
  font-size: 1.25rem;
  height: 4.25rem;
  padding: 0 3rem;
  border-radius: 0.75rem;
  transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.25s ease;
}
.hero-cta:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(197, 43, 64, 0.4);
}
.hero-cta .icon {
  transition: transform 0.25s ease;
}
.hero-cta:hover .icon {
  transform: translateX(4px);
}
.cta-subtext {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* Trust bar pinned to bottom of hero */
.hero-trust-bar {
  position: relative;
  z-index: 10;
  width: 100%;
  background: rgba(24, 39, 59, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.75rem 1.5rem;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-trust {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.625rem;
  background: rgba(197, 43, 64, 0.2);
  flex-shrink: 0;
}
.trust-icon svg {
  color: var(--red);
  width: 1.5rem;
  height: 1.5rem;
}
.trust-item .trust-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.trust-item .trust-sublabel {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}


/* ============================================
   TRUST BAR (brands carousel)
   ============================================ */
.trust-bar {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  overflow: hidden;
}

.brands-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: scroll-brands 30s linear infinite;
}

.brand-logo {
  height: 2rem;
  width: auto;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
  flex-shrink: 0;
}
.brand-logo:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}
@media (min-width: 768px) {
  .brand-logo {
    height: 2.5rem;
  }
  .brands-track {
    gap: 4rem;
  }
}

@keyframes scroll-brands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* ============================================
   REALISATIONS MARQUEE
   ============================================ */
.realisations {
  padding: 5rem 0 3rem;
  background: var(--background);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .realisations {
    padding: 7rem 0 4rem;
  }
}

.marquee-row {
  overflow: hidden;
  margin-bottom: 0.75rem;
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.marquee-track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
}

.marquee-left {
  animation: marquee-scroll-left 40s linear infinite;
}
.marquee-right {
  animation: marquee-scroll-right 45s linear infinite;
}
.marquee-left-slow {
  animation: marquee-scroll-left 55s linear infinite;
}

.marquee-img {
  width: 14rem;
  height: 14rem;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .marquee-img {
    width: 10rem;
    height: 10rem;
  }
}

@keyframes marquee-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}


/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 5rem 0 5rem;
  background: var(--background);
}
@media (min-width: 1024px) {
  .services {
    padding: 7rem 0;
  }
}

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

.service-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.service-card .card-image {
  position: relative;
  height: 13rem;
  overflow: hidden;
}
.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .card-image img {
  transform: scale(1.05);
}
.service-card .card-image .image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 29, 54, 0.35);
  transition: background 0.3s ease;
}
.service-card:hover .card-image .image-overlay {
  background: rgba(12, 29, 54, 0.15);
}
.service-card .card-image .subtitle-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
}

/* Icon wrapper for service cards without images */
.card-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.625rem;
  background: rgba(197, 43, 64, 0.08);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.card-icon-wrapper svg {
  color: var(--red);
}

.service-card .card-body {
  padding: 1.5rem;
}
.service-card .card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.service-card .card-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.service-card .card-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--red);
  transition: gap 0.3s ease;
}
.service-card:hover .card-link {
  gap: 0.75rem;
}


/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 5rem 0;
  background: var(--secondary-bg);
}
@media (min-width: 1024px) {
  .process {
    padding: 7rem 0;
  }
}

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

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Connecting line between steps (desktop only) */
.process-step:not(:last-child)::after {
  display: none;
}
@media (min-width: 1024px) {
  .process-step:not(:last-child)::after {
    content: '';
    display: block;
    position: absolute;
    top: 2.5rem;
    left: calc(50% + 2rem);
    width: calc(100% - 4rem);
    height: 1px;
    background: var(--border);
  }
}

.step-circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--navy);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin-bottom: 1.5rem;
}
.step-circle svg {
  width: 2rem;
  height: 2rem;
  color: var(--navy);
}
.step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(183,28,28,0.3);
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 18rem;
}


/* ============================================
   POURQUOI RÉPONDRE AUX AO
   ============================================ */
.pourquoi-ao {
  padding: 5rem 0;
  background: var(--background);
}
@media (min-width: 1024px) {
  .pourquoi-ao {
    padding: 7rem 0;
  }
}

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

.ao-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.ao-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.ao-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: rgba(197, 43, 64, 0.08);
  margin-bottom: 1.25rem;
}
.ao-card-icon svg {
  color: var(--red);
  width: 1.25rem;
  height: 1.25rem;
}

.ao-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.ao-card-stat {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.ao-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.ao-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
}
.ao-cta-text {
  font-size: 1.125rem;
  color: var(--foreground);
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}


/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 5rem 0;
  background: var(--navy);
}
@media (min-width: 1024px) {
  .why-us {
    padding: 7rem 0;
  }
}
.why-us .section-title {
  color: var(--white);
}
.why-us .section-subtitle {
  color: rgba(255,255,255,0.6);
}

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

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: background 0.3s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
}

.why-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.why-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-card-icon svg {
  color: rgba(255,255,255,0.4);
  width: 1.25rem;
  height: 1.25rem;
}
.why-card-stat {
  line-height: 1.2;
}
.why-card-stat .number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-heading);
}
.why-card-stat .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.why-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 5rem 0;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-stars {
  display: flex;
  gap: 0.15rem;
  color: #f59e0b;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
}
.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 4rem 0 4rem;
  background: var(--navy);
}
@media (min-width: 1024px) {
  .cta-banner {
    padding: 5rem 0;
  }
}
.cta-banner .container {
  max-width: 56rem;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  color: var(--white);
  line-height: 1.15;
  text-wrap: balance;
}
.cta-banner p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-banner .cta-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.cta-banner .btn-outline-white {
  border-color: rgba(255,255,255,0.3);
}
.cta-banner-subtext {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}


/* ============================================
   ZONE D'INTERVENTION
   ============================================ */
.zone-intervention {
  padding: 5rem 0;
  background: var(--secondary-bg);
}
@media (min-width: 1024px) {
  .zone-intervention {
    padding: 7rem 0;
  }
}

.zone-content {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .zone-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.zone-left .section-title {
  text-align: left;
}
.zone-left .section-title em {
  font-style: italic;
  color: var(--navy);
}
.zone-left .section-label {
  text-align: left;
}

.zone-subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.zone-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
.zone-tag {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
}
.zone-tag svg {
  color: var(--red);
  flex-shrink: 0;
}

/* Map card */
.zone-map-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  color: var(--white);
}
.zone-map-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.zone-map-card > p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
}

.zone-circle {
  position: relative;
  width: 14rem;
  height: 14rem;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px dashed rgba(197, 163, 80, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zone-circle-inner {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(24, 39, 59, 0.8);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zone-circle-inner span {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}


/* ============================================
   URGENCE BANNER
   ============================================ */
.urgence-banner {
  padding: 4rem 0;
  background: var(--red);
}
@media (min-width: 1024px) {
  .urgence-banner {
    padding: 5rem 0;
  }
}
.urgence-banner .container {
  text-align: center;
  max-width: 48rem;
}
.urgence-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  line-height: 1.15;
}
.urgence-banner p {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.urgence-btn {
  margin-top: 2rem;
  background: var(--white);
  color: var(--red);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.urgence-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}


/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 5rem 0;
  background: var(--background);
}
@media (min-width: 1024px) {
  .faq {
    padding: 7rem 0;
  }
}
.faq .container {
  max-width: 48rem;
}
.faq .section-header {
  margin-bottom: 3.5rem;
}

.faq-list {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  font-family: var(--font-heading);
  transition: color 0.2s;
  gap: 1rem;
}
.faq-question:hover {
  color: var(--navy);
}
.faq-question .chevron {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
  color: var(--muted);
}
.faq-item.open .faq-question .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 20rem;
}
.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}


/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 5rem 0;
  background: var(--secondary-bg);
}
@media (min-width: 1024px) {
  .contact {
    padding: 7rem 0;
  }
}

.contact-centered {
  max-width: 44rem;
  margin: 0 auto;
}

/* Form */
.contact-form-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
@media (min-width: 1024px) {
  .contact-form-card {
    padding: 2.5rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form .form-row,
.contact-form .form-group {
  width: 100%;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}
.form-row-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  height: 3rem;
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 0 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(12, 29, 54, 0.08);
}
.form-group textarea {
  height: auto;
  padding: 0.75rem;
  resize: vertical;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.form-submit-btn {
  margin-top: 0.25rem;
  align-self: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.form-submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(197, 43, 64, 0.35);
}
.form-submit-btn .icon {
  transition: transform 0.25s ease;
}
.form-submit-btn:hover .icon {
  transform: translateX(3px);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.form-note svg {
  flex-shrink: 0;
}

/* Success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  text-align: center;
}
.form-success .success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(183, 28, 28, 0.1);
  margin-bottom: 1.5rem;
}
.form-success .success-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--red);
}
.form-success h3 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.form-success p {
  color: var(--muted);
  max-width: 24rem;
}

/* Quick contact info below form */
.contact-quick-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.quick-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--muted);
  transition: color 0.2s;
}
a.quick-info-item:hover {
  color: var(--red);
}
.quick-info-sep {
  color: var(--border);
  font-size: 0.75rem;
}
@media (max-width: 639px) {
  .quick-info-sep {
    display: none;
  }
  .contact-quick-info {
    flex-direction: column;
    gap: 0.5rem;
  }
}


/* ============================================
   LEGAL PAGES
   ============================================ */
/* Legal pages: header needs solid bg since no hero behind it */
.main-header--legal {
  background: var(--navy);
}

.legal-page {
  padding: 7rem 0 4rem;
  min-height: 60vh;
}
.legal-page h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 2rem;
}
.legal-page h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-page p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 0.75rem;
  max-width: 50rem;
}
.legal-page ul {
  margin: 0.5rem 0 1rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
}
.legal-page a {
  color: var(--red);
  text-decoration: none;
}
.legal-page a:hover {
  text-decoration: underline;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--white);
}
.footer-content {
  padding: 3.5rem 0;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

/* Footer brand */
.footer-brand .footer-logo {
  margin-bottom: 1rem;
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer-brand .footer-logo-img {
  height: 2rem;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--red);
}
.footer-col ul li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-contact-item.address {
  align-items: flex-start;
}
.footer-contact-item svg {
  flex-shrink: 0;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-bottom .container {
    flex-direction: row;
  }
}
.footer-bottom .copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom .legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom .legal-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-bottom .legal-links a:hover {
  color: rgba(255,255,255,0.6);
}


/* ============================================
   MOBILE FIXES (max 480px)
   ============================================ */
@media (max-width: 480px) {
  .btn {
    white-space: normal;
    text-align: center;
  }
  .btn-lg {
    height: auto;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  .hero-cta {
    font-size: 1rem;
    height: auto;
    padding: 1rem 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  .hero-content--centered {
    padding: 3rem 1rem 1.5rem;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero-text {
    font-size: 0.95rem;
  }
  .hero-trust-bar {
    padding: 1.25rem 1rem;
  }
  .hero-trust {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .trust-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .trust-icon svg {
    width: 1.2rem;
    height: 1.2rem;
  }
  .trust-item {
    gap: 0.5rem;
  }
  .trust-item .trust-label {
    font-size: 0.8rem;
  }
  .trust-item .trust-sublabel {
    font-size: 0.7rem;
  }
  .cta-banner .btn-lg {
    width: 100%;
    max-width: 100%;
  }
  .form-submit-btn {
    width: 100%;
    max-width: 100%;
  }
  .contact-form-card {
    padding: 1.25rem !important;
  }
}
