:root {
  --ink: #092536;
  --ink-2: #315060;
  --muted: #637782;
  --paper: #ffffff;
  --soft: #f1f7f5;
  --line: #dbe7e4;
  --navy: #061c2a;
  --teal: #078891;
  --teal-dark: #08666f;
  --green: #6fbd45;
  --green-soft: #dcf4cf;
  --shadow: 0 18px 60px rgba(4, 31, 45, 0.1);
  --radius: 24px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--navy);
}

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

:focus-visible {
  outline: 3px solid #f3b725;
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 26px;
  max-width: 850px;
  font-size: clamp(2.65rem, 6vw, 5rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 730;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

p:last-child {
  margin-bottom: 0;
}

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

.narrow {
  max-width: 900px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 14px;
  left: 14px;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.icon {
  width: 1.35em;
  height: 1.35em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.utility {
  color: #d4e4e7;
  background: var(--navy);
  font-size: 0.82rem;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-links,
.utility-links a {
  display: flex;
  align-items: center;
  gap: 18px;
}

.utility-links a {
  gap: 7px;
  color: #eaf4f4;
  text-decoration: none;
}

.utility-links .icon {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.nav-row {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
  width: 220px;
}

.brand-logo {
  width: 220px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.main-nav > a {
  position: relative;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav > a:hover::after,
.main-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  width: 48px;
  height: 44px;
  display: none;
  place-content: center;
  gap: 5px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.nav-toggle > span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: currentColor;
}

.button {
  min-height: 52px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border: 1px solid transparent;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(7, 136, 145, 0.2);
  font-weight: 720;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  color: white;
  box-shadow: 0 15px 34px rgba(7, 136, 145, 0.3);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.88rem !important;
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: #9fb9bd;
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--ink);
  background: var(--paper);
  box-shadow: none;
}

.button-light {
  color: var(--navy);
  background: white;
  box-shadow: none;
}

.button-light:hover {
  color: var(--navy);
  background: #e9f8f7;
}

.button-ghost-light {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.button-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 720;
  text-decoration: none;
}

.text-link .icon {
  width: 18px;
  transition: transform 0.2s ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(111, 189, 69, 0.16), transparent 28%),
    linear-gradient(145deg, #f9fcfb 0%, #eef8f6 50%, #f7fbfb 100%);
}

.hero::before {
  position: absolute;
  width: 550px;
  height: 550px;
  top: -320px;
  left: -240px;
  border: 1px solid rgba(7, 136, 145, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  min-height: 690px;
  padding-block: 94px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 32px;
  color: var(--ink-2);
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.trust-list {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 25px;
  color: var(--ink-2);
  font-size: 0.9rem;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list .icon {
  width: 18px;
  color: var(--teal);
}

.hero-visual {
  position: relative;
  min-height: 490px;
}

.hero-visual::before {
  position: absolute;
  width: 290px;
  height: 290px;
  top: 90px;
  left: 95px;
  background: linear-gradient(140deg, var(--teal), var(--navy));
  border-radius: 43% 57% 53% 47% / 44% 39% 61% 56%;
  box-shadow: 0 45px 75px rgba(6, 28, 42, 0.23);
  content: "";
  transform: rotate(-8deg);
}

.hero-visual::after {
  position: absolute;
  width: 110px;
  height: 110px;
  top: 105px;
  left: 120px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 90px 90px 0 22px rgba(111, 189, 69, 0.27);
  content: "";
}

.orbit {
  position: absolute;
  border: 1px solid rgba(7, 136, 145, 0.25);
  border-radius: 50%;
}

.orbit-one {
  width: 455px;
  height: 455px;
  top: 14px;
  left: 4px;
}

.orbit-two {
  width: 385px;
  height: 385px;
  top: 48px;
  left: 40px;
  border-style: dashed;
}

.signal-card {
  position: absolute;
  z-index: 2;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 17px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.signal-main {
  width: 250px;
  top: 164px;
  left: 110px;
}

.signal-main > span {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.signal-main strong {
  font-size: 1.35rem;
}

.signal-main small {
  margin-top: 6px;
  color: var(--muted);
}

.signal-a {
  top: 36px;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--green-soft);
}

.signal-b {
  right: 3px;
  bottom: 45px;
  min-width: 220px;
  font-size: 0.9rem;
}

.mini-bars {
  height: 38px;
  margin-top: 10px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.mini-bars i {
  width: 24px;
  background: var(--teal);
  border-radius: 4px 4px 0 0;
}

.mini-bars i:nth-child(1) { height: 40%; opacity: 0.35; }
.mini-bars i:nth-child(2) { height: 70%; opacity: 0.65; }
.mini-bars i:nth-child(3) { height: 100%; }

.section {
  padding-block: 105px;
}

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

.section-dark {
  color: #c8d9dd;
  background:
    radial-gradient(circle at 85% 20%, rgba(7, 136, 145, 0.23), transparent 30%),
    var(--navy);
}

.section-dark h2,
.section-dark h3 {
  color: white;
}

.section-dark .eyebrow {
  color: #7ed7cf;
}

.split-intro {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: start;
  gap: 110px;
}

.split-intro > p,
.split-intro > div:last-child {
  padding-top: 42px;
  color: var(--ink-2);
  font-size: 1.12rem;
}

.section-heading {
  margin-bottom: 45px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.heading-link {
  flex: 0 0 auto;
  margin-bottom: 8px;
}

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

.service-card {
  min-height: 365px;
  padding: 33px;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(4, 31, 45, 0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card p {
  color: var(--ink-2);
}

.service-card .text-link {
  margin-top: auto;
}

.icon-box {
  width: 55px;
  height: 55px;
  margin-bottom: 30px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: linear-gradient(135deg, #e1f5f2, var(--green-soft));
  border-radius: 15px;
}

.icon-box .icon {
  width: 28px;
  height: 28px;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 105px;
}

.process-copy {
  position: sticky;
  top: 40px;
  align-self: start;
}

.process-copy > p:not(.eyebrow) {
  color: var(--ink-2);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 27px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list > li > span {
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.process-list p {
  color: var(--ink-2);
}

.values-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 45px;
}

.values-grid > div:first-child {
  padding-right: 25px;
}

.value {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.value > strong {
  display: block;
  margin: 17px 0 50px;
  color: #67cec7;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
}

.value p {
  color: #a9c0c5;
  font-size: 0.95rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  padding: 25px 45px 25px 0;
  position: relative;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.07rem;
  font-weight: 720;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 5px;
  color: var(--teal);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  padding: 0 30px 24px 0;
  color: var(--ink-2);
}

.cta-band {
  padding-block: 80px;
  color: #d8e7e9;
  background:
    linear-gradient(110deg, rgba(7, 136, 145, 0.92), rgba(6, 28, 42, 0.97)),
    var(--navy);
}

.cta-band h2 {
  color: white;
}

.cta-band .eyebrow {
  color: #9de0d5;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 65px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.breadcrumbs {
  padding-block: 22px;
}

.breadcrumbs ol {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: #9db0b5;
  content: "/";
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.page-hero {
  padding: 85px 0 105px;
  background:
    radial-gradient(circle at 85% 10%, rgba(111, 189, 69, 0.14), transparent 29%),
    linear-gradient(145deg, #f9fcfb, #eef8f6);
}

.page-hero h1 {
  font-size: clamp(2.65rem, 5.7vw, 4.75rem);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: end;
  gap: 80px;
}

.service-summary {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid white;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.service-summary > span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-summary > strong {
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.feature-layout > div > p:last-child {
  color: var(--ink-2);
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}

.checklist .icon {
  color: var(--teal);
}

.checklist.compact li {
  padding: 13px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.detail-grid article {
  padding: 30px 30px 35px;
  border-top: 3px solid var(--teal);
  background: var(--paper);
  box-shadow: 0 10px 35px rgba(4, 31, 45, 0.06);
}

.detail-grid article h2 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.detail-grid article p {
  color: var(--ink-2);
}

.detail-number {
  display: block;
  margin-bottom: 35px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.related-section {
  padding-top: 45px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  min-height: 115px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 720;
  text-decoration: none;
}

.related-card:hover {
  color: var(--teal-dark);
  border-color: #9fc7c5;
}

.related-card .icon {
  flex: 0 0 auto;
  width: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: 100px;
}

.about-mark {
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  color: white;
  background:
    radial-gradient(circle at 70% 25%, rgba(111, 189, 69, 0.7), transparent 22%),
    linear-gradient(145deg, var(--teal), var(--navy));
  border-radius: 42% 58% 46% 54% / 49% 39% 61% 51%;
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(-3deg);
}

.about-mark span,
.about-mark small {
  transform: rotate(3deg);
}

.about-mark span {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.about-mark small {
  color: #cae4e5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-card {
  min-height: 210px;
  padding: 36px;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 23px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
}

.contact-card:hover {
  color: var(--ink);
  border-color: #9fc7c5;
  box-shadow: var(--shadow);
}

.contact-card > .icon {
  width: 52px;
  height: 52px;
  padding: 13px;
  color: var(--teal);
  background: white;
  border-radius: 15px;
}

.contact-card span {
  min-width: 0;
}

.contact-card small,
.contact-card strong,
.contact-card em {
  display: block;
}

.contact-card small {
  color: var(--muted);
}

.contact-card strong {
  margin: 7px 0 12px;
  overflow-wrap: anywhere;
  font-size: 1.25rem;
}

.contact-card em {
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 720;
}

.contact-note {
  grid-column: 1 / -1;
  margin-top: 22px;
  padding: 40px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-note .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -35px;
}

.address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.address-grid address {
  padding: 30px;
  background: white;
  border-left: 4px solid var(--green);
  font-style: normal;
}

.legal-hero {
  padding-block: 60px 75px;
}

.legal-content {
  max-width: 850px;
}

.legal-content h2 {
  margin-top: 50px;
  font-size: 1.55rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-2);
}

.legal-review {
  margin-bottom: 45px;
  padding: 25px;
  background: #fff7dc;
  border-left: 4px solid #e7a91d;
  border-radius: 0 12px 12px 0;
}

.legal-review p {
  margin-top: 8px;
}

.not-found {
  min-height: 620px;
  padding-block: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--soft);
}

.not-found .hero-actions {
  justify-content: center;
}

.error-code {
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 5rem;
  font-weight: 850;
  line-height: 1;
}

.site-footer {
  padding-top: 80px;
  color: #aec3c8;
  background: #041722;
  font-size: 0.92rem;
}

.site-footer a {
  color: #d8e7e9;
  text-decoration: none;
}

.site-footer a:hover {
  color: white;
  text-decoration: underline;
}

.footer-grid {
  padding-bottom: 65px;
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.8fr;
  gap: 90px;
}

.footer-grid h2 {
  color: white;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 7px;
}

.footer-brand {
  width: 220px;
  margin-bottom: 20px;
  display: block;
}

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-grid address {
  margin-bottom: 15px;
  font-style: normal;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom nav {
  display: flex;
  gap: 24px;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
  }

  .brand,
  .brand-logo {
    width: 185px;
  }

  .hero-grid {
    grid-template-columns: 1fr 380px;
    gap: 30px;
  }

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

  .values-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-grid {
    gap: 15px;
  }
}

@media (max-width: 850px) {
  .utility-inner > span {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    z-index: 30;
    top: 100%;
    right: 20px;
    left: 20px;
    padding: 22px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a {
    padding: 10px;
  }

  .main-nav > a::after {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
  }

  .split-intro,
  .process-layout,
  .faq-layout,
  .feature-layout,
  .about-grid,
  .contact-note,
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .process-copy {
    position: static;
  }

  .split-intro > p,
  .split-intro > div:last-child {
    padding-top: 0;
  }

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

  .cta-actions {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .detail-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid article {
    padding: 28px;
  }

  .about-mark {
    max-width: 400px;
    width: 80%;
    margin-inline: auto;
  }

  .contact-note .eyebrow {
    grid-column: auto;
    margin-bottom: -30px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

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

  .utility {
    display: none;
  }

  .nav-row {
    min-height: 75px;
  }

  .brand,
  .brand-logo {
    width: 180px;
  }

  .hero-grid {
    padding-block: 65px 45px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 340px;
    transform: scale(0.83);
    transform-origin: top left;
    width: 120%;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .service-card {
    min-height: 330px;
  }

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

  .values-grid > div:first-child {
    grid-column: auto;
  }

  .value > strong {
    margin-bottom: 25px;
  }

  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero {
    padding-block: 55px 70px;
  }

  .process-list li {
    grid-template-columns: 45px 1fr;
  }

  .contact-grid,
  .address-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 180px;
    padding: 25px;
    grid-template-columns: 48px 1fr;
  }

  .contact-card > .icon {
    width: 46px;
    height: 46px;
  }

  .contact-note {
    padding: 28px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    padding-block: 22px;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

@media print {
  .utility,
  .nav-toggle,
  .main-nav,
  .cta-band {
    display: none !important;
  }

  .site-header {
    border: 0;
  }

  .section,
  .page-hero {
    padding-block: 30px;
  }
}
