:root {
  --ink: var(--brand--primary);
  --service-body: var(--text--body);
  --muted: var(--neutral--grey-500);
  --line: var(--neutral--gray-300);
  --surface: var(--neutral--gray);
  --white: var(--neutral--white);
  --accent: var(--brand--accent);
  --accent-dark: #237f7c;
  --accent-soft: var(--brand--accent-light-2);
  --max: 75rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--service-body);
  background: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: var(--_text---weight--normal);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.service-shell {
  width: calc(100% - 3rem);
  max-width: var(--max);
  margin-inline: auto;
}

.service-nav {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgb(208 213 221 / 70%);
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(14px);
}

.service-nav-inner {
  min-height: var(--_sizes---nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.service-brand {
  flex: none;
  text-decoration: none;
}

.service-brand-logo {
  display: block;
  width: 9.375rem;
  height: auto;
}

.service-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.service-nav-links a {
  color: var(--nav--text);
  padding: 0.75rem 1.375rem;
  font-size: 1rem;
  font-weight: var(--_text---weight--medium);
  text-decoration: none;
}

.service-nav-links a:hover,
.service-nav-links a:focus-visible {
  color: var(--accent-dark);
}

.service-button {
  min-height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 1.125rem 2rem;
  border: 0;
  border-radius: 100vh;
  color: var(--text--black);
  background: var(--background--accent);
  font-weight: var(--_text---weight--semi-bold);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: color 0.6s, transform 180ms ease;
}

.service-button:hover {
  color: var(--text--text-white);
  transform: translateY(-2px);
}

.service-button.is-accent {
  color: var(--text--black);
  background: var(--background--accent);
}

.service-button.is-ghost {
  color: var(--ink);
  background: var(--neutral--gray-200);
}

.service-breadcrumbs {
  padding-top: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-breadcrumbs a {
  text-underline-offset: 0.2em;
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.service-hero::after {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: -12rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(56 171 167 / 25%), rgb(56 171 167 / 0%) 70%);
  content: "";
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.service-eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-dark);
  font-size: 0.75rem;
  line-height: 1.6;
  font-weight: var(--_text---weight--medium);
  letter-spacing: 0.0675rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--headings);
  letter-spacing: -0.001em;
  text-align: left;
}

h1 {
  max-width: 24ch;
  margin-bottom: 1.5rem;
  font-size: 3.625rem;
  line-height: 1.08;
  font-weight: var(--_text---weight--semi-bold);
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.8125rem;
  line-height: 1.07143;
  font-weight: var(--_text---weight--semi-bold);
}

h3 {
  max-width: 14ch;
  margin-bottom: 0.875rem;
  font-size: 2rem;
  line-height: 1.0625;
  font-weight: var(--_text---weight--medium);
}

.service-lead {
  max-width: 42rem;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.service-proof {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, var(--surface), var(--accent-soft));
  box-shadow: 0 1.5rem 4rem rgb(16 24 40 / 10%);
}

.service-proof strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-family: var(--headings);
  font-size: 1.08rem;
  letter-spacing: -0.001em;
}

.service-proof ul {
  margin: 1.25rem 0 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.service-proof li + li {
  margin-top: 0.65rem;
}

.service-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.service-section.is-soft {
  background: var(--surface);
}

.service-section-heading {
  max-width: 48rem;
  margin-bottom: 2.75rem;
}

.service-section-heading > p:not(.service-eyebrow) {
  max-width: 42rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

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

.service-card {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--white);
}

.service-card p {
  margin-bottom: 0;
}

.service-number {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
  border-radius: 50%;
  color: var(--ink);
  background: var(--accent-soft);
  font-weight: 800;
}

.service-case-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-case-link {
  min-height: 12rem;
  padding: 1.75rem;
  border-radius: 1.25rem;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease;
}

.service-case-link:hover {
  transform: translateY(-3px);
}

.service-case-link h3 {
  color: var(--white);
}

.service-case-link span {
  color: var(--accent-soft);
  font-weight: 700;
}

.service-faq {
  max-width: 52rem;
}

.service-faq details {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
}

.service-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.service-faq summary {
  color: var(--ink);
  cursor: pointer;
  font-family: var(--headings);
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.001em;
}

.service-faq details p {
  max-width: 46rem;
  margin-bottom: 0;
}

.service-cta {
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: 1.75rem;
  color: var(--white);
  background: var(--ink);
}

.service-cta h2 {
  max-width: 17ch;
  color: var(--white);
}

.service-cta p {
  max-width: 42rem;
  color: #d0d5dd;
}

.service-footer {
  padding: 2.5rem 0;
  color: #d0d5dd;
  background: var(--ink);
}

.service-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.service-footer a {
  color: var(--white);
}

@media (max-width: 820px) {
  .service-nav-links a:not(.service-button) {
    display: none;
  }

  .service-hero-grid,
  .service-grid,
  .service-case-links {
    grid-template-columns: 1fr;
  }

  .service-proof {
    max-width: 34rem;
  }

  .service-footer-inner {
    display: grid;
  }
}

@media screen and (min-width: 1920px) {
  .service-shell {
    width: calc(100% - 5rem);
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .service-lead {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .service-shell {
    width: calc(100% - 1.5rem);
  }

  .service-nav-inner {
    min-height: var(--_sizes---nav-height);
  }

  .service-brand-logo {
    width: 6rem;
  }

  .service-nav-links .service-button {
    min-height: 2.8rem;
    padding: 0.7rem 0.9rem;
    font-size: 0.88rem;
  }

  .service-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
