:root {
  --navy: #1a3a4a;
  --navy-deep: #102d3b;
  --ocean: #0c4a6e;
  --teal: #0f8f8f;
  --teal-bright: #5fd6d6;
  --ice: #f0f7fa;
  --white: #ffffff;
  --ink: #203847;
  --muted: #5b6f7a;
  --border: #d9e6eb;
  --soft: #f6fafb;
  --shadow: 0 20px 55px rgba(16, 45, 59, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--navy-deep);
  background: var(--white);
  border: 2px solid var(--teal);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 45, 59, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-shell,
.content-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.18em;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(95, 214, 214, 0.7);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand-mark::before {
  top: 5px;
  width: 2px;
  height: 22px;
  background: var(--teal-bright);
}

.brand-mark::after {
  top: 5px;
  border-right: 5px solid transparent;
  border-bottom: 12px solid var(--white);
  border-left: 5px solid transparent;
}

.brand span:last-child {
  display: block;
  color: #afc4ce;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.28em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: #d6e4e9;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--teal-bright);
}

.nav-links .nav-cta {
  padding: 10px 16px;
  color: var(--navy-deep);
  background: var(--teal-bright);
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 82px;
  color: var(--white);
  background: var(--navy-deep);
}

.service-hero::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -110px;
  bottom: -240px;
  border: 1px solid rgba(95, 214, 214, 0.27);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(95, 214, 214, 0.045), 0 0 0 140px rgba(95, 214, 214, 0.025);
}

.service-hero::after {
  content: "";
  position: absolute;
  right: 80px;
  bottom: 0;
  width: 1px;
  height: 260px;
  background: linear-gradient(transparent, var(--teal-bright));
  transform: rotate(34deg);
  transform-origin: bottom;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 870px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 34px;
  padding: 0;
  color: #aac0c9;
  list-style: none;
  font-size: 12px;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: #6d8a97;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--teal-bright);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal-bright);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: #d0e0e6;
  font-size: clamp(18px, 2.3vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--navy-deep);
  background: var(--teal-bright);
}

.button-primary:hover {
  background: #7ce4e4;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.button-secondary:hover {
  border-color: var(--teal-bright);
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--soft);
}

