/* ============ RESET ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--nuit);
  color: var(--encre);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
}

/* ============ VARIABLES ============ */
:root {
  --bleu: #0E8A94;
  --bleu-logo: #5CB8C4;
  --bleu-profond: #0B6E76;
  --encre: #0F172A;
  --ardoise: #334155;
  --gris: #64748B;
  --gris-clair: #94A3B8;
  --fond: #F5F9FB;
  --blanc: #fff;
  --ambre: #E8A23A;
  --lavande: #C4A0D4;
  --sable: #E8D5C4;
  --nuit: #0B1120;
  --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-micro: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur-slow: 900ms;
  --dur-base: 500ms;
  --dur-fast: 250ms;
  --radius-xl: clamp(1.5rem, 2.5vw, 2.5rem);
}

/* ============ BASE ============ */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

/* ============ LAYOUT ============ */
.section {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.section-light {
  background: rgba(245, 249, 251, 0.92);
}

.section-white {
  background: rgba(255, 255, 255, 0.94);
}

.section-dark {
  background: rgba(11, 17, 32, 0.95);
  color: #fff;
}

.section-photo {
  position: relative;
}

.section-photo .sec-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.section-photo .sec-bg-ov {
  position: absolute;
  inset: 0;
}

.section-photo .sinner {
  position: relative;
  z-index: 2;
}

.spad {
  padding: clamp(60px, 10vw, 120px) clamp(20px, 4vw, 48px);
}

.spad--compact {
  padding-top: clamp(40px, 6vw, 60px);
  padding-bottom: clamp(20px, 3vw, 40px);
}

.sinner {
  max-width: 1120px;
  margin: 0 auto;
}

.slabel {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bleu);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slabel::before {
  content: '';
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--bleu), var(--bleu-logo));
  border-radius: 1px;
}

h2 {
  font-family: 'Space Grotesk';
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.ssub {
  font-size: 16px;
  color: var(--gris);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 520px;
}

/* ============ ANIMATIONS ============ */
/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--nuit);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader.done {
  animation: loaderOut 0.9s var(--ease-reveal) forwards;
}

@keyframes loaderOut {
  to {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}

.loader-logo {
  width: 100px;
  height: 100px;
  opacity: 0;
  transform: translateY(24px) scale(0.9);
  animation: lIn 700ms var(--ease-reveal) 0.3s forwards;
  filter: drop-shadow(0 0 80px rgba(92, 184, 196, 0.25));
}

.loader-logo .ecg {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: ecgD 1.4s var(--ease-reveal) 0.9s forwards;
}

@keyframes ecgD {
  to {
    stroke-dashoffset: 0;
  }
}

.loader-name {
  margin-top: 22px;
  font-family: 'Space Grotesk';
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.3px;
  opacity: 0;
  animation: lIn 700ms var(--ease-reveal) 1.3s forwards;
}

.loader-sub {
  margin-top: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.22);
  opacity: 0;
  animation: lIn 700ms var(--ease-reveal) 1.7s forwards;
}

.loader-bar {
  width: 72px;
  height: 2px;
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--bleu), var(--bleu-logo));
  animation: barG 2.2s var(--ease-reveal) 0.3s forwards;
}

@keyframes barG {
  to {
    width: 100%;
  }
}

@keyframes lIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Reveal animations */
.rv {
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  transition: opacity 1s var(--ease-reveal), transform 1s var(--ease-reveal);
}

.rv.vis {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.rd1 {
  transition-delay: 0.08s;
}

.rd2 {
  transition-delay: 0.16s;
}

.rd3 {
  transition-delay: 0.24s;
}

.rd4 {
  transition-delay: 0.32s;
}

.rd5 {
  transition-delay: 0.4s;
}

.rd6 {
  transition-delay: 0.48s;
}

.rl {
  opacity: 0;
  transform: translateX(-70px) rotate(-2deg);
  transition: opacity 1s var(--ease-reveal), transform 1s var(--ease-reveal);
}

.rr {
  opacity: 0;
  transform: translateX(70px) rotate(2deg);
  transition: opacity 1s var(--ease-reveal), transform 1s var(--ease-reveal);
}

.rl.vis,
.rr.vis {
  opacity: 1;
  transform: translateX(0) rotate(0);
}

.rv:nth-child(2) {
  transition-delay: 0.1s;
}

.rv:nth-child(3) {
  transition-delay: 0.2s;
}

.rv:nth-child(4) {
  transition-delay: 0.3s;
}

/* ============ COMPONENTS ============ */

/* GRADIENT MESH BACKGROUND */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
  mix-blend-mode: screen;
}

