/* ==========================================
   H2O LAVAGE DE VITRES — main.css
   Palette: #3c7ccc (bleu H2O), #2d394a (navy), #ffffff
   Structure identique à Provitro
   ========================================== */

:root {
  --pv-cyan: #3c7ccc;        /* Bleu H2O principal */
  --pv-cyan-light: #5b9de8;  /* Version plus claire pour hover/glow */
  --pv-navy: #2d394a;        /* Navy H2O (fond header, footer, etc.) */
  --pv-white: #ffffff;
  --pv-glass: rgba(45, 57, 74, 0.30);
  --pv-border: rgba(255, 255, 255, 0.16);
  --pv-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  --pv-radius: 24px;
  --pv-transition: 180ms ease;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

/* =========================
HEADER
========================= */

.pv-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.pv-header__capsule {
  pointer-events: auto;
  width: min(100% - 32px, 1280px);
  min-height: 90px;
  padding: 0 clamp(16px, 3vw, 36px);
  border-radius: var(--pv-radius);
  background: var(--pv-glass);
  border: 1px solid var(--pv-border);
  box-shadow: var(--pv-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.pv-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.pv-header__logo {
  height: 50px;
  width: auto;
  display: block;
}

.pv-header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.pv-header__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.pv-header__item {
  display: flex;
  align-items: center;
}

.pv-header__link,
.pv-header__link:visited {
  font-family: "Anton", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.4px;
  color: var(--pv-white);
  text-decoration: none;
  transition: color var(--pv-transition), transform var(--pv-transition);
}

.pv-header__link:hover,
.pv-header__link:focus-visible {
  color: var(--pv-cyan-light);
  transform: scale(1.06);
}

.pv-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 24px;
}

.pv-header__call,
.pv-header__cta {
  font-family: "Anton", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.4px;
  text-decoration: none;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--pv-transition), box-shadow var(--pv-transition), filter var(--pv-transition);
}

.pv-header__call {
  color: var(--pv-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.pv-header__call:hover,
.pv-header__call:focus-visible {
  color: var(--pv-cyan-light);
  border-color: var(--pv-cyan-light);
  transform: translateY(-2px);
}

.pv-header__cta {
  background: var(--pv-cyan);
  color: var(--pv-white);
  box-shadow: 0 8px 18px rgba(60, 124, 204, 0.35);
}

.pv-header__cta:hover,
.pv-header__cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 10px 22px rgba(60, 124, 204, 0.45);
}

.pv-header__drawer {
  display: none;
}

.pv-header__burger {
  width: 46px;
  height: 46px;
  display: flex;
  border-radius: 14px;
  border: 1px solid var(--pv-border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--pv-white);
  cursor: pointer;
}

.pv-header__burger svg {
  width: 22px;
  height: 22px;
  display: block;
  margin: auto;
}

.pv-header__drawer-panel {
  position: fixed;
  inset: 0;
  background: rgba(45, 57, 74, 0.96);
  padding: 110px 22px 30px;
  box-sizing: border-box;
}

.pv-header__drawer-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pv-header__drawer-btn {
  font-family: "Anton", sans-serif;
  text-decoration: none;
  min-height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.4px;
  font-size: 1rem;
}

.pv-header__drawer-btn--call {
  border: 1px solid rgba(255,255,255,0.2);
  background: #2d394a;
  color: #5b9de8;
}

.pv-header__drawer-btn--quote {
  color: #ffffff;
  background: var(--pv-cyan);
}

.pv-header__drawer-menu {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pv-header__drawer-link {
  font-family: "Anton", sans-serif;
  color: var(--pv-white);
  text-decoration: none;
  font-size: 1.15rem;
  padding: 12px 4px;
  display: inline-flex;
  transition: color var(--pv-transition), transform var(--pv-transition);
}

.pv-header__drawer-link:hover,
.pv-header__drawer-link:focus-visible {
  color: var(--pv-cyan-light);
  transform: scale(1.04);
  transform-origin: left center;
}

@media (max-width: 905px) {

  html,
  body {
    overflow-x: hidden;
  }

  .pv-header {
    padding: 0 15px;
  }

  .pv-header__capsule {
    width: 100%;
    height: 84px;
    min-height: 84px;
    padding-inline: 18px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(45, 57, 74, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .pv-header__nav,
  .pv-header__actions {
    display: none;
  }

  .pv-header__brand {
    order: 1;
  }

  .pv-header__logo {
    height: 34px;
    width: auto;
  }

  .pv-header__drawer {
    order: 3;
    margin-left: auto;
    display: block;
  }

  .pv-header__drawer > summary {
    list-style: none;
  }

  .pv-header__drawer > summary::-webkit-details-marker {
    display: none;
  }

  .pv-header__burger {
    position: relative;
    z-index: 10001;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .pv-header__burger svg {
    width: 22px;
    height: 22px;
    display: block;
  }

  .pv-header__drawer[open] > .pv-header__burger svg {
    display: none;
  }

  .pv-header__drawer[open] > .pv-header__burger::after {
    content: "✕";
    font-size: 22px;
    line-height: 1;
    color: #2d394a;
  }

  .pv-header__drawer-panel {
    position: fixed;
    inset: 0;
    width: auto;
    height: fit-content;
    max-height: 85dvh;
    border-radius: 30px;
    max-width: none;
    background: #ddeeff;
    overflow: auto;
    box-sizing: border-box;
    padding: 92px 22px 28px;
  }

  .pv-header__drawer-inner {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .pv-header__drawer-btn {
    font-family: "Anton", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 48px;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 0.4px;
    box-shadow: 0 5px 10px rgba(71, 71, 71, 0.18);
  }

  .pv-header__drawer-btn--quote {
    background: #3c7ccc;
    color: #ffffff;
  }

  .pv-header__drawer-menu {
    list-style: none;
    max-width: 520px;
    margin: 22px auto 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .pv-header__drawer-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-family: "Anton", sans-serif;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0.3px;
    color: #2d394a;
    padding: 10px 2px;
    transform-origin: left center;
    transition: transform 180ms ease, color 180ms ease;
  }

  .pv-header__drawer-link:hover,
  .pv-header__drawer-link:focus-visible {
    transform: scale(1.05);
    color: #3c7ccc;
  }
}

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

.pv-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
}

.pv-hero {
  position: relative;
  min-height: 86dvh;
  overflow: hidden;
  background: #2d394a;
}

.pv-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 86dvh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 40px;
}

.pv-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pv-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pv-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pv-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.30),
    rgba(0,0,0,0.42)
  );
  z-index: 1;
}

.pv-hero__left {
  max-width: 920px;
}

.pv-hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.pv-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pv-hero__stars {
  color: #ffd54a;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
}

.pv-hero__rating-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.pv-hero__rating-text {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.96;
}

.pv-hero__google svg {
  width: 16px;
  height: 16px;
  display: block;
}

.pv-hero__title {
  margin: 0 0 20px;
  max-width: 1200px;
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-size: clamp(86px, 8.6vw, 138px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.pv-highlight {
  color: #5b9de8;
}

.pv-highlight--stroke {
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.55),
    0 1px 3px rgba(0, 0, 0, 0.40);
}

.pv-hero__subtitle {
  margin: 0 0 34px;
  max-width: 760px;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.2;
  font-weight: 400;
}

.pv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Anton", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.pv-btn-primary {
  background: #3c7ccc;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(60, 124, 204, 0.32);
}

.pv-btn-primary:hover,
.pv-btn-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(60, 124, 204, 0.42);
  filter: brightness(1.08);
}

@media (max-width: 905px) {
  .pv-hero {
    min-height: 75vh;
  }

  .pv-hero__inner {
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 110px 18px 60px;
    justify-content: flex-start;
    text-align: left;
  }

  .pv-hero__left {
    max-width: 100%;
    margin: 0;
  }

  .pv-hero__rating {
    justify-content: flex-start;
  }

  .pv-hero__title {
    font-size: clamp(52px, 13vw, 72px);
    margin: 0 0 14px;
  }

  .pv-hero__subtitle {
    margin: 0 0 22px;
    max-width: 92%;
  }

  .pv-hero__left .pv-btn {
    margin: 0;
  }
}

/* =========================
FOUNDERS / ÉQUIPE
========================= */

.pv-founders {
  height: 100vh;
  display: flex;
  align-items: center;
  background: #f0f5fb;
  padding: 0;
}

.pv-founders__container {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.pv-founders__eyebrow {
  margin: 0 0 10px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Anton", sans-serif;
  font-size: clamp(24px, 2.2vw, 42px);
  letter-spacing: 0.03em;
  color: #3c7ccc;
}

.pv-founders__title {
  margin: 0 0 46px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Anton", sans-serif;
  font-size: clamp(38px, 4.2vw, 74px);
  line-height: 0.95;
  letter-spacing: 0.015em;
  color: #2d394a;
}

.pv-founders__grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  width: max-content;
  margin: 0 auto;
}

.pv-founder-card {
  flex: 0 0 auto;
  width: 420px;
}

.pv-founder-card__media {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  border: 3px solid #3c7ccc;
}

.pv-founder-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 260ms ease, filter 260ms ease;
}

