:root {
  --font-display: "Instrument Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;

  --green: #2db84a;
  --green-dark: #1e8f38;
  --green-light: #e8f8ec;
  --blue: #1a4ba8;
  --blue-dark: #123a85;
  --blue-light: #e8eef9;
  --ink: #1a2332;
  --muted: #4a5568;
  --faint: #718096;
  --white: #ffffff;
  --bg: #f7faf8;
  --stroke: rgba(26, 75, 168, 0.12);
  --shadow: 0 16px 40px rgba(26, 75, 168, 0.1);
  --shadow-lg: 0 24px 60px rgba(20, 30, 50, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1140px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transform: translateY(-140%);
  transition: transform 0.2s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.text-green {
  color: var(--green-dark);
}

.text-blue {
  color: var(--blue);
}

/* Topbar — floating pill */
.topbar {
  position: sticky;
  top: 12px;
  z-index: 100;
  padding: 8px 12px 6px;
  /* Float over the hero: pull following content up under the nav. */
  margin: 0 0 -90px;
  background: transparent;
  border: none;
  pointer-events: none;
}

.topbar__inner {
  position: relative;
  pointer-events: auto;
  width: fit-content;
  max-width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 6px 22px 6px 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 80px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow:
    0 4px 6px rgba(26, 75, 168, 0.04),
    0 18px 44px rgba(26, 75, 168, 0.12),
    0 0 0 1px rgba(26, 75, 168, 0.06);
}

.brand__logo {
  width: 68px;
  height: auto;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.topbar__actions .btn {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  white-space: nowrap;
}

/* Glow kept only on the main "Appeler maintenant" CTA */
.topbar__actions .btn--primary {
  box-shadow: 0 10px 28px rgba(45, 184, 74, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

#primary-nav {
  font-size: 20px;
}

.nav a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 8px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav a:hover {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.85);
}

/* Nav dropdown (Zones) */
.nav__dropdown {
  position: relative;
  display: inline-flex;
}

.nav__dropbtn {
  font: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s, background 0.2s;
}

.nav__dropbtn:hover {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.85);
}

.nav__caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.2s var(--ease);
}

.nav__dropdown.is-open .nav__dropbtn .nav__caret {
  transform: rotate(-135deg);
}

.nav__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  display: grid;
  gap: 2px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s var(--ease);
  z-index: 60;
}

.nav__dropdown.is-open .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__menu a {
  font-size: 24px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav__menu a:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

/* Mobile menu toggle (hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  height: 2.5px;
  width: 100%;
  border-radius: 2px;
  background: var(--blue);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
}

.btn--outline {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn--lg {
  padding: 14px 22px;
  font-size: 15px;
}

/* Hero */
.hero {
  position: relative;
  margin: 24px 12px 0;
  padding: 150px 16px 52px;
  min-height: min(620px, 92vh);
  background: var(--blue-dark);
  overflow: hidden;
  border-radius: 28px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
  filter: saturate(1.08) contrast(1.04) brightness(0.92);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      145deg,
      rgba(26, 75, 168, 0.78) 0%,
      rgba(18, 58, 133, 0.62) 45%,
      rgba(30, 143, 56, 0.72) 100%
    ),
    linear-gradient(
      180deg,
      rgba(26, 75, 168, 0.28) 0%,
      transparent 42%,
      rgba(30, 143, 56, 0.22) 100%
    );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
}

/* F-pattern layout: top bar → second bar → left vertical stem */
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, auto);
  grid-template-rows: auto auto 1fr;
  grid-template-areas:
    "title cta"
    "chips ."
    "stats .";
  gap: 18px 36px;
  align-items: start;
  align-content: end;
  min-height: min(480px, 72vh);
  padding-left: 18px;
  border-left: 3px solid rgba(45, 184, 74, 0.55);
}

.hero__main {
  grid-area: title;
  justify-self: start;
  align-self: start;
  text-align: left;
}

.hero__chips {
  grid-area: chips;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 7px;
  max-width: min(680px, 72%);
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.22);
}

.hero__chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s var(--ease);
}

.hero__chip:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.hero__chip--accent {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.38);
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: none;
}

.hero__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.95;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.28);
  max-width: 100%;
}