.mb1 {
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(14, 138, 148, 0.14) 0%, rgba(92, 184, 196, 0.06) 50%, transparent 70%);
}

.mb2 {
  width: 50vw;
  height: 50vw;
  max-width: 700px;
  max-height: 700px;
  top: 25%;
  right: -15%;
  background: radial-gradient(circle, rgba(196, 160, 212, 0.1) 0%, rgba(196, 160, 212, 0.03) 50%, transparent 70%);
}

.mb3 {
  width: 55vw;
  height: 55vw;
  max-width: 750px;
  max-height: 750px;
  top: 55%;
  left: -5%;
  background: radial-gradient(circle, rgba(232, 213, 196, 0.08) 0%, rgba(232, 162, 58, 0.03) 50%, transparent 70%);
}

.mb4 {
  width: 45vw;
  height: 45vw;
  max-width: 600px;
  max-height: 600px;
  top: 80%;
  right: 5%;
  background: radial-gradient(circle, rgba(14, 138, 148, 0.1) 0%, transparent 60%);
}

/* Noise */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.022;
}

.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* Progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 1002;
  background: linear-gradient(90deg, var(--bleu), var(--bleu-logo), var(--lavande));
  width: 0%;
  transform-origin: left;
}

/* ECG trace */
.ecg-trace {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
}

.ecg-trace svg {
  width: 200%;
  height: 100%;
  will-change: transform;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(20px, 3vw, 40px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  will-change: background-color;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.header.scrolled {
  background: rgba(11, 17, 32, 0.94);
  border-bottom: 1px solid rgba(92, 184, 196, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo svg {
  width: 36px;
  height: 36px;
}

.header-logo-text {
  font-family: 'Space Grotesk';
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.header-logo-text span {
  color: var(--bleu-logo);
}

.header-nav {
  display: flex;
  gap: 28px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s var(--ease-micro), opacity 0.3s var(--ease-micro);
  position: relative;
  padding-bottom: 4px;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #5CB8C4;
  border-radius: 1px;
  transition: width 0.35s var(--ease-reveal), left 0.35s var(--ease-reveal);
}

.header-nav a:hover {
  color: #fff;
}

.header-nav a.active {
  color: #fff;
  font-weight: 600;
}

.header-nav a.active::after {
  width: 100%;
  left: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk';
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--bleu);
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: -0.2px;
}

.header-cta:hover {
  background: var(--bleu-profond);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14, 138, 148, 0.35);
}

.header-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-form-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk';
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.header-form-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.header-form-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Mobile hamburger menu */
.header-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.header-burger span {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1px;
  transition: all 0.3s var(--ease-micro);
}

.header-burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(12px);
}

.header-burger.active span:nth-child(2) {
  opacity: 0;
}

.header-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(11, 17, 32, 0.97);
  backdrop-filter: blur(10px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 100px 24px 24px;
  opacity: 0;
  transition: opacity 0.3s var(--ease-micro);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  z-index: 100;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 102;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 36px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-menu__close:hover {
  color: #fff;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--bleu-logo);
}

.mobile-menu a.active {
  color: #fff;
  position: relative;
}

.mobile-menu a.active::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: var(--bleu-logo);
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk';
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--bleu);
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 16px;
}

.mobile-menu__cta:hover {
  background: var(--bleu-profond);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 138, 148, 0.35);
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1584515933487-779824d29309?w=1920&q=80&auto=format&fit=crop') center / cover no-repeat;
  will-change: transform;
}

.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.65) 0%, rgba(11, 17, 32, 0.78) 40%, rgba(11, 17, 32, 0.88) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.ho1 {
  width: 500px;
  height: 500px;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(14, 138, 148, 0.15), transparent 70%);
}

.ho2 {
  width: 400px;
  height: 400px;
  bottom: 5%;
  left: -8%;
  background: radial-gradient(circle, rgba(196, 160, 212, 0.1), transparent 70%);
}

.hero-center {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}

.hero-logo-mark {
  width: 96px;
  height: 96px;
  filter: drop-shadow(0 0 50px rgba(92, 184, 196, 0.3));
  opacity: 0;
  transform: scale(0.85);
  animation: heroIn 1s var(--ease-reveal) 2.6s forwards;
}

.hero-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  pointer-events: none;
}

.hr {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(92, 184, 196, 0.1);
}

.hr:nth-child(1) {
  inset: -24px;
  animation: rP 3.5s ease-out infinite;
}

.hr:nth-child(2) {
  inset: -52px;
  animation: rP 3.5s ease-out 1.2s infinite;
}

.hr:nth-child(3) {
  inset: -86px;
  animation: rP 3.5s ease-out 2.4s infinite;
}