.pv-founder-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 57, 74, 0.06) 0%,
    rgba(45, 57, 74, 0.02) 30%,
    rgba(45, 57, 74, 0.14) 100%
  );
  pointer-events: none;
}

.pv-founder-card:hover .pv-founder-card__image {
  transform: scale(1.035);
  filter: saturate(1.04);
}

@media (max-width: 905px) {
  .pv-founders {
    padding: 28px 0 24px;
    max-height: 60dvh;
  }

  .pv-founders__container {
    width: min(100% - 20px, 1280px);
  }

  .pv-founders__eyebrow {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .pv-founders__title {
    font-size: 22px;
    line-height: 0.95;
    margin-bottom: 20px;
  }

  .pv-founders__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 100%;
    margin: 0 auto;
  }

  .pv-founder-card {
    width: 100%;
  }

  .pv-founder-card__media {
    aspect-ratio: 0.70 / 1;
    border-radius: 16px;
  }

  .pv-founder-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
}

/* =========================
REVIEWS MARQUEE
========================= */

.pv-reviews-marquee {
  --pv-reviews-speed: 50s;
  background: #e8eef5;
  padding: 80px 0;
  overflow: hidden;
}

.pv-reviews-marquee__inner {
  width: min(100% - 40px, 1200px);
  margin: 0 auto 30px;
  text-align: center;
}