.hero__line {
  display: block;
  font-size: clamp(54px, 9vw, 92px);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-style: italic;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(8, 15, 30, 0.45);
}

.hero__line--green,
.hero__line--blue {
  color: #ffffff;
}

.hero__slogan {
  margin: 0 0 22px;
  font-size: 18px;
  color: var(--ink);
}

.hero__slogan em {
  font-style: italic;
  color: var(--blue);
  font-weight: 600;
}

.hero__cta {
  grid-area: cta;
  justify-self: end;
  align-self: start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 0;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(45, 184, 74, 0.45);
}

.hero__phrase {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--green);
  text-decoration: none;
  text-align: right;
  text-shadow: 0 2px 18px rgba(8, 15, 30, 0.45);
  transition: color 0.25s var(--ease), text-shadow 0.25s var(--ease);
}

.hero__phrase-line {
  display: block;
  font-size: clamp(36px, 6.5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
}

.hero__phrase-line--accent {
  font-size: clamp(42px, 7.5vw, 72px);
  animation: phrase-accent-glow 2.8s ease-in-out infinite;
}

@keyframes phrase-accent-glow {
  0%,
  100% {
    opacity: 0.78;
    color: var(--green);
    text-shadow:
      0 0 10px rgba(45, 184, 74, 0.3),
      0 0 22px rgba(45, 184, 74, 0.15);
  }

  50% {
    opacity: 1;
    color: #6ef98a;
    text-shadow:
      0 0 18px rgba(45, 184, 74, 0.9),
      0 0 36px rgba(45, 184, 74, 0.6),
      0 0 56px rgba(45, 184, 74, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__phrase-line--accent {
    animation: none;
    opacity: 1;
    text-shadow: 0 0 18px rgba(45, 184, 74, 0.45);
  }
}

.hero__phrase:hover {
  color: #5ee879;
  text-shadow:
    0 0 28px rgba(45, 184, 74, 0.5),
    0 2px 18px rgba(8, 15, 30, 0.4);
}

/* Sections */
.section {
  padding: 56px 16px;
}

.section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

.section__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section__head {
  margin-bottom: 28px;
  max-width: 58ch;
}

.section__eyebrow {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--green-dark);
}

.section__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 900;
  color: var(--blue);
}

.section__lede {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.section__hint {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
}


/* Services — hover-expand list */
.section--services {
  background: linear-gradient(180deg, var(--white), var(--bg));
  overflow: visible;
}

.section--services .section__lede {
  color: #3d4a5c;
}

.section--services .section__hint {
  color: var(--blue-dark);
}

/* Hover-expand services list */
.svc-list {
  margin-top: 8px;
  border-top: 1px solid var(--stroke);
}

.svc-item {
  border-bottom: 1px solid var(--stroke);
}

.svc-item__head {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 22px 8px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.svc-item__num {
  flex-shrink: 0;
  width: 2.4em;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}

.svc-item__name {
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #4a5568;
  transition: color 0.35s var(--ease);
}

.svc-item__plus {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  opacity: 0.5;
  transition: opacity 0.3s var(--ease);
}

.svc-item__plus::before,
.svc-item__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-dark);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}

.svc-item__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Collapsible panel (max-height animation — robust across engines) */
.svc-item__panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s var(--ease), opacity 0.45s var(--ease);
}

.svc-item__content {
  padding: 4px 8px 30px;
}

