:root {
  --pv-cyan: #01FFF1;
  --pv-navy: #053353;
  --pv-white: #ffffff;
  --pv-glass: rgba(5, 51, 83, 0.22);
  --pv-border: rgba(255, 255, 255, 0.14);
  --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;
}

.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);
  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);
  border-color: var(--pv-cyan);
  transform: translateY(-2px);
}

.pv-header__cta {
  background: var(--pv-cyan);
  color: var(--pv-navy);
  box-shadow: 0 8px 18px rgba(1, 255, 241, 0.25);
}

.pv-header__cta:hover,
.pv-header__cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 10px 22px rgba(1, 255, 241, 0.35);
}

.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(5, 51, 83, 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:#053353;
  color:#01FFF1;
}

.pv-header__drawer-btn--quote {
  color: var(--pv-navy);
  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);
  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(5, 51, 83, 0.45);
    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: #053353;
  }

  .pv-header__drawer-panel {
    position: fixed;
    inset: 0;
    width: auto;
    height: fit-content;
    max-height: 85dvh;
    border-radius: 30px;
    max-width: none;
    background: #dffefd;
    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: #01FFF1;
    color: #053353;
  }

  .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: #053353;
    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: #01FFF1;
  }
}

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

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

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

.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__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
  to bottom,
  rgba(0,0,0,0.25),
  rgba(0,0,0,0.35)
);
  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{
  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__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-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: #01FFF1;
  color: #053353;
  box-shadow: 0 10px 26px rgba(1,255,241,0.22);
}

.pv-btn-primary:hover,
.pv-btn-primary:focus-visible{
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(1,255,241,0.30);
  filter: brightness(1.03);
}

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

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

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

@media (max-width: 905px){

  .pv-hero{
    min-height: 75vh;
  }

  .pv-hero__inner{
    min-height: 75vh;
    display: flex;
    align-items: center; /* ✅ centre vertical */
    padding: 110px 18px 60px;

    /* ❌ PAS de center horizontal */
    justify-content: flex-start;
    text-align: left;
  }

  .pv-hero__left{
    max-width: 100%;
    margin: 0; /* ❌ enlève le centrage */
  }

  .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; /* ❌ pas centré */
  }
}

/* =========================
PROVITRO FOUNDERS
========================= */

.pv-founders{
  height: 100vh;
  display: flex;
  align-items: center;
  background: #f6f8fa;
  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: #01FFF1;
}

.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: #053353;
}

.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 #01FFF1;
}

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

.pv-founder-card__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 51, 83, 0.08) 0%,
    rgba(5, 51, 83, 0.02) 30%,
    rgba(5, 51, 83, 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;
    max-height: none;
  }

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

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

.pv-reviews-marquee{
  --pv-reviews-speed: 50s;
  background: #ececec;
  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: #01FFF1;
  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: #053353;
}

.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;
}

@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(5, 51, 83, 0.08);
}

.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: #053353;
}

.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;
  }
}

/* =========================
PROVITRO PACKAGES
========================= */

.pv-packages{
  background: #f6f8fa;
  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: #01FFF1;
}

.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: #053353;
}

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

.pv-package-card{
  background: #f6f8fa;
  border: 2px solid rgba(1, 255, 241, 0.75);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(5, 51, 83, 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(5, 51, 83, 0.12);
  border-color: #01FFF1;
}

.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: #01FFF1;
}

.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: #053353;
}

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

.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: #053353;
  background: #01FFF1;
  box-shadow: 0 10px 24px rgba(1, 255, 241, 0.22);
  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(1, 255, 241, 0.30);
  filter: brightness(1.03);
}

@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;
  }
}

/* =========================
PROVITRO SOCIAL
========================= */

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

.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: #01FFF1;
}

.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: #053353;
}

.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: none;
  background: transparent;
  color: #01FFF1;
  font-size: 54px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.pv-social__nav:hover,
.pv-social__nav:focus-visible{
  transform: scale(1.08);
  opacity: 0.85;
}

.pv-social-card__video-wrap{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 2px solid #01FFF1;
  box-shadow: 0 12px 28px rgba(5, 51, 83, 0.10);
  aspect-ratio: 0.64 / 1;
  cursor: pointer;
}

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

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

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

.pv-social-card.active .pv-social-card__img,
.pv-social-card.active .pv-social-card__overlay,
.pv-social-card.active .pv-social-card__play,
.pv-social-card.active .pv-social-card__content{
  display: none;
}

.pv-social-card__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 51, 83, 0.06) 0%,
    rgba(5, 51, 83, 0.02) 28%,
    rgba(5, 51, 83, 0.18) 100%
  );
  pointer-events: none;
}

.pv-social-card__content{
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
}

.pv-social-card__play{
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(5, 51, 83, 0.15);
  pointer-events: none;
  transition: transform 180ms ease;
}

.pv-social-card__icon{
  width: 36px;
  height: 36px;
  fill: #01FFF1;
  transform: translateX(2px);
}

.pv-social-card__video-wrap:hover .pv-social-card__img,
.pv-social-card__video-wrap:focus-within .pv-social-card__img{
  transform: scale(1.03);
}