.pv-reviews-marquee__kicker {
  margin: 0 0 6px;
  font-family: "Anton", sans-serif;
  font-size: clamp(20px, 2vw, 34px);
  color: #3c7ccc;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pv-reviews-marquee__title {
  margin: 0 0 28px;
  font-family: "Anton", sans-serif;
  font-size: clamp(36px, 4vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #2d394a;
}

.pv-reviews-marquee__rows {
  display: grid;
  gap: 18px;
}

.pv-reviews-marquee__row {
  overflow: hidden;
}

.pv-reviews-marquee__track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
  padding: 8px 0;
}

.pv-reviews-marquee__clones {
  display: contents;
}

.pv-reviews-marquee__row--right .pv-reviews-marquee__track {
  animation: pvReviewsMarquee var(--pv-reviews-speed) linear infinite;
}

.pv-reviews-marquee__row--left .pv-reviews-marquee__track {
  animation: pvReviewsMarquee var(--pv-reviews-speed) linear infinite reverse;
}

.pv-reviews-marquee--single .pv-reviews-marquee__rows {
  gap: 0;
}

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

.pv-review-card {
  flex: 0 0 auto;
  width: 340px;
  max-width: 78vw;
  background: #ffffff;
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(45, 57, 74, 0.10);
}

.pv-review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pv-review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.pv-review-card__meta {
  min-width: 0;
}

.pv-review-card__stars {
  font-size: 14px;
  line-height: 1;
  color: #f7c948;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.pv-review-card__name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #2d394a;
}

.pv-review-card__text {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  color: #1c2430;
}

