@font-face {
  font-family: "Comfortaa";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/comfortaa-latin-400-700.woff2") format("woff2");
}

:root {
  --color-primary: #1a828a;
  --color-primary-dark: #0d5964;
  --color-accent: #fdd13f;
  --color-accent-strong: #f9b900;
  --color-cream: #fbf6ef;
  --color-cream-strong: #f4eadc;
  --color-mint: #e5f4f1;
  --color-white: #ffffff;
  --color-text: #102a36;
  --color-muted: #52646a;
  --color-border: #e8e2d8;
  --color-success: #16835d;
  --color-error: #b33a3a;
  --shadow: 0 18px 42px rgba(16, 42, 54, .12);
  --shadow-soft: 0 10px 28px rgba(16, 42, 54, .08);
  --radius: 8px;
  --header-height: 78px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-cream);
  color: var(--color-text);
  font-family: Comfortaa, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

body.menu-open,
body.calendly-popin-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(253, 209, 63, .85);
  outline-offset: 4px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-170%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-text);
  color: var(--color-white);
  font-weight: 700;
  transition: transform .2s ease;
}

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

.header-scroll-sentinel {
  position: absolute;
  top: 18px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: rgba(251, 246, 239, .93);
  backdrop-filter: blur(18px);
  transition: min-height .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  border-color: rgba(16, 42, 54, .1);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 10px 30px rgba(16, 42, 54, .08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  order: 1;
  flex: 0 0 auto;
}

.brand img {
  width: 148px;
}

.site-nav {
  position: fixed;
  order: 4;
  top: var(--header-height);
  left: 16px;
  right: 16px;
  z-index: 101;
  display: grid;
  padding: 10px;
  border: 1px solid rgba(16, 42, 54, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--color-mint);
}

.menu-toggle {
  order: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--color-text);
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  display: block;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: opacity .2s ease, transform .2s ease;
}

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

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

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

.nav-cta,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.nav-cta {
  order: 2;
  display: inline-flex;
  flex: 0 0 auto;
  margin-left: auto;
  padding: 0 12px;
  background: var(--color-accent);
  color: var(--color-text);
  box-shadow: 0 12px 24px rgba(249, 185, 0, .22);
}

.nav-cta-full {
  display: none;
}

.nav-cta-mobile {
  display: inline;
}

.btn {
  padding: 12px 22px;
}

.btn svg,
.nav-cta svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-text);
  box-shadow: 0 14px 26px rgba(249, 185, 0, .24);
}

.btn-secondary {
  background: rgba(255, 255, 255, .82);
  border-color: rgba(26, 130, 138, .35);
  color: var(--color-primary-dark);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 26px;
  background:
    linear-gradient(180deg, #fffaf2 0%, var(--color-cream) 78%),
    var(--color-cream);
}

.hero::before {
  content: "";
  position: absolute;
  top: -90px;
  left: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(253, 209, 63, .18);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::after,
.section-kicker::after {
  content: "";
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-accent);
}

.hero h1 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--color-accent-strong);
}

