/* ── Reset & base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: #fff;
  color: #1c2e38;
  font-family: 'Public Sans', sans-serif;
  line-height: 1.5;
}

::selection { background: #dcebf3; }

a { color: #2f5f80; text-decoration: none; }
a:hover { color: #e0851e; }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Navigation ── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e3ebef;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 24px rgba(22, 48, 60, 0.08);
}

.header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__logo img { height: 52px; width: auto; }

.nav { display: flex; gap: 26px; margin-left: auto; }

.nav-link {
  color: #3f5561;
  font-weight: 600;
  font-size: 14.5px;
}
.nav-link:hover { color: #e0851e; }

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: #2f5f80;
  white-space: nowrap;
}
.header__phone:hover { color: #e0851e; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  color: #16303c;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-weight: 700;
  border-radius: 999px;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-orange {
  background: #e0851e;
  color: #fff;
  box-shadow: 0 6px 16px rgba(224, 133, 30, 0.30);
}
.btn-orange:hover { background: #c9750f; color: #fff; transform: translateY(-2px); }

.btn-primary {
  background: #2f5f80;
  color: #fff;
  box-shadow: 0 8px 20px rgba(47, 95, 128, 0.28);
}
.btn-primary:hover { background: #254d68; color: #fff; transform: translateY(-2px); }

.btn-outline {
  border: 2px solid #cfdde6;
  color: #2f5f80;
  background: #fff;
}
.btn-outline:hover { border-color: #2f5f80; color: #2f5f80; }

.btn-lg { font-size: 16px; padding: 16px 30px; }
.btn-md { font-size: 14.5px; padding: 12px 22px; }
.btn-xl { font-size: 17px; padding: 18px 34px; }

/* ── Hero ── */
.hero {
  background: linear-gradient(180deg, #f2f7fa 0%, #ffffff 100%);
  border-bottom: 1px solid #e9f0f4;
}

.hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 28px 84px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dcebf3;
  color: #2f5f80;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2e9d5a;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 157, 90, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(46, 157, 90, 0); }
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 20px;
  color: #16303c;
  text-wrap: balance;
}

.hero h1 span { color: #457b9d; }

.hero__text {
  font-size: 18px;
  line-height: 1.65;
  color: #4a5f6b;
  margin-bottom: 32px;
  max-width: 480px;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  gap: 36px;
}

.hero__stat-value {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #16303c;
}

.hero__stat-label {
  font-size: 13.5px;
  color: #6b7f8a;
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  background: #dde7ec;
}

.hero__image {
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(22, 48, 60, 0.18);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* ── Section headers ── */
.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e0851e;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #16303c;
  text-wrap: balance;
}

.section-desc {
  font-size: 16.5px;
  line-height: 1.6;
  color: #4a5f6b;
  text-wrap: pretty;
}

/* ── Prestations ── */
.prestations {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 28px 96px;
}

.prestations__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: #f5f9fb;
  border: 1px solid #e5eef2;
  border-radius: 16px;
  padding: 22px 20px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover {
  border-color: #457b9d;
  background: #fff;
  box-shadow: 0 10px 26px rgba(22, 48, 60, 0.10);
  transform: translateY(-4px);
}

.tag {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #2f5f80;
  background: #dcebf3;
  border-radius: 8px;
  padding: 5px 10px;
  margin-bottom: 12px;
}

.card__title {
  font-weight: 700;
  font-size: 15.5px;
  color: #16303c;
  margin-bottom: 5px;
}

.card__desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: #5c717d;
}

/* ── Process ── */
.process {
  background: #16303c;
}

.process__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 28px 88px;
}

.process__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.process__header .section-title { color: #fff; margin-bottom: 0; }

.process__link {
  color: #9fc3d8;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 2px solid rgba(159, 195, 216, 0.4);
  padding-bottom: 2px;
}
.process__link:hover { color: #fff; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 30px 26px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.step__number {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #16303c;
  background: #e0851e;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  margin-bottom: 8px;
}

.step__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #a9c1cd;
}

/* ── Pourquoi ── */
.pourquoi {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 28px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.pourquoi__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 14px;
}

.pourquoi__gallery-main,
.pourquoi__gallery-item {
  border-radius: 20px;
  overflow: hidden;
}

.pourquoi__gallery-main { grid-row: 1 / 3; }

.pourquoi__gallery img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pourquoi__gallery-main:hover img,
.pourquoi__gallery-item:hover img {
  transform: scale(1.06);
}

.features { display: grid; gap: 22px; }

.feature {
  display: flex;
  gap: 16px;
}

.feature__icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #dcebf3;
  color: #2f5f80;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__title {
  font-weight: 700;
  font-size: 17px;
  color: #16303c;
  margin-bottom: 4px;
}

.feature__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5f6b;
}

/* ── Zone ── */
.zone {
  background: #f2f7fa;
  border-top: 1px solid #e9f0f4;
  border-bottom: 1px solid #e9f0f4;
}