@media (max-width: 905px) {
  .pv-reviews-marquee {
    padding: 64px 0;
  }

  .pv-reviews-marquee__inner {
    width: min(100% - 24px, 1200px);
    margin-bottom: 24px;
  }

  .pv-reviews-marquee__kicker {
    font-size: 22px;
  }

  .pv-reviews-marquee__title {
    font-size: clamp(30px, 9vw, 46px);
    margin-bottom: 20px;
  }

  .pv-reviews-marquee__track {
    gap: 14px;
  }

  .pv-review-card {
    width: 300px;
    border-radius: 22px;
    padding: 16px;
  }

  .pv-review-card__text {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pv-reviews-marquee__row--right .pv-reviews-marquee__track,
  .pv-reviews-marquee__row--left .pv-reviews-marquee__track {
    animation: none;
  }
}

/* =========================
PACKAGES / SERVICES
========================= */

.pv-packages {
  background: #f0f5fb;
  padding: 90px 0 80px;
}

.pv-packages__container {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

.pv-packages__eyebrow {
  margin: 0 0 8px;
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: clamp(24px, 2vw, 38px);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #3c7ccc;
}

.pv-packages__title {
  margin: 0 0 36px;
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: clamp(34px, 3.8vw, 66px);
  line-height: 0.95;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #2d394a;
}

.pv-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.pv-package-card {
  background: #ffffff;
  border: 2px solid rgba(60, 124, 204, 0.55);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(45, 57, 74, 0.08);
  padding: 22px 24px 18px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pv-package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(45, 57, 74, 0.14);
  border-color: #3c7ccc;
}

.pv-package-card__label {
  margin: 0 0 16px;
  font-family: "Anton", sans-serif;
  font-size: clamp(18px, 1.4vw, 26px);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #3c7ccc;
}

.pv-package-card__title {
  margin: 0 0 18px;
  font-family: "Anton", sans-serif;
  font-size: clamp(24px, 2vw, 42px);
  line-height: 1.06;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #2d394a;
}

.pv-package-card__text {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  color: #2d394a;
}

.pv-packages__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.pv-packages__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Anton", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: #3c7ccc;
  box-shadow: 0 10px 24px rgba(60, 124, 204, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.pv-packages__cta:hover,
.pv-packages__cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(60, 124, 204, 0.38);
  filter: brightness(1.08);
}

@media (max-width: 980px) {
  .pv-packages__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pv-packages {
    padding: 70px 0 64px;
  }

  .pv-packages__container {
    width: min(100% - 24px, 1240px);
  }

  .pv-packages__title {
    margin-bottom: 24px;
  }

  .pv-package-card {
    padding: 20px 18px 18px;
  }

  .pv-package-card__text {
    font-size: 14px;
  }

  .pv-packages__cta {
    min-height: 50px;
    padding: 0 24px;
    font-size: 0.98rem;
  }
}

/* =========================
SOCIAL / VIDÉOS
========================= */

.pv-social {
  background: #f0f5fb;
  padding: 90px 0;
}

.pv-social__container {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

.pv-social__eyebrow {
  margin: 0 0 8px;
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: clamp(24px, 2vw, 38px);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #3c7ccc;
}

.pv-social__title {
  margin: 0 0 34px;
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: clamp(38px, 4vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #2d394a;
}

.pv-social__slider-wrap {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 18px;
}

.pv-social__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pv-social__nav {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(60, 124, 204, 0.35);
  background: #ffffff;
  color: #2d394a;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--pv-transition), border-color var(--pv-transition), transform var(--pv-transition);
}

.pv-social__nav:hover {
  background: #3c7ccc;
  border-color: #3c7ccc;
  color: #ffffff;
  transform: scale(1.06);
}

.pv-social-card {
  border-radius: 22px;
  overflow: hidden;
  background: #2d394a;
  aspect-ratio: 9 / 16;
  cursor: pointer;
}

.pv-social-card__video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.pv-social-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease;
}

.pv-social-card:hover .pv-social-card__img {
  transform: scale(1.03);
}

.pv-social-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  transition: background 180ms ease;
}

.pv-social-card:hover .pv-social-card__overlay {
  background: rgba(0,0,0,0.18);
}

.pv-social-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.pv-social-card__icon {
  width: 48px;
  height: 48px;
  fill: #ffffff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.pv-social-card.active .pv-social-card__play {
  display: none;
}

.pv-social-card.active .pv-social-card__overlay {
  display: none;
}

.pv-social-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.pv-social-card.active .pv-social-card__video {
  display: block;
}

@media (max-width: 980px) {
  .pv-social {
    padding: 70px 0;
  }

  .pv-social__container {
    width: min(100% - 24px, 1240px);
  }

  .pv-social__slider-wrap {
    grid-template-columns: 40px 1fr 40px;
    gap: 10px;
  }

  /* Mobile : flex horizontal défilant, 2 cartes visibles */
  .pv-social__track {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 6px;
    /* Cacher la scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .pv-social__track::-webkit-scrollbar {
    display: none;
  }

  .pv-social-card {
    flex: 0 0 calc(50% - 7px);
    scroll-snap-align: start;
    aspect-ratio: 9 / 16;
  }
}

/* =========================
CONTACT
========================= */

.pv-contact {
  background: #f0f5fb;
  padding: 90px 0 80px;
}

.pv-contact__container {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

.pv-contact__intro {
  text-align: center;
  margin-bottom: 50px;
}

.pv-contact__eyebrow {
  margin: 0 0 8px;
  font-family: "Anton", sans-serif;
  font-size: clamp(20px, 1.8vw, 34px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #3c7ccc;
}

.pv-contact__title {
  margin: 0 0 16px;
  font-family: "Anton", sans-serif;
  font-size: clamp(36px, 4vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #2d394a;
}

.pv-contact__lead {
  margin: 0 auto;
  max-width: 680px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  color: #4a5a6a;
}

.pv-contact__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: start;
}

.pv-contact__form-shell {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(45, 57, 74, 0.08);
  min-height: 200px;
}

.pv-contact__info-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(45, 57, 74, 0.08);
}

.pv-contact__info-title {
  margin: 0 0 18px;
  font-family: "Anton", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2d394a;
}

.pv-contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.pv-contact__info-link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #3c7ccc;
  text-decoration: none;
  transition: color 180ms ease;
}

.pv-contact__info-link:hover {
  color: #2d394a;
}

.pv-contact__map-wrap {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
}

.pv-contact__map {
  width: 100%;
  height: auto;
  display: block;
}

.pv-contact__service-area-title {
  margin: 0 0 4px;
  font-family: "Anton", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3c7ccc;
}

.pv-contact__service-area-text {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #2d394a;
  font-weight: 700;
}

@media (max-width: 980px) {
  .pv-contact {
    padding: 70px 0 64px;
  }

  .pv-contact__container {
    width: min(100% - 24px, 1240px);
  }

  .pv-contact__intro {
    margin-bottom: 36px;
  }

  .pv-contact__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* =========================
BANNIÈRE CTA
========================= */

.pv-cta-banner {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.pv-cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pv-cta-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center 70%;
}

.pv-cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(45, 57, 74, 0.65) 0%,
    rgba(45, 57, 74, 0.40) 55%,
    rgba(45, 57, 74, 0.20) 100%
  );
}

.pv-cta-banner__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  padding: 80px 0;
}

.pv-cta-banner__content {
  max-width: 660px;
}

.pv-cta-banner__title {
  margin: 0 0 18px;
  font-family: "Anton", sans-serif;
  font-size: clamp(38px, 4.5vw, 76px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
}

.pv-cta-banner__subtitle {
  margin: 0 0 32px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.pv-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Anton", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  background: #3c7ccc;
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(60, 124, 204, 0.38);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.pv-cta-banner__btn:hover,
.pv-cta-banner__btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(60, 124, 204, 0.46);
  filter: brightness(1.08);
}

@media (max-width: 905px) {
  .pv-cta-banner {
    min-height: 48vh;
  }

  .pv-cta-banner__inner {
    width: min(100% - 24px, 1200px);
  }

  .pv-cta-banner__subtitle {
    font-size: 16px;
  }

  .pv-cta-banner__btn {
    min-height: 50px;
    padding: 0 24px;
    font-size: 0.98rem;
  }
}

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

.pv-footer {
  background: #2d394a;
  color: #ffffff;
  padding: 70px 0 24px;
}

.pv-footer__inner {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.pv-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.pv-footer__logo {
  max-width: 220px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.pv-footer__brand-text {
  margin: 0;
  max-width: 280px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}

.pv-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.pv-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Anton", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: #3c7ccc;
  transition: transform 180ms ease, filter 180ms ease;
}

.pv-footer__social:hover,
.pv-footer__social:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.pv-footer__heading {
  margin: 0 0 16px;
  font-family: "Anton", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #5b9de8;
}

.pv-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pv-footer__link,
.pv-footer__text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
}

.pv-footer__link:hover,
.pv-footer__link:focus-visible {
  color: #5b9de8;
}

.pv-footer__bottom {
  margin-top: 42px;
}

.pv-footer__line {
  height: 1px;
  background: rgba(255,255,255,0.14);
  margin-bottom: 16px;
}

.pv-footer__copyright {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.60);
}

@media (max-width: 980px) {
  .pv-footer {
    padding: 54px 0 24px;
  }

  .pv-footer__inner {
    width: min(100% - 24px, 1200px);
  }

  .pv-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pv-footer__brand-text {
    max-width: 100%;
  }

  .pv-footer__socials {
    margin-top: 16px;
  }

  .pv-footer__bottom {
    margin-top: 30px;
  }

  .pv-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pv-footer__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .pv-footer__brand-text {
    max-width: 300px;
  }

  .pv-footer__socials {
    justify-content: center;
  }
}

/* =========================
POPUP SOUMISSION
========================= */

.pv-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.pv-popup[hidden] {
  display: none;
}

.pv-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 57, 74, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.pv-popup__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  background: #ffffff;
  border-radius: 28px;
  padding: 40px 36px 36px;
  box-shadow: 0 24px 60px rgba(45, 57, 74, 0.24);
  box-sizing: border-box;
  max-height: 90dvh;
  overflow-y: auto;
  animation: pvPopupIn 220ms cubic-bezier(0.34, 1.3, 0.64, 1) both;
}

@keyframes pvPopupIn {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.pv-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: none;
  background: rgba(45, 57, 74, 0.07);
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.pv-popup__close:hover {
  background: rgba(45, 57, 74, 0.14);
  transform: scale(1.08);
}

.pv-popup__close svg {
  width: 16px;
  height: 16px;
  color: #2d394a;
}

.pv-popup__eyebrow {
  margin: 0 0 6px;
  font-family: "Anton", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3c7ccc;
}

.pv-popup__title {
  margin: 0 0 10px;
  font-family: "Anton", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #2d394a;
}

.pv-popup__lead {
  margin: 0 0 26px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #4a5a6a;
}

.pv-popup__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.pv-popup__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pv-popup__label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2d394a;
}

.pv-popup__input {
  width: 100%;
  min-height: 50px;
  border: 1.5px solid rgba(45, 57, 74, 0.16);
  border-radius: 14px;
  background: #f0f5fb;
  padding: 0 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #2d394a;
  outline: none;
  box-sizing: border-box;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.pv-popup__input::placeholder { color: #8a98aa; }

.pv-popup__input:focus {
  border-color: #3c7ccc;
  box-shadow: 0 0 0 3px rgba(60, 124, 204, 0.18);
  background: #fff;
}

.pv-popup__input.pv-invalid {
  border-color: #e05c5c;
  box-shadow: 0 0 0 3px rgba(224, 92, 92, 0.14);
}

.pv-popup__error {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #c0392b;
  margin-bottom: 12px;
}

.pv-popup__btn {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 999px;
  background: #3c7ccc;
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(60, 124, 204, 0.30);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, opacity 180ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pv-popup__btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(60, 124, 204, 0.40);
  filter: brightness(1.08);
}

.pv-popup__btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.pv-popup__btn-spinner svg {
  width: 20px;
  height: 20px;
  animation: pvSpin 0.8s linear infinite;
}

@keyframes pvSpin {
  to { transform: rotate(360deg); }
}

.pv-popup__success {
  text-align: center;
  padding: 20px 0 10px;
}

.pv-popup__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(60, 124, 204, 0.12);
  border: 2px solid #3c7ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #3c7ccc;
  margin: 0 auto 18px;
}

.pv-popup__success-title {
  margin: 0 0 8px;
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  color: #2d394a;
}

.pv-popup__success-text {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #4a5a6a;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .pv-popup__panel {
    padding: 32px 20px 28px;
    border-radius: 22px;
  }

  .pv-popup__fields {
    grid-template-columns: 1fr;
  }
}

.pac-container {
  z-index: 999999999 !important;
}

/* =========================
H2O ÉQUIPE
========================= */

.h2o-team {
  background: #ffffff;
  padding: 90px 0 80px;
}

.h2o-team__container {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

.h2o-team__header {
  text-align: center;
  margin-bottom: 52px;
}

.h2o-team__eyebrow {
  margin: 0 0 8px;
  font-family: "Anton", sans-serif;
  font-size: clamp(22px, 2vw, 36px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #3c7ccc;
}

.h2o-team__title {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(34px, 3.8vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #2d394a;
}

.h2o-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  justify-items: center;
}

.h2o-team__card {
  width: 100%;
  max-width: 340px;
  text-align: center;
}

.h2o-team__media {
  background: #dce8f7;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(60, 124, 204, 0.20);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.h2o-team__card:hover .h2o-team__media {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(45, 57, 74, 0.12);
}

.h2o-team__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 260ms ease;
}

.h2o-team__card:hover .h2o-team__img {
  transform: scale(1.03);
}

.h2o-team__meta {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.h2o-team__name {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2d394a;
}

.h2o-team__sep {
  color: #3c7ccc;
  font-size: 1.1rem;
  line-height: 1;
}

.h2o-team__role {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #3c7ccc;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 905px) {
  .h2o-team {
    padding: 64px 0 60px;
  }

  .h2o-team__container {
    width: min(100% - 24px, 1240px);
  }

  .h2o-team__header {
    margin-bottom: 32px;
  }

  .h2o-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .h2o-team__card {
    max-width: 100%;
  }

  .h2o-team__media {
    border-radius: 16px;
  }

  .h2o-team__name {
    font-size: 1rem;
  }

  .h2o-team__role {
    font-size: 0.82rem;
  }
}

/* =========================
H2O COMMENT ÇA MARCHE (STEPS)
========================= */

.h2o-steps {
  background: #f0f5fb;
  padding: 90px 0 80px;
}

.h2o-steps__inner {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.h2o-steps__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}

.h2o-steps__eyebrow {
  margin: 0 0 10px;
  font-family: "Anton", sans-serif;
  font-size: clamp(22px, 2vw, 36px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #3c7ccc;
}

.h2o-steps__title {
  margin: 0 0 44px;
  font-family: "Anton", sans-serif;
  font-size: clamp(34px, 3.8vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #2d394a;
}

.h2o-steps__list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.h2o-steps__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.h2o-steps__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #3c7ccc;
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 6px 16px rgba(60, 124, 204, 0.28);
}

.h2o-steps__content {
  flex: 1;
}

.h2o-steps__item-title {
  display: block;
  font-family: "Anton", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2d394a;
  margin-bottom: 6px;
}

.h2o-steps__item-text {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #4a5a6a;
}

.h2o-steps__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Anton", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: #3c7ccc;
  box-shadow: 0 10px 24px rgba(60, 124, 204, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.h2o-steps__btn:hover,
.h2o-steps__btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(60, 124, 204, 0.38);
  filter: brightness(1.08);
}

.h2o-steps__right {
  display: flex;
  justify-content: center;
}

.h2o-steps__img-wrap {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid #3c7ccc;
  box-shadow: 0 20px 50px rgba(45, 57, 74, 0.14);
}

.h2o-steps__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 5;
}

@media (max-width: 980px) {
  .h2o-steps {
    padding: 70px 0 64px;
  }

  .h2o-steps__inner {
    width: min(100% - 24px, 1200px);
  }

  .h2o-steps__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .h2o-steps__title {
    margin-bottom: 32px;
  }

  .h2o-steps__right {
    order: -1;
  }

  .h2o-steps__img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .h2o-steps__img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 600px) {
  .h2o-steps__num {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .h2o-steps__item-title {
    font-size: 1rem;
  }

  .h2o-steps__item-text {
    font-size: 14px;
  }
}

/* =========================
FOOTER 5 COLONNES
========================= */

.pv-footer__grid--5col {
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
}

@media (max-width: 980px) {
  .pv-footer__grid--5col {
    grid-template-columns: 1fr;
  }
}

/* =========================
HEADER LIEN ACTIF
========================= */

.pv-header__link--active {
  color: #5b9de8;
}

/* =========================
ABOUT — HERO
========================= */

.h2o-about-hero {
  position: relative;
  min-height: 60dvh;
  height: 100dvh;
  overflow: hidden;
  background: #2d394a;
}

.h2o-about-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 86dvh;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  padding: 0 clamp(20px, 5vw, 80px) 60px;
  justify-content: flex-end;
  padding-top: 20px;
  padding-bottom: 200px;
}

.h2o-about-hero__eyebrow {
  margin: 0 0 12px;
  font-family: "Anton", sans-serif;
  font-size: clamp(20px, 2vw, 34px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #5b9de8;
}

.h2o-about-hero__title {
  margin: 0 0 20px;
  font-family: "Anton", sans-serif;
  font-size: clamp(46px, 6vw, 96px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
}

.h2o-about-hero__lead {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.4;
  color: rgba(255,255,255,0.80);
}

@media (max-width: 905px) {
  .h2o-about-hero {
    height: auto;
    overflow: hidden;
    max-height: 50dvh;
    background-position: center 15%;
  }

  .h2o-about-hero__inner {
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    padding: 10px 18px 80px;
  }
}

/* =========================
ABOUT — HISTOIRE
========================= */

.h2o-story {
  background: #ffffff;
  padding: 90px 0 80px;
}

.h2o-story__inner {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.h2o-story__grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 72px;
  align-items: center;
}

.h2o-story__photos {
  position: relative;
  height: 560px;
}

.h2o-story__photo-wrap {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid #3c7ccc;
  box-shadow: 0 16px 40px rgba(45, 57, 74, 0.16);
}

.h2o-story__photo-wrap--front {
  width: 58%;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.h2o-story__photo-wrap--back {
  width: 58%;
  top: 0;
  right: 0;
  z-index: 1;
}

.h2o-story__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  aspect-ratio: 4 / 5;
}

.h2o-story__eyebrow {
  margin: 0 0 10px;
  font-family: "Anton", sans-serif;
  font-size: clamp(20px, 1.8vw, 32px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #3c7ccc;
}

.h2o-story__title {
  margin: 0 0 30px;
  font-family: "Anton", sans-serif;
  font-size: clamp(28px, 3vw, 52px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #2d394a;
}

.h2o-story__body {
  margin-bottom: 36px;
}

.h2o-story__body p {
  margin: 0 0 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #4a5a6a;
}

.h2o-story__body p:last-child {
  margin-bottom: 0;
}

.h2o-story__body em {
  font-style: italic;
  color: #2d394a;
  font-weight: 600;
}

.h2o-story__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Anton", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: #3c7ccc;
  box-shadow: 0 10px 24px rgba(60, 124, 204, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.h2o-story__btn:hover,
.h2o-story__btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(60, 124, 204, 0.38);
  filter: brightness(1.08);
}

@media (max-width: 980px) {
  .h2o-story {
    padding: 70px 0 60px;
  }

  .h2o-story__inner {
    width: min(100% - 24px, 1200px);
  }

  .h2o-story__grid {
    grid-template-columns: 1fr;
  }

  .h2o-story__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: auto;
  }

  .h2o-story__photo-wrap {
    position: relative;
    width: 100%;
  }

  .h2o-story__photo-wrap--back,
  .h2o-story__photo-wrap--front {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .h2o-story__photos {
    height: 300px;
  }
}

/* =========================
PAGES VILLE — SECTION SEO
========================= */

.h2o-ville-seo {
  background: #ffffff;
  padding: 90px 0 80px;
}

.h2o-ville-seo__inner {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.h2o-ville-seo__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}

.h2o-ville-seo__eyebrow {
  margin: 0 0 10px;
  font-family: "Anton", sans-serif;
  font-size: clamp(20px, 1.8vw, 32px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #3c7ccc;
}

.h2o-ville-seo__title {
  margin: 0 0 26px;
  font-family: "Anton", sans-serif;
  font-size: clamp(28px, 3.2vw, 56px);
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #2d394a;
}

.h2o-ville-seo__body {
  margin: 0 0 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #4a5a6a;
}

.h2o-ville-seo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Anton", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: #3c7ccc;
  box-shadow: 0 10px 24px rgba(60, 124, 204, 0.28);
  margin-top: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.h2o-ville-seo__btn:hover,
.h2o-ville-seo__btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(60, 124, 204, 0.38);
  filter: brightness(1.08);
}

.h2o-ville-seo__img-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid #3c7ccc;
  box-shadow: 0 16px 40px rgba(45, 57, 74, 0.14);
}

.h2o-ville-seo__img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (max-width: 980px) {
  .h2o-ville-seo {
    padding: 70px 0 60px;
  }

  .h2o-ville-seo__inner {
    width: min(100% - 24px, 1200px);
  }

  .h2o-ville-seo__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .h2o-ville-seo__img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .h2o-ville-seo__img {
    aspect-ratio: 4 / 3;
  }
}

/* =========================
H2O FAQ ACCORDION
========================= */

.h2o-faq {
  background: #f0f5fb;
  padding: 90px 0 80px;
}

.h2o-faq__inner {
  width: min(100% - 40px, 860px);
  margin: 0 auto;
}

.h2o-faq__header {
  text-align: center;
  margin-bottom: 52px;
}

.h2o-faq__eyebrow {
  margin: 0 0 8px;
  font-family: "Anton", sans-serif;
  font-size: clamp(20px, 2vw, 34px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #3c7ccc;
}

.h2o-faq__title {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(34px, 4vw, 66px);
  line-height: 0.95;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #2d394a;
}

.h2o-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(45, 57, 74, 0.10);
}

.h2o-faq__item {
  background: #ffffff;
  border-bottom: 1px solid rgba(45, 57, 74, 0.08);
}

.h2o-faq__item:last-child {
  border-bottom: none;
}

.h2o-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Anton", sans-serif;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: 0.01em;
  color: #2d394a;
  transition: color 180ms ease, background 180ms ease;
}

.h2o-faq__question:hover {
  background: #f7faff;
}

.h2o-faq__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #3c7ccc;
  display: grid;
  place-items: center;
  transition: background 180ms ease;
}

.h2o-faq__icon svg {
  width: 16px;
  height: 16px;
  display: block;
  transition: transform 260ms cubic-bezier(0.34, 1.3, 0.64, 1);
}

.h2o-faq__question[aria-expanded="true"] .h2o-faq__icon {
  background: #2d394a;
}

.h2o-faq__question[aria-expanded="true"] .h2o-faq__icon svg {
  transform: rotate(180deg);
}

.h2o-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 320ms ease;
}

.h2o-faq__answer.is-open {
  max-height: 600px;
}

.h2o-faq__answer > p {
  margin: 0;
  padding: 0 28px 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #4a5a6a;
}

@media (max-width: 905px) {
  .h2o-faq {
    padding: 64px 0 60px;
  }

  .h2o-faq__inner {
    width: min(100% - 24px, 860px);
  }

  .h2o-faq__header {
    margin-bottom: 32px;
  }

  .h2o-faq__question {
    padding: 18px 20px;
    font-size: 15px;
  }

  .h2o-faq__answer > p {
    padding: 0 20px 18px;
    font-size: 14px;
  }

  .h2o-faq__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
}

/* =========================
PAGE CONTACT
========================= */

.h2o-contact-page {
  background: #f0f5fb;
  padding: 150px 0 90px;
  min-height: 100dvh;
  box-sizing: border-box;
}

.h2o-contact-page__inner {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.h2o-contact-page__header {
  text-align: center;
  margin-bottom: 56px;
}

.h2o-contact-page__eyebrow {
  margin: 0 0 8px;
  font-family: "Anton", sans-serif;
  font-size: clamp(20px, 2vw, 34px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #3c7ccc;
}

.h2o-contact-page__title {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(46px, 6vw, 96px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #2d394a;
}

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

/* Gauche : carte + infos */
.h2o-contact-page__map-wrap {
  margin-bottom: 28px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45, 57, 74, 0.10);
}

.h2o-contact-page__info-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h2o-contact-page__info-block {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(45, 57, 74, 0.10);
}

.h2o-contact-page__info-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.h2o-contact-page__info-label {
  margin: 0 0 6px;
  font-family: "Anton", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3c7ccc;
}

.h2o-contact-page__info-value {
  margin: 0 0 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2d394a;
  text-decoration: none;
  display: block;
  transition: color 180ms ease;
}

a.h2o-contact-page__info-value:hover {
  color: #3c7ccc;
}

/* Droite : formulaire */
.h2o-contact-page__form {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 32px;
  box-shadow: 0 8px 28px rgba(45, 57, 74, 0.10);
}

.h2o-contact-page__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.h2o-contact-page__field--full {
  grid-column: 1 / -1;
}

.h2o-contact-page__input {
  width: 100%;
  min-height: 50px;
  border: 1.5px solid rgba(45, 57, 74, 0.14);
  border-radius: 14px;
  background: #f0f5fb;
  padding: 0 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #2d394a;
  outline: none;
  box-sizing: border-box;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.h2o-contact-page__input::placeholder {
  color: #8a98aa;
}

.h2o-contact-page__input:focus {
  border-color: #3c7ccc;
  box-shadow: 0 0 0 3px rgba(60, 124, 204, 0.16);
  background: #ffffff;
}

.h2o-contact-page__textarea {
  min-height: 130px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.5;
}

.h2o-contact-page__error {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #c0392b;
  margin-bottom: 12px;
}

.h2o-contact-page__submit {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 999px;
  background: #3c7ccc;
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(60, 124, 204, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, opacity 180ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.h2o-contact-page__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(60, 124, 204, 0.38);
  filter: brightness(1.08);
}

.h2o-contact-page__submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.h2o-contact-page__submit-spinner svg {
  width: 20px;
  height: 20px;
  animation: pvSpin 0.8s linear infinite;
}

.h2o-contact-page__success {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(45, 57, 74, 0.10);
}

.h2o-contact-page__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(60, 124, 204, 0.12);
  border: 2px solid #3c7ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #3c7ccc;
  margin: 0 auto 18px;
}

.h2o-contact-page__success-title {
  margin: 0 0 8px;
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  color: #2d394a;
}

.h2o-contact-page__success-text {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #4a5a6a;
  line-height: 1.5;
}

@media (max-width: 905px) {
  .h2o-contact-page {
    padding: 120px 0 70px;
  }

  .h2o-contact-page__inner {
    width: min(100% - 24px, 1200px);
  }

  .h2o-contact-page__header {
    margin-bottom: 36px;
  }

  .h2o-contact-page__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .h2o-contact-page__form {
    padding: 24px 20px;
  }

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