:root {
  --navy-950: #092b3b;
  --navy-900: #10394d;
  --navy-800: #174b62;
  --blue-700: #24546c;
  --teal-700: #007f91;
  --teal-600: #0194a6;
  --teal-500: #18acb8;
  --teal-100: #dff7f6;
  --teal-50: #eefafa;
  --ink: #16313f;
  --copy: #536b76;
  --muted: #79909a;
  --line: #dbe8eb;
  --surface: #f6fafb;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(16, 57, 77, .08);
  --shadow-lg: 0 24px 70px rgba(16, 57, 77, .15);
  --radius-sm: .85rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.85rem;
  --shell: 73rem;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 20rem;
  background: var(--white);
  color: var(--copy);
  font: 400 1rem/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

h1, h2, h3, h4, p, ul, ol, dl { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 780;
  letter-spacing: -.045em;
  line-height: 1.06;
}

p { margin-bottom: 1.1rem; }

.shell {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  transform: translateY(-200%);
  padding: .65rem 1rem;
  border-radius: 999px;
  background: var(--navy-950);
  color: #fff;
}

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

.utility-bar {
  display: none;
  background: var(--navy-950);
  color: #d5e5ea;
  font-size: .78rem;
}

.utility-inner {
  display: flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: space-between;
}

.utility-group { display: flex; align-items: center; gap: 1.4rem; }
.utility-bar a:hover { color: #fff; }
.status-inline { display: inline-flex; align-items: center; gap: .45rem; }
.status-inline::before {
  content: "";
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #35c67f;
  box-shadow: 0 0 0 .2rem rgba(53, 198, 127, .13);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(219, 232, 235, .85);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: .65rem;
  color: var(--navy-900);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -.04em;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from 20deg, var(--teal-600), #2bc2c8 38%, var(--navy-800) 39% 61%, #2bc2c8 62% 83%, var(--teal-600) 84%);
  box-shadow: inset 0 0 0 .45rem #e7f8f8, 0 .4rem 1rem rgba(1, 148, 166, .2);
}

.brand-mark::after {
  content: "";
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #fff;
}

.brand b { color: var(--teal-600); }

.nav-toggle {
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: .85rem;
  background: #fff;
  cursor: pointer;
}

.nav-toggle-lines { display: grid; gap: .25rem; }
.nav-toggle-lines span {
  display: block;
  width: 1.2rem;
  height: .12rem;
  border-radius: .2rem;
  background: var(--navy-900);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:first-child { transform: translateY(.37rem) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:last-child { transform: translateY(-.37rem) rotate(-45deg); }

.site-nav {
  position: fixed;
  inset: 4.75rem 0 0;
  display: none;
  overflow-y: auto;
  padding: 1.15rem 1.25rem 2rem;
  background: rgba(255, 255, 255, .985);
}

.site-nav.is-open { display: block; }
.nav-list, .dropdown-list { margin: 0; padding: 0; list-style: none; }
.nav-list { display: grid; gap: .3rem; }
.nav-link, .nav-button {
  display: flex;
  width: 100%;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  padding: .65rem .85rem;
  border: 0;
  border-radius: .75rem;
  background: transparent;
  color: var(--navy-900);
  font-weight: 720;
  text-align: left;
  cursor: pointer;
}

.nav-link:hover, .nav-button:hover, .nav-link[aria-current="page"] { background: var(--teal-50); color: var(--teal-700); }
.nav-chevron { font-size: .8rem; transition: transform .2s ease; }
.has-dropdown.is-open .nav-chevron { transform: rotate(180deg); }
.dropdown-list { display: none; padding: .25rem .5rem .6rem 1.1rem; }
.has-dropdown.is-open .dropdown-list { display: grid; gap: .12rem; }
.dropdown-list a {
  display: block;
  padding: .55rem .75rem;
  border-radius: .65rem;
  color: var(--copy);
  font-size: .9rem;
  font-weight: 620;
}
.dropdown-list a:hover { background: var(--surface); color: var(--teal-700); }

.nav-cta { margin-top: .65rem; }
.nav-cta .button { width: 100%; }

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--navy-900);
  color: #fff;
  font-size: .9rem;
  font-weight: 780;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); background: var(--teal-700); box-shadow: 0 .7rem 1.7rem rgba(16, 57, 77, .16); }
.button-teal { background: var(--teal-600); }
.button-teal:hover { background: var(--teal-700); }
.button-light { border-color: #c7dce1; background: rgba(255,255,255,.82); color: var(--navy-900); }
.button-light:hover { border-color: var(--teal-600); background: #fff; color: var(--teal-700); }
.button-white { background: #fff; color: var(--navy-900); }
.button-white:hover { background: var(--teal-100); color: var(--navy-950); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  color: var(--teal-700);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 1.4rem; height: .13rem; border-radius: 2px; background: currentColor; }
.eyebrow-light { color: #76e0e1; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #f7fcfc, #edf9f9 60%, #fff);
}

.hero::before {
  content: "";
  position: absolute;
  width: 23rem;
  height: 23rem;
  left: -13rem;
  bottom: -12rem;
  border-radius: 50%;
  background: rgba(24, 172, 184, .08);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.6rem;
  padding-block: 3.6rem 4.1rem;
}

.hero-copy { align-self: center; }
.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.45rem;
  color: var(--navy-950);
  font-size: clamp(2.7rem, 12vw, 5rem);
  letter-spacing: -.07em;
}

.hero h1 em { color: var(--teal-600); font-style: normal; }
.hero-lead { max-width: 41rem; margin-bottom: 1.7rem; font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.checks {
  display: grid;
  gap: .55rem;
  margin: 1.55rem 0 0;
  padding: 0;
  color: var(--navy-900);
  font-size: .88rem;
  font-weight: 700;
  list-style: none;
}
.checks li { position: relative; padding-left: 1.5rem; }
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-600); font-weight: 900; }

.hero-media { position: relative; align-self: stretch; min-height: 29rem; }
.hero-photo-wrap {
  position: absolute;
  inset: 1rem 0 1.5rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: 66% center; }
.hero-photo-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,43,59,.05), transparent 45%); }