@keyframes rP {
  0% {
    opacity: 0.3;
    transform: scale(0.92);
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero h1 {
  font-family: 'Space Grotesk';
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.8px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero h1 .hw {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s var(--ease-reveal) forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--bleu-logo);
  -webkit-text-fill-color: var(--bleu-logo);
  text-shadow: 0 0 40px rgba(92, 184, 196, 0.3);
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-reveal) 3.4s forwards;
}

.hero-sub strong {
  color: rgba(255, 255, 255, 0.75);
}

.hero-phone {
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-reveal) 3.55s forwards;
}

.hero-phone a {
  font-family: 'Space Grotesk';
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -1.5px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s;
}

.hero-phone a:hover {
  color: var(--bleu-logo);
  transform: scale(1.02);
}

.hero-phone a svg {
  width: clamp(26px, 4vw, 38px);
  height: clamp(26px, 4vw, 38px);
  color: var(--bleu-logo);
  flex-shrink: 0;
  animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
  0%, 100% {
    transform: rotate(0);
  }
  15% {
    transform: rotate(12deg);
  }
  30% {
    transform: rotate(-8deg);
  }
  45% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(0);
  }
}

.hero-phone-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 6px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-reveal) 3.7s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s var(--ease-micro);
}

.btn-primary {
  background: var(--bleu);
  color: #fff;
  box-shadow: 0 4px 24px rgba(14, 138, 148, 0.3);
}

.btn-primary:hover {
  background: var(--bleu-profond);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(14, 138, 148, 0.4);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost--discover {
  font-size: 13px;
  padding: 12px 22px;
  margin-top: 4px;
}

.btn-outline {
  color: var(--bleu);
  border: 1.5px solid var(--bleu);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(14, 138, 148, 0.06);
  transform: translateY(-2px);
}

.pres-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-notice {
  margin-top: 16px;
  margin-bottom: 40px;
  font-size: 13px;
  color: var(--ambre);
  background: rgba(232, 162, 58, 0.08);
  border: 1px solid rgba(232, 162, 58, 0.15);
  border-radius: 12px;
  padding: 12px 18px;
  line-height: 1.6;
}
.form-notice a {
  color: var(--ambre);
  font-weight: 600;
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  background: var(--bleu);
  color: #fff;
  box-shadow: 0 4px 24px rgba(14, 138, 148, 0.3);
  padding: 16px 30px;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease-micro);
}

.btn-submit:hover {
  background: var(--bleu-profond);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(14, 138, 148, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Scroll mouse */
.scroll-ind {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-reveal) 4s forwards;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: var(--bleu-logo);
  border-radius: 2px;
  animation: sW 2s ease-in-out infinite;
}

@keyframes sW {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(14px);
  }
}

.scroll-ind span {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
}

/* Decorative floating shapes */
.deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.deco-ring {
  border: 1.5px solid rgba(14, 138, 148, 0.08);
  background: transparent;
}

.deco-blob {
  filter: blur(60px);
}

.deco-dot {
  width: 6px;
  height: 6px;
  background: var(--bleu-logo);
  opacity: 0.15;
}

.deco-cross {
  width: 16px;
  height: 16px;
  opacity: 0.08;
}

.deco-cross::before,
.deco-cross::after {
  content: '';
  position: absolute;
  background: var(--bleu);
  border-radius: 1px;
}

.deco-cross::before {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.deco-cross::after {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.deco-ring {
  animation: decoFloat 8s ease-in-out infinite;
}

.deco-ring:nth-child(even) {
  animation-duration: 10s;
  animation-direction: reverse;
}

.deco-dot {
  animation: decoPulse 3s ease-in-out infinite;
}

.deco-dot:nth-child(even) {
  animation-delay: 1.5s;
}

@keyframes decoFloat {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  25% {
    transform: translateY(-20px) rotate(4deg);
  }
  75% {
    transform: translateY(10px) rotate(-2deg);
  }
}

@keyframes decoPulse {
  0%, 100% {
    opacity: 0.12;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.6);
  }
}

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

.kp {
  background: #fff;
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px) 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-reveal);
  transform-style: preserve-3d;
}

.kp:hover {
  transform: translateY(-6px) rotateX(3deg);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.06);
}

.kp::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bleu), var(--bleu-logo));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-reveal);
}

.kp:hover::after {
  transform: scaleX(1);
}

.kp::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14, 138, 148, 0.04), rgba(92, 184, 196, 0.02));
  transition: transform 0.5s var(--ease-reveal);
}

.kp:hover::before {
  transform: scale(1.4);
}

.kp-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(14, 138, 148, 0.1), rgba(92, 184, 196, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-reveal);
}

.kp-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--bleu);
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kp:hover .kp-icon {
  transform: scale(1.15) rotate(-6deg);
}