.svc-item__tags {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-tag {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
}

.svc-item__desc {
  margin: 0;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.6;
  color: #3d4a5c;
}

.svc-item__media {
  margin: 0;
  padding-bottom: 30px;
}

.svc-item__media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Open states — open item (default first / clicked) + hover preview */
.svc-item.is-open .svc-item__panel {
  max-height: 720px;
  opacity: 1;
}

.svc-list:hover .svc-item .svc-item__panel {
  max-height: 0;
  opacity: 0;
}

.svc-list:hover .svc-item:hover .svc-item__panel {
  max-height: 720px;
  opacity: 1;
}

/* Name + number highlight for the open / hovered item */
.svc-item.is-open .svc-item__name,
.svc-item:hover .svc-item__name {
  color: var(--blue-dark);
}

.svc-item.is-open .svc-item__num,
.svc-item:hover .svc-item__num {
  color: var(--blue);
}

.svc-list:hover .svc-item .svc-item__name {
  color: #4a5568;
}

.svc-list:hover .svc-item .svc-item__num {
  color: var(--muted);
}

.svc-list:hover .svc-item:hover .svc-item__name {
  color: var(--blue-dark);
}

.svc-list:hover .svc-item:hover .svc-item__num {
  color: var(--blue);
}

/* Plus icon → minus when open / hovered */
.svc-item.is-open .svc-item__plus,
.svc-item:hover .svc-item__plus {
  opacity: 1;
}

.svc-item.is-open .svc-item__plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.svc-list:hover .svc-item .svc-item__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.svc-list:hover .svc-item:hover .svc-item__plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

@media (max-width: 760px) {
  .svc-item__panel {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .svc-item__content {
    padding-bottom: 14px;
  }

  .svc-item__media img {
    height: 190px;
  }

  .svc-item.is-open .svc-item__panel,
  .svc-list:hover .svc-item:hover .svc-item__panel {
    max-height: 1100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-item__panel {
    transition: none;
  }
}

.services-scene {
  --count: var(--service-count, 6);
  --step: min(165vh, 1300px);
  position: relative;
  margin-top: 8px;
}

/* Before JS: show all cards in a simple list */
.services-scene:not(.services-scene--active):not(.services-scene--static) .services-scene__sticky {
  position: static;
  height: auto;
  padding: 0;
}

.services-scene:not(.services-scene--active):not(.services-scene--static) .services-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-template-areas: none;
  gap: 14px;
  width: 100%;
}

.services-scene:not(.services-scene--active):not(.services-scene--static) .service-card {
  opacity: 1;
  transform: none;
  filter: none;
}

.services-scene:not(.services-scene--active) .services-progress {
  display: none;
}

/* Active parallax mode */
.services-scene--active {
  height: calc(var(--count) * var(--step));
}

.services-scene--active .services-scene__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  padding: 16px;
  overflow: hidden;
}

.services-scene--active .services-stack {
  display: grid;
  grid-template-areas: "card";
  width: min(940px, 95vw);
  perspective: 1200px;
}

.services-scene--active .service-card {
  grid-area: card;
  margin: 0;
  will-change: transform, opacity, filter;
  pointer-events: none;
}

.services-scene--active .service-card.is-interactive {
  pointer-events: auto;
}

/* Static fallback (very small screens / reduced motion) */
.services-scene--static {
  height: auto;
}

.services-scene--static .services-scene__sticky {
  position: static;
  height: auto;
  padding: 0;
}

.services-scene--static .services-scene__sticky::before {
  display: none;
}

.services-scene--static .services-stack {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: none;
  gap: 14px;
  width: 100%;
}

.services-scene--static .service-card {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  pointer-events: auto;
}

.services-scene--static .service__parallax,
.services-scene--static .service__icon {
  transform: none !important;
}

.services-scene--static .services-progress {
  display: none;
}

.services-stack {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 48px 52px 44px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  text-align: center;
}

.service__parallax {
  position: absolute;
  inset: -20% -10%;
  z-index: -1;
  background: none;
  will-change: transform;
}

.services-progress {
  position: absolute;
  right: max(8px, calc(50% - 420px));
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
  z-index: 20;
}

.services-scene--active .services-progress {
  display: grid;
}

.services-progress__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s;
  text-decoration: none;
}

.services-progress__dot.is-active,
.services-progress__dot:hover {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.25);
}

.service__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

.service__icon svg {
  width: 32px;
  height: 32px;
}

.service__icon--green {
  background: var(--green-light);
  color: var(--green-dark);
}

.service__icon--blue {
  background: var(--blue-light);
  color: var(--blue);
}

.service__name {
  margin: 0 0 14px;
  font-size: clamp(24px, 3.4vw, 30px);
  font-weight: 800;
  color: var(--ink);
}

.service__desc {
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
}

.service__points {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 8px;
  width: fit-content;
  text-align: left;
}

.service__points li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}

.service__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

