:root {
  --ink: #0d1b2a;
  --muted: #596974;
  --green: #0b6b35;
  --green-deep: #063f22;
  --green-night: #041f19;
  --aqua: #43d7ac;
  --orange: #f28c28;
  --cream: #f7f4ea;
  --paper: #ffffff;
  --line: rgba(6, 63, 34, 0.14);
  --line-dark: rgba(148, 255, 217, 0.16);
  --shadow: 0 24px 70px rgba(13, 27, 42, 0.11);
  --radius-lg: 30px;
  --radius-md: 20px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 38%, rgba(11, 107, 53, 0.055), transparent 27rem),
    var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: #fff;
  background: var(--green-deep);
  border-radius: 10px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: #fff;
}

.site-nav {
  display: flex;
  width: min(var(--max), calc(100% - 44px));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
}

.site-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
}

.site-brand img {
  width: 47px;
  height: 47px;
  padding: 4px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px;
}

.site-links {
  display: flex;
  align-items: center;
  gap: 23px;
}

.site-links a {
  color: rgba(255, 255, 255, 0.83);
  font-size: 14px;
  font-weight: 760;
  transition: color 0.18s ease;
}

.site-links a:hover {
  color: #fff;
}

.site-links .nav-cta {
  padding: 10px 15px;
  color: #fff;
  background: rgba(67, 215, 172, 0.13);
  border: 1px solid rgba(133, 255, 219, 0.36);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span {
  display: block;
  margin: 5px auto;
}

.menu-toggle::before,
.menu-toggle::after {
  display: block;
  margin: 0 auto;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

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

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

.service-hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(2, 22, 18, 0.97) 0%, rgba(3, 42, 31, 0.97) 66%, var(--cream) 100%);
}

.service-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(106, 255, 210, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 255, 210, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 14% 16%, rgba(67, 215, 172, 0.2), transparent 25rem),
    radial-gradient(circle at 86% 18%, rgba(242, 140, 40, 0.12), transparent 24rem);
  background-size: 54px 54px, 54px 54px, auto, auto;
  content: "";
  mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
}