.kp h3 {
  font-family: 'Space Grotesk';
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}

.kp p {
  font-size: 13px;
  color: var(--gris);
  line-height: 1.5;
}

/* PRESENTATION */
.pres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.pres-img-wrap {
  position: relative;
}

.pres-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.pres-img img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
  transition: transform 0.1s linear;
}

.pres-img-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 138, 148, 0.08) 100%);
  pointer-events: none;
  border-radius: 20px;
}

.pres-float {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.pf1 {
  width: 120px;
  height: 120px;
  top: -40px;
  right: -40px;
  background: linear-gradient(135deg, rgba(14, 138, 148, 0.12), transparent);
  animation: floatA 6s ease-in-out infinite;
}

.pf2 {
  width: 80px;
  height: 80px;
  bottom: -20px;
  left: -30px;
  background: linear-gradient(135deg, rgba(196, 160, 212, 0.1), transparent);
  animation: floatA 5s ease-in-out 2s infinite;
}

@keyframes floatA {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.pres-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.pres-badge-num {
  font-family: 'Space Grotesk';
  font-size: 36px;
  font-weight: 700;
  color: var(--bleu);
  line-height: 1;
}

.pres-badge-txt {
  font-size: 12px;
  font-weight: 600;
  color: var(--ardoise);
  line-height: 1.3;
}

.pres-text p {
  font-size: 16px;
  color: var(--ardoise);
  line-height: 1.8;
  margin-bottom: 16px;
}

.pres-text strong {
  color: var(--encre);
  font-weight: 700;
}

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

.equipe-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(14, 138, 148, 0.04);
  transition: all 0.4s var(--ease-reveal);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.equipe-card:hover {
  transform: translateY(-6px) rotateY(-3deg);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.07);
}

.equipe-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bleu), var(--bleu-logo));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-reveal);
}

.equipe-card:hover::after {
  transform: scaleX(1);
}

.equipe-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(14, 138, 148, 0.1), rgba(92, 184, 196, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.5s var(--ease-reveal);
}

.equipe-card:hover .equipe-avatar {
  transform: scale(1.08);
}

.equipe-avatar::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px dashed rgba(14, 138, 148, 0.08);
  animation: spin 20s linear infinite;
}

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

.equipe-avatar svg {
  width: 36px;
  height: 36px;
  stroke: var(--bleu);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.equipe-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.equipe-card .role {
  font-size: 13px;
  color: var(--bleu);
  font-weight: 600;
  margin-bottom: 10px;
}

.equipe-card .exp {
  font-size: 13px;
  color: var(--gris);
  line-height: 1.65;
}

/* PRESTATIONS */
.prest-wrap {
  position: relative;
}

.prest-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.prest-deco-1 {
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(14, 138, 148, 0.05), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.prest-deco-2 {
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196, 160, 212, 0.04), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.prest-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.prest-group {
  display: flex;
  flex-direction: column;
}

.prest-group h3 {
  font-family: 'Space Grotesk';
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.prest-group h3 .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.prest-list {
  display: grid;
  grid-template-rows: auto;
  gap: 12px;
  flex: 1;
}

.prest-item {
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(14, 138, 148, 0.04);
  transition: all 0.35s var(--ease-reveal);
  position: relative;
  overflow: hidden;
  min-height: 140px;
}

.prest-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--bleu);
  transform: scaleY(0);
  transition: transform 0.35s var(--ease-reveal);
}

.prest-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.prest-item:hover::before {
  transform: scaleY(1);
}

.prest-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--bleu);
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.4s var(--ease-reveal);
}

.prest-item:hover svg {
  transform: scale(1.15) rotate(-5deg);
}

.prest-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: -0.2px;
}

.prest-item p {
  font-size: 13px;
  color: var(--gris);
  line-height: 1.55;
}

.prest-mention {
  margin-top: 24px;
  font-size: 13px;
  color: var(--gris-clair);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.prest-cta {
  margin-top: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* PRISE EN CHARGE */
.pec-wrap {
  position: relative;
  overflow: hidden;
}

.pec-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 138, 148, 0.06), transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
}

.pec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.pec-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid rgba(14, 138, 148, 0.04);
  transition: all 0.35s var(--ease-reveal);
}

.pec-card:hover {
  transform: translateY(-4px) rotateX(2deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.pec-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bleu), var(--bleu-logo));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-reveal);
}

.pec-card:hover .pec-icon {
  transform: rotate(-5deg) scale(1.08);
}

.pec-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pec-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pec-card p {
  font-size: 14px;
  color: var(--gris);
  line-height: 1.6;
}

/* ZONE */
.zone-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.zone-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  height: 420px;
  position: relative;
}

