:root {
  --sun: #ffce33;
  --sun-deep: #f6c634;
  --blue: #2f63f4;
  --blue-dark: #19466b;
  --ink: #171a24;
  --muted: #6f727b;
  --cream: #fff7df;
  --pale-blue: #e8f1ff;
  --white: #ffffff;
  --radius-card: 28px;
  --radius-pill: 999px;
  --nav-height: 92px;
  --nav-cta-rail: clamp(220px, 24vw, 340px);
  --side: clamp(24px, 6vw, 132px);
  --display: "Space Grotesk", "Avenir Next", sans-serif;
  --body: "DM Sans", "Avenir Next", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.35;
}

main,
#main {
  max-width: 100%;
  overflow-x: clip;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 1px 20px rgba(23, 26, 36, 0.08);
  backdrop-filter: blur(16px);
}

.nav {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) var(--nav-cta-rail);
  align-items: center;
  min-height: var(--nav-height);
  padding: 0 var(--side);
  column-gap: clamp(28px, 4vw, 72px);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 42px);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav__links--left {
  grid-column: 2;
  grid-row: 1;
  justify-content: center;
}

.nav__links--right {
  grid-column: 3;
  grid-row: 1;
  width: 100%;
  justify-content: flex-end;
}

.nav__links--right .button {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  padding-inline: 16px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav__links a:not(.button) {
  position: relative;
}

.nav__links a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav__links a:not(.button):hover::after {
  transform: scaleX(1);
}

.nav__brand {
  grid-column: 1;
  grid-row: 1;
  width: clamp(150px, 13vw, 200px);
}

.menu-toggle {
  display: none;
  width: 54px;
  height: 54px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  padding: calc(var(--nav-height) + 34px) 34px 34px;
  background: var(--blue);
  color: var(--white);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__inner {
  display: grid;
  gap: 16px;
}

.mobile-menu__inner > a {
  font-family: var(--display);
  font-size: clamp(38px, 12vw, 72px);
  line-height: 0.95;
}

.mobile-menu__ctas {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mobile-menu p {
  max-width: 330px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 50px;
  padding: 0 24px;
  font-size: 15px;
  text-transform: none;
}

.button--primary {
  background: var(--blue);
  color: var(--white);
}

.button--primary:hover {
  background: var(--blue-dark);
}

.button--outline {
  border-color: currentColor;
  background: transparent;
}

.button--outline:hover,
.button--ghost:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 1.02fr);
  align-items: center;
  height: 100svh;
  min-height: 100svh;
  padding: calc(var(--nav-height) + 18px) var(--side) clamp(24px, 3svh, 34px);
  overflow: hidden;
  background: var(--sun);
}

.hero__line {
  display: none;
}

.hero__line::after {
  position: absolute;
  right: -8vw;
  bottom: 104px;
  width: 30vw;
  height: 52px;
  border: solid var(--white);
  border-width: 44px 0 0;
  content: "";
  transform: rotate(-49deg);
  transform-origin: right center;
}

.hero__content,
.hero__visual {
  position: relative;
  z-index: 2;
}

.hero__kicker {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(46px, 5.45vw, 62px);
  line-height: 0.96;
  text-transform: uppercase;
}

.hero__headline-tail{
  font-size: 1.4em;
  display: inline-block;
  margin-top: 0.2em;
}

.hero__highlight {
  color: var(--blue);
}

.hero__body {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(17px, 1.12vw, 20px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
  max-width: 650px;
  margin-bottom: 16px;
  justify-content: center;
}

.hero__actions .button {
  min-height: 64px;
  padding-inline: 34px;
}

.hero__note {
  width: 100%;
  max-width: 650px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.hero__visual {
  display: flex;
  min-height: 0;
  align-self: center;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
}

.hero__scribble-scene {
  width: auto;
  max-width: min(92%, 600px);
  max-height: 640px;
  overflow: visible;
}

.hero__scribble-mask-stroke {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__scribble-photo {
  filter: drop-shadow(0 28px 42px rgba(23, 26, 36, 0.16));
}

.hero__scribble-mask-stroke {
  stroke: #ffffff;
  stroke-width: 162px;
  stroke-dasharray: 1;
  stroke-dashoffset: var(--paint-start, 1);
  animation: heroScribblePaint 200ms linear var(--paint-delay) forwards;
}

.process-pill {
  position: absolute;
  right: 50%;
  bottom: 0;
  z-index: 3;
  display: grid;
  min-width: 272px;
  padding: 24px 78px 24px 30px;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: var(--white);
  font-family: var(--display);
  transition: transform 180ms ease, background-color 180ms ease;
  transform: translateX(50%);
}

.process-pill::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  content: ">";
  display: grid;
  place-items: center;
  font-size: 25px;
  transform: translateY(-50%);
}

.process-pill:hover {
  background: var(--blue-dark);
  transform: translateX(50%) translateY(-4px);
}

.process-pill span {
  font-size: 24px;
}

.process-pill small {
  font-size: 16px;
}

.section-pad {
  padding: clamp(75px, 13vw, 190px) var(--side);
}

.ssu-page {
  padding-top: calc(var(--nav-height) + 48px);
}

.ssu-page__article {
  max-width: 760px;
  margin: 0 auto;
}

.ssu-page__article h1 {
  margin-bottom: 24px;
}

.ssu-page__article :where(h2, h3, h4) {
  margin: 40px 0 16px;
  font-family: var(--display);
}

.ssu-page__article :where(p, ul, ol) {
  color: var(--ink);
  line-height: 1.55;
}

.ssu-page__article :where(ul, ol) {
  padding-left: 1.2em;
}

.ssu-page__article :where(li + li) {
  margin-top: 0.55em;
}

.ssu-page__article :where(a:not(.button)) {
  color: var(--blue-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.ssu-page__article :where(blockquote) {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  background: #f5f9ff;
}

.testimonials {
  position: relative;
  display: grid;
  gap: clamp(22px, 3.5vw, 42px);
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.72) 0 10%, transparent 11%),
    linear-gradient(180deg, #f4f8ff 0%, #eef5ff 100%);
  overflow: hidden;
}

.home .testimonials.section-pad {
  padding-top: 80px;
}

.testimonials__intro {
  position: relative;
  z-index: 2;
}

.testimonials__intro h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.testimonials__rail {
  --testimonial-gap: 22px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.testimonials__track {
  display: flex;
  width: max-content;
  gap: var(--testimonial-gap);
  animation: testimonials-scroll 38s linear infinite;
}

.testimonials__rail:hover .testimonials__track {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 clamp(280px, 28vw, 370px);
  display: flex;
  min-height: 206px;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 2px solid rgba(25, 70, 107, 0.12);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(25, 70, 107, 0.08);
}

.testimonial-card__avatar {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2f63f4 0%, #75a2ff 100%);
  color: var(--white);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  overflow: hidden;
}

.testimonial-card__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card:nth-child(6n + 2) .testimonial-card__avatar {
  background: linear-gradient(135deg, #f6c634 0%, #ffe38e 100%);
  color: var(--ink);
}

.testimonial-card:nth-child(6n + 3) .testimonial-card__avatar {
  background: linear-gradient(135deg, #19466b 0%, #2f63f4 100%);
}

.testimonial-card:nth-child(6n + 4) .testimonial-card__avatar {
  background: linear-gradient(135deg, #f59f00 0%, #ffce33 100%);
  color: var(--ink);
}

.testimonial-card:nth-child(6n + 5) .testimonial-card__avatar {
  background: linear-gradient(135deg, #3077ac 0%, #7eb5dd 100%);
}

.testimonial-card:nth-child(6n + 6) .testimonial-card__avatar {
  background: linear-gradient(135deg, #1f4b3f 0%, #45a786 100%);
}

.testimonial-card__body {
  display: grid;
  gap: 14px;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.3;
}

.testimonial-card strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.fit {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 7vw, 104px);
  align-items: start;
  min-height: auto;
  background: var(--white);
  overflow: hidden;
}

.fit__intro {
  position: sticky;
  top: clamp(116px, 15vh, 172px);
  align-self: start;
}

.fit__intro h2,
.testimonials__intro h2,
.audit-preview__statement h2,
.services__copy h2,
.who__copy h2,
.case-studies__intro h2,
.process__title h2,
.final-cta h2 {
  margin-bottom: 26px;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.94;
}

.fit__intro p,
.audit-preview__statement p,
.services__copy p,
.who__copy p,
.case-studies__intro p,
.process__title p,
.final-cta p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 24px);
}

.fit__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 292px));
  justify-content: start;
  gap: 18px 26px;
  padding-top: 6vh;
  padding-bottom: 0;
  overflow: visible;
}

.fit-card {
  position: relative;
  width: min(100%, var(--fit-card-width, 100%));
  min-height: 224px;
  padding: 28px 26px;
  border-radius: 24px;
  background: var(--cream);
  box-shadow: 0 18px 38px rgba(23, 26, 36, 0.08);
}

.fit-card:nth-child(1) {
  --fit-card-width: 88%;
  --fit-rotate: -6.8deg;
  transform: rotate(var(--fit-rotate));
}

.fit-card:nth-child(2) {
  --fit-card-width: 82%;
  --fit-rotate: 7.4deg;
  justify-self: end;
  margin-top: 34px;
  margin-left: -18px;
  background: var(--pale-blue);
  transform: rotate(var(--fit-rotate));
}

.fit-card--wide {
  grid-column: span 2;
  --fit-rotate: -4.2deg;
  width: min(100%, 84%);
  min-height: 248px;
  justify-self: center;
  margin-top: -10px;
  margin-bottom: -6px;
  background: var(--blue);
  color: var(--white);
  transform: rotate(var(--fit-rotate));
}

.fit-card:nth-child(4) {
  --fit-card-width: 84%;
  --fit-rotate: 5.8deg;
  justify-self: end;
  margin-top: -18px;
  margin-right: 12px;
  background: var(--sun);
  transform: rotate(var(--fit-rotate));
}

.fit-card:nth-child(5) {
  --fit-card-width: 86%;
  --fit-rotate: -7.1deg;
  margin-top: -26px;
  margin-left: 34px;
  background: var(--ink);
  color: var(--white);
  transform: rotate(var(--fit-rotate));
}

.fit-card.reveal {
  opacity: 0;
  transform: translate3d(-42px, 24px, 0) rotate(var(--fit-rotate, -4deg)) scale(0.97);
  transition: opacity 720ms ease, transform 820ms cubic-bezier(0.18, 0.72, 0.16, 1);
}

.fit-card.reveal:nth-child(even) {
  transform: translate3d(42px, 24px, 0) rotate(var(--fit-rotate, 4deg)) scale(0.97);
}

.fit-card.reveal.is-visible,
.fit-card.reveal.is-visible:nth-child(even) {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(var(--fit-rotate, 0deg)) scale(1);
}

.fit-card span {
  display: block;
  margin-bottom: 34px;
  font-family: var(--display);
  font-weight: 600;
  color: var(--blue);
}

.fit-card p {
  margin-bottom: 0;
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.08;
}

.fit-card--wide span,
.fit-card:nth-child(5) span {
  color: inherit;
}

.audit-preview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: start;
  min-height: auto;
  background: var(--sun);
}

.audit-preview__mascot {
  position: absolute;
  top: 0;
  left: calc(var(--side) + min(28vw, 360px));
  z-index: 3;
  width: clamp(150px, 13vw, 240px);
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-5deg);
}

.audit-preview__mascot img {
  width: 100%;
  filter: drop-shadow(0 18px 28px rgba(23, 26, 36, 0.14));
}

.audit-preview__statement {
  position: sticky;
  top: clamp(116px, 15vh, 172px);
  align-self: start;
}

.audit-preview__statement .button {
  margin-top: 20px;
}

.audit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding-top: 8vh;
  padding-bottom: 0;
}

.audit-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 34px;
  border-radius: var(--radius-card);
  background: var(--white);
}

.audit-card:nth-child(2),
.audit-card:nth-child(5) {
  margin-top: 0;
}

.audit-card--blue {
  background: var(--blue);
  color: var(--white);
}

.audit-card--blue p {
  color: rgba(255, 255, 255, 0.78);
}

.audit-card--pale {
  background: var(--pale-blue);
}

.audit-card__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  padding: 14px;
}

.audit-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.audit-card h3 {
  margin: 44px 0 24px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
}

.audit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 22px);
}

.audit-card--blue p {
  color: rgba(255, 255, 255, 0.82);
}

.services {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  min-height: auto;
  background: var(--white);
}

.services__copy {
  position: sticky;
  top: 0;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) clamp(32px, 7vw, 130px) clamp(56px, 7vw, 92px);
  background: var(--blue);
  color: var(--white);
}

.services__copy h2 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.7vw, 92px);
  line-height: 0.95;
}

.services__copy p {
  max-width: 22ch;
  color: rgba(255, 255, 255, 0.8);
}

.service-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-content: stretch;
  padding: clamp(0px, 3vw, 0px) 0;
}

.service-panel {
  position: relative;
  display: flex;
  min-height: 52vh;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(30px, 3vw, 42px) clamp(34px, 6vw, 90px) clamp(34px, 4vw, 46px);
  overflow: hidden;
}

.service-panel--yellow {
  background: var(--cream);
}

.service-panel--white {
  background: #f8fbff;
}

.service-panel--blue {
  background: var(--sun);
}

.service-panel__media {
  display: block;
  width: min(360px, 100%);
  aspect-ratio: 16 / 9;
  margin-bottom: auto;
  border-radius: 8px;
}

.service-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-panel__media--fix,
.service-panel__media--rebuild {
 /* box-shadow: 0 18px 42px rgba(23, 26, 36, 0.1);*/
}

.service-panel__media--care {
  background:
    linear-gradient(135deg, rgba(250, 214, 82, 0.35), rgba(47, 99, 244, 0.72)),
    radial-gradient(circle at 74% 34%, rgba(255, 255, 255, 0.62) 0 11%, transparent 12%);
}

.service-panel h3 {
  max-width: 620px;
  margin-top: 28px;
  margin-bottom: 18px;
  font-size: clamp(34px, 3.4vw, 60px);
  line-height: 0.95;
}