/* Pillars */
.section--pillars {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  overflow: visible;
  margin: 0 12px;
  border-radius: 28px 28px 0 0;
}

.section--pillars .section__title {
  color: var(--white);
}

.section--pillars .section__lede,
.section--pillars .section__hint {
  color: rgba(255, 255, 255, 0.9);
}

.section--pillars .services-progress__dot {
  border-color: rgba(255, 255, 255, 0.85);
}

.section--pillars .services-progress__dot.is-active,
.section--pillars .services-progress__dot:hover {
  background: var(--white);
  border-color: var(--white);
}

.pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pillar {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--stroke);
  box-shadow: var(--shadow);
}

.pillar__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-light);
  color: var(--green-dark);
  border: 2px solid rgba(45, 184, 74, 0.3);
}

.pillar__icon svg {
  width: 28px;
  height: 28px;
}

.pillar__icon--blue {
  background: var(--blue-light);
  color: var(--blue);
  border-color: rgba(26, 75, 168, 0.25);
}

.pillar__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--blue);
}

.pillar__desc {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* Tarifs */
.section--tarifs {
  background: linear-gradient(180deg, var(--green-dark) 0%, #157230 100%);
  margin: 0 12px;
  border-radius: 0 0 28px 28px;
}

.section--tarifs .section__head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section--tarifs .section__eyebrow,
.section--tarifs .section__title {
  color: var(--white);
}

.section--tarifs .section__lede,
.section--tarifs .section__hint {
  color: rgba(255, 255, 255, 0.9);
}

.section--tarifs .tarifs__note {
  color: rgba(255, 255, 255, 0.85);
}

.tarifs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .tarifs {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  .tarifs {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

/* Slide-in entrance: left column cards from the left, right column from the right */
.tarifs .tarif.reveal {
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.75s var(--ease);
}

.tarifs .tarif.reveal:nth-child(4n + 1),
.tarifs .tarif.reveal:nth-child(4n + 2) {
  transform: translateX(-70px);
}

.tarifs .tarif.reveal:nth-child(4n + 3),
.tarifs .tarif.reveal:nth-child(4n) {
  transform: translateX(70px);
}

.tarifs .tarif.reveal.is-in {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .tarifs .tarif.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.tarif {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--stroke);
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.tarif:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tarifs.is-spread .tarif {
  will-change: transform;
}

.tarif--featured {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.tarif__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(20, 30, 50, 0.18);
}

.tarif__head {
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 14px;
}

.tarif__name {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 800;
  color: var(--blue);
}

.tarif__tagline {
  margin: 0;
  font-size: 13px;
  color: var(--faint);
}

.tarif__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
}

.tarif__from {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.tarif__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  flex: 1;
}

.tarif__points li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--muted);
}

.tarif__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: inset 0 0 0 2px var(--green);
}

.tarif .btn {
  width: 100%;
}

.tarifs__note {
  margin: 22px auto 0;
  max-width: 64ch;
  text-align: center;
  font-size: 13px;
  color: var(--faint);
}

/* Avis */
.section--avis {
  background: var(--bg);
}

.avis {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.avis-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px;
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 45%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  color: var(--white);
}

.avis-card__stars {
  color: #f5b50a;
  font-size: 18px;
  letter-spacing: 2px;
}

.avis-card__text {
  margin: 0;
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
}

.avis-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.avis-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.avis-card__name {
  margin: 0;
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
}

.avis-card__place {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* FAQ */
.section--faq {
  background: linear-gradient(180deg, var(--white), var(--bg));
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  gap: 56px;
  align-items: start;
}

.faq-intro {
  max-width: 34ch;
  position: sticky;
  top: 110px;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: none;
}

@media (max-width: 860px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-intro {
    position: static;
    max-width: 52ch;
  }
}

.faq__item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(20, 30, 50, 0.06);
  border-radius: var(--radius);
  box-shadow: 0 2px 6px rgba(20, 30, 50, 0.04), 0 10px 26px rgba(20, 30, 50, 0.05);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}

.faq__item:hover,
.faq__item:focus-within {
  border-color: rgba(45, 184, 74, 0.4);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  cursor: default;
  list-style: none;
  -webkit-user-select: none;
  user-select: none;
  outline: none;
}

.faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-dark);
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease);
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item:hover .faq__icon::after,
.faq__item:focus-within .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 22px;
  transition:
    max-height 0.35s var(--ease),
    opacity 0.3s var(--ease),
    padding 0.35s var(--ease);
}