.zone-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.zone-map::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(14, 138, 148, 0.08);
  pointer-events: none;
}

.zone-details h3 {
  font-family: 'Space Grotesk';
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.zone-addr {
  font-size: 16px;
  color: var(--ardoise);
  line-height: 1.7;
  margin-bottom: 20px;
}

.zone-addr strong {
  color: var(--encre);
}

.zone-communes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.zone-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--bleu);
  background: linear-gradient(135deg, rgba(14, 138, 148, 0.06), rgba(92, 184, 196, 0.03));
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.3s;
}

.zone-tag:hover {
  background: rgba(14, 138, 148, 0.12);
  transform: translateY(-2px);
}

.zone-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk';
  font-size: 20px;
  font-weight: 700;
  color: var(--bleu);
  text-decoration: none;
  transition: color 0.2s;
}

.zone-phone:hover {
  color: var(--bleu-profond);
}

.zone-phone svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.zone-acces {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(14, 138, 148, 0.06);
  border-radius: 10px;
}

.zone-acces h4 {
  font-family: 'Space Grotesk';
  font-size: 14px;
  font-weight: 600;
  color: var(--bleu);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.zone-acces p {
  font-size: 13.5px;
  color: var(--encre);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}

.zone-acces p + p {
  margin-top: 6px;
}

.zone-acces svg {
  flex-shrink: 0;
  color: var(--bleu);
}

.zone-note {
  margin-top: 16px;
  font-size: 13px;
  color: #64748b;
  font-style: italic;
  line-height: 1.5;
}

/* FAQ */
.faq-visual {
  position: relative;
  background: linear-gradient(135deg, rgba(14, 138, 148, 0.06), rgba(92, 184, 196, 0.03));
  border-radius: 24px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

.faq-visual-icon {
  width: 56px;
  height: 56px;
  opacity: 0.15;
  flex-shrink: 0;
}

.faq-visual-text {
  flex: 1;
}

.faq-visual h3 {
  font-family: 'Space Grotesk';
  font-size: 22px;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 4px;
}

.faq-visual p {
  font-size: 14px;
  color: var(--gris);
  line-height: 1.6;
}

.faq-visual-ctas {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.faq-item {
  border-bottom: 1px solid #E2EBF0;
}

.faq-q {
  width: 100%;
  padding: 20px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--encre);
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s;
  gap: 14px;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.5;
}

.faq-q:hover {
  color: var(--bleu);
}

.faq-tog {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bleu), var(--bleu-logo));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-reveal), box-shadow 0.3s;
}

.faq-item.open .faq-tog {
  transform: rotate(45deg);
  box-shadow: 0 4px 14px rgba(14, 138, 148, 0.3);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-reveal), padding 0.5s;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 18px;
}

.faq-a p {
  font-size: 15px;
  color: var(--encre);
  line-height: 1.8;
  padding: 12px 16px;
  background: rgba(14, 138, 148, 0.04);
  border-radius: 10px;
  border-left: 3px solid var(--bleu-logo);
}

/* FORM (CONTACT FORM) */
.form-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 4vw, 48px);
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 138, 148, 0.06), transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
}

.form-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 48px;
}

.form-header .slabel {
  color: var(--bleu-logo);
  justify-content: center;
}

.form-header .slabel::before {
  background: linear-gradient(90deg, var(--bleu-logo), var(--lavande));
}

.form-header h2 {
  color: #fff;
}

.form-header .ssub {
  color: rgba(255, 255, 255, 0.35);
  margin-left: auto;
  margin-right: auto;
}

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

.form-left {
  position: relative;
  z-index: 1;
}

.form-right {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(92, 184, 196, 0.1);
}

.form-right h3 {
  font-family: 'Space Grotesk';
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.form-right p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}

.form-right ul {
  list-style: none;
  margin-top: 24px;
}

.form-right li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.form-right li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--bleu-logo);
  border-radius: 50%;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-field {
  position: relative;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 16px 8px;
  font-size: 15px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.2s var(--ease-micro);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: transparent;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--bleu);
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 138, 148, 0.1);
}

.form-field label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.2s var(--ease-micro);
  pointer-events: none;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: 8px;
  font-size: 12px;
  color: var(--bleu-logo);
  font-weight: 600;
}

.form-field textarea {
  resize: none;
  min-height: 120px;
}

.form-field--error input,
.form-field--error textarea {
  border-color: var(--ambre);
}

.form-field--error .form-error-msg {
  display: block;
  font-size: 12px;
  color: var(--ambre);
  margin-top: 6px;
}

.form-error-msg {
  display: none;
}