.service-panel p {
  max-width: 540px;
  color: var(--muted);
}

.service-panel a {
  width: fit-content;
  margin-top: 12px;
  border-bottom: 2px solid currentColor;
  font-family: var(--display);
  font-weight: 600;
}

@media (min-width: 921px) {
  .service-panel {
    justify-content: center;
  }

  .service-panel__media {
    margin-bottom: 20px;
  }
}

@media (min-width: 2000px) {
  .fit__cards {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    max-width: 860px;
    justify-content: space-between;
    gap: 24px 44px;
    margin-left: auto;
    padding-top: 2vh;
  }

  .fit-card:nth-child(2) {
    margin-top: 18px;
    margin-left: 0;
  }

  .fit-card--wide {
    width: min(100%, 92%);
  }

  .fit-card:nth-child(4) {
    margin-top: -8px;
    margin-right: 0;
  }

  .fit-card:nth-child(5) {
    margin-top: -12px;
    margin-left: 0;
  }
}

.who {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  grid-template-areas: "copy cards";
  gap: clamp(40px, 7vw, 104px);
  align-items: start;
  scroll-margin-top: var(--nav-height);
  overflow: hidden;
  background: var(--white);
}

.who::before {
  position: absolute;
  right: -7vw;
  bottom: 13%;
  color: rgba(23, 26, 36, 0.04);
  content: "WHO WE HELP";
  font-family: var(--display);
  font-size: clamp(90px, 18vw, 270px);
  line-height: 0.8;
  white-space: nowrap;
}

.who__copy {
  z-index: 1;
  grid-area: copy;
  position: sticky;
  top: clamp(116px, 15vh, 172px);
  align-self: start;
}

.who__copy h2 {
  max-width: 8ch;
  font-size: clamp(52px, 6vw, 96px);
}

.who__cards {
  position: relative;
  z-index: 1;
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px) 0;
  padding-top: 8vh;
}

.who__cards.reveal,
.who__cards.reveal.is-visible {
  transform: none;
}

.audience-card {
  --card-rotate: -1.2deg;
  --card-lift: 0px;
  --card-bg: var(--sun);
  position: relative;
  display: grid;
  width: calc(100% + clamp(8px, 1vw, 14px));
  min-height: clamp(320px, 31vw, 460px);
  align-content: end;
  overflow: hidden;
  border: 2px solid rgba(23, 26, 36, 0.08);
  border-radius: 8px;
  background: var(--card-bg);
  box-shadow: 0 22px 50px rgba(23, 26, 36, 0.09);
  opacity: 0;
  transform: translate3d(var(--slide-x, 0), 28px, 0) rotate(var(--card-rotate));
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 700ms ease, box-shadow 220ms ease;
}

.audience-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 26, 36, 0) 42%, rgba(23, 26, 36, 0.7) 100%);
  content: "";
}

.audience-card:hover {
  box-shadow: 0 26px 62px rgba(23, 26, 36, 0.14);
  transform: translateY(-6px) rotate(var(--card-rotate));
}

.audience-card__image {
  position: absolute;
  inset: 0;
}

.audience-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 520ms ease;
}

.audience-card:hover .audience-card__image img {
  transform: scale(1.07);
}

.audience-card h3 {
  position: relative;
  z-index: 1;
  max-width: 11ch;
  margin: 0;
  padding: clamp(18px, 2.6vw, 32px);
  color: var(--white);
  font-size: clamp(28px, 3vw, 52px);
  line-height: 0.98;
  text-shadow: 0 2px 20px rgba(23, 26, 36, 0.24);
  text-wrap: balance;
}

.audience-card__nowrap {
  white-space: nowrap;
}

.audience-card:nth-child(even) h3 {
  padding-left: clamp(26px, 3.4vw, 48px);
}

.audience-card:nth-child(1) {
  --card-rotate: -1.5deg;
  --slide-x: -18px;
  z-index: 5;
}

.audience-card:nth-child(2) {
  --card-rotate: 1.4deg;
  --slide-x: 20px;
  z-index: 4;
  justify-self: end;
  margin-top: clamp(32px, 4vw, 68px);
}

.audience-card:nth-child(3) {
  --card-rotate: 1deg;
  --slide-x: -14px;
  z-index: 3;
  margin-top: clamp(-34px, -2vw, -18px);
}

.audience-card:nth-child(4) {
  --card-rotate: -1.1deg;
  --slide-x: 18px;
  z-index: 2;
  justify-self: end;
  margin-top: clamp(-20px, -1.2vw, -8px);
}

.audience-card:nth-child(5) {
  --card-rotate: -0.7deg;
  --slide-x: -12px;
  z-index: 1;
  grid-column: 1 / -1;
  justify-self: center;
  width: min(52%, 460px);
  margin-top: clamp(-30px, -1.7vw, -14px);
}

.who__cards.reveal.is-visible .audience-card {
  opacity: 1;
  transform: translate3d(0, var(--card-lift), 0) rotate(var(--card-rotate));
}

.who__cards.reveal.is-visible .audience-card:hover {
  transform: translateY(calc(var(--card-lift) - 6px)) rotate(var(--card-rotate));
}

.who__cards.reveal.is-visible .audience-card:nth-child(1) {
  transition-delay: 80ms;
}

.who__cards.reveal.is-visible .audience-card:nth-child(2) {
  transition-delay: 150ms;
}

.who__cards.reveal.is-visible .audience-card:nth-child(3) {
  transition-delay: 220ms;
}

.who__cards.reveal.is-visible .audience-card:nth-child(4) {
  transition-delay: 290ms;
}

.who__cards.reveal.is-visible .audience-card:nth-child(5) {
  transition-delay: 360ms;
}

.who__aside {
  display: none;
}

.who-help-page {
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 206, 51, 0.22) 0 18%, transparent 19%),
    var(--white);
}

.who-help-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + clamp(30px, 7vw, 82px));
  padding-bottom: clamp(56px, 9vw, 110px);
}

.who-help-hero__content {
  width: min(100%, 900px);
}

.who-help-hero__kicker {
  margin: 0 0 16px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.who-help-hero h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.9;
  text-wrap: balance;
}

.who-help-hero p {
  max-width: 62ch;
  margin: 22px 0 0;
  color: var(--muted);
}

.who-help-hero .button {
  margin-top: 30px;
}

.who-help-rows {
  position: relative;
  padding-top: clamp(56px, 8vw, 108px);
  padding-bottom: clamp(62px, 9vw, 120px);
  background: var(--cream);
}

.who-help-rows__intro {
  max-width: 850px;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.who-help-rows__intro h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.92;
}

.who-help-rows__intro p {
  max-width: 64ch;
  margin-top: 18px;
  color: var(--muted);
}

.who-help-rows__list {
  display: grid;
  gap: clamp(24px, 3.4vw, 40px);
}

.who-help-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 3vw, 52px);
  align-items: center;
  padding: clamp(16px, 1.9vw, 20px);
  border: 2px solid rgba(23, 26, 36, 0.08);
  border-radius: 26px;
  background: var(--white);
}

.who-help-row:nth-child(even) .who-help-row__media {
  order: 2;
}

.who-help-row:nth-child(even) .who-help-row__copy {
  order: 1;
}

.who-help-row__media {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
}

.who-help-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.who-help-row:hover .who-help-row__media img {
  transform: scale(1.03);
}

.who-help-row__copy h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.96;
  text-wrap: balance;
}

.who-help-row__copy p {
  margin: 16px 0 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .who-help-row {
    grid-template-columns: 1fr;
  }

  .who-help-row:nth-child(even) .who-help-row__media,
  .who-help-row:nth-child(even) .who-help-row__copy {
    order: initial;
  }
}

@media (max-width: 640px) {
  .who-help-hero p,
  .who-help-rows__intro p,
  .who-help-row__copy p {
    font-size: 17px;
    line-height: 1.35;
  }

  .who-help-row {
    padding: 14px;
    border-radius: 20px;
  }

  .who-help-row__media {
    border-radius: 14px;
  }
}

.case-studies {
  position: relative;
  padding: clamp(32px, 5vw, 64px) 0 clamp(72px, 9vw, 110px);
  overflow: hidden;
  background: var(--cream);
}

.marquee {
  position: relative;
  z-index: 2;
  display: flex;
  width: max-content;
  margin: clamp(-58px, -4vw, -26px) 0 clamp(18px, 3vw, 32px);
  color: rgba(23, 26, 36, 0.1);
  font-family: var(--display);
  font-size: clamp(80px, 13vw, 190px);
  line-height: 0.85;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}

.marquee span {
  padding-right: 0.3em;
  white-space: nowrap;
}

.case-studies__intro {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 var(--side) 42px;
}

.case-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-columns: minmax(310px, 430px);
  grid-auto-flow: column;
  align-items: stretch;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 var(--side) 22px;
  scroll-snap-type: x proximity;
}

.case-row::-webkit-scrollbar {
  height: 8px;
}

.case-row::-webkit-scrollbar-thumb {
  border-radius: var(--radius-pill);
  background: var(--blue);
}

.case-card {
  min-height: 470px;
  padding: 18px 18px 30px;
  border-radius: 8px;
  background: var(--white);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.case-card:nth-child(even) {
  margin-top: 70px;
  background: var(--sun);
}

.case-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 28px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(47, 99, 244, 0.72), rgba(250, 214, 82, 0.72)),
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.8) 0 9%, transparent 10%),
    linear-gradient(45deg, #d8e8ff, #fff7df);
}

.case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__image--training {
  background:
    linear-gradient(135deg, rgba(23, 26, 36, 0.62), rgba(47, 99, 244, 0.25)),
    repeating-linear-gradient(90deg, #fff7df 0 18px, #fad652 18px 36px);
}

.case-card__image--language {
  background:
    radial-gradient(circle at 72% 36%, rgba(47, 99, 244, 0.72) 0 18%, transparent 19%),
    linear-gradient(135deg, #f4f7ff, #fad652);
}

.case-card__image--education {
  background:
    linear-gradient(135deg, rgba(250, 214, 82, 0.2), rgba(47, 99, 244, 0.66)),
    repeating-linear-gradient(135deg, #ffffff 0 18px, #fff7df 18px 36px);
}

.case-card__image--tutor {
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.72) 0 11%, transparent 12%),
    linear-gradient(135deg, rgba(47, 99, 244, 0.82), rgba(250, 214, 82, 0.38));
}

.case-card__image--sports {
  background:
    linear-gradient(135deg, rgba(23, 26, 36, 0.28), rgba(47, 99, 244, 0.7)),
    repeating-linear-gradient(45deg, #fad652 0 20px, #fff7df 20px 40px);
}

.case-card__image--art {
  background:
    linear-gradient(135deg, rgba(250, 214, 82, 0.24), rgba(47, 99, 244, 0.78)),
    radial-gradient(circle at 74% 34%, rgba(255, 255, 255, 0.78) 0 10%, transparent 11%);
}

.case-card h3 {
  margin: 0 10px 18px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.case-card p {
  margin: 0 10px;
  color: var(--muted);
}

.case-studies > .button {
  display: flex;
  width: fit-content;
  margin: 42px auto 0;
}

.process {
  background: var(--white);
}

.process__lead {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 84px);
}

.process__title {
  max-width: 960px;
  margin-bottom: 0;
  order: 2;
}

.process__preview {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0;
  order: 1;
}

.process__report-image {
  display: block;
  width: min(100%, 560px);
  height: auto;
  border-radius: 22px;
}

.process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.process-step {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--radius-card);
  background: var(--cream);
}

.process-step:nth-child(1) {
  position: relative;
  z-index: 2;
  transform: translateY(-32px);
}

.process-step:nth-child(2) {
  position: relative;
  z-index: 3;
}

.process-step:nth-child(3) {
  position: relative;
  z-index: 1;
  transform: translateY(34px);
}

.process-step--active {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-18px);
}

.process-step span {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.process-step h3 {
  max-width: 360px;
  margin-bottom: 20px;
  font-size: clamp(34px, 4.2vw, 70px);
  line-height: 0.96;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-step--active p {
  color: rgba(255, 255, 255, 0.8);
}

.process__cta {
  display: flex;
  width: fit-content;
  margin: clamp(48px, 6vw, 86px) auto 0;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 88vh;
  place-items: center;
  padding: clamp(110px, 16vw, 210px) var(--side);
  overflow: hidden;
  background: var(--sun);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  top: 42%;
  left: 50%;
  color: rgba(23, 26, 36, 0.08);
  content: "GET STARTED GET STARTED GET STARTED";
  font-family: var(--display);
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.9;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 1050px;
  margin-bottom: 18px;
}

.final-cta p {
  margin-inline: auto;
  margin-bottom: 54px;
  color: var(--ink);
}

.mega-button {
  display: inline-flex;
  width: min(620px, 86vw);
  min-height: clamp(88px, 10vw, 138px);
  align-items: center;
  justify-content: center;
  padding: 24px 56px;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(24px, 3.3vw, 50px);
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease;
}

.mega-button:hover {
  background: var(--blue-dark);
  transform: scale(1.02);
}

.mega-button span {
  display: block;
  max-width: 11ch;
  padding-inline: 10px;
}

.audit-intake {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.96fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  min-height: 100svh;
  padding:
    calc(var(--nav-height) + clamp(28px, 7vh, 76px))
    var(--side)
    clamp(56px, 8vh, 96px);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.5), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      180deg,
      rgba(47, 99, 244, 0.08) 0,
      rgba(47, 99, 244, 0.08) 1px,
      transparent 1px,
      transparent 72px
    ),
    var(--sun);
  overflow: hidden;
}

.audit-intake::after {
  position: absolute;
  right: clamp(-120px, -8vw, -40px);
  bottom: clamp(30px, 8vh, 100px);
  width: clamp(240px, 28vw, 420px);
  height: clamp(240px, 28vw, 420px);
  border: 16px solid rgba(255, 255, 255, 0.35);
  border-radius: 34px;
  content: "";
  pointer-events: none;
  transform: rotate(12deg);
}

.audit-intake__copy,
.audit-form-shell {
  position: relative;
  z-index: 1;
}