.zone__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 28px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.zone__region-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #16303c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.zone__region-badge svg { flex-shrink: 0; opacity: 0.85; }

.zone__content .section-desc strong {
  color: #16303c;
  font-weight: 700;
}

.zone__cities {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #dde7ec;
}

.zone__cities-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7f8a;
  margin-bottom: 6px;
}

.zone__cities-hint {
  font-size: 14px;
  line-height: 1.5;
  color: #6b7f8a;
  margin-bottom: 14px;
}

.chips { display: flex; gap: 10px; flex-wrap: wrap; }

.chip {
  background: #fff;
  border: 1px solid #d8e4ea;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #2f5f80;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.chip:hover {
  transform: translateY(-2px);
  border-color: #457b9d;
  box-shadow: 0 4px 12px rgba(47, 95, 128, 0.12);
}

.zone__map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 16px 40px rgba(22, 48, 60, 0.12);
  background: #dceaf2;
}

.zone__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zone__map-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  background: linear-gradient(transparent, rgba(22, 48, 60, 0.75));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Contact cards in zone */
.zone__contact {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px 72px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #e5eef2;
  border-radius: 18px;
  padding: 24px 22px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  color: inherit;
}

a.contact-card:hover {
  border-color: #457b9d;
  box-shadow: 0 12px 32px rgba(22, 48, 60, 0.10);
  transform: translateY(-3px);
  color: inherit;
}

.contact-card__icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card--phone .contact-card__icon {
  background: #dcebf3;
  color: #2f5f80;
}

.contact-card--email .contact-card__icon {
  background: #fdecd8;
  color: #e0851e;
}

.contact-card--hours .contact-card__icon {
  background: #e8f5ec;
  color: #2e9d5a;
}

.contact-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7f8a;
  margin-bottom: 4px;
}

.contact-card__value {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #16303c;
  line-height: 1.3;
}

.contact-card__hint {
  font-size: 13px;
  color: #6b7f8a;
  margin-top: 4px;
}

/* ── Contact ── */
.contact {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 28px 100px;
}

.contact__box {
  text-align: center;
  background: linear-gradient(180deg, #f2f7fa 0%, #fff 100%);
  border: 1px solid #e5eef2;
  border-radius: 24px;
  padding: 56px 40px;
  box-shadow: 0 16px 48px rgba(22, 48, 60, 0.06);
}

.contact .section-desc {
  margin: 0 auto 36px;
  max-width: 520px;
}

.contact__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.contact__actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact__reassurance {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  color: #457b9d;
}

.contact__reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── Footer ── */
.footer {
  background: #16303c;
}

.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 52px 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__logo-wrap {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 8px 14px;
}

.footer__logo-wrap img { height: 44px; width: auto; }

.footer__tagline {
  font-size: 13.5px;
  color: #7d99a8;
  margin-top: 8px;
}

.footer__nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

.footer__nav a { color: #a9c1cd; }
.footer__nav a:hover { color: #fff; }

.footer__copy {
  font-size: 13px;
  color: #7d99a8;
}

.footer__copy a { color: #a9c1cd; }

/* ── Mobile nav overlay ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 76px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 40;
  padding: 32px 28px;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav.is-open { display: flex; }

.mobile-nav .nav-link {
  font-size: 18px;
  padding: 8px 0;
  border-bottom: 1px solid #e9f0f4;
}

.mobile-nav .btn-orange {
  margin-top: 12px;
  text-align: center;
  padding: 16px 24px;
  font-size: 16px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav,
  .header__phone,
  .header .btn-orange { display: none; }

  .menu-toggle { display: block; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 28px 64px;
  }

  .hero__image { height: 320px; }

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

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

  .pourquoi {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .zone__map { height: 280px; }

  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .cards-grid { grid-template-columns: 1fr; }

  .hero__stats { gap: 20px; }

  .hero__stat-value { font-size: 22px; }

  .pourquoi__gallery {
    grid-template-rows: 180px 140px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Scroll & entrance animations ── */
.reveal {
  opacity: 0;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none !important;
}

.reveal--up    { transform: translateY(36px); }
.reveal--down  { transform: translateY(-36px); }
.reveal--left  { transform: translateX(-48px); }
.reveal--right { transform: translateX(48px); }
.reveal--scale { transform: scale(0.92); }

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* Hero entrance (page load) */
.hero-enter {
  opacity: 0;
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-enter--text  { transform: translateY(28px); }
.hero-enter--image { transform: translateX(40px) scale(0.96); }

.hero-enter.is-visible {
  opacity: 1;
  transform: none;
}

.hero__stat-item {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__stat-item.is-visible {
  opacity: 1;
  transform: none;
}

.hero__stat-divider {
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}

.hero__stat-divider.is-visible { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-enter,
  .hero__stat-item {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }

  .badge__dot { animation: none; }

  .pourquoi__gallery img { transition: none; }
}