.section-navy {
  color: var(--white);
  background: var(--navy);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 84px;
  align-items: start;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section h2 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.section-navy h2 {
  color: var(--white);
}

.section-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-navy .section-lead {
  color: #cadce3;
}

.copy-block p {
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 16px;
}

.callout {
  margin-top: 28px;
  padding: 22px 24px;
  color: var(--navy);
  background: var(--ice);
  border-left: 3px solid var(--teal);
  font-size: 15px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.deliverable-card {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
}

.deliverable-card .card-number {
  margin-bottom: 32px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.deliverable-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.deliverable-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-step {
  padding: 30px 28px 0 0;
}

.process-step + .process-step {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.process-number {
  display: block;
  margin-bottom: 20px;
  color: var(--teal-bright);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.process-step h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

.process-step p {
  margin-bottom: 0;
  color: #c4d6dd;
  font-size: 14px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border);
}

.proof-item {
  padding: 30px;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--border);
}

.proof-value {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.1;
}

.proof-label {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.fit-panel {
  padding: 30px;
  border: 1px solid var(--border);
}

.fit-panel h3 {
  color: var(--navy);
  font-size: 19px;
  font-weight: 500;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 26px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 20px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.faq-list {
  max-width: 880px;
  margin-top: 38px;
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--teal);
  font-size: 23px;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 34px 22px 0;
  color: var(--muted);
  font-size: 15px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.related-links a {
  padding: 9px 13px;
  color: var(--ocean);
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  font-size: 13px;
}

.related-links a:hover,
.related-links a:focus-visible {
  border-color: var(--teal);
}

.closing-cta {
  padding: 78px 0;
  color: var(--white);
  background: var(--navy-deep);
}

.closing-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: end;
}

.closing-cta h2 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
}

.closing-cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: #c6d8df;
}

.site-footer {
  padding: 42px 0;
  color: #b5c9d1;
  background: #0b2430;
  font-size: 12px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--teal-bright);
}

:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .nav-links li:not(:last-child) {
    display: none;
  }

  .intro-grid,
  .closing-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .proof-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 620px) {
  .nav-shell,
  .content-shell {
    width: min(100% - 32px, 1160px);
  }

  .nav-shell {
    min-height: 68px;
    gap: 12px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav-links .nav-cta {
    padding: 9px 12px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .service-hero {
    padding: 52px 0 62px;
  }

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .card-grid,
  .process-grid,
  .proof-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step + .process-step,
  .process-step:nth-child(3) {
    padding: 26px 0 0;
    border-left: 0;
  }

  .proof-item + .proof-item,
  .proof-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Shared Navigator visual system
   Keeps service pages aligned with the established homepage brand while using
   a quieter, editorial structure for detailed service content. */

body {
  color: #3a5a6a;
  background: #f0f7fa;
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  background: #1a3a4a;
  border-bottom: 0;
  box-shadow: 0 1px 0 rgba(15, 165, 165, 0.12);
}

.nav-shell {
  position: relative;
  z-index: 101;
  width: 100%;
  max-width: none;
  min-height: 72px;
  margin: 0;
  padding: 0 48px;
}

.content-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.nav-logo svg {
  flex: 0 0 auto;
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.nav-wordmark-top {
  color: #e8f0f4;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-wordmark-sub {
  color: #5fd6d6;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.nav-links {
  gap: 32px;
}

.nav-links a {
  color: #a8c0cc;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #e8f0f4;
}

.nav-links .nav-cta {
  padding: 9px 22px;
  color: #fff;
  background: #087c7c;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: #fff;
  background: #066666;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #e8f0f4;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 96px 24px 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #1a3a4a;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: #e8f0f4;
  font-size: 26px;
  font-weight: 200;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: #5fd6d6;
}

.service-hero {
  margin-top: 72px;
  padding: 88px 0 96px;
  color: #f0f7fa;
  background: #1a3a4a;
}

.service-hero::before {
  width: 680px;
  height: 680px;
  right: -360px;
  bottom: -430px;
  border-color: rgba(15, 165, 165, 0.11);
  box-shadow: none;
}

.service-hero::after {
  right: 13%;
  bottom: 0;
  width: 1px;
  height: 170px;
  background: linear-gradient(transparent, rgba(95, 214, 214, 0.34));
  transform: none;
}

.hero-inner {
  max-width: 1200px;
}

.breadcrumbs {
  margin-bottom: 38px;
  color: #a8c0cc;
  font-size: 11px;
}

.breadcrumbs li + li::before {
  color: #688594;
}

.eyebrow {
  gap: 12px;
  margin-bottom: 22px;
  color: #5fd6d6;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  background: #0fa5a5;
}

h1 {
  max-width: 790px;
  margin-bottom: 28px;
  color: #e8f0f4;
  font-size: clamp(42px, 5.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 36px;
  color: #a8c0cc;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  gap: 16px;
}

.button {
  min-height: 0;
  padding: 14px 30px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.button-primary {
  color: #fff;
  background: #087c7c;
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #fff;
  background: #066666;
}

.button-secondary {
  padding: 13px 30px;
  border-color: rgba(200, 218, 228, 0.35);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #0fa5a5;
}

.section {
  padding: 112px 0;
}

.section-soft {
  background: #e4eff5;
}

.section-navy {
  background: #1a3a4a;
}

.intro-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
}

.section-kicker {
  margin-bottom: 18px;
  color: #066666;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.section h2 {
  margin-bottom: 24px;
  color: #1a3a4a;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-lead {
  color: #3a5a6a;
  font-size: 16px;
  line-height: 1.8;
}

.copy-block p {
  color: #3a5a6a;
  line-height: 1.8;
}

.callout {
  margin-top: 32px;
  padding: 24px 28px;
  color: #1a3a4a;
  background: #e8f4f8;
  border-left-color: #0fa5a5;
}

.card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 52px;
  row-gap: 0;
  margin-top: 52px;
}

.deliverable-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 14px;
  min-height: 0;
  padding: 30px 0 34px;
  background: transparent;
  border: 0;
  border-top: 1px solid #c4d4dc;
}

.deliverable-card .card-number {
  grid-row: 1 / span 2;
  margin: 4px 0 0;
  color: #087c7c;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.deliverable-card h3 {
  margin-bottom: 9px;
  color: #1a3a4a;
  font-size: 18px;
}

.deliverable-card p {
  color: #4d6b7a;
  font-size: 14px;
}

.process-grid {
  margin-top: 48px;
}

.process-number {
  color: #5fd6d6;
}

.process-step p {
  color: #a8c0cc;
  line-height: 1.65;
}

.proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 52px;
  margin-top: 48px;
  border: 0;
}

.proof-item,
.proof-item + .proof-item {
  padding: 28px 0 32px;
  border: 0;
  border-top: 1px solid #c4d4dc;
}

.proof-value {
  margin-bottom: 8px;
  color: #087c7c;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 200;
}

.proof-label {
  max-width: 380px;
  color: #3a5a6a;
  font-size: 14px;
}

.fit-grid {
  gap: 48px;
  margin-top: 64px;
}

.fit-panel {
  padding: 34px 0 0;
  border: 0;
  border-top: 3px solid #0fa5a5;
}

.fit-panel:nth-child(2) {
  border-top-color: #c4d4dc;
}

.fit-panel h3 {
  color: #1a3a4a;
}

.check-list li {
  color: #3a5a6a;
  border-top-color: #c4d4dc;
}

.faq-list {
  border-top-color: #c4d4dc;
}

.faq-list details {
  border-bottom-color: #c4d4dc;
}

.faq-list summary {
  color: #1a3a4a;
}

.faq-list details p {
  color: #3a5a6a;
}

.related-links {
  gap: 16px 28px;
  margin-top: 36px;
}

.related-links a {
  padding: 0 0 2px;
  color: #087c7c;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(8, 124, 124, 0.35);
  font-weight: 400;
}

.related-links a:hover,
.related-links a:focus-visible {
  color: #0c4a6e;
  border-color: currentColor;
}

.closing-cta {
  padding: 88px 0;
  background: #1a3a4a;
}

.closing-cta h2 {
  font-weight: 200;
}

.site-footer {
  padding: 40px 0;
  color: #a8c0cc;
  background: #1a3a4a;
  border-top: 1px solid rgba(15, 165, 165, 0.12);
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 22px;
  }

  .nav-links a {
    font-size: 12px;
  }
}

@media (max-width: 960px) {
  .nav-shell,
  .content-shell {
    padding-right: 24px;
    padding-left: 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .intro-grid,
  .closing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .nav-shell,
  .content-shell {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .nav-shell {
    min-height: 72px;
  }

  .nav-wordmark-top {
    font-size: 15px;
  }

  .nav-wordmark-sub {
    font-size: 8px;
  }

  .mobile-nav {
    justify-content: flex-start;
    gap: 18px;
    padding-top: 88px;
  }

  .mobile-nav a {
    font-size: 22px;
  }

  .service-hero {
    padding: 64px 0 72px;
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .button {
    width: 100%;
  }

  .deliverable-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    column-gap: 0;
  }

  .deliverable-card .card-number {
    grid-row: auto;
    margin: 0 0 14px;
  }

  .proof-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}