.audit-intake__copy {
  max-width: 680px;
  padding-top: clamp(12px, 2vw, 28px);
}

.audit-intake__kicker,
.audit-band__eyebrow,
.audit-form-shell__eyebrow {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.audit-intake h1 {
  /*max-width: 11ch;*/
  margin-bottom: 24px;
}

.audit-intake__body {
  /*max-width: 19ch;*/
  margin-bottom: 28px;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.16;
}

.audit-intake__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.audit-intake__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  border: 2px solid rgba(23, 26, 36, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.52);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
}

.audit-intake__support {
  display: grid;
  gap: 18px;
  width: min(100%, 440px);
}

.audit-intake__note-sheet {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 247, 223, 0.92);
  box-shadow: 0 20px 44px rgba(23, 26, 36, 0.1);
  transform: rotate(-3deg);
}

.audit-intake__note-sheet p {
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.26;
}

.audit-placeholder {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 24px;
  border: 2px dashed rgba(23, 26, 36, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.42);
}

.audit-placeholder--blue {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(25, 70, 107, 0.18);
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.audit-placeholder__eyebrow {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.audit-placeholder__frame {
  min-height: 118px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(47, 99, 244, 0.12), rgba(47, 99, 244, 0.02)),
    linear-gradient(90deg, rgba(23, 26, 36, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(rgba(23, 26, 36, 0.08) 0 1px, transparent 1px 100%);
  background-size: auto, 56px 100%, 100% 56px;
}

.audit-placeholder--blue .audit-placeholder__frame {
  background:
    linear-gradient(180deg, rgba(255, 206, 51, 0.24), rgba(255, 255, 255, 0.06)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 100%),
    linear-gradient(rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 100%);
  background-size: auto, 56px 100%, 100% 56px;
}

.audit-placeholder p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.35;
}

.audit-form-shell {
  width: min(100%, 560px);
  justify-self: end;
  padding: clamp(24px, 3vw, 34px);
  border: 2px solid rgba(23, 26, 36, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(23, 26, 36, 0.14);
}

.audit-form-shell__top {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.audit-form-shell__eyebrow {
  margin-bottom: 0;
}

.audit-form-shell__progress {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audit-progress-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: #edf1f8;
  color: var(--muted);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
}

.audit-progress-pill.is-active {
  background: var(--blue);
  color: var(--white);
}

.audit-form {
  display: grid;
}

.audit-form__step {
  display: grid;
  gap: 18px;
}

.audit-form__label,
.audit-form__field span {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
}

.audit-form__field {
  display: grid;
  gap: 10px;
}

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

.audit-form__input,
.audit-form__textarea {
  width: 100%;
  border: 2px solid #d6dce8;
  border-radius: 20px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.audit-form__input {
  min-height: 62px;
  padding: 0 18px;
}

.audit-form__textarea {
  min-height: 136px;
  padding: 16px 18px;
  resize: vertical;
}

.audit-form__input::placeholder,
.audit-form__textarea::placeholder {
  color: #9198a7;
}

.audit-form__input:focus,
.audit-form__textarea:focus {
  border-color: rgba(47, 99, 244, 0.56);
  box-shadow: 0 0 0 4px rgba(47, 99, 244, 0.12);
  outline: 0;
}

.audit-form__input[aria-invalid="true"],
.audit-form__textarea[aria-invalid="true"] {
  border-color: #d14f4f;
  box-shadow: 0 0 0 4px rgba(209, 79, 79, 0.1);
}

.audit-form__hint,
.audit-form__privacy,
.audit-form__captcha-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.audit-form__button {
  width: 100%;
  min-height: 62px;
}

.audit-form__step-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 0.96;
}

.audit-form__step-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.audit-form__website-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--cream);
}

.audit-form__website-summary span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.audit-form__website-summary strong {
  font-size: 17px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.audit-form__edit {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.audit-form__captcha {
  display: grid;
  gap: 12px;
}

.audit-form__captcha-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f5f7fb;
}

.audit-form__status {
  min-height: 24px;
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 600;
}

.audit-form__status[data-state="error"] {
  color: #b33838;
}

.audit-form__status[data-state="success"] {
  color: #165f2d;
}

.audit-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
  background: var(--white);
}

.audit-band__intro h2,
.audit-checks__intro h2,
.audit-next__intro h2,
.audit-paths__copy h2,
.audit-scope__panel h2,
.audit-faq__intro h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5.9vw, 88px);
  line-height: 0.95;
}

.audit-band__intro p:last-child,
.audit-checks__intro p:last-child,
.audit-paths__copy p,
.audit-scope__panel p,
.audit-faq__intro p {
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 23px);
}

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

.audit-band-card {
  padding: 26px 24px;
  border-radius: 26px;
  background: var(--cream);
  box-shadow: 0 16px 34px rgba(23, 26, 36, 0.08);
}

.audit-band-card:nth-child(2n) {
  background: var(--pale-blue);
}

.audit-band-card--wide {
  grid-column: span 2;
  background: var(--ink);
  color: var(--white);
}

.audit-band-card p {
  margin-bottom: 0;
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.08;
}

.audit-checks {
  background: var(--blue);
  color: var(--white);
}

.audit-checks__intro p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.audit-checks__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.audit-check {
  min-height: 210px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
}

.audit-check--blue {
  background: #dbe6ff;
}

.audit-check--cream {
  background: var(--cream);
}

.audit-check--wide {
  grid-column: span 2;
}

.audit-check span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 56px;
  border-radius: 50%;
  border: 2px solid rgba(23, 26, 36, 0.14);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
}

.audit-check p {
  margin-bottom: 0;
  font-size: clamp(23px, 1.8vw, 30px);
  line-height: 1.08;
}

.audit-next {
  background: var(--white);
}

.audit-next__intro {
  max-width: 920px;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.audit-next__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.audit-next-step {
  min-height: 280px;
  padding: 30px 28px;
  border-radius: 30px;
  background: #f5f7fb;
}

.audit-next-step--active {
  background: var(--sun);
}

.audit-next-step span,
.audit-path-card span {
  display: block;
  margin-bottom: 38px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
}

.audit-next-step p,
.audit-path-card p {
  margin-bottom: 0;
  font-size: clamp(24px, 1.9vw, 32px);
  line-height: 1.08;
}

.audit-paths {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  background: var(--cream);
}

.audit-paths__copy p:last-child {
  margin-bottom: 0;
}

.audit-paths__cards {
  display: grid;
  gap: 20px;
}

.audit-path-card {
  padding: 30px 30px 34px;
  border-radius: 30px;
  background: var(--white);
}

.audit-path-card--blue {
  background: var(--blue);
  color: var(--white);
}

.audit-path-card--blue span {
  color: rgba(255, 255, 255, 0.84);
}

.audit-scope {
  background: var(--sun);
}

.audit-scope__panel {
  max-width: 980px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 54px rgba(23, 26, 36, 0.1);
}

.audit-scope__panel .button {
  margin-top: 8px;
}

.audit-faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(30px, 5vw, 72px);
  background: var(--white);
}

.audit-faq__items {
  display: grid;
  gap: 16px;
}

.audit-faq-item {
  padding: 24px 26px;
  border: 2px solid #e2e7f0;
  border-radius: 24px;
  background: #fbfcff;
}

.audit-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(24px, 1.75vw, 30px);
  line-height: 1.08;
}

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

.audit-faq-item summary::after {
  float: right;
  margin-left: 16px;
  color: var(--blue);
  content: "+";
  font-size: 28px;
}

.audit-faq-item[open] summary::after {
  content: "−";
}

.audit-faq-item p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.footer-anchor {
  display: block;
  height: 0;
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

.footer {
  display: grid;
  grid-template-columns: 0.9fr 1fr auto;
  gap: 40px;
  align-items: start;
  padding: 72px var(--side) 46px;
  background: var(--sun-deep);
}

.footer__brand img {
  width: 190px;
  margin-bottom: 20px;
}

.footer__brand p,
.footer__fine {
  margin-bottom: 0;
  color: rgba(23, 26, 36, 0.72);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  font-family: var(--display);
}

.footer__links a {
  border-bottom: 1px solid transparent;
}

.footer__links a:hover {
  border-color: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.process-step:nth-child(1).reveal.is-visible {
  transform: translateY(-32px);
}

.process-step--active.reveal.is-visible {
  transform: translateY(-18px);
}

.process-step:nth-child(3).reveal.is-visible {
  transform: translateY(34px);
}

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

@keyframes testimonials-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - (var(--testimonial-gap) / 2)));
  }
}

@keyframes heroScribblePaint {
  from {
    stroke-dashoffset: var(--paint-start, 1);
  }
  to {
    stroke-dashoffset: 0;
  }
}

@media (min-width: 1400px) and (min-height: 900px) {
  .hero {
    padding-top: calc(var(--nav-height) + 64px);
    padding-bottom: 84px;
  }

  .hero__kicker {
    margin-bottom: 28px;
  }

  h1 {
    margin-bottom: 36px;
    line-height: 1.04;
  }

  .hero__headline-tail {
    margin-top: 0.28em;
  }

  .hero__body {
    margin-bottom: 34px;
    line-height: 1.48;
  }

  .hero__actions {
    margin-bottom: 26px;
  }

  .audit-intake {
    padding-top: calc(var(--nav-height) + 64px);
    padding-bottom: 84px;
  }
}

@media (max-width: 920px) {
  :root {
    --nav-height: 82px;
    --side: 34px;
  }

  body {
    font-size: 17px;
  }

  .nav {
    display: flex;
    justify-content: space-between;
  }

  .nav__links {
    display: none;
  }

  .nav__brand {
    width: 168px;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
    pointer-events: none;
  }

  .mobile-menu.is-open {
    pointer-events: auto;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    padding-top: calc(var(--nav-height) + clamp(18px, 4svh, 34px));
    padding-bottom: clamp(46px, 7svh, 86px);
  }

  .services,
  .testimonials,
  .fit,
  .audit-preview,
  .audit-band,
  .audit-paths,
  .audit-faq {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .fit__intro,
  .audit-preview__statement {
    position: static;
  }

  .services__copy {
    position: static;
    min-height: auto;
  }

  .who {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "cards";
  }

  .who__copy {
    position: relative;
    top: auto;
    max-width: 760px;
  }

  .who__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 26px);
    padding-top: 0;
  }

  .audience-card,
  .audience-card:nth-child(1),
  .audience-card:nth-child(2),
  .audience-card:nth-child(3),
  .audience-card:nth-child(4),
  .audience-card:nth-child(5) {
    width: auto;
    grid-column: auto;
    min-height: clamp(340px, 58vw, 520px);
  }

  .audience-card:nth-child(2),
  .audience-card:nth-child(4) {
    margin-top: 42px;
  }

  .audience-card:nth-child(3),
  .audience-card:nth-child(5) {
    margin-top: 0;
  }

  .audit-preview__mascot {
    left: 50%;
    width: clamp(96px, 22vw, 150px);
    transform: translate(-50%, -50%) rotate(-5deg);
  }

  .hero__line {
    right: -42vw;
    bottom: 24%;
    width: 110vw;
    height: 28px;
    border-top-width: 26px;
  }

  .hero__line::after {
    display: none;
  }

  .hero__actions {
    display: grid;
  }

  .hero__visual {
    display: flex;
    min-height: auto;
    margin-top: 0px;
  }

  .hero__scribble-scene {
    width: min(100%, 560px);
    height: auto;
    max-height: 520px;
    margin-inline: auto;
  }

  .audit-intake {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-height) + 26px);
  }

  .audit-intake::after {
    right: -60px;
    bottom: 12px;
    width: 240px;
    height: 240px;
  }

  .audit-intake__copy {
    max-width: none;
    padding-top: 0;
  }

  .audit-intake__body {
    max-width: 18ch;
  }

  .audit-form-shell {
    width: 100%;
    justify-self: stretch;
  }

  .audit-band__cards,
  .audit-checks__grid,
  .audit-next__steps {
    grid-template-columns: 1fr 1fr;
  }

  .audit-check--wide,
  .audit-band-card--wide {
    grid-column: span 2;
  }

  .process-pill {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    min-width: min(310px, 86vw);
    margin-top: -24px;
    transform: none;
  }

  .process-pill:hover {
    transform: translateY(-4px);
  }

  .fit__cards,
  .audit-grid,
  .service-panels,
  .process__steps {
    grid-template-columns: 1fr;
  }

  .audit-card {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon body";
    align-items: start;
    min-height: auto;
    gap: 6px 18px;
    padding: 26px 24px;
  }

  .audit-card:nth-child(odd) {
    margin-right: auto;
  }

  .audit-card:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) 74px;
    grid-template-areas:
      "title icon"
      "body icon";
    margin-left: auto;
    text-align: right;
  }

  .audit-card__icon {
    grid-area: icon;
    width: 62px;
    height: 62px;
    align-self: center;
  }

  .audit-card:nth-child(even) .audit-card__icon {
    justify-self: end;
  }

  .audit-card h3 {
    grid-area: title;
    margin: 6px 0 6px;
    font-size: clamp(28px, 7vw, 42px);
  }

  .audit-card p {
    grid-area: body;
    margin: 0;
  }

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

  .process__title,
  .process__preview {
    order: initial;
  }

  .process__preview {
    justify-content: center;
  }

  .process__report-image {
    width: min(100%, 720px);
  }

  .fit-card,
  .fit-card--wide {
    grid-column: auto;
  }

  .fit-card:nth-child(even),
  .audit-card:nth-child(2),
  .audit-card:nth-child(5),
  .fit-card.reveal.is-visible:nth-child(even),
  .audit-card.reveal.is-visible:nth-child(2),
  .audit-card.reveal.is-visible:nth-child(5),
  .process-step--active,
  .process-step--active.reveal.is-visible {
    transform: none;
    margin-top: 0;
  }

  .service-panel {
    grid-column: auto;
    min-height: 440px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    grid-template-areas:
      "step title"
      ". body";
    min-height: auto;
    gap: 8px 16px;
    padding: 24px 22px;
  }

  .process-step span {
    grid-area: step;
    align-self: start;
    margin-top: 3px;
  }

  .process-step h3 {
    grid-area: title;
    max-width: none;
    margin: 0;
    font-size: clamp(28px, 8vw, 42px);
  }

  .process-step p {
    grid-area: body;
    margin: 0;
  }

  .process-step:nth-child(1),
  .process-step:nth-child(3),
  .process-step--active,
  .process-step:nth-child(1).reveal.is-visible,
  .process-step:nth-child(3).reveal.is-visible,
  .process-step--active.reveal.is-visible {
    transform: none;
  }

  .case-card {
    border-radius: 8px;
  }

  .testimonials__rail {
    mask-image: none;
  }

  .testimonial-card {
    min-height: auto;
  }

  .case-row {
    touch-action: pan-y;
    overscroll-behavior-x: contain;
  }

  .marquee {
    margin-top: 0;
  }

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

