@font-face {
  font-family: "Clovert";
  src: url("./Clover Font/Clover-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clovert";
  src: url("./Clover Font/Clover-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #092b29;
  --muted: #5d7470;
  --soft: #eef8f4;
  --paper: #fbfffd;
  --white: #ffffff;
  --line: rgba(9, 43, 41, 0.12);
  --line-strong: rgba(9, 43, 41, 0.2);
  --teal: #008f8c;
  --dark-teal: #073f3d;
  --mint: #c7ffed;
  --lime: #dcffd7;
  --orange: #ffb35c;
  --shadow: 0 28px 80px -48px rgba(7, 63, 61, 0.55);
  --font: "Clovert", system-ui, sans-serif;
  --transition: 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: max(5.5rem, calc(3.25rem + env(safe-area-inset-top, 0px)));
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 143, 140, 0.16), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(255, 179, 92, 0.12), transparent 20%),
    linear-gradient(180deg, #f8fffb 0%, #eff8f4 48%, #e3f1ec 100%);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(9, 43, 41, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 43, 41, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--dark-teal);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  left: max(1rem, env(safe-area-inset-left, 0px));
  top: max(1rem, env(safe-area-inset-top, 0px));
  outline: 3px solid var(--mint);
  outline-offset: 2px;
}

#contenu:focus {
  outline: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
.theme-btn,
.hero-cta a,
.calendly-button,
.services-audit-card__cta {
  touch-action: manipulation;
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(0, 143, 140, 0.55);
  outline-offset: 2px;
}

.calendly-button:focus-visible,
.cta-section a.calendly-button:focus-visible {
  outline-color: var(--mint);
  outline-offset: 3px;
}

.hidden {
  display: none !important;
}

.nav-shell {
  position: sticky;
  top: max(1rem, env(safe-area-inset-top, 0px));
  z-index: 30;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 max(1rem, env(safe-area-inset-right, 0px)) 0.75rem max(1rem, env(safe-area-inset-left, 0px));
  transition:
    opacity var(--transition),
    transform var(--transition),
    z-index 0ms linear var(--transition);
}

.liquid-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  width: max-content;
  max-width: 100%;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(36px) saturate(190%);
  -webkit-backdrop-filter: blur(36px) saturate(190%);
  box-shadow:
    0 30px 70px -24px rgba(10, 74, 71, 0.12),
    0 12px 24px -18px rgba(10, 74, 71, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.liquid-nav::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto;
  height: 48%;
  border-radius: 999px 999px 26px 26px / 999px 999px 14px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 6;
}

.liquid-glare-container {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}

.liquid-glare {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(circle 96px at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.62), transparent 100%);
  mix-blend-mode: overlay;
}

.liquid-nav:hover .liquid-glare {
  opacity: 1;
}

.nav-logo {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 58px;
  height: 44px;
  padding: 0 14px 0 12px;
  margin-right: 2px;
  text-decoration: none;
  color: inherit;
}

.nav-logo picture {
  display: block;
}

.nav-logo img {
  display: block;
  width: 5.2rem;
  height: auto;
  max-height: 2.75rem;
  object-fit: contain;
}

.nav-items {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 4px;
}

.active-pill {
  position: absolute;
  top: 0;
  left: 0;
  height: 44px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow:
    0 4px 12px rgba(10, 74, 71, 0.08),
    0 1px 2px rgba(10, 74, 71, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.92);
  transition:
    transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1),
    width 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 1;
}

.nav-btn {
  position: relative;
  z-index: 2;
  height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(9, 43, 41, 0.58);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color var(--transition);
}

.nav-btn:focus-visible,
.theme-btn:focus-visible {
  outline: 2px solid rgba(0, 143, 140, 0.45);
  outline-offset: 2px;
}

.nav-btn:hover:not(.active) {
  color: rgba(9, 43, 41, 0.82);
}

.nav-btn.active {
  color: rgba(9, 43, 41, 0.98);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  transition: transform 0.2s cubic-bezier(0.32, 0.72, 0, 1);
}

.nav-btn:active .btn-content,
.theme-btn:active .btn-content {
  transform: scale(0.92);
}