.form-consent {
  margin: 16px 0 8px;
}
.form-consent label {
  font-size: 13px;
  color: var(--gris-clair);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  line-height: 1.4;
}
.form-consent input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--bleu);
  flex-shrink: 0;
}
.form-consent a {
  color: var(--bleu-logo);
  text-decoration: underline;
}

/* Error message created by JS (class="form-error") */
.form-error {
  display: block;
  font-size: 12px;
  color: var(--ambre);
  margin-top: 6px;
  animation: fadeDown .2s var(--ease-micro);
}

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

/* Global form error (network/server) */
.form-global-error {
  font-size: 14px;
  color: var(--ambre);
  margin-top: 12px;
  padding: 14px 18px;
  background: rgba(232, 162, 58, .06);
  border-radius: 10px;
  border: 1px solid rgba(232, 162, 58, .15);
}
.form-global-error a {
  color: var(--bleu-logo);
  text-decoration: underline;
}

/* Form info panel (right column) */
.form-info {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(92, 184, 196, 0.06);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-info__block h3 {
  font-family: 'Space Grotesk';
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.form-info__block p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

.form-info__block address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.form-info__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk';
  font-size: 22px;
  font-weight: 700;
  color: var(--bleu-logo);
  text-decoration: none;
  transition: color .2s;
}
.form-info__phone:hover { color: #fff; }
.form-info__phone svg { stroke: currentColor; flex-shrink: 0; }

.form-info__email {
  font-size: 14px;
  color: var(--bleu-logo);
  text-decoration: none;
  transition: color .2s;
}
.form-info__email:hover { color: #fff; }

/* Submit button */
.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px 30px;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}
.btn-submit .spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(6px); }
  30% { transform: translateX(-6px); }
  45% { transform: translateX(4px); }
  60% { transform: translateX(-4px); }
  75% { transform: translateX(2px); }
}

/* Form success state (replaces form after submit) */
.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success__check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bleu), var(--bleu-logo));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin: 0 auto 20px;
  animation: scalePop .4s var(--ease-reveal);
}

@keyframes scalePop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.form-success__title {
  font-family: 'Space Grotesk';
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.form-success__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
}

/* AVIS */
.avis-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.avis-left {
  position: relative;
}

.avis-big-score {
  font-family: 'Space Grotesk';
  font-size: clamp(100px, 14vw, 160px);
  font-weight: 700;
  line-height: 0.85;
  background: linear-gradient(135deg, var(--bleu), var(--bleu-logo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.avis-big-score::after {
  content: '/ 5';
  font-size: 0.3em;
  color: var(--gris-clair);
  -webkit-text-fill-color: var(--gris-clair);
  position: absolute;
  bottom: 0.15em;
  margin-left: 8px;
}

.avis-stars-row {
  margin: 12px 0 6px;
  display: flex;
  gap: 4px;
}

.avis-star {
  width: 28px;
  height: 28px;
  color: var(--ambre);
  animation: starPop 0.5s var(--ease-reveal) forwards;
  opacity: 0;
  transform: scale(0) rotate(-20deg);
}

@keyframes starPop {
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.avis-meta-txt {
  font-size: 14px;
  color: var(--gris);
  margin-top: 4px;
}

.avis-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  background: rgba(14, 138, 148, 0.06);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bleu);
  flex-wrap: wrap;
}

.avis-updated {
  display: block;
  width: 100%;
  font-size: 11px;
  font-weight: 400;
  color: var(--gris);
  margin-top: 4px;
}

.avis-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.avis-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(14, 138, 148, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-reveal);
  transform-style: preserve-3d;
  perspective: 600px;
}

.avis-card:hover {
  transform: translateY(-4px) rotateX(2deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.avis-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ambre), #F0C060, var(--ambre));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-reveal);
}

.avis-card:hover::before {
  transform: scaleX(1);
}

.avis-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avis-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bleu), var(--bleu-logo));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.avis-card-name {
  font-weight: 700;
  font-size: 14px;
}

.avis-card-stars {
  font-size: 12px;
  color: var(--ambre);
  letter-spacing: 1px;
}

.avis-card .qt {
  font-size: 15px;
  color: var(--ardoise);
  line-height: 1.75;
  font-style: italic;
}

.avis-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bleu);
  text-decoration: none;
  transition: gap 0.3s, color 0.2s;
}

.avis-cta:hover {
  gap: 14px;
  color: var(--bleu-profond);
}

/* (avis-encourage styles moved to WAVE BACKGROUND section) */

/* CONTACT */
.contact-s {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 4vw, 48px);
}

.contact-bg {
  position: absolute;
  inset: -5px;
  background: url('https://images.unsplash.com/photo-1638202993928-7267aad84c31?w=1600&q=80&auto=format&fit=crop') center / cover no-repeat;
  filter: blur(4px);
}