@media (max-width: 640px) {
  :root {
    --side: 32px;
  }

  .hero,
  .audit-intake,
  .testimonials,
  .fit,
  .audit-preview,
  .services,
  .who,
  .case-studies,
  .process,
  .final-cta,
  .footer {
    max-width: 100vw;
    overflow-x: clip;
  }

  .hero {
    display: flex;
    align-items: center;
    min-height: 100svh;
    padding-top: calc(var(--nav-height) + clamp(12px, 4svh, 36px));
    padding-bottom: clamp(28px, 8svh, 82px);
  }

  .hero__content {
    width: 100%;
  }

  h1 {
    margin-bottom: clamp(14px, 3svh, 26px);
    font-size: clamp(40px, min(12.2vw, 7.4svh), 66px);
  }

  .hero__headline-tail {
    margin-top: clamp(0.08em, 1svh, 0.22em);
  }

  .hero__kicker {
    margin-bottom: clamp(10px, 2svh, 18px);
  }

  .hero__body {
    margin-bottom: clamp(14px, 2.6svh, 24px);
    font-size: clamp(16px, 4.4vw, 19px);
    line-height: 1.34;
  }

  .hero__actions {
    gap: clamp(10px, 2svh, 14px);
    margin-bottom: clamp(10px, 2svh, 18px);
  }

  .hero__actions .button {
    min-height: clamp(52px, 8svh, 64px);
  }

  .hero__note {
    margin-bottom: 0;
    font-size: clamp(16px, 4.4vw, 18px);
  }

  .hero__visual,
  .hero__scribble-scene {
    display: none;
  }

  .audit-band__cards,
  .audit-checks__grid,
  .audit-next__steps,
  .audit-paths__cards,
  .audit-faq {
    grid-template-columns: 1fr;
  }

  .audit-check--wide,
  .audit-band-card--wide {
    grid-column: span 1;
  }

  .audit-form__field-grid {
    grid-template-columns: 1fr;
  }

  .audit-form__website-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .audit-intake__support,
  .audit-form-shell {
    width: 100%;
  }

  .audit-intake__note-sheet,
  .audit-form-shell,
  .audit-scope__panel {
    border-radius: 24px;
  }

  .audit-check,
  .audit-next-step,
  .audit-path-card,
  .audit-band-card,
  .audit-faq-item,
  .audit-placeholder {
    min-height: 0;
    border-radius: 24px;
  }

  .process-pill {
    min-width: auto;
    width: 100%;
    padding: 22px 78px 22px 24px;
  }

  .process-pill span {
    font-size: 21px;
  }

  .fit__cards {
    padding-top: 0;
    gap: 20px;
  }

  .fit {
    overflow: hidden;
  }

  .fit__intro p,
  .audit-preview__statement p,
  .testimonial-card p,
  .service-panel p,
  .process__title p,
  .final-cta p {
    font-size: 21px;
    line-height: 1.4;
  }

  .fit-card,
  .fit-card--wide {
    position: relative;
    width: min(100%, var(--fit-card-width, 94%));
    min-height: auto;
    padding: 26px 24px;
    border-radius: 22px;
    box-shadow: 0 18px 38px rgba(23, 26, 36, 0.08);
  }

  .fit-card:nth-child(1) {
    --fit-card-width: 91%;
    background: var(--cream);
    transform: rotate(-5.3deg);
  }

  .fit-card:nth-child(2) {
    --fit-card-width: 88%;
    justify-self: end;
    background: var(--pale-blue);
    transform: rotate(5.6deg);
  }

  .fit-card:nth-child(3) {
    --fit-card-width: 100%;
    transform: rotate(-5.6deg);
  }

  .fit-card:nth-child(4) {
    --fit-card-width: 90%;
    justify-self: end;
    background: var(--sun);
    transform: rotate(5.1deg);
  }

  .fit-card:nth-child(5) {
    --fit-card-width: 93%;
    background: var(--ink);
    color: var(--white);
    transform: rotate(-1.4deg);
  }

  .fit-card span {
    margin-bottom: 34px;
    color: var(--blue);
    font-size: 17px;
  }

  .fit-card--wide span,
  .fit-card:nth-child(5) span {
    color: inherit;
  }

  .fit-card p {
    font-size: clamp(23px, 7.6vw, 34px);
    line-height: 1.08;
  }

  .fit-card.reveal {
    opacity: 0;
    transform: translate3d(0, 22px, 0) rotate(var(--fit-rotate, -1deg)) scale(0.97);
    transition: opacity 720ms ease, transform 820ms cubic-bezier(0.18, 0.72, 0.16, 1);
  }

  .fit-card.reveal:nth-child(even) {
    transform: translate3d(0, 22px, 0) rotate(var(--fit-rotate, 1deg)) scale(0.97);
  }

  .fit-card.reveal:nth-child(1) {
    --fit-rotate: -1.3deg;
    transition-delay: 40ms;
  }

  .fit-card.reveal:nth-child(2) {
    --fit-rotate: 1.6deg;
    transition-delay: 130ms;
  }

  .fit-card.reveal:nth-child(3) {
    --fit-rotate: -0.6deg;
    transition-delay: 70ms;
  }

  .fit-card.reveal:nth-child(4) {
    --fit-rotate: 1.1deg;
    transition-delay: 160ms;
  }

  .fit-card.reveal:nth-child(5) {
    --fit-rotate: -1.4deg;
    transition-delay: 100ms;
  }

  .fit-card.reveal.is-visible,
  .fit-card.reveal.is-visible:nth-child(even) {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(var(--fit-rotate, 0deg)) scale(1);
  }

  .audit-preview__statement .button {
    margin-top: 16px;
  }

  .testimonials {
    gap: 18px;
  }

  .testimonials__track {
    --testimonial-gap: 14px;
  }

  .testimonial-card {
    flex-basis: min(100vw - (var(--side) * 2), 332px);
    padding: 22px 20px;
    border-radius: 24px;
  }

  .testimonial-card__avatar {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
    font-size: 18px;
  }

  .audit-grid {
    gap: 18px;
    padding-top: 20px;
  }

  .audit-card {
    width: min(100%, 92%);
    min-height: auto;
    padding: 22px 20px;
    border-radius: 24px;
    transition: opacity 700ms ease, transform 760ms cubic-bezier(0.18, 0.72, 0.16, 1);
  }

  .audit-card.reveal {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

  .audit-card.reveal:nth-child(even) {
    transform: translate3d(0, 22px, 0);
  }

  .audit-card.reveal.is-visible,
  .audit-card.reveal.is-visible:nth-child(even) {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .audit-card.reveal:nth-child(1) {
    transition-delay: 40ms;
  }

  .audit-card.reveal:nth-child(2) {
    transition-delay: 110ms;
  }

  .audit-card.reveal:nth-child(3) {
    transition-delay: 60ms;
  }

  .audit-card.reveal:nth-child(4) {
    transition-delay: 130ms;
  }

  .audit-card.reveal:nth-child(5) {
    transition-delay: 80ms;
  }

  .audit-card.reveal:nth-child(6) {
    transition-delay: 150ms;
  }

  .audit-card h3 {
    font-size: 30px;
  }

  .audit-card p {
    font-size: 17px;
    line-height: 1.32;
  }

  .marquee {
    display: none;
  }

  .services__copy {
    min-height: auto;
    padding: 58px var(--side) 56px;
    text-align: center;
  }

  .services__copy h2,
  .services__copy p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .services__copy h2 {
    margin-bottom: 18px;
    font-size: clamp(42px, 13vw, 62px);
  }

  .service-panel {
    min-height: auto;
    padding: 24px 22px 28px;
  }

  .service-panel__media {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 8.8;
  }

  .service-panel h3 {
    margin-top: 20px;
    font-size: clamp(30px, 10vw, 42px);
  }

  .who__cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .audience-card,
  .audience-card:nth-child(1),
  .audience-card:nth-child(2),
  .audience-card:nth-child(3),
  .audience-card:nth-child(4),
  .audience-card:nth-child(5) {
    width: min(100%, var(--audience-card-width, 94%));
    min-height: clamp(300px, 83vw, 420px);
    margin-top: 0;
  }

  .audience-card:nth-child(1) {
    --audience-card-width: 96%;
  }

  .audience-card:nth-child(2),
  .audience-card:nth-child(4) {
    --audience-card-width: 91%;
    justify-self: end;
  }

  .audience-card:nth-child(3),
  .audience-card:nth-child(5) {
    --audience-card-width: 100%;
  }

  .audience-card h3 {
    max-width: 12ch;
    padding: 22px;
    font-size: clamp(28px, 9vw, 42px);
  }

  .process__lead {
    gap: 18px;
    margin-bottom: 28px;
  }

  .process__report-image {
    border-radius: 18px;
  }

  .process__steps {
    gap: 16px;
  }

  .process-step {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 20px 18px;
    border-radius: 24px;
  }

  .process-step span {
    font-size: 16px;
  }

  .process-step h3 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .process-step p {
    font-size: 17px;
    line-height: 1.32;
  }

  .case-row {
    grid-auto-columns: unset;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    gap: 18px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
    touch-action: pan-y;
  }

  .case-card {
    min-height: auto;
    scroll-snap-align: none;
  }

  .case-card:nth-child(even) {
    margin-top: 0;
  }

  .final-cta {
    min-height: auto;
    padding: 78px var(--side) 84px;
  }

  .final-cta::before {
    display: none;
  }

  .final-cta h2 {
    margin-bottom: 14px;
  }

  .final-cta p {
    margin-bottom: 24px;
  }

  .audit-intake__body {
    font-size: 18px;
  }

  .audit-intake__chips span,
  .audit-progress-pill {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .audit-check span {
    margin-bottom: 0px;
  }

  .audit-next-step span,
  .audit-path-card span {
    margin-bottom: 28px;
  }

  .footer__links {
    display: grid;
  }
}

@media (max-width: 640px) and (max-height: 720px) {
  .hero {
    padding-top: calc(var(--nav-height) + 8px);
    padding-bottom: 22px;
  }

  h1 {
    margin-bottom: 12px;
    font-size: clamp(36px, 10.4vw, 44px);
    line-height: 0.92;
  }

  .hero__headline-tail {
    margin-top: 0.12em;
  }

  .hero__body {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.25;
  }

  .hero__actions {
    gap: 10px;
    margin-bottom: 0;
  }

  .hero__actions .button {
    min-height: 50px;
  }

  .hero__note {
    display: none;
  }
}

@media (max-width: 640px) and (max-height: 600px) {
  .hero {
    padding-top: calc(var(--nav-height) + 4px);
    padding-bottom: 16px;
  }

  h1 {
    font-size: clamp(32px, 9.6vw, 38px);
  }

  .hero__kicker {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .hero__body {
    font-size: 15px;
  }

  .hero__actions .button {
    min-height: 46px;
    font-size: 16px;
  }
}

.audit-form__step[hidden] {
  display: none !important;
}

.audit-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(360px, 31vw, 500px);
  grid-template-areas:
    "hero rail"
    "story rail";
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  max-width: 1540px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 28px) var(--side) 96px;
}

.audit-intake {
  grid-area: hero;
  min-height: 0;
  padding: clamp(34px, 4.4vw, 56px);
  border-radius: 38px;
  background: var(--sun);
}

.audit-intake::after {
  display: none;
}

.audit-intake__copy,
.audit-intake {
  max-width: none;
}

.audit-intake__body {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.08;
}

.audit-intake__chips {
  display: none;
}

.audit-intake__support {
  width: min(100%, 620px);
  margin-top: 28px;
}

.audit-intake__note-sheet {
  width: min(100%, 500px);
  transform: rotate(-2.6deg);
}

.audit-report-shot {
  margin: 0;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 56px rgba(23, 26, 36, 0.12);
}

.audit-report-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.audit-page__rail {
  grid-area: rail;
  min-width: 0;
}

.audit-form-shell {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  width: 100%;
  margin-top: 2px;
  justify-self: stretch;
}

.audit-page__story {
  grid-area: story;
  display: grid;
  gap: 22px;
  min-width: 0;
}

.audit-page__story > section {
  max-width: min(100%, 820px);
  padding: clamp(26px, 3vw, 38px);
  border-radius: 32px;
}

.audit-band,
.audit-next,
.audit-paths,
.audit-faq {
  background: var(--white);
  box-shadow: 0 16px 40px rgba(23, 26, 36, 0.06);
}

.audit-checks {
  background: var(--blue);
  box-shadow: 0 18px 44px rgba(23, 26, 36, 0.1);
}

.audit-scope {
  background: transparent;
  padding: 0 !important;
  box-shadow: none;
}

.audit-scope__panel {
  max-width: 820px;
}

.audit-band__intro h2,
.audit-checks__intro h2,
.audit-next__intro h2,
.audit-paths__copy h2,
.audit-scope__panel h2,
.audit-faq__intro h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.6vw, 66px);
  line-height: 0.94;
}

.audit-band__intro p:last-child,
.audit-checks__intro p:last-child,
.audit-paths__copy p,
.audit-scope__panel p,
.audit-faq__intro p {
  font-size: clamp(17px, 1.34vw, 21px);
  line-height: 1.4;
}

.audit-band__cards,
.audit-checks__grid {
  gap: 14px;
  margin-top: 24px;
}

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