.service-hero::after {
  position: absolute;
  right: 9%;
  bottom: 15%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(114, 255, 214, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(67, 215, 172, 0.025),
    0 0 0 104px rgba(67, 215, 172, 0.018);
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(var(--max), calc(100% - 44px));
  min-height: 720px;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: center;
  gap: clamp(40px, 6vw, 82px);
  margin: 0 auto;
  padding: 128px 0 112px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: #fff;
}

.breadcrumbs span::before {
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.3);
  content: "/";
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: #9af1d4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.kicker::before {
  width: 28px;
  height: 2px;
  background: var(--orange);
  content: "";
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(45px, 6.25vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(239, 255, 250, 0.76);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button-primary {
  color: #06261d;
  background: var(--aqua);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-light {
  color: var(--green-deep);
  background: #fff;
}

.button-outline {
  color: var(--green);
  background: transparent;
  border-color: rgba(11, 107, 53, 0.32);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  height: clamp(520px, 60vh, 620px);
  margin: 0;
  padding: 11px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(1deg);
}

.hero-visual::before {
  position: absolute;
  inset: -18px auto auto -18px;
  width: 118px;
  height: 118px;
  border-top: 2px solid var(--aqua);
  border-left: 2px solid var(--aqua);
  border-radius: 28px 0 0;
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 25px;
  filter: saturate(0.92) contrast(1.03);
}

.visual-label {
  position: absolute;
  right: -14px;
  bottom: 24px;
  max-width: 235px;
  padding: 13px 16px;
  color: #dffff5;
  background: rgba(4, 31, 25, 0.88);
  border: 1px solid rgba(122, 255, 215, 0.26);
  border-radius: 15px;
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.5;
}

.content-shell {
  width: min(var(--max), calc(100% - 44px));
  margin: -38px auto 0;
}

.signal-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.signal-item {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.signal-item:last-child {
  border-right: 0;
}

.signal-item span {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.signal-item strong {
  color: var(--green-deep);
  font-size: 15px;
  line-height: 1.5;
}

.page-section {
  padding: 86px 0;
}

.page-section + .page-section {
  border-top: 1px solid rgba(6, 63, 34, 0.09);
}

.section-heading {
  display: grid;
  max-width: 850px;
  gap: 11px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading .eyebrow,
.cta-band .eyebrow {
  margin: 0;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.section-heading h2,
.cta-band h2 {
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-heading p,
.section-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.info-card,
.support-panel,
.process-step,
.availability-card,
.request-card,
.related-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 44px rgba(13, 27, 42, 0.07);
}

.info-card {
  padding: 25px;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--green);
  background: rgba(11, 107, 53, 0.09);
  border-radius: 15px;
  font-size: 22px;
  font-weight: 900;
}

.info-card h3,
.support-panel h3,
.availability-card h3,
.request-card h3,
.related-card h3 {
  margin: 0 0 10px;
  color: var(--green-deep);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.info-card p,
.support-panel p,
.availability-card p,
.request-card p,
.related-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.two-column {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: clamp(35px, 7vw, 90px);
}

.support-panel {
  padding: 30px;
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 27px;
  color: #42524b;
  font-size: 15px;
  line-height: 1.58;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.22em;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  content: "✓";
  font-size: 10px;
  font-weight: 900;
}

.plain-list li::before {
  position: absolute;
  left: 2px;
  top: 0.66em;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 25px;
  counter-increment: process;
}

.process-step::before {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 20px;
  color: #fff;
  background: var(--green-deep);
  border-radius: 13px;
  content: counter(process, decimal-leading-zero);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-step h3 {
  margin: 0 0 9px;
  color: var(--green-deep);
  font-size: 19px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.feature-band {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 55px);
  color: #eafff8;
  background:
    radial-gradient(circle at 84% 20%, rgba(67, 215, 172, 0.19), transparent 18rem),
    linear-gradient(135deg, #05251d, #073b2b);
  border: 1px solid rgba(97, 255, 208, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(4, 31, 25, 0.22);
}

.feature-band::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(102, 255, 210, 0.17);
  border-radius: 50%;
  content: "";
}

.feature-band h2,
.feature-band h3 {
  color: #fff;
}

.feature-band p,
.feature-band li {
  color: rgba(234, 255, 248, 0.75);
}

.feature-band .check-list li::before {
  color: #06261d;
  background: var(--aqua);
}

.comparison {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.comparison-item {
  padding: 19px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
}

.comparison-item strong,
.comparison-item span {
  display: block;
}

.comparison-item strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 16px;
}

.comparison-item span {
  color: rgba(234, 255, 248, 0.65);
  font-size: 13px;
  line-height: 1.5;
}

.meter {
  height: 6px;
  margin: 13px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.meter i {
  display: block;
  width: var(--meter, 60%);
  height: 100%;
  background: linear-gradient(90deg, var(--aqua), #a6ffe3);
  border-radius: inherit;
}

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

.availability-card {
  padding: 28px;
}

.availability-card .city {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 17px;
}

.availability-card .city span {
  padding: 7px 10px;
  color: var(--green);
  background: rgba(11, 107, 53, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.availability-card address {
  margin: 15px 0 0;
  color: #405047;
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.availability-note {
  margin-top: 18px;
  padding: 15px 17px;
  color: #694116;
  background: #fff2e4;
  border: 1px solid rgba(242, 140, 40, 0.3);
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.6;
}

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

.request-card {
  display: flex;
  flex-direction: column;
  padding: 27px;
}

.request-card .option-no {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.request-card .price-line {
  margin-top: 18px;
  padding: 14px 15px;
  color: var(--green-deep);
  background: rgba(11, 107, 53, 0.065);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.55;
}

.mini-steps {
  display: grid;
  gap: 10px;
  margin: 19px 0 24px;
  padding: 0;
  list-style: none;
  counter-reset: mini;
}

.mini-steps li {
  position: relative;
  padding-left: 31px;
  color: #47564e;
  font-size: 13px;
  line-height: 1.55;
  counter-increment: mini;
}

.mini-steps li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 7px;
  content: counter(mini);
  font-size: 10px;
  font-weight: 900;
}

.request-card .button {
  width: 100%;
  margin-top: auto;
}

.single-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(30px, 5vw, 48px);
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.single-cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.04em;
}

.single-cta p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

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

.related-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 21px 50px rgba(13, 27, 42, 0.11);
}

.related-card .arrow {
  margin-top: 17px;
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.faq-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 29px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 44px rgba(13, 27, 42, 0.065);
}

.faq-link h2 {
  margin: 0 0 7px;
  color: var(--green-deep);
  font-size: clamp(25px, 3vw, 36px);
}

.faq-link p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  margin-bottom: 88px;
  padding: clamp(34px, 6vw, 64px);
  background:
    radial-gradient(circle at 84% 14%, rgba(67, 215, 172, 0.16), transparent 17rem),
    #061f1a;
  border: 1px solid rgba(67, 215, 172, 0.16);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(4, 31, 25, 0.2);
}

.cta-band h2 {
  color: #fff;
}

.cta-band p:not(.eyebrow) {
  max-width: 720px;
  margin: 15px 0 0;
  color: rgba(237, 255, 249, 0.7);
  font-size: 16px;
  line-height: 1.7;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #031813;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
  display: grid;
  width: min(var(--max), calc(100% - 44px));
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 45px;
  margin: 0 auto;
  padding: 58px 0 38px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 850;
}

.footer-brand img {
  width: 43px;
  height: 43px;
  padding: 4px;
  background: #fff;
  border-radius: 12px;
}

.footer-summary {
  max-width: 450px;
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h2 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin: 10px 0;
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 20px 0 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

/* FAQ page */
.faq-hero {
  min-height: 520px;
}

.faq-hero .hero-inner {
  min-height: 510px;
  grid-template-columns: 1fr;
  padding-bottom: 90px;
}

.faq-hero .hero-copy {
  max-width: 850px;
}

.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.faq-nav a {
  display: inline-flex;
  padding: 9px 12px;
  color: #dffff5;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
}

.faq-group {
  scroll-margin-top: 25px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.faq-group:last-child {
  border-bottom: 0;
}

.faq-group h2 {
  margin: 0 0 21px;
  color: var(--green-deep);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.035em;
}

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

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.faq-list summary {
  position: relative;
  padding: 19px 55px 19px 21px;
  color: var(--green-deep);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 20px;
  top: 50%;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--green);
  background: rgba(11, 107, 53, 0.08);
  border-radius: 8px;
  content: "+";
  transform: translateY(-50%);
}

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

.faq-list details p {
  margin: 0;
  padding: 0 21px 21px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

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

  .site-links {
    position: fixed;
    inset: 78px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-links.open {
    display: flex;
  }

  .site-links a,
  .site-links .nav-cta {
    padding: 13px 12px;
    color: var(--green-deep);
    background: transparent;
    border: 0;
    border-radius: 10px;
  }

  .site-links a:hover {
    color: var(--green);
    background: rgba(11, 107, 53, 0.06);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 124px;
  }

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

  .hero-visual {
    width: min(760px, 100%);
    height: auto;
    margin: 0;
  }

  .hero-visual img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

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

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

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

@media (max-width: 760px) {
  .site-nav,
  .hero-inner,
  .content-shell,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 30px, var(--max));
  }

  .site-brand span {
    display: none;
  }

  .service-hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding-bottom: 108px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 61px);
  }

  .visual-label {
    right: 8px;
    bottom: 17px;
  }

  .signal-strip,
  .two-column,
  .availability-grid,
  .single-cta,
  .cta-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .signal-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-item:last-child {
    border-bottom: 0;
  }

  .page-section {
    padding: 66px 0;
  }

  .card-grid,
  .related-grid,
  .process-grid,
  .availability-grid,
  .request-grid,
  .comparison {
    grid-template-columns: 1fr;
  }

  .single-cta,
  .faq-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band {
    gap: 25px;
  }

  .cta-band .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media print {
  .site-topbar,
  .hero-actions,
  .request-options,
  .faq-link,
  .cta-band,
  .site-footer {
    display: none !important;
  }

  .service-hero {
    min-height: auto;
    color: #111;
    background: #fff;
  }

  .service-hero::before,
  .service-hero::after,
  .hero-visual {
    display: none;
  }

  .hero-inner {
    display: block;
    min-height: auto;
    padding: 20px 0;
  }

  .hero-copy h1,
  .hero-copy > p,
  .breadcrumbs,
  .kicker,
  .hero-trust li {
    color: #111;
  }

  .content-shell {
    margin-top: 0;
  }

  .info-card,
  .support-panel,
  .process-step,
  .availability-card,
  .related-card,
  .signal-strip {
    box-shadow: none;
  }
}
