:root {
  --navy-950: #07101f;
  --navy-925: #091426;
  --navy-900: #0b1426;
  --navy-875: #0e192d;
  --navy-850: #111d33;
  --navy-800: #17253f;
  --navy-700: #243552;
  --green-500: #3d8c1f;
  --green-450: #4ca727;
  --green-400: #61ba35;
  --green-300: #8bd365;
  --blue-300: #94b9e8;
  --white: #f6f8fc;
  --text: #d9e2ef;
  --muted: #8fa1b8;
  --border: rgba(147, 177, 213, 0.16);
  --border-strong: rgba(147, 177, 213, 0.3);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --heading: "Arial Narrow", "Roboto Condensed", "Aptos Narrow", Impact, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--navy-900);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button {
  color: inherit;
}

::selection {
  color: var(--white);
  background: rgba(76, 167, 39, 0.55);
}

:focus-visible {
  outline: 2px solid var(--green-300);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-500);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(7, 16, 31, 0.92), rgba(7, 16, 31, 0.62), transparent);
  transition: height 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: var(--border);
  background: rgba(7, 16, 31, 0.9);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.26));
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--heading);
  font-size: 0.98rem;
  letter-spacing: 0.015em;
}

.brand-copy small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
  color: #9babc0;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--green-400);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.mobile-nav-actions {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(14, 25, 45, 0.75);
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  margin: 4px 0;
  display: block;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button svg,
.text-link svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 38px;
  padding-inline: 18px;
  font-size: 0.78rem;
}

.button-large {
  min-height: 52px;
  padding-inline: 25px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-450), var(--green-500));
  border-color: rgba(108, 195, 67, 0.28);
  box-shadow: 0 12px 34px rgba(47, 122, 20, 0.23);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #58b332, #419521);
  box-shadow: 0 16px 38px rgba(47, 122, 20, 0.32);
}

.button-secondary,
.button-ghost {
  color: var(--white);
  border-color: var(--border-strong);
  background: rgba(9, 20, 38, 0.54);
}

.button-ghost {
  color: var(--green-400);
  border-color: rgba(76, 167, 39, 0.74);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--white);
  border-color: rgba(97, 186, 53, 0.65);
  background: rgba(61, 140, 31, 0.11);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  padding: calc(var(--header-height) + 66px) 0 92px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950);
}

.hero::before {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 13, 27, 0.14), rgba(5, 13, 27, 0.04) 48%, rgba(5, 13, 27, 0.3)),
    radial-gradient(circle at 50% 44%, transparent 0, rgba(7, 16, 31, 0.08) 44%, rgba(7, 16, 31, 0.32) 100%);
  content: "";
}

.hero-background {
  position: absolute;
  z-index: -5;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-glow {
  position: absolute;
  z-index: -3;
  top: 30%;
  left: 50%;
  width: min(750px, 80vw);
  height: min(550px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 130, 36, 0.08), rgba(20, 64, 93, 0.07) 36%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(14px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1020px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo-wrap {
  width: clamp(175px, 18vw, 245px);
  margin: 0 auto 17px;
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.27));
}

.hero-logo-wrap img {
  width: 100%;
  height: auto;
}

.eyebrow,
.section-label {
  color: var(--green-400);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(76, 167, 39, 0.14);
  border-radius: 999px;
  background: rgba(61, 140, 31, 0.065);
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 12px rgba(97, 186, 53, 0.65);
}

.hero h1,
.section-heading h2,
.cta h2,
.dialog-heading h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-wrap: balance;
}

.hero h1 {
  margin-top: 22px;
  font-size: clamp(3.2rem, 7vw, 6.45rem);
  text-shadow: 0 7px 24px rgba(0, 0, 0, 0.27);
}