.audit-band-card {
  padding: 20px 18px;
  border-radius: 22px;
}

.audit-band-card p {
  font-size: clamp(20px, 1.7vw, 26px);
}

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

.audit-check {
  min-height: 0;
  padding: 22px 20px;
  border-radius: 24px;
}

.audit-check--wide {
  grid-column: span 2;
}

.audit-check span {
  margin-bottom: 0px;
}

.audit-check p {
  font-size: clamp(20px, 1.55vw, 26px);
}

.audit-next__intro {
  margin-bottom: 24px;
}

.audit-next__steps {
  grid-template-columns: 1fr;
  gap: 14px;
}

.audit-next-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px 18px;
  min-height: 0;
  padding: 22px 20px;
  border-radius: 24px;
}

.audit-next-step span {
  margin-bottom: 0;
}

.audit-next-step p {
  font-size: clamp(21px, 1.65vw, 28px);
}

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

.audit-path-card {
  min-height: 0;
  padding: 24px 22px 26px;
  border-radius: 24px;
}

.audit-path-card span {
  margin-bottom: 22px;
}

.audit-path-card p {
  font-size: clamp(20px, 1.55vw, 26px);
}

.audit-faq__items {
  gap: 12px;
}

.audit-faq-item {
  padding: 20px 22px;
}

.audit-faq-item summary {
  font-size: clamp(21px, 1.6vw, 28px);
}

.audit-mobile-cta {
  position: fixed;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 80;
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  box-shadow: 0 18px 40px rgba(23, 26, 36, 0.18);
  transition: opacity 180ms ease, transform 180ms ease;
}

.audit-mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .audit-page {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "rail"
      "story";
    gap: 22px;
    padding-top: calc(var(--nav-height) + 20px);
  }

  .audit-page__rail {
    position: static;
  }

  .audit-form-shell {
    position: static;
  }

  .audit-page__story > section,
  .audit-scope__panel {
    max-width: none;
  }

  .audit-mobile-cta {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .audit-page {
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 110px;
  }

  .audit-intake,
  .audit-page__story > section,
  .audit-scope__panel,
  .audit-form-shell {
    border-radius: 26px;
  }

  .audit-intake__body {
    max-width: 14ch;
    font-size: 20px;
    line-height: 1.14;
  }

  .audit-intake__support {
    margin-top: 22px;
  }

  .audit-report-shot {
    padding: 12px;
  }

  .audit-band__cards,
  .audit-checks__grid,
  .audit-paths__cards {
    grid-template-columns: 1fr;
  }

  .audit-check--wide,
  .audit-band-card--wide {
    grid-column: span 1;
  }

  .audit-next-step {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 18px 16px;
    transform: none;
  }

  .audit-mobile-cta {
    right: 16px;
    bottom: 14px;
    left: 16px;
    min-height: 56px;
  }
}

.audit-page {
  grid-template-columns: minmax(0, 1fr) clamp(360px, 30vw, 470px);
  grid-template-areas:
    "hero rail"
    "story rail";
  gap: clamp(28px, 3.4vw, 48px);
  align-items: start;
}

.audit-next--lead {
  max-width: min(100%, 860px);
}

.audit-page__rail {
  position: sticky;
  top: calc(var(--nav-height) + 18px);
  align-self: start;
  height: fit-content;
}

.audit-form-shell {
  position: relative;
  top: auto;
  width: 100%;
  max-height: calc(100svh - var(--nav-height) - 34px);
  padding: 26px 24px 24px;
  border: 0;
  border-radius: 34px;
  background: linear-gradient(180deg, #3d6af1, #2b57d9);
  color: var(--white);
  box-shadow: 0 30px 70px rgba(32, 52, 130, 0.34);
  overflow: auto;
}

.audit-form-shell::-webkit-scrollbar {
  width: 10px;
}

.audit-form-shell::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  background-clip: padding-box;
}

.audit-form-shell__top {
  margin-bottom: 28px;
}

.audit-form-shell__eyebrow {
  margin-bottom: 0px;
}

.audit-form-shell__eyebrow,
.audit-form__label,
.audit-form__field span,
.audit-form__website-summary strong,
.audit-form__status {
  color: var(--white);
}

.audit-form__step {
  gap: 18px;
}

.audit-form__field-grid {
  gap: 16px;
}

.audit-form__label {
  line-height: 1.25;
}

.audit-form__input,
.audit-form__textarea {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--ink);
}

.audit-form__input {
  min-height: 56px;
}

.audit-form__textarea {
  min-height: 92px;
}

.audit-form__website-summary {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
}

.audit-form__website-summary span,
.audit-form__privacy,
.audit-form__captcha-note {
  color: rgba(255, 255, 255, 0.82);
}

.audit-form__edit {
  color: var(--white);
}

.audit-form__captcha-note {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.audit-form__button {
  min-height: 58px;
  margin-top: 14px;
}

.audit-form-shell .button--primary {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 18px 34px rgba(16, 28, 84, 0.22);
}

.audit-form-shell .button--primary:hover {
  background: #f4f7ff;
}

.audit-form__privacy {
  font-size: 14px;
}

.audit-form__step--success {
  display: grid;
  gap: 14px;
}

.audit-form__success-title {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(31px, 2.8vw, 38px);
  line-height: 1.02;
}

.audit-form__success-body {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.audit-intake {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  min-height: 0;
  padding: clamp(34px, 4vw, 52px);
}

.audit-intake__copy {
  display: grid;
  gap: 0;
  align-content: start;
  justify-items: start;
  padding-top: 6px;
}

.audit-intake h1 {
  max-width: none;
  margin-bottom: 18px;
}

.audit-intake__body {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(23px, 1.95vw, 30px);
  line-height: 1.1;
}

.audit-intake__support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
  gap: 28px;
  width: min(100%, 980px);
  margin-top: 8px;
  align-content: start;
  justify-items: stretch;
  align-items: center;
  overflow: visible;
}

.audit-intake__note-sheet {
  justify-self: end;
  align-self: center;
  width: 100%;
  padding: 24px 24px 26px;
}

.audit-report-shot {
  width: min(100%, 720px);
  margin: 0;
  justify-self: start;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.audit-report-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.audit-page__story > section {
  max-width: min(100%, 860px);
}

.audit-band,
.audit-paths,
.audit-faq {
  grid-template-columns: 1fr;
}

.audit-band__intro,
.audit-checks__intro,
.audit-next__intro,
.audit-paths__copy,
.audit-faq__intro {
  max-width: 720px;
}

.audit-band__intro {
  margin-bottom: 6px;
}

.audit-band__cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.audit-band-card {
  min-height: 100%;
}

.audit-band-card--wide {
  grid-column: 1 / -1;
}

.audit-band--who {
  background: linear-gradient(180deg, rgba(219, 230, 255, 0.6), rgba(255, 255, 255, 0.96));
}

.audit-band--who .audit-band__intro {
  max-width: 650px;
  margin-bottom: 10px;
}

.audit-band--who .audit-band__cards {
  grid-template-columns: 1.06fr 0.94fr 1.04fr;
  gap: 18px;
}

.audit-band--who .audit-band-card {
  min-height: 168px;
  padding: 24px 22px;
  border-radius: 28px;
  box-shadow: 0 22px 44px rgba(23, 26, 36, 0.08);
}

.audit-band--who .audit-band-card:nth-child(1) {
  transform: rotate(-1.8deg);
}

.audit-band--who .audit-band-card:nth-child(2) {
  transform: translateY(16px) rotate(1.4deg);
}

.audit-band--who .audit-band-card:nth-child(3) {
  transform: rotate(-1deg);
}

.audit-band--who .audit-band-card:nth-child(4) {
  transform: translateY(-10px) rotate(1.2deg);
}

.audit-band--who .audit-band-card:nth-child(5) {
  transform: translateY(8px) rotate(-1.4deg);
}

.audit-band--who .audit-band-card:nth-child(6) {
  transform: translateY(-6px) rotate(1deg);
}

.audit-band--who .audit-band-card--wide {
  grid-column: 1 / span 2;
  transform: translateY(6px) rotate(-1deg);
}

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

.audit-check {
  display: grid;
  gap: 18px;
  align-content: start;
}

.audit-check__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid rgba(23, 26, 36, 0.14);
  border-radius: 18px;
  color: var(--blue);
}

.audit-check__icon svg {
  width: 30px;
  height: 30px;
}

.audit-check--blue .audit-check__icon {
  border-color: rgba(47, 99, 244, 0.18);
  background: rgba(47, 99, 244, 0.08);
}

.audit-check--cream .audit-check__icon {
  background: rgba(255, 255, 255, 0.45);
}

.audit-check span:not(.audit-check__icon) {
  display: none;
}

.audit-check p {
  max-width: 18ch;
}

.audit-next__steps {
  gap: 18px;
}

.audit-next-step {
  position: relative;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245, 247, 251, 0.98), rgba(255, 255, 255, 0.98));
}

.audit-next-step:nth-child(1) {
  transform: translateX(0) rotate(-1deg);
}

.audit-next-step:nth-child(2) {
  transform: translateX(34px) rotate(1deg);
}

.audit-next-step:nth-child(3) {
  transform: translateX(12px) rotate(-0.7deg);
}

.audit-next-step::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: rgba(47, 99, 244, 0.12);
  content: "";
}

.audit-next-step--active::after {
  background: rgba(23, 26, 36, 0.22);
}

.audit-next-step span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-top: 2px;
  border-radius: 16px;
  background: rgba(47, 99, 244, 0.1);
}

.audit-next-step--active span {
  background: rgba(255, 255, 255, 0.32);
}

.audit-paths__copy {
  max-width: 760px;
}

.audit-paths__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 700px;
  margin-top: 10px;
}

.audit-path-card {
  min-height: 0;
  padding: 28px 28px 32px;
}

.audit-path-card--fix {
  max-width: 540px;
  border: 2px solid rgba(47, 99, 244, 0.16);
  background: linear-gradient(180deg, rgba(219, 230, 255, 0.72), rgba(255, 255, 255, 0.98));
  transform: rotate(-1.5deg);
}

.audit-path-card--rebuild {
  max-width: 560px;
  justify-self: end;
  padding-top: 34px;
  background: linear-gradient(145deg, #2f63f4, #2048c8);
  transform: translateX(18px) rotate(1.4deg);
}

.audit-path-card--fix span,
.audit-path-card--rebuild span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
}

.audit-path-card--fix span {
  background: rgba(255, 255, 255, 0.72);
}

.audit-path-card--rebuild span {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.audit-faq__intro {
  margin-bottom: 6px;
}

.audit-faq__items {
  width: 100%;
  max-width: 760px;
}

@media (max-width: 1120px) {
  .audit-page {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 26px;
  }

  .audit-form-shell {
    max-height: calc(100svh - var(--nav-height) - 26px);
    padding: 20px 18px 18px;
  }

  .audit-intake {
    gap: 20px;
  }

  .audit-intake__body {
    max-width: none;
  }

  .audit-intake__support {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 270px);
    max-width: 760px;
  }

  .audit-intake__note-sheet,
  .audit-report-shot {
    justify-self: start;
  }

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

  .audit-band--who .audit-band__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audit-band--who .audit-band-card,
  .audit-band--who .audit-band-card:nth-child(1),
  .audit-band--who .audit-band-card:nth-child(2),
  .audit-band--who .audit-band-card:nth-child(3),
  .audit-band--who .audit-band-card:nth-child(4),
  .audit-band--who .audit-band-card:nth-child(5),
  .audit-band--who .audit-band-card:nth-child(6),
  .audit-band--who .audit-band-card--wide {
    transform: none;
  }
}