.btn-content svg {
  display: block;
  stroke-width: 2.2;
}

.divider {
  width: 1px;
  height: 24px;
  margin: 0 4px;
  flex: 0 0 auto;
  align-self: center;
  background: rgba(9, 43, 41, 0.14);
  z-index: 3;
}

.theme-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: rgba(9, 43, 41, 0.58);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    color var(--transition),
    background-color var(--transition);
}

.theme-btn:hover {
  color: rgba(9, 43, 41, 0.98);
  background: rgba(255, 255, 255, 0.42);
}

.theme-btn.active {
  color: rgba(9, 43, 41, 0.98);
}

.nav-cta-btn .btn-content svg {
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: clamp(620px, 88svh, 760px);
  display: grid;
  place-items: center;
  padding: clamp(84px, 6vw, 104px) 22px clamp(96px, 8vw, 132px);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(940px, 100%);
  margin: 0 auto;
  text-align: center;
}

.avatar-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.avatar-row strong:only-child {
  max-width: 760px;
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
  min-height: calc(12px * 1.45 * 3);
}

.avatar {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -14px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--dark-teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.avatar:first-child {
  margin-left: 0;
  background: var(--orange);
  color: var(--ink);
}

.avatar:nth-child(2) {
  background: var(--teal);
}

.avatar:nth-child(3) {
  background: var(--ink);
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 1120px;
  margin: 0 auto 16px;
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-align: center;
}

h1.hero-title > .hero-title__text {
  display: block;
  background: linear-gradient(90deg, #015958 0%, #007a78 35%, #008f8c 65%, #16b8b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero h1.hero-title {
  margin-bottom: 10px;
  max-width: min(8.55em, 88vw);
  margin-left: auto;
  margin-right: auto;
  min-height: 2.95em;
  font-size: clamp(49px, 5.7vw, 82px);
  line-height: 1.02;
  hyphens: none;
}

.hero-desc {
  max-width: 660px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.62;
  min-height: 4.75em;
}

.hero .hero-desc {
  margin-bottom: 40px;
}

.hero .hero-cta {
  margin-bottom: 0;
}

.hero .hero-cta-note {
  margin-top: 18px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(58, 80, 76, 0.68);
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 8px;
}

.hero-cta a,
.hero-cta button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 20px;
  padding: 0 26px;
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.hero-cta__primary {
  --cta-t: 0.32s;
  --cta-ease: cubic-bezier(0.33, 1, 0.32, 1);
  --cta-shadow:
    0 12px 28px rgba(1, 89, 88, 0.18),
    0 4px 10px rgba(1, 89, 88, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --cta-shadow-hover:
    0 14px 32px rgba(1, 89, 88, 0.22),
    0 6px 14px rgba(1, 89, 88, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --cta-shadow-active:
    0 8px 20px rgba(1, 89, 88, 0.14),
    0 2px 8px rgba(1, 89, 88, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: min(100%, 322px);
  min-height: 64px;
  padding: 0 30px 0 36px;
  border-radius: 9999px;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.15;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(199, 255, 237, 0.2);
  background:
    radial-gradient(ellipse 100% 88% at 16% 0%, rgba(199, 255, 237, 0.1), transparent 44%),
    radial-gradient(ellipse 70% 56% at 92% 100%, rgba(0, 143, 140, 0.14), transparent 48%),
    linear-gradient(152deg, #007f7c 0%, #014a49 38%, #012e2d 68%, #011f1e 100%);
  background-clip: padding-box;
  box-shadow: var(--cta-shadow);
  transform: translateZ(0);
  backface-visibility: hidden;
  transition:
    transform var(--cta-t) var(--cta-ease),
    box-shadow var(--cta-t) var(--cta-ease),
    border-color var(--cta-t) ease,
    filter var(--cta-t) ease;
}

.hero-cta__primary::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -42%;
  width: 26%;
  height: 175%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: rotate(16deg) translateZ(0);
  transition: left 0.7s var(--cta-ease);
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.hero-cta__primary-text {
  position: relative;
  z-index: 1;
}

.hero-cta__primary-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  background: rgba(199, 255, 237, 0.08);
  border: 1px solid rgba(199, 255, 237, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform var(--cta-t) var(--cta-ease),
    background var(--cta-t) ease,
    border-color var(--cta-t) ease,
    box-shadow var(--cta-t) ease;
}

.hero-cta__primary-icon::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-left: 1px;
  margin-bottom: 0.5px;
  border-right: 2px solid rgba(255, 255, 255, 0.96);
  border-bottom: 2px solid rgba(255, 255, 255, 0.96);
  transform: rotate(-45deg);
}

.hero-cta__primary-icon::after {
  display: none;
}

.hero-cta__secondary {
  color: var(--dark-teal);
  border: 1px solid rgba(0, 143, 140, 0.16);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.hero-cta__primary:hover {
  transform: translateY(-2px) scale(1.006) translateZ(0);
  border-color: rgba(199, 255, 237, 0.26);
  filter: brightness(1.02);
  box-shadow: var(--cta-shadow-hover);
}

.hero-cta__primary:hover::after {
  left: 118%;
}

.hero-cta__primary:hover .hero-cta__primary-icon {
  transform: translateX(3px);
  background: rgba(199, 255, 237, 0.12);
  border-color: rgba(199, 255, 237, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-cta__primary:active {
  transform: translateY(0) scale(0.992) translateZ(0);
  filter: brightness(0.98);
  box-shadow: var(--cta-shadow-active);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.hero-cta__primary:focus-visible {
  outline: 2px solid rgba(0, 143, 140, 0.45);
  outline-offset: 3px;
  box-shadow: var(--cta-shadow);
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta__primary::after {
    transition: none;
  }

  .hero-cta__primary:hover::after {
    left: -48%;
  }
}

.hero-cta-note {
  margin: 0 auto;
  color: #3a504c;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.cta-checks span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.calendly-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-media-kicker {
  position: absolute;
  top: max(18%, 120px);
  left: max(24px, calc(50% - 720px));
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(9, 43, 41, 0.1);
  background: rgba(255, 255, 255, 0.76);
  color: rgba(9, 43, 41, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  box-shadow: 0 12px 34px -26px rgba(7, 63, 61, 0.35);
  backdrop-filter: blur(12px);
}

.hero-window {
  position: absolute;
  border: 1px solid rgba(9, 43, 41, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(168deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 253, 251, 0.78) 42%, rgba(255, 255, 255, 0.7) 100%);
  box-shadow:
    0 26px 56px -38px rgba(7, 63, 61, 0.42),
    0 14px 34px -28px rgba(1, 89, 88, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.hero-window-context {
  grid-column: 1 / -1;
  margin-bottom: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 143, 140, 0.16);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(1, 89, 88, 0.68);
}

.window-one {
  top: 22%;
  left: max(26px, calc(50% - 690px));
  width: 230px;
  padding: 18px;
  transform: rotate(-4deg);
  display: grid;
  gap: 8px;
  align-content: start;
}

/* Bloc gauche : mini checklist diagnostic */
.hero-window-checklist {
  position: relative;
  margin-top: 4px;
  padding-left: 2px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-window-checklist::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  border-left: 1px dashed rgba(0, 143, 140, 0.28);
  pointer-events: none;
}

.hero-window-checkitem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 2px 7px 0;
  position: relative;
  z-index: 1;
}

.hero-window-checkitem__ico {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #015958;
  border: 1px solid rgba(0, 143, 140, 0.28);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(199, 255, 237, 0.42) 55%, rgba(216, 255, 219, 0.28) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(1, 89, 88, 0.06);
}

.hero-window-checkitem__ico svg {
  display: block;
  width: 15px;
  height: 15px;
}

.hero-window-checkitem__txt {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: rgba(9, 43, 41, 0.84);
}

/* Bloc droit haut : grille 2×2 dashboard */
.hero-window-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-top: 4px;
}

.hero-window-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 58px;
  padding: 6px 3px 7px;
  text-align: center;
  border-radius: 11px;
  border: 1px solid rgba(0, 143, 140, 0.14);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(199, 255, 237, 0.12) 45%, rgba(0, 143, 140, 0.04) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 1px 2px rgba(1, 89, 88, 0.05);
}

.hero-window-cell__ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: #008f8c;
  border: 1px solid rgba(0, 143, 140, 0.2);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95) 0%, rgba(216, 255, 219, 0.4) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.hero-window-cell__ic svg {
  display: block;
  width: 14px;
  height: 14px;
}

.hero-window-cell__tx {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  line-height: 1.2;
  color: rgba(9, 43, 41, 0.72);
}

/* Bloc droit bas : plan / étapes + progression */
.hero-window-plan {
  position: relative;
  margin-top: 4px;
  padding-left: 11px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-window-plan::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 143, 140, 0.45) 0%, rgba(1, 89, 88, 0.12) 100%);
  pointer-events: none;
}

.hero-window-prio {
  position: relative;
}

.hero-window-prio::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-radius: 50%;
  border: 1.5px solid #008f8c;
  background: radial-gradient(circle at 35% 30%, #d8ffdb 0%, rgba(199, 255, 237, 0.9) 70%, #fff 100%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95);
  z-index: 1;
}

.hero-window-prio__card {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  padding: 6px 7px;
  border-radius: 10px;
  border: 1px solid rgba(0, 143, 140, 0.12);
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.92) 0%, rgba(199, 255, 237, 0.14) 55%, rgba(255, 255, 255, 0.55) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 1px 2px rgba(1, 89, 88, 0.04);
}

.hero-window-prio__num {
  font-size: 11px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  color: #015958;
}

.hero-window-prio__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hero-window-prio__lab {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(9, 43, 41, 0.82);
}

.hero-window-prio__track {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: rgba(1, 89, 88, 0.08);
  overflow: hidden;
}

.hero-window-prio__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #008f8c 0%, #015958 100%);
  box-shadow: 0 0 6px rgba(0, 143, 140, 0.22);
}

.window-two,
.window-three {
  right: max(24px, calc(50% - 624px));
  display: grid;
  align-content: start;
  padding: 12px 11px 14px;
}

.window-two {
  top: 25%;
  transform: rotate(3deg);
  gap: 6px;
  width: 174px;
}

.window-three {
  bottom: 22%;
  transform: rotate(-1.5deg);
  gap: 7px;
  width: 168px;
}

.faq-item {
  min-width: 0;
  border-radius: 18px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

section {
  position: relative;
  z-index: 2;
  padding: clamp(96px, 7.5vw, 132px) 22px;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 34px;
}

.section-heading.centered {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 800;
}

.section-heading p,
.cta-copy p {
  color: var(--muted);
  font-size: 17px;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  align-items: start;
  gap: 24px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.services-section .section-heading {
  width: min(900px, 100%);
}

.services-section .section-heading h2 {
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.services-section .section-heading p {
  max-width: 62rem;
  line-height: 1.65;
}

.services-list {
  display: grid;
  gap: 12px;
}

.service-row {
  border: 1px solid rgba(9, 43, 41, 0.09);
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 24px 58px -48px rgba(7, 63, 61, 0.56),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 22px 24px 23px;
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

/* Accent vertical doux, inset, aligné avec le rayon de la carte */
.service-row::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 17px;
  bottom: 17px;
  width: 2px;
  border-radius: 999px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 143, 140, 0.2) 0%,
    rgba(39, 213, 202, 0.28) 42%,
    rgba(0, 89, 88, 0.14) 100%
  );
  box-shadow:
    0 0 10px rgba(0, 143, 140, 0.08),
    1px 0 0 rgba(255, 255, 255, 0.35);
  opacity: 0.72;
  transition:
    opacity var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.service-row:hover {
  transform: translateX(4px);
  border-color: rgba(0, 143, 140, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 28px 62px -48px rgba(7, 63, 61, 0.68),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service-row:hover::before {
  opacity: 0.95;
  filter: saturate(1.05);
  box-shadow:
    0 0 14px rgba(0, 143, 140, 0.12),
    1px 0 0 rgba(255, 255, 255, 0.45);
}

.service-row__step {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-top: 2px;
  border-radius: 12px;
  color: rgba(1, 89, 88, 0.45);
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  text-transform: none;
  background: rgba(0, 143, 140, 0.06);
  border: 1px solid rgba(0, 143, 140, 0.08);
}

.service-row h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 1.85vw, 26px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.service-row p {
  max-width: 640px;
  margin: 10px 0 0;
  color: rgba(9, 43, 41, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.services-audit-card {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-height: 0;
  padding: 22px 24px 24px;
  border-radius: 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #094a47 0%, #063d3a 42%, #052f2d 100%);
  box-shadow: 0 18px 44px -32px rgba(0, 0, 0, 0.45);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.services-audit-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 48px -30px rgba(0, 0, 0, 0.48);
}

.services-audit-card__kicker {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  background: none;
  max-width: 22em;
  color: rgba(199, 255, 237, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.services-audit-card h3 {
  margin: 0 0 14px;
  max-width: 20ch;
  color: var(--white);
  font-size: clamp(21px, 1.95vw, 26px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.services-audit-card__lead {
  margin: 0 0 18px;
  max-width: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.58;
  font-weight: 400;
}

.services-audit-card__bullets {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.services-audit-card__bullets li {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
}

.services-audit-card__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(199, 255, 237, 0.5);
}

.services-audit-card__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 0 20px;
  border-radius: 10px;
  color: #063532;
  background: #f2faf7;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.services-audit-card__cta:hover {
  transform: translateY(-1px);
  background: #e8f5f0;
  color: #052a28;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.14);
}

.services-audit-card:hover .services-audit-card__cta {
  transform: translateY(-1px);
}

.services-section,
.steps-section,
.faq-section {
  background: rgba(255, 255, 255, 0.26);
  border-block: 1px solid rgba(9, 43, 41, 0.08);
}

/* Processus : plus de contraste (la section ne “fond” plus dans le fond) */
.steps-section {
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(0, 143, 140, 0.09), transparent 55%),
    rgba(255, 255, 255, 0.42);
  border-block-color: rgba(9, 43, 41, 0.1);
}

/* Processus : pile de panneaux larges (style “produit”, pas 3 colonnes) */
.process-stack {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 92px 42px;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding-block: 34px;
}

.process-flow-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.process-flow-path {
  fill: none;
  stroke: url(#processStroke);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5.2;
  opacity: 0.9;
  filter: drop-shadow(0 14px 22px rgba(0, 143, 140, 0.18));
  stroke-dasharray: 0.06 0.06;
  stroke-dashoffset: 0.03;
  animation: processFlow 11s linear infinite;
}

.process-flow-path--two {
  animation-delay: -3.2s;
}

@keyframes processFlow {
  to {
    stroke-dashoffset: -1;
  }
}

.process-panel {
  position: relative;
  z-index: 1;
  width: min(472px, 100%);
  overflow: hidden;
  padding: clamp(17px, 1.95vw, 22px);
  padding-left: clamp(22px, 2.35vw, 29px);
  border-radius: 26px;
  border: 1px solid rgba(9, 43, 41, 0.11);
  background:
    radial-gradient(circle at 16% 0%, rgba(199, 255, 237, 0.34), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 246, 0.91) 58%, rgba(255, 250, 242, 0.68)),
    linear-gradient(90deg, rgba(0, 143, 140, 0.07), transparent 44%);
  box-shadow:
    0 30px 70px -52px rgba(7, 63, 61, 0.72),
    0 10px 30px -28px rgba(0, 143, 140, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.process-panel[data-step="1"] {
  grid-column: 1 / span 4;
  justify-self: start;
}

.process-panel[data-step="2"] {
  grid-column: 9 / span 4;
  justify-self: end;
}

.process-panel[data-step="3"] {
  grid-column: 5 / span 4;
  justify-self: center;
  margin-top: -58px;
  transform: translateX(18px);
}

.process-panel::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 10px;
  top: 16px;
  bottom: 16px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 143, 140, 0.95), rgba(39, 213, 202, 0.74), rgba(255, 179, 92, 0.58));
  box-shadow: 0 0 0 5px rgba(0, 143, 140, 0.05);
}

.process-panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 1px;
  border-radius: 25px;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), transparent 36%),
    radial-gradient(circle at 100% 0%, rgba(0, 143, 140, 0.08), transparent 30%);
  opacity: 0.75;
}

.process-panel[data-step="3"]::before {
  background: linear-gradient(180deg, var(--orange), var(--teal));
}

.process-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 143, 140, 0.24);
  background:
    radial-gradient(circle at 16% 0%, rgba(199, 255, 237, 0.44), transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(236, 251, 245, 0.94) 58%, rgba(255, 248, 237, 0.75)),
    linear-gradient(90deg, rgba(0, 143, 140, 0.085), transparent 46%);
  box-shadow:
    0 38px 88px -54px rgba(7, 63, 61, 0.78),
    0 18px 44px -34px rgba(0, 143, 140, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.process-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(9, 43, 41, 0.07);
  position: relative;
  z-index: 1;
}

.process-panel[data-step="3"]:hover {
  transform: translate(18px, -4px);
  border-color: rgba(0, 143, 140, 0.22);
  box-shadow:
    0 34px 78px -50px rgba(7, 63, 61, 0.72),
    0 16px 38px -36px rgba(0, 143, 140, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.process-panel:hover::before {
  box-shadow: 0 0 0 6px rgba(0, 143, 140, 0.065), 0 18px 26px -20px rgba(0, 143, 140, 0.7);
}

.process-panel:hover .process-panel__num {
  transform: translateY(-1px);
  box-shadow:
    0 18px 34px -18px rgba(0, 143, 140, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.process-panel__num {
  display: grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 13px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(9, 43, 41, 0.96), rgba(7, 63, 61, 0.92));
  box-shadow:
    0 14px 30px -18px rgba(0, 143, 140, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-panel__pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-teal);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.process-panel__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 28px;
  position: relative;
  z-index: 1;
}

.process-panel__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: none;
}

.process-panel__copy h3 {
  margin: 6px 0 0;
  font-size: clamp(26px, 2vw, 30px);
  font-weight: 800;
  letter-spacing: -0.55px;
  line-height: 1.08;
  color: var(--ink);
  max-width: 360px;
  overflow-wrap: normal;
  word-break: normal;
}

.process-panel__copy p {
  margin: 12px 0 0;
  font-size: 15.5px;
  line-height: 1.55;
  font-weight: 500;
  color: #3a504c;
  max-width: 360px;
}

.process-panel__label {
  display: inline-flex;
  align-items: center;
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.process-keypoints {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.process-keypoints span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--dark-teal);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 143, 140, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.process-keypoints i {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(0, 143, 140, 0.11);
  flex: 0 0 auto;
}

.process-keypoints i::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 7px;
  border-right: 1.7px solid var(--teal);
  border-bottom: 1.7px solid var(--teal);
  transform: rotate(42deg);
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(800px, 100%);
  margin: 0 auto;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 14px 14px;
  color: var(--ink);
  font-weight: 800;
  text-align: start;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--teal);
  font-weight: 800;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 14px 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.cta-section {
  padding-top: clamp(120px, 9.5vw, 168px);
  padding-bottom: clamp(104px, 8vw, 140px);
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 10%, rgba(199, 255, 237, 0.24), transparent 38%),
    linear-gradient(180deg, #0a5b56 0%, #073835 78%);
  color: var(--white);
  box-shadow: 0 40px 90px -54px rgba(7, 63, 61, 0.85);
}

.cta-copy .eyebrow {
  color: var(--mint);
}

.cta-copy .eyebrow::before {
  background: var(--mint);
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.cta-checks {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.cta-checks span::before {
  background: var(--mint);
}

.calendly-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.calendly-card span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendly-card h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.calendly-card p,
.calendly-card li {
  color: rgba(255, 255, 255, 0.76);
}

.calendly-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  font-weight: 800;
}

.calendly-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 20px;
  background: var(--mint);
  color: var(--dark-teal);
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition);
}

.calendly-button:hover {
  transform: translateY(-1px);
  background: var(--lime);
}

.calendly-card small {
  color: rgba(255, 255, 255, 0.56);
  text-align: center;
}

footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) auto minmax(160px, 0.5fr);
  align-items: start;
  gap: 28px;
  padding: clamp(48px, 5vw, 76px) max(22px, env(safe-area-inset-right, 0px))
    max(clamp(40px, 4.2vw, 60px), env(safe-area-inset-bottom, 0px)) max(22px, env(safe-area-inset-left, 0px));
  border-top: 1px solid rgba(9, 43, 41, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
}

footer picture {
  display: block;
}

footer img {
  width: 108px;
  height: auto;
  max-height: 2.5rem;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

.footer-brand p {
  max-width: 520px;
  margin-top: 8px;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-legal {
  grid-column: 1 / -1;
  color: rgba(93, 116, 112, 0.72);
}

.up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.up.vis {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

@media (max-width: 980px) {
  section {
    padding-block: clamp(76px, 6.8vw, 112px);
  }

  .cta-section {
    padding-top: clamp(100px, 8.6vw, 144px);
    padding-bottom: clamp(88px, 7.2vw, 124px);
  }

  .hero {
    min-height: clamp(600px, 86svh, 700px);
    padding-top: clamp(64px, 7vw, 84px);
    padding-bottom: clamp(80px, 9vw, 112px);
  }

  .hero-media {
    display: none;
  }

  .cta-box {
    grid-template-columns: 1fr;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-audit-card {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .process-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: min(920px, 100%);
    padding-block: 0;
  }

  .process-panel {
    width: 100%;
  }

  .process-panel__copy {
    min-width: 0;
    max-width: none;
  }

  .process-panel__copy h3,
  .process-panel__copy p {
    max-width: none;
  }

  .process-flow-lines {
    inset: 48px 14px 48px 14px;
    width: calc(100% - 28px);
    height: calc(100% - 96px);
  }

  .process-flow-path {
    stroke-width: 4;
    opacity: 0.58;
  }

  .process-flow-path--one {
    d: path("M 82 220 C 24 296 40 354 88 420");
  }

  .process-flow-path--two {
    d: path("M 88 505 C 156 580 142 652 84 720");
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: max(4.75rem, calc(2.75rem + env(safe-area-inset-top, 0px)));
  }

  .nav-shell {
    top: max(0.65rem, env(safe-area-inset-top, 0px));
    justify-content: flex-start;
    overflow: hidden;
  }

  .liquid-nav {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    background: rgba(255, 255, 255, 0.88);
  }

  .liquid-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-items {
    gap: 2px;
  }

  .nav-logo {
    min-width: 50px;
    padding-inline: 10px;
  }

  .nav-logo img {
    width: 4.7rem;
  }

  .nav-btn {
    width: 44px;
    padding: 0 12px;
  }

  .nav-btn .btn-content span:last-child,
  .nav-cta-btn .btn-content span:last-child {
    display: none;
  }

  .nav-cta-btn {
    width: 44px;
    min-width: 44px;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  body::before {
    opacity: 0.45;
    background-size: 56px 56px;
  }

  .faq-item,
  .service-row {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .process-panel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .calendly-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.16);
  }

  .hero {
    min-height: auto;
    padding: clamp(52px, 8vw, 72px) max(18px, env(safe-area-inset-left, 0px)) clamp(72px, 10vw, 92px)
      max(18px, env(safe-area-inset-right, 0px));
  }

  h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero h1.hero-title {
    max-width: min(9.1em, 90vw);
    font-size: clamp(36px, 10.4vw, 49px);
    line-height: 1.04;
  }

  .avatar-row strong {
    flex-basis: 100%;
  }

  .hero .hero-desc {
    margin-bottom: 34px;
  }

  .hero .hero-cta-note {
    margin-top: 16px;
    font-size: 11.5px;
  }

  .hero-cta {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 352px);
  }

  .hero-cta a,
  .hero-cta button {
    width: 100%;
  }

  section {
    padding-inline: max(18px, env(safe-area-inset-left, 0px)) max(18px, env(safe-area-inset-right, 0px));
    padding-block: clamp(64px, 8.5vw, 88px);
  }

  .cta-section {
    padding-top: clamp(80px, 10vw, 104px);
    padding-bottom: clamp(72px, 9vw, 96px);
  }

  .cta-box {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  footer {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 1160px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .process-flow-path {
    filter: none;
  }
}