.hero-lead {
  max-width: 590px;
  margin: 22px 0 24px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-actions .btn {
  width: 100%;
}

.hero-reassurance {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-reassurance li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(16, 42, 54, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  box-shadow: var(--shadow-soft);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-reassurance svg {
  color: var(--color-primary);
}

.hero-diagnostic-card {
  --hero-parallax-x: 0;
  --hero-parallax-y: 0;
  position: relative;
  max-width: 520px;
  margin-inline: auto;
  perspective: 1100px;
}

.mini-diagnostic,
.diagnostic-panel {
  border: 1px solid rgba(16, 42, 54, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.mini-diagnostic {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.hero-parallax .mini-diagnostic,
.hero-parallax .floating-proof {
  will-change: transform;
  transition: transform .38s ease-out, box-shadow .22s ease, border-color .22s ease;
}

.hero-parallax .mini-diagnostic {
  transform: translate3d(
    calc(var(--hero-parallax-x) * 6px),
    calc(var(--hero-parallax-y) * 5px),
    0
  ) rotateX(calc(var(--hero-parallax-y) * -0.35deg)) rotateY(calc(var(--hero-parallax-x) * 0.35deg));
}

.hero-parallax:hover .mini-diagnostic {
  border-color: rgba(26, 130, 138, .18);
  box-shadow: 0 22px 48px rgba(16, 42, 54, .14);
}

.mini-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.mini-head span {
  color: var(--color-primary-dark);
  font-size: 18px;
  font-weight: 800;
}

.mini-head small {
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
}

.mini-progress,
.diagnostic-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--color-mint);
}

.mini-progress span,
.diagnostic-progress span {
  height: 100%;
  display: block;
  width: 40%;
  border-radius: inherit;
  background: var(--color-primary);
  transition: width .25s ease;
}

.mini-diagnostic p {
  margin: 18px 0 10px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}

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

.choice-grid span {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fbfdfe;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 800;
}

.choice-grid .is-selected {
  border-color: rgba(26, 130, 138, .55);
  background: var(--color-mint);
  color: var(--color-primary-dark);
}

.mini-result {
  margin-top: 18px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--color-cream);
}

.mini-result strong,
.mini-result span {
  display: block;
}

.mini-result strong {
  color: var(--color-primary);
  font-size: 22px;
}

.mini-result span {
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
}

.floating-proof {
  position: absolute;
  z-index: 3;
  display: none;
  min-width: 180px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 42, 54, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-soft);
}

.floating-proof strong,
.floating-proof span {
  display: block;
}

.floating-proof strong {
  color: var(--color-primary);
  font-size: 12px;
}

.floating-proof span {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 700;
}

.hero-parallax .proof-one {
  transform: translate3d(
    calc(var(--hero-parallax-x) * 9px),
    calc(var(--hero-parallax-y) * -7px),
    0
  );
}

.hero-parallax .proof-two {
  transform: translate3d(
    calc(var(--hero-parallax-x) * -8px),
    calc(var(--hero-parallax-y) * 6px),
    0
  );
}

.proof-row {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 30px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 800;
}

.proof-row div {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 42, 54, .12);
}

.proof-row div:last-child {
  border-bottom: 0;
}

.proof-row svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  color: var(--color-primary);
}

.flag-fr {
  flex: 0 0 auto;
  width: 28px;
  height: 20px;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
  background: linear-gradient(90deg, #1646b8 0 33%, #fff 33% 66%, #ef2b37 66% 100%);
}

.hero-client-strip {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 16px;
  width: min(100%, 1168px);
  margin: 18px auto 0;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(26, 130, 138, .14);
  border-radius: var(--radius);
  background: #f5f6f5;
  box-shadow: var(--shadow-soft);
}

.hero-client-copy-block {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.hero-client-copy {
  margin: 0;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-client-copy strong {
  color: var(--color-accent-strong);
  font-weight: 900;
}

.hero-client-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  color: rgba(26, 130, 138, .82);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.google-wordmark {
  display: inline-flex;
  align-items: center;
  gap: .02em;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.google-blue {
  color: #4285f4;
}

.google-red {
  color: #ea4335;
}

.google-yellow {
  color: #fbbc05;
}

.google-green {
  color: #34a853;
}

.hero-client-stars {
  color: var(--color-accent-strong);
  font-size: 13px;
  letter-spacing: .05em;
}

.hero-client-score {
  color: var(--color-primary);
  font-weight: 900;
}

.hero-logo-marquee {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.hero-logo-marquee::before,
.hero-logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 40px;
  pointer-events: none;
}

.hero-logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f5f6f5, rgba(245, 246, 245, 0));
}

.hero-logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f5f6f5, rgba(245, 246, 245, 0));
}

.hero-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 14px;
  animation: hero-logo-scroll 26s linear infinite;
}

.hero-logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-logo-card {
  width: 136px;
  height: 56px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 12px 16px;
  border: 1px solid rgba(16, 42, 54, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
}

.hero-logo-card img {
  max-width: 104px;
  max-height: 30px;
  opacity: .84;
  filter: grayscale(1) brightness(.58) contrast(1.2);
  transform: scale(1.12);
}

.hero-client-strip:hover .hero-logo-track {
  animation-play-state: paused;
}

@keyframes hero-logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.section {
  padding: 54px 0;
}

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

.section-heading {
  max-width: 790px;
  margin-bottom: 28px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.diagnostic-intro h2,
.result-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 29px;
  line-height: 1.18;
}

.section-heading p:last-child,
.diagnostic-intro > p,
.result-copy > p,
.final-cta p {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-weight: 600;
}

.cards-grid,
.lever-grid,
.steps-grid {
  display: grid;
  gap: 16px;
}

.soft-card,
.lever-card,
.step-card {
  border: 1px solid rgba(16, 42, 54, .09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.soft-card {
  min-height: 178px;
  padding: 22px;
  text-align: center;
}

.soft-card:hover,
.lever-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 130, 138, .28);
  box-shadow: var(--shadow);
}

.icon-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--color-mint);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
}