@media (max-width: 920px) {
  .audit-page {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "rail"
      "story";
  }

  .audit-page__rail {
    position: static;
    top: auto;
  }

  .audit-form-shell {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 720px) {
  .audit-band__cards,
  .audit-paths__cards {
    grid-template-columns: 1fr;
  }

  .audit-intake__support {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .audit-report-shot {
    width: 100%;
    justify-self: start;
  }

  .audit-band--who .audit-band__cards {
    grid-template-columns: 1fr;
  }

  .audit-band--who .audit-band-card--wide {
    grid-column: span 1;
  }

  .audit-paths__cards {
    max-width: none;
  }

  .audit-path-card--fix,
  .audit-path-card--rebuild {
    max-width: none;
    justify-self: stretch;
    transform: none;
  }

  .audit-next-step,
  .audit-next-step:nth-child(1),
  .audit-next-step:nth-child(2),
  .audit-next-step:nth-child(3) {
    transform: none;
  }

  .testimonials__track {
    animation: none;
  }
}

/* Service Page Scaffold */
.service-page {
  overflow: hidden;
}

.service-page h1,
.service-page h2,
.service-page h3 {
  text-transform: uppercase;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  min-height: 100svh;
  padding-top: calc(var(--nav-height) + 26px);
  background:
    radial-gradient(circle at 2% 8%, rgba(47, 99, 244, 0.08) 0 20%, transparent 54%),
    radial-gradient(circle at 98% 90%, rgba(250, 214, 82, 0.24) 0 23%, transparent 56%),
    #f8fbff;
}

.service-hero__kicker,
.service-image-box__eyebrow,
.service-cards__kicker {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-hero h1 {
  max-width: 11ch;
  margin-bottom: 22px;
}

.service-hero__body {
  max-width: 28ch;
  margin-bottom: 24px;
  font-size: clamp(20px, 1.78vw, 28px);
  line-height: 1.15;
}

.service-hero__note {
  max-width: 34ch;
  margin-top: 18px;
  margin-bottom: 0;
  color: rgba(23, 26, 36, 0.7);
  font-family: var(--display);
}

.service-hero__actions .button {
  min-height: 62px;
}

.service-hero__frame {
  position: relative;
  width: min(100%, 520px);
  margin-left: auto;
  border: 16px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(23, 26, 36, 0.18);
  transform: rotate(2deg);
}

.service-hero__frame::after {
  position: absolute;
  right: -36px;
  bottom: -34px;
  width: 140px;
  height: 140px;
  border: 12px solid var(--blue);
  border-radius: 26px;
  background: transparent;
  content: "";
  transform: rotate(-12deg);
}

.service-hero__frame img {
  width: 100%;
  aspect-ratio: 10 / 11;
  object-fit: cover;
}

.service-page--modular .service-hero__frame--scribble {
  width: min(100%, 640px);
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  transform: rotate(0);
}

.service-page--modular .service-hero__frame--scribble::after {
  content: none;
}

.service-hero__frame--scribble .hero__scribble-scene {
  display: block;
  width: 100%;
  max-width: none;
  max-height: none;
  filter: drop-shadow(14px 16px 0 #1f3f8f);
}

.service-hero__frame--scribble .hero__scribble-mask-stroke {
  stroke: #ffffff;
  stroke-width: 162px;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  animation: none;
}

.service-hero__frame--scribble .hero__scribble-photo {
  filter: none;
}

.service-image-box {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.service-image-box__media {
  width: min(100%, 560px);
  padding: clamp(20px, 2.6vw, 34px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 76% 24%, rgba(47, 99, 244, 0.2) 0 12%, transparent 13%),
    linear-gradient(145deg, #f8fbff, #fff7df);
  box-shadow: 0 22px 48px rgba(23, 26, 36, 0.1);
}

.service-image-box__media img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
}

.service-image-box__copy h2,
.service-cards__intro h2,
.service-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5.7vw, 88px);
  line-height: 0.95;
}

.service-image-box__copy p,
.service-cards__intro p,
.service-card p,
.service-cta p {
  color: var(--muted);
  font-size: clamp(18px, 1.4vw, 23px);
}

.service-image-box__copy .button {
  margin-top: 18px;
}

.service-cards {
  background: var(--cream);
}

.service-cards__intro {
  max-width: 860px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.service-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  min-height: 300px;
  padding: 30px 26px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(23, 26, 36, 0.08);
}

.service-card:nth-child(2) {
  background: #eaf2ff;
}

.service-card:nth-child(3) {
  background: var(--blue);
  color: var(--white);
}

.service-card:nth-child(3) p {
  color: rgba(255, 255, 255, 0.82);
}

.service-card h3 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 0.98;
}

.service-card p {
  margin-bottom: 16px;
}

.service-card a {
  display: inline-flex;
  margin-top: auto;
  border-bottom: 2px solid currentColor;
  font-family: var(--display);
  font-weight: 600;
}

.service-cta {
  padding: clamp(86px, 11vw, 150px) var(--side);
  background: var(--ink);
  color: var(--white);
}

.service-cta__inner {
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}

.service-cta h2 {
  max-width: 14ch;
  margin-right: auto;
  margin-left: auto;
}

.service-cta p {
  max-width: 34ch;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.76);
}

.service-cta .button {
  min-height: 62px;
}

.service-page--modular .service-hero--soft {
  min-height: clamp(560px, 72svh, 760px);
  padding-bottom: clamp(40px, 6.5vw, 95px);
  background:
    radial-gradient(circle at 2% 8%, rgba(47, 99, 244, 0.08) 0 20%, transparent 54%),
    radial-gradient(circle at 98% 90%, rgba(250, 214, 82, 0.24) 0 23%, transparent 56%),
    #f8fbff;
}

.service-page--modular .service-hero h1 {
  max-width: 13ch;
}

.service-hero__support {
  max-width: 38ch;
  margin: 14px 0 0;
  color: var(--muted);
}

.service-page--modular .service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-page--modular .service-hero__frame--clean::after {
  right: -28px;
  bottom: -26px;
  width: 122px;
  height: 122px;
  border-color: rgba(47, 99, 244, 0.85);
}

.service-block__eyebrow {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-problems {
  background: var(--white);
  padding-top: clamp(40px, 6.5vw, 95px);
}

.service-problems__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.service-problems__intro,
.service-includes__intro,
.service-content-panel__inner {
  max-width: 860px;
}

.service-problems__intro h2,
.service-includes__intro h2,
.service-content-panel__inner h2 {
  margin-bottom: 16px;
  font-size: clamp(42px, 5.7vw, 88px);
  line-height: 0.95;
}

.service-problems__media {
  width: min(100%, 480px);
  margin: clamp(24px, 3vw, 34px) 0 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-problems__media img {
  width: 100%;
  height: clamp(220px, 24vw, 340px);
  object-fit: contain;
}

.service-problems__list {
  list-style: none;
  counter-reset: problem-item;
  margin: 0;
  padding: 4px 0 0;
  display: grid;
  gap: 18px;
  align-self: center;
}

.service-problems__list li {
  position: relative;
  padding: 0 0 18px 54px;
  border-bottom: 1px solid rgba(23, 26, 36, 0.12);
  color: var(--ink);
  font-size: clamp(19px, 1.4vw, 24px);
  line-height: 1.32;
}

.service-problems__list li::before {
  counter-increment: problem-item;
  content: counter(problem-item, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  min-width: 38px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: var(--white);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
}

.service-includes {
  background: var(--cream);
}

.service-includes__intro p {
  max-width: 42ch;
  color: var(--muted);
  font-size: clamp(18px, 1.42vw, 23px);
}

.service-includes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 22px;
  margin-top: clamp(28px, 4vw, 44px);
}

.service-include {
  --card-tilt: 0deg;
  --card-bg: var(--white);
  --card-fg: var(--ink);
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  gap: 26px;
  padding: 24px 24px 30px;
  border: 1px solid rgba(23, 26, 36, 0.08);
  border-radius: 34px;
  background: var(--card-bg);
  color: var(--card-fg);
  box-shadow: 0 18px 38px rgba(23, 26, 36, 0.08);
  transform: rotate(var(--card-tilt));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-include:hover {
  transform: translateY(-4px) rotate(var(--card-tilt));
  box-shadow: 0 22px 42px rgba(23, 26, 36, 0.12);
}

.service-include.reveal {
  opacity: 0;
  transform: translateY(24px) rotate(var(--card-tilt));
}

.service-include.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(var(--card-tilt));
}

.service-include__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.service-include__number {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
}

.service-include__icon {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 1;
  width: 30%;
  text-align: center;
  font-size: clamp(58px, 5.3vw, 92px);
  color: var(--blue);
  line-height: 1;
  opacity: 0.95;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.service-include p {
  position: relative;
  z-index: 2;
  max-width: 70%;
  margin: 0;
  color: inherit;
  font-size: clamp(26px, 2.15vw, 40px);
  line-height: 1.08;
  text-wrap: balance;
}

.service-include:nth-child(1) {
  --card-tilt: -4.8deg;
  --card-bg: #fff7df;
}

.service-include:nth-child(2) {
  --card-tilt: 4.8deg;
  --card-bg: #dde9ff;
  margin-top: 20px;
}

.service-include:nth-child(3) {
  --card-tilt: -4deg;
  --card-bg: var(--blue);
  --card-fg: var(--white);
  margin-top: 40px;
}

.service-include:nth-child(3) .service-include__number,
.service-include:nth-child(3) .service-include__icon {
  color: rgba(255, 255, 255, 0.9);
}

.service-include:nth-child(4) {
  --card-tilt: 3deg;
  --card-bg: var(--white);
}

.service-include:nth-child(5) {
  --card-tilt: -3deg;
  --card-bg: #fff7df;
  margin-top: 18px;
}

.service-include:nth-child(6) {
  --card-tilt: 3.8deg;
  --card-bg: #dde9ff;
  margin-top: 36px;
}

.service-include:nth-child(7) {
  --card-tilt: -3.8deg;
  --card-bg: #dde9ff;
}

.service-include:nth-child(8) {
  --card-tilt: 3.6deg;
  --card-bg: #fff7df;
  margin-top: 22px;
}

.service-include:nth-child(9) {
  --card-tilt: -3.2deg;
  --card-bg: var(--blue);
  --card-fg: var(--white);
  margin-top: 44px;
}

.service-include:nth-child(9) .service-include__number,
.service-include:nth-child(9) .service-include__icon {
  color: rgba(255, 255, 255, 0.9);
}

.service-includes__pricing {
  max-width: 56ch;
  margin: 26px 0 0;
  color: rgba(23, 26, 36, 0.78);
  font-family: var(--display);
}

.service-content-panel--cream {
  background: #fff8e8;
}

.service-content-panel--white {
  background: var(--white);
}

.service-content-panel__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.service-content-panel__media {
  margin: 0;
  justify-self: end;
  width: min(100%, 560px);
  padding: clamp(14px, 1.8vw, 22px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 42px rgba(23, 26, 36, 0.12);
}

.service-content-panel__media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.service-content-panel__inner p {
  max-width: 54ch;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 23px);
}

.service-content-panel__inner p:last-child {
  margin-bottom: 0;
}

.service-content-panel__cta {
  margin-top: 10px;
}

.service-content-panel--setup {
  padding-top: clamp(40px, 6.2vw, 86px);
}

.service-content-panel--setup .service-content-panel__layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
}

.service-content-panel--setup .service-content-panel__media {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-content-panel--setup .service-content-panel__media img {
  border-radius: 0;
}

.service-content-panel--not-fit h2 {
  font-size: clamp(34px, 4.5vw, 64px);
}

.service-content-panel--not-fit .service-content-panel__layout {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.56fr);
}

.service-content-panel--not-fit .service-content-panel__media {
  justify-self: end;
  width: min(100%, 300px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-content-panel--not-fit .service-content-panel__media img {
  width: 100%;
  border-radius: 0;
  object-fit: contain;
}

.service-cta__support {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

@media (max-width: 920px) {
  .service-hero,
  .service-image-box {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-hero {
    padding-top: calc(var(--nav-height) + 18px);
  }

  .service-hero__frame {
    margin-right: auto;
    margin-left: auto;
  }

  .service-image-box__media {
    margin-right: auto;
    margin-left: auto;
  }

  .service-cards__grid {
    grid-template-columns: 1fr;
  }

  .service-problems__layout,
  .service-content-panel--setup .service-content-panel__layout {
    grid-template-columns: 1fr;
  }

  .service-content-panel--not-fit .service-content-panel__layout {
    grid-template-columns: 1fr;
  }

  .service-problems__media,
  .service-content-panel__media {
    justify-self: start;
  }

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

  .service-include,
  .service-include:hover {
    transform: none;
  }

  .service-include:nth-child(n) {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .service-hero {
    padding-bottom: 56px;
  }

  .service-hero__frame {
    border-width: 10px;
    border-radius: 26px;
  }

  .service-hero__frame::after {
    width: 92px;
    height: 92px;
    border-width: 8px;
  }

  .service-image-box__copy h2,
  .service-cards__intro h2,
  .service-cta h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .service-card {
    min-height: 0;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .service-cta {
    padding: 72px var(--side);
  }

  .service-page--modular .service-hero__actions .button {
    width: 100%;
  }

  .service-problems__list li {
    padding-left: 48px;
    font-size: clamp(17px, 5.2vw, 21px);
  }

  .service-includes__grid {
    grid-template-columns: 1fr;
  }

  .service-content-panel--setup {
    padding-top: clamp(34px, 8vw, 56px);
  }

  .service-include {
    min-height: 0;
  }
}

.services-showcase {
  background:
    radial-gradient(circle at 2% 8%, rgba(47, 99, 244, 0.08) 0 20%, transparent 54%),
    radial-gradient(circle at 98% 90%, rgba(250, 214, 82, 0.24) 0 23%, transparent 56%),
    #f8fbff;
}

.services-showcase__hero {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  justify-content: center;
  padding-top: calc(var(--nav-height) + 28px);
  padding-bottom: clamp(30px, 4.2vw, 56px);
}

.services-showcase__intro {
  display: grid;
  align-content: start;
  align-self: start;
  padding-top: 0;
}

.services-showcase__intro h1 {
  margin: 0 0 10px;
  font-size: clamp(54px, 6.2vw, 96px);
  line-height: 0.94;
}

.services-showcase__intro .service-hero__kicker {
  max-width: 16ch;
}

.services-showcase__lead {
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(17px, 1.1vw, 20px);
  line-height: 1.25;
}

.services-showcase__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 20px);
  margin-top: clamp(20px, 2.4vw, 36px);
  padding-top: 0;
  align-self: stretch;
  height: auto;
}

.services-showcase__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 310px;
  align-items: stretch;
  overflow: hidden;
  border: 2px solid rgba(23, 26, 36, 0.08);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 28px rgba(23, 26, 36, 0.08);
}

.services-showcase__card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -78px;
  width: min(56%, 220px);
  aspect-ratio: 1 / 1;
  background: url("../images/services/ssu-wrench.webp") center / contain no-repeat;
  opacity: 0.08;
  transform: translateY(-50%) rotate(-14deg);
  pointer-events: none;
  z-index: 0;
}

.services-showcase__card:nth-child(2)::after {
  right: -72px;
  width: min(58%, 228px);
  background-image: url("../images/services/ssu-build.webp");
  opacity: 0.075;
  transform: translateY(-50%) rotate(-10deg);
}

.services-showcase__card:nth-child(3)::after {
  right: -88px;
  width: min(60%, 236px);
  background-image: url("../images/services/ssu-rocket.png");
  opacity: 0.075;
  transform: translateY(-50%) rotate(-8deg);
}

.services-showcase__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: clamp(26px, 2vw, 34px);
}

.services-showcase__content h2 {
  margin: 0;
  font-size: clamp(30px, 2vw, 40px);
  line-height: 0.92;
}

.services-showcase__content p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.32;
}

.services-showcase__content .button {
  align-self: flex-start;
  margin-top: auto;
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.services-showcase__next .service-image-box__copy h2 {
  max-width: 100%;
  font-size: clamp(36px, 4.3vw, 64px);
  line-height: 0.98;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.services-showcase__next .service-image-box__media {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 1080px) {
  .services-showcase__hero {
    min-height: auto;
    justify-content: flex-start;
    padding-top: calc(var(--nav-height) + 24px);
    padding-bottom: clamp(24px, 4vw, 40px);
  }

  .services-showcase__intro {
    align-content: start;
    padding-top: 0;
  }

  .services-showcase__intro h1 {
    font-size: clamp(46px, 9vw, 82px);
  }

  .services-showcase__intro .service-hero__kicker,
  .services-showcase__lead {
    max-width: 32ch;
  }

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

@media (max-width: 720px) {
  .services-showcase__card {
    min-height: auto;
  }

  .services-showcase__cards {
    grid-template-columns: 1fr;
  }

  .services-showcase__card::after {
    right: -56px;
    width: min(52%, 170px);
  }

  .services-showcase__content h2 {
    font-size: clamp(30px, 10vw, 44px);
  }
}

.case-studies-page {
  background:
    radial-gradient(circle at 4% 9%, rgba(47, 99, 244, 0.08) 0 18%, transparent 58%),
    radial-gradient(circle at 96% 88%, rgba(250, 214, 82, 0.24) 0 18%, transparent 54%),
    #f8fbff;
}

.case-studies-page__hero {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  gap: clamp(18px, 3.2vw, 56px);
  align-items: center;
  min-height: auto;
  padding-top: calc(var(--nav-height) + 18px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.case-studies-page__intro h1 {
  margin: 0;
  font-size: clamp(52px, 6.1vw, 96px);
  line-height: 0.94;
}

.case-studies-page__lead {
  max-width: 52ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.1vw, 20px);
  line-height: 1.3;
}

.case-studies-page__highlights {
  margin: 0;
  padding: clamp(24px, 2.5vw, 32px);
  border: 2px solid rgba(23, 26, 36, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(23, 26, 36, 0.08);
  list-style: none;
}

.case-studies-page__highlights li {
  position: relative;
  margin: 0;
  padding: 0 0 0 28px;
  color: var(--ink);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.36;
}

.case-studies-page__highlights li + li {
  margin-top: 12px;
}

.case-studies-page__highlights li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--sun), var(--blue));
}

.case-studies-page__projects {
  position: relative;
  overflow: hidden;
  padding-top: clamp(20px, 2vw, 34px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.case-studies-page__marquee {
  margin-top: clamp(-16px, -1.8vw, -8px);
}

.case-studies-page__projects-intro {
  max-width: 900px;
  margin: 0 0 clamp(26px, 3.3vw, 44px);
}

.case-studies-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
}

.case-studies-page__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 2px solid rgba(23, 26, 36, 0.08);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 28px rgba(23, 26, 36, 0.08);
}

.case-studies-page__card:nth-child(even) {
  transform: translateY(28px);
}

.case-studies-page__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(130deg, rgba(47, 99, 244, 0.14), rgba(250, 214, 82, 0.24));
}

.case-studies-page__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-studies-page__card-copy {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 2vw, 28px);
}

.case-studies-page__category {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-dark);
}

.case-studies-page__card-copy h3 {
  margin: 0;
  font-size: clamp(31px, 2.1vw, 44px);
  line-height: 0.94;
}

.case-studies-page__card-copy p {
  margin: 0;
  color: var(--muted);
}

.case-studies-page__testimonials {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.94) 0%, rgba(255, 255, 255, 1) 100%);
  border-top: 2px solid rgba(23, 26, 36, 0.08);
  border-bottom: 2px solid rgba(23, 26, 36, 0.08);
}