.pv-social-card__video-wrap:hover .pv-social-card__play,
.pv-social-card__video-wrap:focus-within .pv-social-card__play{
  transform: scale(1.05);
}


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

  .pv-social__container{
    width: 100%;
  }

  .pv-social__eyebrow{
    font-size: clamp(18px, 6vw, 28px);
    margin-bottom: 6px;
    padding: 0 16px;
  }

  .pv-social__title{
    font-size: clamp(34px, 11vw, 52px);
    margin-bottom: 22px;
    padding: 0 16px;
  }

  .pv-social__slider-wrap{
    display: block;
  }

  .pv-social__nav{
    display: none;
  }

  .pv-social__track{
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px 8px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

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

  .pv-social-card{
    flex: 0 0 78%;
    scroll-snap-align: center;
  }

  .pv-social-card__video-wrap{
    border-radius: 18px;
    aspect-ratio: 0.66 / 1;
  }

  .pv-social-card__play{
    width: 62px;
    height: 62px;
  }

  .pv-social-card__icon{
    width: 30px;
    height: 30px;
  }
}

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

.pv-contact{
  background: #f6f8fa;
  padding: 100px 0 110px;
}

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

.pv-contact__intro{
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.pv-contact__eyebrow{
  margin: 0 0 10px;
  font-family: "Anton", sans-serif;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #01FFF1;
}

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

.pv-contact__lead{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #35506a;
}

.pv-contact__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.pv-contact__form-wrap,
.pv-contact__info-card{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(5, 51, 83, 0.08);
  border-radius: 28px;
  box-shadow: 0 12px 28px rgba(5, 51, 83, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pv-contact__form-wrap{
  padding: 30px;
}

.pv-contact__form{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.pv-contact__field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pv-contact__field--full{
  grid-column: 1 / -1;
}

.pv-contact__label{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #053353;
}

.pv-contact__input{
  width: 100%;
  min-height: 56px;
  border: 1.5px solid rgba(5, 51, 83, 0.16);
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  padding: 0 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #053353;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  box-sizing: border-box;
}

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

.pv-contact__input:focus{
  border-color: #01FFF1;
  box-shadow: 0 0 0 4px rgba(1, 255, 241, 0.14);
}

.pv-contact__select{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #053353 50%),
    linear-gradient(135deg, #053353 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 48px;
}

.pv-contact__textarea{
  min-height: 160px;
  padding: 16px 18px;
  resize: vertical;
}

.pv-contact__actions{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pv-contact__btn{
  border: none;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  background: #01FFF1;
  color: #053353;
  font-family: "Anton", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(1, 255, 241, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.pv-contact__btn:hover,
.pv-contact__btn:focus-visible{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(1, 255, 241, 0.30);
  filter: brightness(1.03);
}

.pv-contact__call{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #053353;
  text-decoration: none;
}

.pv-contact__call:hover,
.pv-contact__call:focus-visible{
  color: #01FFF1;
}

.pv-contact__info-card{
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.pv-contact__service-area{
  margin-top: auto;
}

.pv-contact__form-wrap,
.pv-contact__info-card{
  box-sizing: border-box;
}

.pv-contact__info-title{
  margin: 0 0 18px;
  font-family: "Anton", sans-serif;
  font-size: clamp(28px, 2.4vw, 44px);
  line-height: 0.95;
  text-transform: uppercase;
  color: #053353;
}

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

.pv-contact__info-link{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: #35506a;
  text-decoration: none;
}

.pv-contact__info-link:hover,
.pv-contact__info-link:focus-visible{
  color: #01FFF1;
}

.pv-contact__map-wrap{
  display: flex;
  justify-content: center;
  margin: 10px 0 20px;
}

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

.pv-contact__service-area{
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(1,255,241,0.12), rgba(1,255,241,0.04));
  border: 1px solid rgba(1,255,241,0.22);
  padding: 18px 20px;
}

.pv-contact__service-area-title{
  margin: 0 0 6px;
  font-family: "Anton", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #053353;
}

.pv-contact__service-area-text{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #35506a;
}

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

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

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

  .pv-contact__form-wrap,
  .pv-contact__info-card{
    padding: 22px;
    border-radius: 22px;
  }

  .pv-contact__fields{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pv-contact__lead{
    font-size: 16px;
  }

  .pv-contact__info-link{
    font-size: 18px;
  }

  .pv-contact__map{
    max-width: 280px;
  }
}

/* =========================
PROVITRO CTA BANNER
========================= */

.pv-cta-banner{
  position: relative;
  min-height: 62vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: 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;
}

.pv-cta-banner__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* on met le gradient seulement en bas */
.pv-cta-banner__overlay::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 280px; /* ajuste si besoin */
  
  background: linear-gradient(
    to bottom,
    rgba(5,51,83,0) 0%,
    rgba(5,51,83,0.25) 35%,
    rgba(5,51,83,0.6) 65%,
    #053353 100%
  );
}

.pv-cta-banner__inner{
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  text-align: center;
}

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

.pv-cta-banner__title{
  margin: 0 0 12px;
  font-family: "Anton", sans-serif;
  font-size: clamp(42px, 5vw, 84px);
  line-height: 0.95;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    0 4px 18px rgba(0,0,0,0.35),
    0 2px 6px rgba(0,0,0,0.25);
}

.pv-cta-banner__subtitle{
  margin: 0 0 26px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.35;
  color: rgba(255,255,255,0.92);
  text-shadow:
    0 2px 10px rgba(0,0,0,0.3);
}

.pv-cta-banner__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Anton", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #053353;
  background: #01FFF1;
  box-shadow: 0 12px 28px rgba(1,255,241,0.24);
  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 16px 34px rgba(1,255,241,0.32);
  filter: brightness(1.03);
}

@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;
  }
}

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

.pv-footer{
  background: #053353;
  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: #053353;
  background: #01FFF1;
  transition: transform 180ms ease, filter 180ms ease;
}

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

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

.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: #01FFF1;
}

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

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

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

@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;
  }

}