.icon-badge svg {
  width: 21px;
  height: 21px;
}

.soft-card h3,
.lever-card h3,
.step-card h3 {
  margin: 0 0 8px;
  color: var(--color-primary-dark);
  font-size: 16px;
  line-height: 1.25;
}

.soft-card p,
.step-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
}

.diagnostic-section {
  background: var(--color-cream);
}

.diagnostic-layout {
  display: grid;
  gap: 30px;
  align-items: start;
}

.diagnostic-intro {
  max-width: 560px;
}

.benefit-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 800;
}

.benefit-list svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.diagnostic-panel {
  overflow: hidden;
  padding: 20px;
}

.diagnostic-status {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.diagnostic-status span,
.diagnostic-status strong {
  display: block;
}

.diagnostic-status span {
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 800;
}

.diagnostic-status strong {
  color: var(--color-primary-dark);
  font-size: 14px;
}

.diagnostic-progress {
  margin-bottom: 18px;
}

.diagnostic-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.diagnostic-step {
  display: grid;
  gap: 14px;
}

.diagnostic-step[hidden] {
  display: none;
}

.diagnostic-step legend {
  margin-bottom: 4px;
  color: var(--color-primary-dark);
  font-size: 19px;
  font-weight: 800;
}

.diagnostic-step label,
.field-label {
  margin: 0;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 800;
}

select,
input:not([type="radio"]):not([type="checkbox"]) {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-text);
}

select:focus,
input:not([type="radio"]):not([type="checkbox"]):focus {
  border-color: var(--color-primary);
  outline: 3px solid rgba(26, 130, 138, .16);
}

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

.option-grid label {
  min-height: 46px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fbfdfe;
  cursor: pointer;
  line-height: 1.35;
  overflow-wrap: anywhere;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.option-grid label:has(input:checked) {
  border-color: rgba(26, 130, 138, .6);
  background: var(--color-mint);
  color: var(--color-primary-dark);
}

.option-grid input {
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--color-primary);
}

.diagnostic-actions,
.lead-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.diagnostic-actions .btn,
.lead-actions .btn {
  width: 100%;
}

.form-errors {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(179, 58, 58, .3);
  border-radius: var(--radius);
  background: rgba(179, 58, 58, .08);
  color: var(--color-error);
  font-size: 12px;
  font-weight: 800;
}

.field-error {
  margin: -6px 0 0;
  color: var(--color-error);
  font-size: 11px;
  font-weight: 800;
}

.has-error {
  border-color: rgba(179, 58, 58, .55) !important;
}

.diagnostic-panel.is-complete .diagnostic-status,
.diagnostic-panel.is-complete .diagnostic-progress {
  display: none;
}

.result-panel {
  padding: 4px 0 0;
}

.result-panel[hidden] {
  display: none;
}

.result-panel h3 {
  margin: 0 0 18px;
  color: var(--color-primary-dark);
  font-size: 26px;
  line-height: 1.16;
}

.result-grid {
  display: grid;
  gap: 12px;
}

.result-stat {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--color-cream);
}

.result-stat > span,
.result-stat > strong,
.result-stat > small {
  display: block;
}

.result-stat > span {
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 800;
}

.result-stat > strong {
  margin-top: 6px;
  color: var(--color-primary);
  font-size: 23px;
  line-height: 1.12;
}

.result-stat > small {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}

.result-stat-description {
  margin: 10px 0 0;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.result-stat > .result-stat-marker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.result-stat-marker span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border: 1px solid rgba(26, 130, 138, .18);
  border-radius: 999px;
  background: rgba(26, 130, 138, .08);
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 900;
}