.case-studies-page__testimonials-intro {
  max-width: 760px;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.case-studies-page__testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.case-studies-page__testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 270px;
  padding: clamp(20px, 2vw, 28px);
  border-radius: 22px;
  background: var(--white);
  border: 2px solid rgba(23, 26, 36, 0.08);
  box-shadow: 0 14px 26px rgba(23, 26, 36, 0.06);
}

.case-studies-page__quote {
  margin: 0 0 20px;
  font-size: clamp(18px, 1.2vw, 22px);
  line-height: 1.34;
}

.case-studies-page__person {
  display: grid;
  gap: 4px;
  margin: 0;
}

.case-studies-page__person strong {
  font-size: 16px;
}

.case-studies-page__person span {
  color: var(--muted);
  font-size: 14px;
}

.case-studies-page__next .service-image-box__copy h2 {
  max-width: 100%;
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 0.98;
}

.case-studies-page__next .service-image-box__media {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 1080px) {
  .case-studies-page__hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
    padding-top: calc(var(--nav-height) + 24px);
  }

  .case-studies-page__grid {
    grid-template-columns: 1fr;
  }

  .case-studies-page__card:nth-child(even) {
    transform: none;
  }

  .case-studies-page__testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .case-studies-page__intro h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .case-studies-page__highlights {
    padding: 20px;
    border-radius: 20px;
  }

  .case-studies-page__testimonial-grid {
    grid-template-columns: 1fr;
  }

  .case-studies-page__testimonial {
    min-height: 0;
  }
}

.pricing-page {
  background:
    radial-gradient(circle at 8% 10%, rgba(250, 214, 82, 0.3) 0 22%, transparent 58%),
    radial-gradient(circle at 92% 88%, rgba(47, 99, 244, 0.14) 0 24%, transparent 60%),
    linear-gradient(180deg, #fff3c8 0%, #eef4ff 62%, #dde9ff 100%);
}

.pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.34fr);
  gap: clamp(22px, 4vw, 66px);
  align-items: center;
  min-height: 100svh;
  padding-top: calc(var(--nav-height) + 34px);
  padding-bottom: calc(var(--nav-height) + 34px);
}

.pricing-hero__content {
  display: grid;
  gap: 16px;
  width: min(100%, 930px);
}

.pricing-hero__kicker {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-hero h1 {
  margin: 0;
  font-size: clamp(50px, 6.4vw, 98px);
  line-height: 0.93;
  text-wrap: balance;
}

.pricing-hero__lead {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.2vw, 21px);
  line-height: 1.34;
}

.pricing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.pricing-hero__trust {
  max-width: 66ch;
  margin: 6px 0 0;
  font-size: 16px;
  color: #516177;
}

.pricing-hero__mascot {
  justify-self: center;
  align-self: center;
  width: min(100%, 260px);
}

.pricing-hero__mascot img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 28px rgba(23, 26, 36, 0.12));
}

.pricing-summary-strip {
  padding-top: clamp(14px, 2vw, 24px);
  padding-bottom: clamp(38px, 4.8vw, 58px);
}

.pricing-summary-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}

.pricing-summary-strip__card {
  min-height: 100%;
  padding: clamp(20px, 2vw, 28px);
  border-radius: 20px;
  border: 2px solid rgba(23, 26, 36, 0.08);
  background: #ffffff;
  box-shadow: 0 14px 24px rgba(23, 26, 36, 0.07);
}

.pricing-summary-strip__label {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-summary-strip__card h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 2.8vw, 50px);
  line-height: 0.94;
}

.pricing-summary-strip__card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.pricing-confidence {
  padding-top: clamp(22px, 3vw, 44px);
}

.pricing-confidence__box {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(26px, 3vw, 36px);
  border: 2px solid rgba(25, 70, 107, 0.12);
  border-radius: 28px;
  background: linear-gradient(140deg, #ffffff 0%, #fff6da 100%);
  box-shadow: 0 18px 36px rgba(23, 26, 36, 0.08);
}

.pricing-confidence__box::after {
  content: "";
  position: absolute;
  top: -18px;
  right: clamp(20px, 4vw, 42px);
  width: 90px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sun), #ffd95f);
  transform: rotate(-7deg);
}

.pricing-confidence__box h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 0.94;
}

.pricing-confidence__box p {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
}

.pricing-confidence__box .button {
  margin-top: 6px;
  justify-self: start;
}

.pricing-process {
  padding-top: clamp(34px, 4.6vw, 62px);
}

.pricing-process__intro h2 {
  margin: 0;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 0.95;
}

.pricing-process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  margin-top: clamp(22px, 2.7vw, 30px);
}

.pricing-process__card {
  min-height: 100%;
  padding: clamp(22px, 2vw, 30px);
  border: 2px solid rgba(23, 26, 36, 0.08);
  border-radius: 22px;
  background: var(--white);
}

.pricing-process__card h3 {
  margin: 0;
  font-size: clamp(30px, 2.1vw, 40px);
  line-height: 0.95;
}

.pricing-process__card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.pricing-process__step {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-process__cta {
  margin-top: clamp(20px, 2.8vw, 32px);
  text-align: center;
}

.pricing-summary {
  display: grid;
  gap: clamp(30px, 4.4vw, 52px);
}

.pricing-switcher {
  display: grid;
  gap: clamp(18px, 2.8vw, 30px);
  padding-top: clamp(20px, 2.8vw, 34px);
}

.pricing-section {
  display: grid;
  gap: 14px;
}

.pricing-section + .pricing-section {
  margin-top: clamp(12px, 2vw, 20px);
}

.pricing-section__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.pricing-switcher__menu {
  position: sticky;
  top: calc(var(--nav-height) + 10px);
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 2px solid rgba(23, 26, 36, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 26px rgba(23, 26, 36, 0.08);
  backdrop-filter: blur(8px);
}

.pricing-switcher__tab {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #364a63;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.pricing-switcher__tab:hover {
  background: rgba(47, 99, 244, 0.08);
}

.pricing-switcher__tab.is-active {
  background: var(--blue);
  color: var(--white);
}

.pricing-switcher__panels {
  display: grid;
}

.pricing-switcher__panel {
  display: grid;
  gap: clamp(20px, 2.8vw, 30px);
}

.pricing-switcher__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.pricing-accordion-item {
  border: 2px solid rgba(23, 26, 36, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(23, 26, 36, 0.06);
  overflow: hidden;
}

.pricing-accordion-item__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title price"
    "teaser icon";
  align-items: start;
  column-gap: 16px;
  row-gap: 10px;
  margin: 0;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}

.pricing-accordion-item__summary::-webkit-details-marker {
  display: none;
}

.pricing-accordion-item__summary h4 {
  grid-area: title;
  margin: 0;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.04;
}

.pricing-accordion-item__summary .pricing-card__price {
  grid-area: price;
  align-self: end;
  justify-self: end;
  text-align: right;
}

.pricing-accordion-item__teaser {
  grid-area: teaser;
  margin: 0;
  color: #4f5f74;
  font-size: 16px;
  line-height: 1.35;
}

.pricing-accordion-item__icon {
  grid-area: icon;
  align-self: center;
  justify-self: end;
  color: #315786;
  font-size: 28px;
  line-height: 1;
  transition: transform 180ms ease;
}

.pricing-accordion-item[open] .pricing-accordion-item__icon {
  transform: rotate(180deg);
}

.pricing-accordion-item__content {
  display: grid;
  gap: 12px;
  padding: 24px 28px 24px;
  border-top: 1px solid rgba(23, 26, 36, 0.08);
}

.pricing-summary__intro {
  max-width: 960px;
}

.pricing-summary__intro h2 {
  margin: 0;
  font-size: clamp(42px, 5.3vw, 76px);
  line-height: 0.95;
}

.pricing-summary__intro p {
  margin: 16px 0 0;
  color: var(--muted);
}

.pricing-group {
  display: grid;
  gap: 14px;
}

.pricing-group__title {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1;
}

.pricing-group__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: clamp(360px, 32vw, 460px);
  padding: clamp(22px, 2vw, 30px);
  border: 2px solid rgba(23, 26, 36, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(23, 26, 36, 0.07);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 54px;
  height: 54px;
  border-radius: 0 24px 0 20px;
  background: linear-gradient(135deg, var(--sun), #ffe392);
}

.pricing-card h4 {
  margin: 0;
  font-size: clamp(31px, 2.2vw, 42px);
  line-height: 0.94;
  padding-right: 40px;
  min-height: 1.9em;
}

.pricing-card__price {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-dark);
}

.pricing-card__one-liner,
.pricing-card__body,
.pricing-card__best-for {
  margin: 0;
  color: #4f5f74;
  line-height: 1.38;
}

.pricing-card__one-liner {
  min-height: 0;
}

.pricing-card__body {
  min-height: 0;
}

.pricing-card__best-for strong {
  color: var(--ink);
}

.pricing-card__best-for {
  display: grid;
  gap: 2px;
  margin-top: 2px;
  min-height: 0;
}

.pricing-card__best-for span {
  color: #5a6f89;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card .button {
  margin-top: 8px;
  justify-self: start;
}

.pricing-card--compact {
  gap: 10px;
}

.pricing-estimates {
  background: linear-gradient(180deg, rgba(255, 247, 223, 0.78) 0%, rgba(248, 251, 255, 0.4) 100%);
}

.pricing-estimates__intro {
  max-width: 960px;
}

.pricing-estimates__intro h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.96;
}

.pricing-estimates__intro p {
  margin: 16px 0 0;
  color: var(--muted);
}

.pricing-estimates__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(20px, 2.8vw, 30px);
}

.pricing-estimates__card {
  padding: clamp(20px, 2vw, 26px);
  border: 2px solid rgba(23, 26, 36, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
}

.pricing-estimates__card h3 {
  margin: 0;
  font-size: clamp(28px, 2vw, 36px);
  line-height: 0.98;
}

.pricing-estimates__card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.pricing-examples__intro h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.96;
}

.pricing-examples__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(20px, 2.8vw, 30px);
}

.pricing-example-card {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: clamp(20px, 2vw, 26px);
  border-radius: 20px;
  border: 2px solid rgba(23, 26, 36, 0.08);
  background: #ffffff;
}

.pricing-example-card p {
  margin: 0;
  color: #4f5f74;
}

.pricing-example-card strong {
  color: var(--ink);
}

.pricing-care__intro {
  max-width: 920px;
}

.pricing-care__intro h2 {
  margin: 0;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 0.96;
}

.pricing-care__intro p {
  margin: 16px 0 0;
  color: var(--muted);
}

.pricing-care__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(18px, 2.4vw, 26px);
}

.pricing-care__card {
  min-height: 100%;
  padding: clamp(20px, 2vw, 26px);
  border: 2px solid rgba(23, 26, 36, 0.08);
  border-radius: 20px;
  background: #ffffff;
}

.pricing-care__card h3 {
  margin: 0;
  font-size: clamp(30px, 2.1vw, 40px);
  line-height: 0.95;
}

.pricing-care__price {
  margin: 10px 0 0;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
}

.pricing-care__card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.pricing-care__cta {
  margin-top: 26px;
}