.call-badge, .report-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem .95rem;
  border: 1px solid rgba(219,232,235,.9);
  border-radius: 1rem;
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.call-badge { top: 0; left: -.5rem; }
.report-badge { right: -.35rem; bottom: 0; }
.badge-icon { display: grid; width: 2.45rem; height: 2.45rem; place-items: center; border-radius: .8rem; background: var(--navy-900); color: #fff; font-size: .72rem; font-weight: 850; }
.badge-copy strong, .badge-copy small { display: block; }
.badge-copy strong { color: var(--navy-900); font-size: .78rem; }
.badge-copy small { color: var(--muted); font-size: .7rem; }
.live-dot { width: .55rem; height: .55rem; border-radius: 50%; background: #34bd78; box-shadow: 0 0 0 .25rem #e3f6eb; }

.trust-bar { border-block: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; }
.trust-item { padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.trust-item:last-child { border-bottom: 0; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { color: var(--navy-900); font-size: .9rem; }
.trust-item span { color: var(--muted); font-size: .8rem; }

.section { padding-block: 4.8rem; }
.section-soft { background: var(--surface); }
.section-dark { background: var(--navy-950); color: #bdd0d8; }
.section-heading { display: grid; gap: 1rem; margin-bottom: 2rem; }
.section-heading h2, .page-hero h1, .content-head h1, .cta-band h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  letter-spacing: -.06em;
}
.section-heading > p { max-width: 36rem; margin-bottom: 0; font-size: 1.02rem; }

.card-grid { display: grid; gap: .9rem; }
.service-card, .sector-card, .related-card, .info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card, .sector-card { min-height: 18rem; padding: 1.55rem; }
.service-card:hover, .sector-card:hover, .related-card:hover { transform: translateY(-4px); border-color: #acd9dd; box-shadow: var(--shadow-sm); }
.card-icon {
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  margin-bottom: 2.3rem;
  place-items: center;
  border-radius: 1rem;
  background: var(--teal-100);
  color: var(--teal-700);
  font-size: 1.25rem;
  font-weight: 850;
}
.service-card h3, .sector-card h3 { margin-bottom: .7rem; font-size: 1.35rem; }
.service-card p, .sector-card p { margin-bottom: 1.25rem; font-size: .93rem; }
.card-link { margin-top: auto; color: var(--teal-700); font-size: .84rem; font-weight: 800; }
.card-link::after { content: "→"; display: inline-block; margin-left: .35rem; transition: transform .2s ease; }
.service-card:hover .card-link::after, .sector-card:hover .card-link::after, .related-card:hover .card-link::after { transform: translateX(.25rem); }
.service-card.featured { border-color: var(--navy-800); background: var(--navy-800); color: #c8d9df; }
.service-card.featured h3, .service-card.featured .card-link { color: #fff; }
.service-card.featured .card-icon { background: rgba(255,255,255,.1); color: #6fe0e1; }

.steps-grid { display: grid; gap: 2.8rem; }
.section-dark h2, .section-dark h3 { color: #fff; }
.steps-list { display: grid; gap: .8rem; margin: 0; padding: 0; list-style: none; }
.step { display: grid; grid-template-columns: 2.8rem 1fr; gap: 1rem; padding: 1.3rem; border: 1px solid rgba(255,255,255,.1); border-radius: 1rem; background: rgba(255,255,255,.045); }
.step-number { color: #6ee0e1; font-size: .8rem; font-weight: 900; letter-spacing: .08em; }
.step h3 { margin-bottom: .4rem; font-size: 1.1rem; }
.step p { margin-bottom: 0; font-size: .88rem; line-height: 1.6; }

.pill-list { display: flex; flex-wrap: wrap; gap: .65rem; }
.pill { padding: .7rem 1rem; border: 1px solid var(--line); border-radius: 999px; background: var(--teal-50); color: var(--navy-900); font-size: .86rem; font-weight: 740; }
.pill:hover { border-color: var(--teal-600); background: var(--teal-100); color: var(--teal-700); }

.cta-band { background: linear-gradient(125deg, var(--teal-600), var(--teal-700)); color: #e8ffff; }
.cta-inner { display: grid; gap: 1.6rem; align-items: center; padding-block: 3.7rem; }
.cta-band h2 { max-width: 44rem; color: #fff; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.phone-link small, .phone-link strong { display: block; color: #fff; }
.phone-link small { font-size: .72rem; opacity: .78; text-transform: uppercase; letter-spacing: .06em; }
.phone-link strong { font-size: 1.05rem; }

.site-footer { padding-block: 3.5rem 1.5rem; background: var(--navy-950); color: #9fb8c2; }
.footer-grid { display: grid; gap: 2rem; }
.footer-brand p { max-width: 23rem; margin: 1rem 0 0; font-size: .88rem; }
.footer-links { display: grid; gap: .5rem; align-content: start; }
.footer-links strong { margin-bottom: .25rem; color: #fff; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a { font-size: .86rem; }
.footer-links a:hover { color: #6ee0e1; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 1.5rem; margin-top: 2.6rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }

.breadcrumb-wrap { border-bottom: 1px solid var(--line); background: #fff; }
.breadcrumbs { display: flex; overflow-x: auto; align-items: center; gap: .5rem; padding-block: .7rem; color: var(--muted); font-size: .76rem; white-space: nowrap; }
.breadcrumbs a:hover { color: var(--teal-700); }
.breadcrumbs span[aria-current="page"] { color: var(--navy-900); font-weight: 700; }

.page-hero { position: relative; overflow: hidden; padding-block: 3.8rem; background: radial-gradient(circle at 88% 20%, rgba(58,206,210,.24), transparent 27%), linear-gradient(140deg, var(--navy-950), var(--blue-700)); color: #c7d9df; }
.page-hero-grid { display: grid; gap: 1.5rem; align-items: end; }
.page-hero h1 { max-width: 15ch; color: #fff; }
.page-hero p { max-width: 38rem; margin-bottom: 0; font-size: 1.05rem; }

.content-layout { display: grid; gap: 2rem; align-items: start; }
.content-layout-single { display: block; }
.subnav { padding: 1.2rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.subnav strong { display: block; margin-bottom: .75rem; color: var(--navy-900); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.subnav ul { display: grid; gap: .3rem; margin: 0; padding: 0; list-style: none; }
.subnav a { display: block; padding: .62rem .75rem; border-radius: .65rem; color: var(--copy); font-size: .88rem; font-weight: 660; }
.subnav a:hover, .subnav a[aria-current="page"] { background: var(--teal-50); color: var(--teal-700); }

.content-main { min-width: 0; }
.content-main h2 { margin: 2.2rem 0 .8rem; font-size: clamp(1.65rem, 5vw, 2.25rem); }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin: 1.8rem 0 .65rem; font-size: 1.25rem; }
.content-main p, .content-main li { font-size: 1.02rem; }
.content-main ul:not(.checks) { padding-left: 1.3rem; }
.content-main a:not(.button):not(.related-card) { color: var(--teal-700); font-weight: 720; text-decoration: underline; text-decoration-thickness: .08em; text-underline-offset: .18em; }
.content-main a:hover { color: var(--navy-900); }
.lead { color: var(--navy-900); font-size: 1.2rem !important; font-weight: 620; line-height: 1.65; }
.highlight { margin-block: 2rem; padding: 1.35rem 1.4rem; border-left: .3rem solid var(--teal-600); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--teal-50); }
.highlight p:last-child { margin-bottom: 0; }

.feature-grid { display: grid; gap: .8rem; margin-block: 1.8rem; }
.feature { padding: 1.15rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.feature h3 { margin: 0 0 .35rem; font-size: 1.05rem; }
.feature p { margin: 0; font-size: .88rem; line-height: 1.6; }

.related-section { margin-top: 3.2rem; padding-top: 2.3rem; border-top: 1px solid var(--line); }
.related-section h2 { margin-top: 0; }
.related-grid { display: grid; align-items: stretch; gap: .8rem; }
.related-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-width: 0;
  min-height: 10.5rem;
  padding: 1.25rem;
}
.related-card small { margin-bottom: .5rem; color: var(--teal-700); font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.related-card h3 { min-width: 0; margin: 0 0 .55rem; overflow-wrap: anywhere; hyphens: auto; font-size: 1.05rem; }
.related-card p { margin: 0 0 .9rem; font-size: .82rem; line-height: 1.55; }
.related-card .card-link { align-self: start; margin-top: 0; }

.price-grid { display: grid; gap: .8rem; margin-block: 1.8rem; }
.price-card { padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.price-card small { color: var(--muted); font-size: .78rem; }
.price-card h3 { margin: .35rem 0 .8rem; font-size: 1.05rem; letter-spacing: -.02em; }
.price { color: var(--navy-900); font-size: 1.85rem; font-weight: 850; letter-spacing: -.05em; }
.price span { font-size: .72rem; font-weight: 600; letter-spacing: 0; }

.timeline { display: grid; gap: .8rem; margin: 1.8rem 0; padding: 0; list-style: none; counter-reset: timeline; }
.timeline li { position: relative; padding: 1.25rem 1.25rem 1.25rem 4.25rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; counter-increment: timeline; }
.timeline li::before { content: counter(timeline, decimal-leading-zero); position: absolute; left: 1.2rem; top: 1.2rem; display: grid; width: 2.1rem; height: 2.1rem; place-items: center; border-radius: 50%; background: var(--teal-100); color: var(--teal-700); font-size: .7rem; font-weight: 900; }
.timeline h3 { margin: 0 0 .35rem; font-size: 1.05rem; }
.timeline p { margin: 0; font-size: .9rem; }

.contact-grid { display: grid; gap: 1rem; }
.contact-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.contact-card h2 { margin-top: 0; }
.contact-call { display: flex; align-items: center; gap: .9rem; margin-top: 1.5rem; padding: 1rem; border-radius: 1rem; background: var(--navy-900); color: #fff !important; text-decoration: none !important; }
.contact-call:hover { background: var(--teal-700); }
.contact-call strong, .contact-call small { display: block; color: #fff; }
.contact-call small { opacity: .7; font-size: .72rem; }
.contact-call strong { font-size: 1.18rem; }
.contact-list { display: grid; gap: 1.2rem; margin: 0; }
.contact-list div { padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.contact-list div:last-child { padding-bottom: 0; border-bottom: 0; }
.contact-list dt { margin-bottom: .25rem; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-list dd { margin: 0; color: var(--navy-900); font-weight: 650; }

.legal-content { max-width: 50rem; margin-inline: auto; }
.legal-content h2 { margin-top: 2.4rem; }
.legal-content h2:first-child { margin-top: 0; }

.mobile-action { position: fixed; z-index: 90; right: 1rem; bottom: 1rem; display: inline-flex; align-items: center; gap: .45rem; min-height: 2.85rem; padding: .7rem 1rem; border-radius: 999px; background: var(--navy-900); color: #fff; font-size: .8rem; font-weight: 800; box-shadow: 0 .8rem 2rem rgba(9,43,59,.25); }
.mobile-action::before { content: ""; width: .5rem; height: .5rem; border-radius: 50%; background: #35c67f; }

@media (min-width: 34rem) {
  .checks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item { padding-inline: 1rem; border-right: 1px solid var(--line); }
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item:nth-last-child(-n+2) { border-bottom: 0; }
  .card-grid, .feature-grid, .related-grid, .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
}

@media (min-width: 48rem) {
  .shell { width: min(100% - 4rem, var(--shell)); }
  .utility-bar { display: block; }
  .site-header { top: 0; }
  .hero-grid { grid-template-columns: minmax(0, 1.03fr) minmax(22rem, .97fr); align-items: center; padding-block: 5.2rem; }
  .hero h1 { font-size: clamp(4rem, 6.3vw, 5.6rem); }
  .hero-media { min-height: 34rem; }
  .trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trust-item { padding: 1.45rem 1.25rem; border-right: 1px solid var(--line); border-bottom: 0; }
  .trust-item:first-child { padding-left: 0; }
  .trust-item:last-child { padding-right: 0; border-right: 0; }
  .section { padding-block: 6rem; }
  .section-heading { grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr); align-items: end; gap: 3rem; margin-bottom: 2.8rem; }
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); align-items: center; gap: 4rem; }
  .cta-inner { grid-template-columns: minmax(0, 1fr) auto; gap: 3rem; }
  .page-hero { padding-block: 5.2rem; }
  .page-hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(20rem, .85fr); gap: 4rem; }
  .content-layout { grid-template-columns: 15rem minmax(0, 1fr); gap: 3.3rem; }
  .subnav { position: sticky; top: 7.4rem; }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: minmax(0, 1.1fr) minmax(19rem, .9fr); gap: 1.2rem; }
  .contact-card { padding: 2rem; }
  .mobile-action { display: none; }
}

@media (min-width: 64rem) {
  .nav-toggle { display: none; }
  .site-nav { position: static; display: block; overflow: visible; padding: 0; background: none; }
  .nav-list { display: flex; align-items: center; gap: .1rem; }
  .nav-link, .nav-button { min-height: 2.65rem; padding: .55rem .7rem; font-size: .85rem; }
  .has-dropdown { position: relative; }
  .dropdown-list { position: absolute; top: calc(100% + .6rem); left: 0; width: 16rem; padding: .65rem; border: 1px solid var(--line); border-radius: 1rem; background: #fff; box-shadow: var(--shadow-lg); }
  .has-dropdown:hover .dropdown-list, .has-dropdown:focus-within .dropdown-list, .has-dropdown.is-open .dropdown-list { display: grid; }
  .nav-cta { margin: 0 0 0 .55rem; }
  .nav-cta .button { width: auto; min-height: 2.65rem; }
}

@media (min-width: 72rem) {
  .nav-link, .nav-button { padding-inline: .9rem; }
  .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

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