.contact-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.78), rgba(11, 17, 32, 0.9));
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-s .slabel {
  color: var(--bleu-logo);
  justify-content: center;
}

.contact-s .slabel::before {
  background: linear-gradient(90deg, var(--bleu-logo), var(--lavande));
}

.contact-s h2 {
  color: #fff;
}

.contact-s .ssub {
  color: rgba(255, 255, 255, 0.35);
  margin-left: auto;
  margin-right: auto;
}

.contact-phone {
  font-family: 'Space Grotesk';
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-phone a {
  color: #fff;
  text-decoration: none;
  transition: all 0.25s;
}

.contact-phone a:hover {
  color: var(--bleu-logo);
  transform: scale(1.02);
}

.contact-det {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-det strong {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 44px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: var(--bleu);
  box-shadow: 0 8px 40px rgba(14, 138, 148, 0.35);
  transition: all 0.25s var(--ease-micro);
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-cta:hover::after {
  transform: translateX(100%);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 52px rgba(14, 138, 148, 0.45);
}

/* FOOTER */
.footer {
  background: #070C14;
  padding: 32px clamp(20px, 4vw, 48px);
  text-align: center;
  font-size: 13px;
  color: #475569;
  position: relative;
  z-index: 10;
}

.footer__inner {
  max-width: 640px;
  margin: 0 auto;
}

.footer__deonto {
  margin-top: 12px;
  font-size: 10px;
  color: #334155;
  font-style: italic;
  line-height: 1.5;
}

.footer a {
  color: var(--bleu-logo);
  text-decoration: none;
}

.footer p + p {
  margin-top: 8px;
  font-size: 11px;
  color: #334155;
}

/* ============ COOKIE CONSENT BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(92, 184, 196, 0.06);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-reveal);
  flex-wrap: wrap;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__text {
  flex: 1;
  min-width: 200px;
}

.cookie-banner__link {
  color: var(--bleu-logo);
  text-decoration: underline;
}

.cookie-banner__buttons {
  display: flex;
  gap: 12px;
}

.cookie-banner__btn {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-banner__btn--accept {
  background: var(--bleu);
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background: var(--bleu-profond);
  transform: translateY(-1px);
}

.cookie-banner__btn--refuse {
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner__btn--refuse:hover {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ============ WAVES ZONE (keypoints + présentation shared bg) ============ */
.waves-zone {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(
    175deg,
    rgba(245, 249, 251, 0.95) 0%,
    rgba(240, 248, 250, 0.92) 30%,
    rgba(248, 244, 251, 0.90) 60%,
    rgba(245, 249, 251, 0.94) 100%
  );
}

.waves-zone__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.waves-zone__svg {
  position: absolute;
  left: -5%;
  width: 110%;
  height: 100%;
  top: 0;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.waves-zone__svg--1 {
  animation: waveDrift1 20s ease-in-out infinite;
}

.waves-zone__svg--2 {
  animation: waveDrift2 26s ease-in-out infinite;
}

.waves-zone__svg--3 {
  animation: waveDrift3 32s ease-in-out infinite;
}

@keyframes waveDrift1 {
  0%, 100% { transform: translateX(0) translateY(0) translateZ(0); }
  25% { transform: translateX(1.5%) translateY(-10px) translateZ(0); }
  50% { transform: translateX(-0.8%) translateY(8px) translateZ(0); }
  75% { transform: translateX(2%) translateY(-5px) translateZ(0); }
}

@keyframes waveDrift2 {
  0%, 100% { transform: translateX(0) translateY(0) translateZ(0); }
  33% { transform: translateX(-2%) translateY(12px) translateZ(0); }
  66% { transform: translateX(1.5%) translateY(-8px) translateZ(0); }
}

@keyframes waveDrift3 {
  0%, 100% { transform: translateX(0) translateY(0) translateZ(0); }
  50% { transform: translateX(2.5%) translateY(-14px) translateZ(0); }
}

/* Floating gradient orbs */
.waves-zone__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.waves-zone__orb--1 {
  width: 500px;
  height: 500px;
  top: -8%;
  right: -10%;
  background: radial-gradient(circle, rgba(14, 138, 148, 0.12), transparent 70%);
  animation: orbFloat1 24s ease-in-out infinite;
}

.waves-zone__orb--2 {
  width: 450px;
  height: 450px;
  top: 35%;
  left: -12%;
  background: radial-gradient(circle, rgba(196, 160, 212, 0.1), transparent 70%);
  animation: orbFloat2 30s ease-in-out infinite;
}

.waves-zone__orb--3 {
  width: 400px;
  height: 400px;
  bottom: 0;
  right: 10%;
  background: radial-gradient(circle, rgba(232, 213, 196, 0.09), transparent 70%);
  animation: orbFloat3 20s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) translateZ(0); }
  25% { transform: translate(-25px, 18px) translateZ(0); }
  50% { transform: translate(15px, -12px) translateZ(0); }
  75% { transform: translate(-8px, 24px) translateZ(0); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) translateZ(0); }
  33% { transform: translate(30px, -20px) translateZ(0); }
  66% { transform: translate(-15px, 12px) translateZ(0); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) translateZ(0); }
  50% { transform: translate(-28px, -16px) translateZ(0); }
}