.pricing-projects {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.72) 0%, rgba(255, 255, 255, 1) 100%);
}

.pricing-projects__intro {
  max-width: 950px;
}

.pricing-projects__intro h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.96;
}

.pricing-projects__intro h3,
.pricing-care__intro h3 {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 0.95;
}

.pricing-projects__intro p {
  margin: 16px 0 0;
  color: var(--muted);
}

.pricing-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
  margin-top: clamp(20px, 2.8vw, 30px);
}

.pricing-projects__card {
  min-height: 100%;
  padding: clamp(18px, 2vw, 24px);
  border-radius: 18px;
  border: 2px solid rgba(23, 26, 36, 0.08);
  background: #ffffff;
}

.pricing-projects__card h3 {
  margin: 0;
  font-size: clamp(27px, 1.9vw, 34px);
  line-height: 0.98;
}

.pricing-projects__card h4,
.pricing-care__card h4 {
  margin: 0;
  font-size: clamp(27px, 2vw, 36px);
  line-height: 0.98;
}

.pricing-projects__card p {
  margin: 10px 0 0;
  color: var(--blue-dark);
  font-family: var(--display);
  font-weight: 600;
}

.pricing-projects__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.pricing-faq__intro h2 {
  margin: 0;
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 0.96;
}

.pricing-faq__items {
  display: grid;
  gap: 12px;
  margin-top: clamp(20px, 2.4vw, 28px);
}

.pricing-faq-item {
  border: 2px solid rgba(23, 26, 36, 0.08);
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
}

.pricing-faq-item summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.03;
  list-style: none;
}

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

.pricing-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  font-size: 26px;
  transform: translateY(-50%);
}

.pricing-faq-item[open] summary::after {
  content: "-";
}

.pricing-faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.pricing-final-cta {
  padding-top: clamp(36px, 5vw, 62px);
  padding-bottom: clamp(86px, 12vw, 148px);
}

.pricing-final-cta__box {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(30px, 4vw, 46px);
  border-radius: 32px;
  border: 2px solid rgba(23, 26, 36, 0.08);
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.44) 0 22%, transparent 44%),
    linear-gradient(140deg, #fad652 0%, #ffde73 100%);
  text-align: center;
}

.pricing-final-cta__box h2 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 80px);
  line-height: 0.93;
  text-wrap: balance;
}

.pricing-final-cta__box p {
  margin: 0;
  max-width: 58ch;
}

.pricing-final-cta__note {
  font-size: 16px;
  color: #274563;
}

@media (max-width: 1080px) {
  .pricing-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-height) + 28px);
  }

  .pricing-hero__mascot {
    display: none;
  }

  .pricing-process__grid,
  .pricing-examples__grid,
  .pricing-care__grid,
  .pricing-projects__grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-group__cards {
    grid-template-columns: 1fr;
  }

  .pricing-estimates__grid {
    grid-template-columns: 1fr;
  }

  .pricing-summary-strip__grid {
    grid-template-columns: 1fr;
  }

  .pricing-switcher__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .pricing-hero h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .pricing-hero__actions .button {
    width: 100%;
  }

  .pricing-switcher__menu {
    top: calc(var(--nav-height) + 8px);
    gap: 8px;
    padding: 8px;
  }

  .pricing-switcher__tab {
    min-height: 44px;
    font-size: 15px;
  }

  .pricing-accordion-item__summary {
    padding: 18px 18px;
    row-gap: 8px;
  }

  .pricing-accordion-item__summary h4 {
    font-size: clamp(22px, 8vw, 30px);
  }

  .pricing-accordion-item__teaser {
    font-size: 15px;
  }

  .pricing-accordion-item__icon {
    font-size: 24px;
  }

  .pricing-accordion-item__content {
    padding: 18px 18px 18px;
  }

  .pricing-process__grid,
  .pricing-examples__grid,
  .pricing-care__grid,
  .pricing-projects__grid {
    grid-template-columns: 1fr;
  }

  .pricing-confidence__box::after {
    width: 70px;
    height: 26px;
  }

  .pricing-process__card h3,
  .pricing-card h4 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .pricing-faq-item summary {
    font-size: clamp(24px, 7vw, 30px);
  }
}

.contact-page {
  min-height: 100svh;
  background: linear-gradient(180deg, #fff7df 0%, #f7fbff 100%);
}

.contact-hero__kicker,
.contact-form-shell__top p,
.contact-form__field span {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.56fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  min-height: 100svh;
  padding-top: calc(var(--nav-height) + 18px);
  padding-bottom: 24px;
}

.contact-intro {
  display: grid;
  gap: 12px;
}

.contact-intro h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(48px, 6.6vw, 86px);
  line-height: 0.9;
  text-wrap: balance;
}

.contact-intro > p {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.35;
}

.contact-form-shell {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.8vw, 28px);
  border: 1px solid rgba(25, 70, 107, 0.12);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 20px 42px rgba(23, 26, 36, 0.09);
}

.contact-form-shell__top {
  display: grid;
  gap: 4px;
}

.contact-form-shell__top h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form__website {
  display: none !important;
}

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

.contact-form__field {
  display: grid;
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(25, 70, 107, 0.22);
  border-radius: 16px;
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
  line-height: 1.35;
  box-shadow: none;
}

.contact-form input {
  min-height: 46px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 99, 244, 0.16);
}

.contact-form__button {
  width: fit-content;
  min-width: 148px;
  min-height: 46px;
}

.contact-form__privacy,
.ssu-form-success,
.ssu-form-error {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.ssu-form-success,
.ssu-form-error {
  padding: 12px 14px;
  border-radius: 16px;
}

.ssu-form-success {
  background: #edf8f0;
  color: #22613a;
}

.ssu-form-error {
  background: #fff0ee;
  color: #8b2c20;
}

.contact-behind {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  padding-top: clamp(64px, 9vw, 130px);
  padding-bottom: clamp(64px, 9vw, 130px);
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.contact-behind__image {
  align-self: end;
}

.contact-behind__image img {
  width: min(100%, 520px);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(23, 26, 36, 0.1));
}

.contact-behind__copy {
  display: grid;
  gap: 14px;
  max-width: 650px;
}

.contact-behind__kicker {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
}

.contact-behind h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.95;
  text-wrap: balance;
}

.contact-behind__copy p:not(.contact-behind__kicker) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.42;
}

@media (max-width: 920px) {
  .contact-shell {
    grid-template-columns: 1fr;
    gap: 18px;
    align-content: start;
    padding-top: calc(var(--nav-height) + 16px);
  }

  .contact-intro {
    gap: 8px;
  }

  .contact-intro h1 {
    max-width: 12ch;
    font-size: clamp(42px, 10vw, 64px);
  }

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

  .contact-behind__image {
    order: 2;
  }

  .contact-behind__copy {
    order: 1;
  }

  .contact-behind h2 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .contact-shell {
    padding-top: calc(var(--nav-height) + 10px);
    padding-bottom: 16px;
  }

  .contact-hero__kicker,
  .contact-form-shell__top p,
  .contact-form__field span {
    font-size: 12px;
  }

  .contact-intro > p,
  .contact-form__privacy {
    display: none;
  }

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

  .contact-form-shell {
    gap: 10px;
    padding: 16px;
    border-radius: 18px;
  }

  .contact-form-shell__top h2 {
    font-size: 28px;
  }

  .contact-form {
    gap: 9px;
  }

  .contact-form input {
    min-height: 42px;
  }

  .contact-form textarea {
    min-height: 98px;
  }

  .contact-form__button {
    width: 100%;
  }

  .contact-behind {
    gap: 22px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .contact-behind h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .contact-behind__copy p:not(.contact-behind__kicker) {
    font-size: 17px;
  }
}

.who-help-hero,
.services-showcase__hero,
.case-studies-page__hero,
.pricing-hero,
.contact-shell,
.service-hero {
  padding-top: calc(var(--nav-height) + 18px);
}

.who-help-hero,
.case-studies-page__hero,
.pricing-hero,
.contact-shell,
.service-hero {
  align-items: start;
  align-content: start;
}

.services-showcase__hero {
  justify-content: flex-start;
}

.who-help-hero__content,
.services-showcase__intro,
.case-studies-page__intro,
.pricing-hero__content,
.contact-intro,
.service-hero__copy {
  display: grid;
  gap: 0;
  justify-items: start;
  padding-top: 0;
}

.who-help-hero .who-help-hero__kicker,
.services-showcase__intro .service-hero__kicker,
.case-studies-page__intro .service-hero__kicker,
.pricing-hero .pricing-hero__kicker,
.contact-intro .contact-hero__kicker,
.service-hero .service-hero__kicker {
  max-width: none;
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.who-help-hero h1,
.services-showcase__intro h1,
.case-studies-page__intro h1,
.pricing-hero h1,
.contact-intro h1,
.service-hero h1 {
  max-width: 11ch;
  margin: 0 0 18px;
  font-size: clamp(52px, 6.1vw, 96px);
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

.pricing-hero__mascot {
  align-self: center;
}

.who-help-hero__content > p:not(.who-help-hero__kicker) {
  margin-top: 20px;
}

.who-help-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding-top: calc(var(--nav-height) + clamp(42px, 7vh, 72px));
  padding-bottom: clamp(66px, 10vh, 112px);
}

.who-help-hero .button {
  width: fit-content;
  min-height: 50px;
  margin-top: clamp(40px, 7vh, 68px);
  padding-inline: 24px;
  font-size: 15px;
}

.who-help-hero__mascot {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(100%, 430px);
  margin: 0;
}

.who-help-hero__mascot img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(23, 26, 36, 0.13));
  transform: rotate(1deg);
}

.who-help-rows .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 720px) {
  .who-help-hero,
  .services-showcase__hero,
  .case-studies-page__hero,
  .pricing-hero,
  .contact-shell,
  .service-hero {
    padding-top: calc(var(--nav-height) + 14px);
  }

  .who-help-hero h1,
  .services-showcase__intro h1,
  .case-studies-page__intro h1,
  .pricing-hero h1,
  .contact-intro h1,
  .service-hero h1 {
    font-size: clamp(44px, 14vw, 62px);
    line-height: 0.94;
  }

  .who-help-hero .button {
    width: 100%;
    min-height: 48px;
    margin-top: 28px;
  }

  .who-help-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: calc(var(--nav-height) + 28px);
  }

  .who-help-hero__mascot {
    width: min(100%, 280px);
  }
}

body.page-slug-book-an-appointment .ssu-page {
  background:
    radial-gradient(circle at 4% 12%, rgba(47, 99, 244, 0.12) 0 16%, transparent 52%),
    radial-gradient(circle at 96% 88%, rgba(255, 206, 51, 0.2) 0 18%, transparent 54%),
    #f8fbff;
}

body.page-slug-book-an-appointment .ssu-page__article {
  width: min(1040px, 100%);
  max-width: none;
}

body.page-slug-book-an-appointment .ssu-page__article > h1 {
  display: none;
}

.ssu-booking-shell {
  display: grid;
  gap: 20px;
  width: min(960px, 100%);
  margin: 0 auto;
}

.ssu-booking-hero {
  display: grid;
  gap: 8px;
}

.ssu-booking-kicker {
  margin: 0;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-dark);
}

.ssu-booking-lead {
  margin: 0;
  max-width: 44ch;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.24;
}

.ssu-booking-widget {
  position: relative;
  min-height: 420px;
  padding: clamp(16px, 2.5vw, 28px);
  border: 2px solid rgba(25, 70, 107, 0.08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 36px rgba(23, 26, 36, 0.08);
}

body.page-slug-book-an-appointment .ssu-booking-widget .wappointment_widget {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
}

body.page-slug-book-an-appointment .wappointment-wrap,
body.page-slug-book-an-appointment .wap-front {
  font-family: var(--body);
  color: var(--ink);
}

body.page-slug-book-an-appointment .wappointment-wrap .wbtn,
body.page-slug-book-an-appointment .wappointment-wrap .btn {
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
}

body.page-slug-book-an-appointment .wappointment-wrap .wbtn-primary,
body.page-slug-book-an-appointment .wappointment-wrap .btn-success {
  border-color: transparent;
  background: var(--blue);
  color: var(--white);
}

body.page-slug-book-an-appointment .wappointment-wrap .wbtn-primary:hover,
body.page-slug-book-an-appointment .wappointment-wrap .btn-success:hover {
  background: var(--blue-dark);
}

body.page-slug-book-an-appointment .wappointment-wrap .wbtn-secondary,
body.page-slug-book-an-appointment .wappointment-wrap .btn.btn-secondary {
  border-color: rgba(25, 70, 107, 0.16);
  background: #fff7df;
  color: var(--blue-dark);
}

body.page-slug-book-an-appointment .wappointment-wrap .nav-tabs .nav-link,
body.page-slug-book-an-appointment .wappointment-wrap .nav-tabs .nav-link.active {
  border-radius: 999px;
}

body.page-slug-book-an-appointment .wappointment-wrap .form-control,
body.page-slug-book-an-appointment .wap-front .phone-field-wrap .phone-field {
  border: 1px solid rgba(25, 70, 107, 0.26);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
}

body.page-slug-book-an-appointment .wappointment-wrap .form-control:focus,
body.page-slug-book-an-appointment .wap-front .phone-field-wrap .phone-field input.tel:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 99, 244, 0.18);
}

body.page-slug-book-an-appointment .wappointment-wrap .label-wrapper label {
  color: #6f727b;
}

body.page-slug-book-an-appointment .wappointment-wrap .notify.error {
  border-left-color: #d95e5e;
}

body.page-slug-book-an-appointment .wappointment-wrap .notify.success {
  border-left-color: var(--blue);
}

@media (max-width: 720px) {
  .ssu-booking-lead {
    font-size: 19px;
  }

  .ssu-booking-widget {
    min-height: 340px;
    padding: 14px;
    border-radius: 16px;
  }
}

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

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

  .hero__scribble-mask-stroke {
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
    animation: none;
  }

  .audit-next-step,
  .audit-next-step:nth-child(1),
  .audit-next-step:nth-child(2),
  .audit-next-step:nth-child(3) {
    transform: none;
  }
}