.faq__item:hover .faq__answer,
.faq__item:focus-within .faq__answer {
  max-height: 240px;
  opacity: 1;
  padding: 0 22px 18px;
}

@media (hover: none) {
  .faq__item:focus-within .faq__answer {
    max-height: 240px;
    opacity: 1;
    padding: 0 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq__answer,
  .faq__item,
  .faq__icon::before,
  .faq__icon::after {
    transition: none;
  }
}

.faq__answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* Partners logo slideshow */
.partners {
  margin-top: 48px;
}

.partners__label {
  margin: 0 0 22px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.partners__marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners__track {
  display: flex;
  width: max-content;
  animation: partners-marquee 32s linear infinite;
}

.partners__track:hover {
  animation-play-state: paused;
}

.partners__group {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.partners__logo {
  flex-shrink: 0;
  width: clamp(180px, 20vw, 230px);
  height: 96px;
  margin: 0 8px;
  display: grid;
  place-items: center;
  padding: 0 28px;
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
}

.partners__logo img {
  display: block;
  max-width: min(140px, 28vw);
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  filter: grayscale(0.08);
  transition: opacity 0.2s, filter 0.2s, transform 0.2s var(--ease);
}

.partners__logo:hover img {
  opacity: 1;
  filter: none;
  transform: scale(1.04);
}

@keyframes partners-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .partners__group[aria-hidden="true"] {
    display: none;
  }

  .partners__marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Brand strip */
.brand-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.brand-strip__name {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
}

.brand-strip__sub {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Contact */
.section--contact {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 55%, var(--green-dark) 100%);
  color: var(--white);
  margin: 0 12px 40px;
  border-radius: 28px;
}

.section--contact .section__title,
.section--contact .section__lede {
  color: var(--white);
}

.section--contact .section__lede {
  opacity: 0.9;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact__slogan {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.35;
}

.contact__slogan em {
  font-style: italic;
  opacity: 0.95;
}

.contact__cards {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-card {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-card__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.contact-card__value {
  font-size: 17px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius-lg);
  color: var(--ink);
}

.field {
  display: grid;
  gap: 6px;
}

.field__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.field__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  font: inherit;
  background: var(--bg);
}

.field__textarea {
  resize: vertical;
  min-height: 100px;
}

.field__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a4ba8' stroke-width='3' 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 14px center;
}

.contact-form__note {
  margin: 0;
  font-size: 12px;
  color: var(--faint);
}

.contact-form__note a {
  color: var(--blue);
  font-weight: 600;
}

.contact__visual {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__map {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.contact__map-img {
  display: block;
  width: 100%;
  height: clamp(240px, 32vw, 340px);
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-lg);
  background: #f4f6f8;
}

.contact__pitch {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 0;
  color: var(--white);
}

.contact__pitch-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  line-height: 1.25;
}

.contact__pitch-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.92;
}

.contact__pitch-text strong {
  font-weight: 700;
}

.contact__keywords {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact__keywords li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.contact__pitch-cta {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Hero stats — F-pattern vertical stem (left column) */
.hero__stats {
  grid-area: stats;
  justify-self: start;
  align-self: end;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 260px;
  padding-top: 8px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1px;
}

.hero__stats .hero-stat__value,
.hero__stats .why-stat {
  color: var(--white);
  font-size: clamp(24px, 4vw, 36px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-stat__label {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 520px) {
  .hero__stats {
    gap: 8px 16px;
    max-width: 100%;
  }
}

/* Why choose us / stats */
.section--why {
  background: var(--bg);
}

.why__top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 24px 48px;
  margin-bottom: 36px;
}

.why__badge {
  align-self: center;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
}

.why__heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.why-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.why-card--stat {
  min-height: 340px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: none;
  border-radius: 10px;
  perspective: 1000px;
  overflow: hidden;
  contain: paint;
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.5),
    0 14px 40px rgba(18, 30, 50, 0.14);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card--stat:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.85),
    0 18px 48px rgba(18, 30, 50, 0.2);
}

.why-card__front {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.45s ease;
}

.why-card__front img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.why-card--stat:hover .why-card__front {
  transform: scale(0);
  opacity: 0;
}

.why-card__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px;
  box-sizing: border-box;
  background-color: #ffffff;
  transform: rotateX(-90deg);
  transform-origin: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card--stat:hover .why-card__content,
.why-card--stat.is-flipped .why-card__content {
  transform: rotateX(0deg);
}

.why-card--stat.is-flipped .why-card__front {
  transform: scale(0);
  opacity: 0;
}

.why-card__content .btn {
  margin-top: auto;
  align-self: flex-start;
}

.why-card__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.why-card__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.why-card__media img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.why-card__left .btn {
  align-self: flex-start;
}

.why-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.why-card__label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.why-card__label--light {
  color: var(--white);
  font-size: clamp(16px, 2vw, 20px);
}

.why-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.why-card__brand {
  margin: auto 0 0;
  padding-top: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}

/* Feature card with video */
.why-card--feature {
  min-height: 340px;
  color: var(--white);
}

.why-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.why-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  padding: 28px;
  background: linear-gradient(
    180deg,
    rgba(18, 30, 50, 0) 30%,
    rgba(18, 30, 50, 0.55) 75%,
    rgba(18, 30, 50, 0.82) 100%
  );
}

/* Animated stat numbers */
.why-stat {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--blue);
}

.why-stat--big {
  font-size: clamp(56px, 9vw, 96px);
  color: var(--white);
}

.is-in .why-stat {
  animation: stat-pop 0.7s var(--ease) both;
}

@keyframes stat-pop {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-in .why-stat {
    animation: none;
  }

  .why-card--stat,
  .why-card--stat:hover {
    transform: none;
  }

  .why-card__front,
  .why-card__content {
    transition: opacity 0.35s ease;
  }

  .why-card__content {
    transform: none;
    opacity: 0;
  }

  .why-card--stat:hover .why-card__content,
  .why-card--stat:focus-within .why-card__content,
  .why-card--stat.is-flipped .why-card__content {
    transform: none;
    opacity: 1;
  }

  .why-card--stat:hover .why-card__front,
  .why-card--stat:focus-within .why-card__front,
  .why-card--stat.is-flipped .why-card__front {
    transform: none;
    opacity: 0;
  }
}

@media (hover: none) {
  .why-card--stat {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .why-card__front,
  .why-card__content {
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
      opacity 0.45s ease;
  }

  .why-card__content {
    transform: rotateX(-90deg);
    background-color: #ffffff;
  }
}

@media (max-width: 860px) {
  .why__top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

@media (max-width: 520px) {
  .why-card--stat {
    min-height: 300px;
  }

  .why-card__front img {
    min-height: 300px;
  }

  .why-card__content {
    padding: 22px;
  }
}

/* Zone landing pages */
.zone-hero {
  margin: 24px 12px 0;
  padding: 120px 24px 64px;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 50%, var(--green-dark) 100%);
  color: var(--white);
  text-align: center;
}

.zone-hero__inner {
  max-width: 820px;
  margin: 0 auto;
}

.zone-hero__eyebrow {
  margin: 0 0 12px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.zone-hero__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 5.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.zone-hero__text {
  margin: 0 auto 28px;
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.zone-hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.zone-points {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.zone-points li {
  padding: 22px 24px;
  background: #ffffff;
  border: none;
  border-radius: 28px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 16px 16px 40px #d9dde3, -16px -16px 40px #ffffff;
}

/* Zone feature image */
.zone-figure {
  margin: 24px 12px 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.zone-figure img {
  display: block;
  width: 100%;
  height: clamp(240px, 38vw, 460px);
  object-fit: cover;
}

.zone-links {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.zone-links a {
  display: inline-flex;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(26, 75, 168, 0.18);
  transition: background 0.2s, transform 0.2s var(--ease);
}

.zone-links a:hover {
  background: var(--green-light);
  color: var(--green-dark);
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .zone-points {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  padding: 0 0 100px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
}

.footer__bar {
  background: var(--ink);
  padding: 28px 16px 0;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer__logo {
  width: 56px;
  border-radius: 12px;
  background: var(--white);
  padding: 4px;
}

.footer__brand {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
}

.footer .text-blue {
  color: #6db4ff;
}

.footer__meta {
  margin: 0 0 8px;
  font-size: 12px;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer__slogan {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.footer__links {
  display: grid;
  gap: 8px;
  text-align: right;
  font-size: 14px;
}

.footer__links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.footer__links a:hover {
  text-decoration: underline;
}

.footer__dispo {
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.06em;
}

.footer__copy {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px 24px;
  font-size: 12px;
  opacity: 0.55;
  text-align: center;
}

/* FAB */
.fab {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(45, 184, 74, 0.4);
  text-decoration: none;
  transition: transform 0.2s var(--ease);
  box-sizing: border-box;
  max-width: calc(100vw - 24px);
  max-height: calc(100dvh - 24px);
}

.fab svg {
  width: 24px;
  height: 24px;
}

@media (hover: hover) {
  .fab:hover {
    transform: scale(1.06);
  }
}

@media (max-width: 640px) {
  .fab {
    width: 52px;
    height: 52px;
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
    box-shadow: 0 6px 18px rgba(45, 184, 74, 0.38);
  }

  .fab svg {
    width: 22px;
    height: 22px;
  }
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .services-scene--active {
    height: auto;
  }

  .services-scene--active .services-scene__sticky {
    position: static;
    height: auto;
  }

  .services-scene--active .services-stack {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 14px;
    width: 100%;
  }

  .services-scene--active .service-card,
  .services-scene--active .service__parallax,
  .services-scene--active .service__icon {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto;
  }

  .services-scene--active .services-progress {
    display: none;
  }
}

/* Responsive */
@media (max-width: 640px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "cta"
      "title"
      "chips"
      "stats";
    min-height: 0;
    align-items: start;
    align-content: start;
    gap: 16px;
    padding-left: 14px;
  }

  .hero__cta {
    justify-self: stretch;
    width: 100%;
    border-bottom-color: rgba(45, 184, 74, 0.35);
  }

  .hero__main {
    justify-self: start;
    align-self: start;
  }

  .hero__chips {
    max-width: 100%;
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }

  .hero__stats {
    justify-self: start;
    align-self: start;
    width: 100%;
    min-width: 0;
    margin-top: 4px;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    max-width: 100%;
  }

  .hero-stat__label {
    overflow-wrap: anywhere;
  }

  .hero-stat {
    align-items: flex-start;
    text-align: left;
  }

  .hero__phrase-line {
    font-size: clamp(28px, 7vw, 44px);
  }

  .hero__phrase-line--accent {
    font-size: clamp(32px, 8vw, 52px);
  }

  .hero {
    min-height: 0;
    background-position: center 40%;
  }
}

@media (max-width: 768px) {
  .services-scene--active {
    --step: min(105vh, 720px);
  }
}

@media (max-width: 960px) {
  .services-scene--active .services-stack {
    width: min(680px, 96vw);
  }

  .services-progress {
    right: 8px;
  }

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

  .avis {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__links {
    text-align: center;
  }

  .brand-strip {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .topbar__inner {
    width: auto;
    max-width: min(var(--container), calc(100% - 16px));
    gap: 10px;
    justify-content: space-between;
  }

  .nav-toggle {
    display: flex;
  }

  .topbar__actions .btn {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    backdrop-filter: blur(18px) saturate(1.2);
    border: 1px solid var(--stroke);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
  }

  .nav.is-open {
    display: flex;
    animation: nav-drop 0.22s var(--ease) both;
  }

  .nav a {
    font-size: 15px;
    padding: 12px 16px;
  }

  .nav__dropdown {
    display: block;
    width: 100%;
  }

  .nav__dropbtn {
    width: 100%;
    justify-content: space-between;
    font-size: 15px;
    padding: 12px 16px;
  }

  .nav__menu {
    position: static;
    transform: none;
    display: none;
    min-width: 0;
    padding: 2px 0 6px 14px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
  }

  .nav__dropdown.is-open .nav__menu {
    display: grid;
    transform: none;
  }

  @keyframes nav-drop {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

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

}