.hero-kicker {
  margin: 21px 0 0;
  color: var(--green-400);
  font-family: var(--heading);
  font-size: clamp(1.22rem, 2.1vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0.035em;
}

.hero-summary {
  max-width: 690px;
  margin: 14px auto 0;
  color: var(--blue-300);
  font-size: clamp(0.96rem, 1.6vw, 1.1rem);
  line-height: 1.65;
}

.hero-actions,
.cta-actions {
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-proof {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  color: #7f91a9;
  font-size: 0.76rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg {
  width: 15px;
  fill: none;
  stroke: var(--green-400);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 2px;
  color: rgba(178, 194, 213, 0.47);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.section {
  position: relative;
  padding: 126px 0;
  overflow: hidden;
}

@supports (content-visibility: auto) {
  .why,
  .process,
  .cta,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
  }
}

.services {
  border-top: 1px solid rgba(147, 177, 213, 0.07);
  background:
    radial-gradient(circle at 20% 48%, rgba(21, 75, 116, 0.2), transparent 30%),
    linear-gradient(120deg, #0d192e 0%, #101d34 55%, #0a1629 100%);
}

.section-palm {
  position: absolute;
  top: -110px;
  right: -180px;
  width: 750px;
  aspect-ratio: 1;
  opacity: 0.09;
  background: url("assets/palm-shadow.svg") center / contain no-repeat;
  transform: rotate(10deg);
}

.section-heading {
  max-width: 690px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.compact {
  max-width: 760px;
}

.section-label {
  margin: 0 0 16px;
}

.section-heading h2,
.cta h2,
.dialog-heading h2 {
  font-size: clamp(2.25rem, 4.8vw, 3.75rem);
}

.section-heading > p:last-child,
.cta-content > p:not(.section-label),
.dialog-heading > p:not(.section-label) {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.service-grid {
  position: relative;
  z-index: 1;
  margin-top: 63px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(9, 20, 38, 0.86);
  box-shadow: 0 22px 50px rgba(2, 8, 18, 0.18);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card-featured {
  border-color: rgba(97, 186, 53, 0.42);
  box-shadow: 0 28px 70px rgba(2, 8, 18, 0.3), 0 0 0 1px rgba(97, 186, 53, 0.08);
}

.service-card:hover {
  border-color: rgba(97, 186, 53, 0.34);
  box-shadow: 0 28px 64px rgba(1, 8, 18, 0.31);
  transform: translateY(-4px);
}

.service-visual {
  height: 208px;
  overflow: hidden;
  background: #111c2e;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.service-card:hover .service-visual img {
  transform: scale(1.025);
}

.service-body {
  min-height: 320px;
  padding: 25px 28px 27px;
  display: flex;
  flex-direction: column;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-tile,
.value-icon,
.repair-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--green-400);
  border: 1px solid rgba(76, 167, 39, 0.1);
  border-radius: 10px;
  background: rgba(61, 140, 31, 0.1);
}

.icon-tile svg,
.value-icon svg,
.repair-icon svg,
.card-topline > a svg,
.footer-grid address svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-topline > a {
  padding: 7px;
  color: #9eb2ca;
  border-radius: 6px;
  transition: color 160ms ease, background 160ms ease;
}

.card-topline > a:hover,
.card-topline > a:focus-visible {
  color: var(--green-400);
  background: rgba(61, 140, 31, 0.1);
}

.card-label {
  margin: 22px 0 5px;
  color: var(--green-400);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3,
.repair-strip h3,
.value-grid h3,
.steps-list h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.service-card h3 {
  font-size: 1.45rem;
}

.service-card .service-body > p:not(.card-label) {
  margin: 12px 0 21px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.tag-list {
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.tag-list li {
  padding: 5px 10px;
  color: #90a2b8;
  border: 1px solid rgba(147, 177, 213, 0.05);
  border-radius: 999px;
  background: #182640;
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1;
}

.repair-strip {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  border: 1px solid rgba(97, 186, 53, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(61, 140, 31, 0.1), transparent 52%),
    rgba(9, 20, 38, 0.88);
}

.repair-strip::after {
  position: absolute;
  right: -34px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(97, 186, 53, 0.08);
  border-radius: 50%;
  content: "";
}

.repair-strip .section-label {
  margin-bottom: 5px;
}

.repair-strip h3 {
  font-size: 1.55rem;
}

.repair-strip p:last-child {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.repair-strip .button {
  position: relative;
  z-index: 1;
}

.why {
  background:
    radial-gradient(circle at 90% 30%, rgba(50, 89, 84, 0.12), transparent 28%),
    linear-gradient(120deg, #182945, #1a2944 50%, #17253d);
}

.value-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
}

.value-grid article {
  text-align: center;
}

.value-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  color: var(--green-400);
  background: rgba(223, 235, 248, 0.09);
  border-color: rgba(223, 235, 248, 0.06);
}

.value-grid h3 {
  font-size: 1.16rem;
}

.value-grid p {
  margin: 12px 0 0;
  color: #a7b6c9;
  font-size: 0.92rem;
  line-height: 1.65;
}

.process {
  background:
    linear-gradient(rgba(7, 16, 31, 0.92), rgba(7, 16, 31, 0.92)),
    url("assets/signal-lines.svg") center / cover,
    var(--navy-950);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: 100px;
}

.process .section-heading > p:last-of-type {
  max-width: 610px;
}

.text-link {
  margin-top: 28px;
  padding: 0 0 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-300);
  border: 0;
  border-bottom: 1px solid rgba(139, 211, 101, 0.42);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.steps-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}

.steps-list li {
  padding: 24px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(14, 25, 45, 0.8);
}

.steps-list li > span {
  color: var(--green-400);
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 900;
}

.steps-list h3 {
  font-size: 1.2rem;
}

.steps-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.cta {
  position: relative;
  min-height: 530px;
  padding: 100px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #11213a;
}

.city-lines {
  position: absolute;
  z-index: -3;
  inset: 0;
  background: url("assets/columbia-lines.svg") center 64% / cover no-repeat;
  opacity: 0.78;
}

.cta-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 27, 49, 0.57), rgba(10, 20, 36, 0.85)),
    radial-gradient(circle at 50% 52%, rgba(25, 50, 77, 0.05), #0c182d 86%);
}

.cta-content {
  max-width: 840px;
  text-align: center;
}

.cta-content > p:not(.section-label) {
  max-width: 700px;
  margin-inline: auto;
  color: #bac7d7;
}

.site-footer {
  padding: 62px 0 22px;
  border-top: 1px solid var(--border);
  background: #172641;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.8fr 0.8fr 1.25fr;
  gap: 56px;
}

.footer-brand p {
  max-width: 280px;
  margin: 19px 0 0;
  color: #a4b4c9;
  font-size: 0.84rem;
}

.footer-grid h2 {
  margin: 5px 0 18px;
  color: var(--white);
  font-family: var(--heading);
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-grid li,
.footer-grid address {
  color: #a4b4c9;
  font-size: 0.86rem;
  font-style: normal;
}

.footer-grid li a,
.footer-grid li button,
.footer-grid address a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-grid li button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.footer-grid li a:hover,
.footer-grid li button:hover,
.footer-grid address a:hover {
  color: var(--green-300);
}

.footer-grid address {
  display: grid;
  gap: 12px;
}

.footer-grid address a,
.footer-grid address span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-grid address svg {
  width: 17px;
  flex: 0 0 auto;
  color: var(--green-400);
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: #71839b;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.audit-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: calc(100dvh - 34px);
  padding: 0;
  overflow: auto;
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  background: #0d192e;
  box-shadow: var(--shadow);
}

.audit-dialog::backdrop {
  background: rgba(2, 8, 18, 0.79);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.audit-dialog[open] {
  animation: dialog-in 180ms ease-out;
}

.dialog-panel {
  position: relative;
  padding: 44px;
}

.dialog-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green-500), var(--green-300), transparent);
  content: "";
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #a9b7c8;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(20, 35, 60, 0.7);
  cursor: pointer;
}

.dialog-close:hover {
  color: var(--white);
  border-color: var(--border-strong);
}

.dialog-close svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.dialog-heading {
  padding-right: 44px;
}

.dialog-heading h2 {
  max-width: 580px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.audit-form {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.audit-form label {
  display: grid;
  gap: 8px;
  color: #cbd5e2;
  font-size: 0.84rem;
  font-weight: 750;
}

.audit-form input,
.audit-form select,
.audit-form textarea {
  width: 100%;
  color: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 7px;
  outline: none;
  background: rgba(7, 16, 31, 0.72);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.audit-form input,
.audit-form select {
  height: 48px;
  padding: 0 13px;
}

.audit-form textarea {
  min-height: 118px;
  padding: 12px 13px;
  resize: vertical;
}

.audit-form input:focus,
.audit-form select:focus,
.audit-form textarea:focus {
  border-color: rgba(97, 186, 53, 0.8);
  box-shadow: 0 0 0 3px rgba(61, 140, 31, 0.13);
}

.audit-form option {
  color: var(--text);
  background: var(--navy-900);
}

.form-note {
  margin: -3px 0 0;
  color: #7f91a7;
  font-size: 0.7rem;
}

.error-page {
  min-height: 100svh;
  padding: 40px 20px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(7, 16, 31, 0.78), rgba(7, 16, 31, 0.9)),
    url("assets/background-hero-1672.webp") center / cover no-repeat;
}

.error-panel {
  width: min(640px, 100%);
  padding: clamp(32px, 6vw, 60px);
  display: grid;
  justify-items: center;
  text-align: center;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  background: rgba(9, 20, 38, 0.9);
  box-shadow: var(--shadow);
}

.error-panel img {
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
  object-fit: contain;
}

.error-panel h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: 1;
  text-wrap: balance;
}

.error-panel > p:not(.section-label) {
  margin: 18px 0 28px;
  color: var(--muted);
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 78px;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .primary-nav {
    position: fixed;
    z-index: 101;
    top: var(--header-height);
    right: 0;
    left: 0;
    padding: 24px;
    display: grid;
    justify-items: center;
    gap: 5px;
    border-bottom: 1px solid var(--border);
    background: rgba(7, 16, 31, 0.98);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-135%);
    transition: opacity 180ms ease, visibility 180ms ease, transform 200ms ease;
  }

  .site-header.is-scrolled .primary-nav {
    top: 72px;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    width: min(100%, 420px);
    padding: 12px;
    text-align: center;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    justify-self: center;
  }

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

  .process-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

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

  .footer-grid address {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

  html {
    scroll-padding-top: 82px;
  }

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

  .site-header {
    height: 70px;
    background: rgba(7, 16, 31, 0.9);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .nav-wrap {
    gap: 8px;
  }

  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-copy strong {
    font-size: 0.84rem;
  }

  .brand-copy small {
    margin-top: 4px;
    font-size: 0.51rem;
  }

  .nav-actions {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
    width: 42px;
    height: 42px;
  }

  .primary-nav {
    top: 70px;
  }

  .mobile-nav-actions {
    width: min(100%, 420px);
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-nav-actions a,
  .mobile-nav-actions button {
    width: 100%;
  }

  .mobile-nav-actions a::after {
    display: none;
  }

  .site-header.is-scrolled .primary-nav {
    top: 64px;
  }

  .hero {
    min-height: max(720px, 100svh);
    padding: 112px 0 86px;
  }

  .hero-logo-wrap {
    width: 158px;
    margin-bottom: 12px;
  }

  .eyebrow {
    font-size: 0.61rem;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-kicker {
    margin-top: 16px;
    font-size: 1.2rem;
    line-height: 1.25;
  }

  .hero-summary {
    max-width: 510px;
    font-size: 0.9rem;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    margin-top: 25px;
    display: grid;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .hero-proof {
    display: grid;
    gap: 7px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading,
  .section-heading.centered,
  .process .section-heading {
    margin-inline: auto;
    text-align: center;
  }

  .section-heading h2,
  .cta h2 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }

  .section-heading > p:last-child {
    font-size: 0.91rem;
  }

  .service-grid {
    margin-top: 45px;
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .service-card,
  .service-card:last-child {
    max-width: 510px;
    justify-self: center;
  }

  .service-visual {
    height: 198px;
  }

  .service-body {
    min-height: auto;
    padding: 25px 24px 28px;
    align-items: center;
    text-align: center;
  }

  .card-topline {
    width: 100%;
  }

  .tag-list {
    justify-content: center;
  }

  .repair-strip {
    padding: 29px 24px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .repair-strip h3 {
    font-size: 1.4rem;
  }

  .value-grid {
    margin-top: 45px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .value-grid article {
    max-width: 430px;
    margin-inline: auto;
  }

  .process-layout {
    gap: 42px;
  }

  .text-link {
    justify-content: center;
  }

  .steps-list li {
    padding: 22px 20px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .cta {
    min-height: 540px;
    padding: 80px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
    text-align: center;
  }

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-brand .brand {
    margin-inline: auto;
  }

  .footer-brand p {
    margin-inline: auto;
  }

  .footer-grid address {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-bottom {
    display: grid;
    justify-content: center;
    text-align: center;
  }

  .dialog-panel {
    padding: 40px 22px 25px;
  }

  .dialog-heading {
    padding-right: 0;
    text-align: center;
  }

  .dialog-heading h2 {
    font-size: 2.2rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 410px) {
  .brand-copy strong {
    max-width: 118px;
    overflow: hidden;
    font-size: 0.76rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy small {
    font-size: 0.48rem;
  }

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

  .footer-grid > div {
    grid-column: 1 !important;
  }
}

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

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

/* Interior pages */
.interior-page {
  background: var(--navy-950);
}

.interior-page .site-header {
  background: linear-gradient(to bottom, rgba(7, 16, 31, 0.94), rgba(7, 16, 31, 0.7), transparent);
}

.primary-nav a[aria-current="page"] {
  color: var(--white);
}

.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.page-hero {
  position: relative;
  min-height: 640px;
  padding: calc(var(--header-height) + 72px) 0 76px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950);
}

.page-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 31, 0.36), rgba(7, 16, 31, 0.08) 50%, rgba(7, 16, 31, 0.26)),
    linear-gradient(180deg, rgba(7, 16, 31, 0.1), rgba(7, 16, 31, 0.3)),
    url("assets/background-hero-1672.webp") center / cover no-repeat;
  content: "";
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 52% 45%, rgba(61, 140, 31, 0.045), transparent 48%);
  content: "";
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(44px, 6vw, 78px);
}

.page-hero-copy {
  max-width: 680px;
}

.breadcrumbs {
  display: none;
  margin: 0;
  flex-wrap: wrap;
  gap: 7px;
  color: #778aa3;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

.page-hero h1,
.content-heading h2,
.page-cta h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading);
  font-weight: 850;
  line-height: 1.03;
  letter-spacing: 0.012em;
  text-wrap: balance;
}

.page-hero h1 {
  margin-top: 21px;
  font-size: clamp(2.8rem, 5vw, 4.65rem);
}

.page-hero-summary {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--blue-300);
  font-size: clamp(0.98rem, 1.65vw, 1.1rem);
  line-height: 1.7;
}

.page-hero .hero-actions {
  justify-content: flex-start;
}

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

.page-proof li {
  padding: 7px 11px;
  color: #a9bbcf;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(20, 37, 63, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
}

.page-hero-media {
  position: relative;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(147, 177, 213, 0.24);
  border-radius: 15px;
  background: #08111f;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.31);
}

.page-hero-media img,
.page-hero-media video {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}

.page-hero-media video {
  background: #08111f;
}

.page-hero-video video {
  aspect-ratio: 1934 / 944;
  object-fit: contain;
}

.about-page .page-hero-media img {
  padding: clamp(34px, 7vw, 74px);
  object-fit: contain;
  background: radial-gradient(circle, rgba(35, 69, 93, 0.46), #091426 72%);
}

.media-caption {
  padding: 13px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: #91a4bc;
  border-top: 1px solid var(--border);
  background: rgba(9, 20, 38, 0.96);
  font-size: 0.7rem;
}

.media-caption strong {
  color: var(--green-300);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.trust-bar {
  padding: 20px 0;
  border-block: 1px solid var(--border);
  background: #172641;
}

.trust-bar-list {
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
}

.trust-bar-list li {
  display: grid;
  gap: 2px;
  text-align: center;
}

.trust-bar-list strong {
  color: var(--white);
  font-family: var(--heading);
  font-size: 1rem;
}

.trust-bar-list span {
  color: var(--muted);
  font-size: 0.73rem;
}

.content-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 44%, rgba(21, 75, 116, 0.12), transparent 28%),
    #0d192e;
}

.content-section:nth-of-type(even) {
  background:
    radial-gradient(circle at 90% 30%, rgba(50, 89, 84, 0.1), transparent 28%),
    #172641;
}

.content-heading {
  max-width: 760px;
}

.content-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.content-heading h2,
.page-cta h2 {
  font-size: clamp(2.25rem, 4.6vw, 3.65rem);
}

.content-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
}

.feature-grid,
.process-card-grid,
.pricing-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-grid.four-up {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.process-card,
.price-card,
.info-panel,
.contact-panel {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(9, 20, 38, 0.86);
  box-shadow: 0 22px 50px rgba(2, 8, 18, 0.16);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature-card:hover,
.process-card:hover,
.price-card:hover {
  border-color: rgba(97, 186, 53, 0.3);
  box-shadow: 0 28px 62px rgba(1, 8, 18, 0.25);
  transform: translateY(-3px);
}

.feature-card h3,
.process-card h3,
.price-card h3,
.info-panel h3,
.contact-panel h2,
.contact-panel h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.35rem;
  line-height: 1.15;
}

.feature-card p,
.process-card p,
.price-card p,
.info-panel p,
.contact-panel > p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-card .inline-link {
  margin-top: 18px;
  display: inline-block;
  font-size: 0.84rem;
}

.feature-number {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  color: var(--green-300);
  border: 1px solid rgba(97, 186, 53, 0.2);
  border-radius: 9px;
  background: rgba(61, 140, 31, 0.1);
  font-family: var(--heading);
  font-weight: 900;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.8fr);
  align-items: start;
  gap: clamp(52px, 8vw, 110px);
}

.split-content.reverse > :first-child {
  order: 2;
}

.check-list {
  margin: 27px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #bdc9d8;
  font-size: 0.92rem;
}

.check-list li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  color: var(--green-400);
  content: "✓";
  font-weight: 900;
}

.process-card {
  position: relative;
  padding-top: 64px;
}

.process-card > span {
  position: absolute;
  top: 25px;
  left: 30px;
  color: var(--green-400);
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 900;
}

.faq-list {
  max-width: 880px;
  margin: 46px auto 0;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(8, 18, 34, 0.72);
}

.faq-list summary {
  padding: 21px 54px 21px 22px;
  color: var(--white);
  font-family: var(--heading);
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(97, 186, 53, 0.48);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.price-label {
  margin: 0 0 12px;
  color: var(--green-400);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card .check-list {
  margin-bottom: 28px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 25px;
}

.contact-details {
  margin-top: 26px;
  display: grid;
  gap: 13px;
}

.contact-details a,
.contact-details span {
  padding: 14px 15px;
  color: #bdc9d8;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(7, 16, 31, 0.55);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--green-300);
  border-color: rgba(97, 186, 53, 0.3);
}

.contact-form {
  margin-top: 26px;
}

.page-cta {
  position: relative;
  min-height: 480px;
  padding: 92px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(10, 25, 45, 0.7), rgba(8, 18, 34, 0.9)),
    url("assets/columbia-lines.svg") center / cover no-repeat;
}

.page-cta .container {
  max-width: 820px;
  text-align: center;
}

.page-cta p:not(.section-label) {
  max-width: 660px;
  margin: 20px auto 0;
  color: #b8c6d7;
}

.page-cta .cta-actions {
  margin-top: 28px;
}

.inline-link {
  color: var(--green-300);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 960px) {
  .page-hero-grid,
  .split-content,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-copy {
    max-width: 760px;
  }

  .page-hero-media {
    width: min(100%, 720px);
  }

  .split-content.reverse > :first-child {
    order: initial;
  }

  .trust-bar-list,
  .feature-grid,
  .process-card-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .page-hero {
    min-height: auto;
    padding: 122px 0 76px;
  }

  .page-hero::before {
    background:
      linear-gradient(180deg, rgba(7, 16, 31, 0.14), rgba(7, 16, 31, 0.32)),
      url("assets/background-hero-mobile.webp") center / cover no-repeat;
  }

  .page-hero-grid {
    gap: 44px;
  }

  .page-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .page-hero .hero-actions {
    justify-content: center;
  }

  .page-proof {
    justify-content: center;
  }

  .page-hero-copy,
  .content-heading {
    text-align: center;
  }

  .trust-bar-list,
  .feature-grid,
  .process-card-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid.four-up {
    grid-template-columns: 1fr;
  }

  .trust-bar-list {
    gap: 15px;
  }

  .content-section {
    padding: 78px 0;
  }

  .feature-card,
  .process-card,
  .price-card,
  .info-panel,
  .contact-panel {
    padding: 25px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .media-caption {
    align-items: flex-start;
    flex-direction: column;
  }
}