.result-note {
  margin: 16px 0 20px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}

.result-panel h4 {
  margin: 18px 0 10px;
  color: var(--color-primary-dark);
  font-size: 16px;
}

.recommendations {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.recommendations li {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #fbfdfe;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
}

.recommendations strong {
  display: block;
  color: var(--color-primary);
  font-size: 13px;
}

.recommendations span {
  display: block;
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
}

.lead-box {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(26, 130, 138, .18);
  border-radius: var(--radius);
  background: var(--color-mint);
}

.lead-box h4,
.lead-box p {
  margin: 0;
}

.lead-box p {
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.lead-grid {
  display: grid;
  gap: 12px;
}

.lead-grid label {
  display: grid;
  gap: 6px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 800;
}

.lead-grid span {
  color: var(--color-muted);
  font-weight: 600;
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}

.consent-field input {
  margin-top: 2px;
  accent-color: var(--color-primary);
}

.consent-field a {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-status {
  min-height: 24px;
  margin-top: 10px;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 800;
}

.lead-status.is-error {
  color: var(--color-error);
}

.lead-status.is-success {
  color: var(--color-success);
}

.lever-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: var(--color-white);
}

.lever-card.is-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.lever-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(26, 130, 138, .1);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.lever-card.is-primary span {
  background: rgba(255, 255, 255, .16);
  color: var(--color-white);
}

.lever-card.is-primary h3,
.lever-card.is-primary li {
  color: var(--color-white);
}

.lever-card h3 {
  font-size: 22px;
}

.lever-card ul,
.comparison-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.lever-card li,
.comparison-grid li {
  position: relative;
  padding-left: 20px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
}

.lever-card li::before,
.comparison-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent-strong);
  font-weight: 900;
}

.step-card {
  padding: 24px;
  text-align: center;
}

.step-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 900;
}

.result-layout {
  display: grid;
  gap: 26px;
  align-items: center;
}

.human-visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.human-visual img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

.comparison-grid {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.comparison-grid > div {
  padding: 18px;
  border: 1px solid rgba(16, 42, 54, .08);
  border-radius: var(--radius);
  background: var(--color-cream);
}

.comparison-grid h3 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 15px;
}

.final-cta {
  padding: 24px 0 54px;
  background: var(--color-white);
}