.waves-zone .section {
  position: relative;
  z-index: 1;
}

/* ============ BTN--SM ============ */
.btn--sm {
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 12px;
}

/* ============ AVIS ENCOURAGE (inside left column) ============ */
.avis-encourage {
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(14, 138, 148, 0.06), rgba(92, 184, 196, 0.04));
  border: 1px solid rgba(14, 138, 148, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.avis-encourage h3 {
  font-family: 'Space Grotesk';
  font-size: 16px;
  font-weight: 700;
  color: var(--encre);
}
.avis-encourage p {
  font-size: 13px;
  color: #475569;
  line-height: 1.65;
}
.avis-encourage .avis-encourage__cta {
  align-self: flex-start;
}

/* ============ UTILITIES ============ */
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--bleu);
  color: #fff;
  padding: 12px 24px;
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
}

a.skip-link:focus {
  top: 0;
}

/* ============ RESPONSIVE — 1024px & below ============ */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .header-burger {
    display: flex;
  }

  .header-form-cta {
    display: none;
  }

  .header-cta-text {
    display: none;
  }

  .header-cta {
    padding: 10px;
    min-width: auto;
    gap: 0;
  }

  .header-cta svg {
    width: 20px;
    height: 20px;
  }

  .avis-hero {
    grid-template-columns: 1fr;
  }

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

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

  .pres-grid,
  .zone-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pres-img {
    max-width: 420px;
    margin: 0 auto;
  }

  .prest-split,
  .pec-grid {
    grid-template-columns: 1fr;
  }

  .pec-grid {
    grid-template-rows: auto;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .faq-visual {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  .faq-visual-ctas {
    margin-top: 12px;
    justify-content: center;
  }

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

  .form-right {
    display: none;
  }
}

/* ============ RESPONSIVE — 640px & below ============ */
@media (max-width: 640px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .btn {
    justify-content: center;
    width: 100%;
    max-width: 300px;
  }

  .pres-ctas {
    justify-content: center;
  }

  .scroll-ind {
    text-align: center;
  }

  .avis-hero {
    gap: 32px;
  }

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

  .equipe-grid,
  .pec-grid {
    grid-template-columns: 1fr;
  }

  .zone-map {
    height: 260px;
  }

  .zone-grid {
    gap: 28px;
  }

  .header {
    height: 64px;
  }

  .header-cta {
    padding: 10px;
    font-size: 14px;
  }

  .pres-badge {
    right: 8px;
    bottom: -12px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-banner__buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner__btn {
    width: 100%;
  }

  .form-grid {
    gap: 28px;
  }

  .form-right {
    padding: 24px;
  }

  .contact-s {
    padding: clamp(60px, 10vw, 100px) clamp(20px, 4vw, 48px);
  }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .rv,
  .rl,
  .rr {
    opacity: 1;
    transform: none;
  }

  .loader {
    display: none;
  }

  .scroll-progress {
    display: none;
  }

  .deco {
    animation: none !important;
  }
}

/* ============ PRINT ============ */
@media print {
  .loader,
  .mesh-bg,
  .noise,
  .scroll-progress,
  .ecg-trace,
  .header,
  .cookie-banner,
  .deco,
  .scroll-ind,
  .header-burger,
  .mobile-menu {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section-dark,
  .section-photo .sec-bg-ov {
    background: #fff !important;
    color: #000 !important;
  }

  .hero-ov,
  .contact-ov {
    display: none !important;
  }
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--nuit);
  border-top: 1px solid rgba(92, 184, 196, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-reveal);
}
.cookie-banner--visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gris-clair);
  min-width: 280px;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn--accept {
  background: var(--bleu);
  color: #fff;
}
.cookie-btn--refuse {
  background: transparent;
  color: var(--gris-clair);
  border: 1px solid var(--gris);
}
.cookie-btn--info {
  background: none;
  color: var(--bleu-logo);
  font-size: 12px;
  padding: 10px 12px;
}
@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; text-align: center; }
  .cookie-banner__actions { justify-content: center; }
}