.final-cta-inner {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 30px 22px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(105deg, #1a828a 0%, #0d5964 100%);
  color: var(--color-white);
}

.final-cta h2 {
  color: var(--color-white);
}

.final-cta p {
  color: rgba(255, 255, 255, .82);
}

.final-cta .btn {
  width: 100%;
}

.faq-section {
  background: var(--color-cream);
}

.faq-container {
  max-width: 1040px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(16, 42, 54, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr 22px;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  color: var(--color-primary-dark);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  transition: transform .2s ease;
}

.faq-item[open] svg {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 18px 18px;
}

.faq-answer p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.calendly-popin {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(16, 42, 54, .64);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.calendly-popin:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

.calendly-popin__dialog {
  position: relative;
  width: min(100%, 980px);
  max-height: calc(100svh - 28px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 30px 80px rgba(16, 42, 54, .32);
}

.calendly-popin__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 42, 54, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: var(--color-text);
  font-size: 28px;
  line-height: 1;
}

.calendly-inline-widget {
  min-height: 640px;
}

.calendly-loading,
.calendly-fallback {
  min-height: 640px;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--color-text);
  font-weight: 800;
  text-align: center;
}

.site-footer {
  padding: 34px 0 24px;
  background: var(--color-white);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand img {
  width: 152px;
}

.footer-brand p,
.footer-grid a,
.footer-grid span {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}

.footer-grid h2 {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 12px;
}

.footer-grid nav,
.footer-grid address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.footer-grid a {
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-grid a:hover {
  color: var(--color-primary-dark);
}

.footer-grid svg,
.footer-grid address span svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.footer-grid address span {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
}

.footer-bottom {
  margin-top: 26px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.legal-page {
  min-height: 100vh;
  background: var(--color-cream);
}

.legal-main {
  padding: 34px 0 64px;
}

.legal-content {
  max-width: 860px;
  padding: 28px;
  border: 1px solid rgba(16, 42, 54, .09);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.legal-content img {
  width: 156px;
  margin-bottom: 24px;
}

.legal-content h1 {
  margin: 0 0 18px;
  color: var(--color-primary-dark);
  font-size: 34px;
  line-height: 1.14;
}

.legal-content h2 {
  margin: 26px 0 8px;
  color: var(--color-primary);
  font-size: 18px;
}

.legal-content p {
  margin: 8px 0;
  color: var(--color-muted);
  font-weight: 700;
}

.legal-content a {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-warning {
  padding: 12px 14px;
  border: 1px solid rgba(253, 209, 63, .55);
  border-radius: var(--radius);
  background: rgba(253, 209, 63, .18);
  color: var(--color-text) !important;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 900;
}

.reveal {
  opacity: 1;
}

.has-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .62s ease, transform .62s ease;
}

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

@media (min-width: 560px) {
  .hero-actions,
  .diagnostic-actions,
  .lead-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .btn,
  .diagnostic-actions .btn,
  .lead-actions .btn {
    width: auto;
  }

  .result-grid,
  .comparison-grid,
  .lead-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .brand img {
    width: 166px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-reassurance {
    display: flex;
    flex-wrap: wrap;
  }

  .proof-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin-top: 34px;
  }

  .proof-row div {
    min-height: 40px;
    padding: 0 28px;
    border-right: 1px solid rgba(16, 42, 54, .16);
    border-bottom: 0;
  }

  .proof-row div:first-child {
    padding-left: 0;
  }

  .proof-row div:last-child {
    border-right: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .diagnostic-intro h2,
  .result-copy h2,
  .final-cta h2 {
    font-size: 38px;
  }

  .four-cols,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lever-grid,
  .result-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta-inner {
    grid-template-columns: 1fr auto;
    padding: 36px 42px;
  }

  .final-cta .btn {
    width: auto;
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .nav-cta {
    order: 3;
    margin-left: 4px;
    padding: 0 18px;
  }

  .nav-cta-full {
    display: inline;
  }

  .nav-cta-mobile {
    display: none;
  }

  .site-nav {
    position: static;
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    position: relative;
    min-height: 44px;
    padding: 8px 2px;
    font-size: 12px;
    white-space: nowrap;
  }

  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    border-radius: 999px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform .18s ease;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: transparent;
  }

  .site-nav a:hover::after,
  .site-nav a:focus-visible::after {
    transform: scaleX(1);
  }

  .hero-grid {
    grid-template-columns: .95fr 1.05fr;
    gap: 52px;
  }

  .floating-proof {
    display: block;
  }

  .proof-one {
    top: 22px;
    right: -22px;
  }

  .proof-two {
    left: -22px;
    bottom: 28px;
  }

  .diagnostic-layout {
    grid-template-columns: .86fr 1.14fr;
    gap: 54px;
  }

  .lever-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .diagnostic-panel {
    padding: 26px;
  }

  .four-cols {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1160px) {
  .hero h1 {
    font-size: 55px;
  }

  .hero-client-strip {
    grid-template-columns: minmax(270px, auto) minmax(0, 1fr);
    gap: 28px;
    margin-top: 28px;
    padding: 18px 22px;
  }

  .hero-client-copy {
    font-size: 18px;
    white-space: nowrap;
  }

  .hero-client-rating {
    flex-wrap: nowrap;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero-logo-marquee::before,
  .hero-logo-marquee::after {
    width: 56px;
  }

  .hero-logo-card {
    width: 164px;
    height: 64px;
    padding: 13px 20px;
  }

  .hero-logo-card img {
    max-width: 138px;
    max-height: 38px;
    transform: scale(1.22);
  }
}

@media (max-width: 420px) {
  .header-inner {
    gap: 8px;
  }

  .brand img {
    width: 126px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 10px;
    font-size: 11px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .option-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .diagnostic-panel,
  .mini-diagnostic {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }

  .has-reveal .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-logo-track {
    animation: none;
    transform: none;
  }

  .hero-parallax .mini-diagnostic,
  .hero-parallax .floating-proof {
    transform: none;
    will-change: auto;
  }
}

@media (hover: none) {
  .hero-parallax .mini-diagnostic,
  .hero-parallax .floating-proof {
    transform: none;
    will-change: auto;
  }
}
