:root {
  color-scheme: light;
  font-family: Inter, "Roboto", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --blue-700: #4363a1;
  --blue-800: #243b67;
  --blue-900: #162944;
  --blue-100: #edf3fb;
  --ink-900: #151926;
  --ink-700: #37445c;
  --ink-500: #68758a;
  --line: #d8e0eb;
  --surface: #ffffff;
  --surface-soft: #f6f8fb;
  --gold: #dca619;
  --gold-soft: #f8e6a6;
  --success: #137448;
  --shadow: 0 22px 58px rgba(21, 25, 38, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #ffffff 0, var(--surface-soft) 620px),
    var(--surface-soft);
  color: var(--ink-900);
}

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

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

.hero-media img,
.service-path__media img,
.service-row__media img,
.landing-hero__media img,
.landing-split__media img,
.commercial-visuals img,
.gallery-grid img,
.proof-story__photo img {
  opacity: 1;
  filter: saturate(1.06) contrast(1.03);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(280px, 1fr) minmax(164px, 0.44fr);
  align-items: center;
  gap: 18px;
  padding: 15px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(203, 213, 225, 0.82);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__logo {
  display: block;
  width: clamp(142px, 15vw, 184px);
  height: auto;
}

.brand__line {
  color: var(--ink-500);
  display: block;
  padding-left: 14px;
  border-left: 1px solid var(--line);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 700;
}

.nav a,
.nav-dropdown__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  white-space: nowrap;
}

.nav a:hover,
.nav a[aria-current="page"],
.nav a.is-current,
.nav-dropdown:focus-within .nav-dropdown__trigger {
  color: var(--blue-700);
}

.nav a[aria-current="page"]::after,
.nav a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 14px;
}

.nav-dropdown__trigger {
  padding-right: 15px;
}

.nav-dropdown__trigger::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 246px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

.nav-dropdown__menu a {
  min-height: auto;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--ink-700);
  line-height: 1.2;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible,
.nav-dropdown__menu a[aria-current="page"] {
  background: var(--blue-100);
  color: var(--blue-800);
}

.nav-dropdown__menu a[aria-current="page"]::after {
  display: none;
}

.nav a,
.header-cta,
.button,
.service-row,
.portal-panel,
.portal-preview,
.area-card {
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta {
  justify-self: end;
  min-width: 162px;
  padding: 0 16px;
  background: var(--blue-800);
  color: white;
}

.header-cta:hover,
.button--primary:hover {
  background: var(--blue-900);
  box-shadow: 0 18px 34px rgba(22, 41, 68, 0.24);
  transform: translateY(-1px);
}

.button--secondary:hover {
  border-color: rgba(36, 59, 103, 0.34);
  box-shadow: 0 12px 28px rgba(21, 25, 38, 0.08);
  transform: translateY(-1px);
}

.reveal-item {
  opacity: 1;
  transform: translateY(0);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.reveal-item.is-visible {
  animation: revealUp 520ms ease both;
  animation-delay: var(--reveal-delay, 0ms);
}

.hero,
.section,
.proof-story,
.final-cta {
  width: min(calc(100% - 36px), 1240px);
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
  padding: clamp(62px, 7vw, 96px) 0 42px;
}

.hero__content {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.eyebrow {
  max-width: 100%;
  margin: 0;
  color: var(--blue-800);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

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

h1 {
  margin-bottom: 0;
}

.seo-h1 {
  max-width: 58ch;
  color: var(--blue-800);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.hero-title {
  margin-bottom: 0;
  max-width: 15ch;
  font-size: clamp(48px, 6.6vw, 76px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 740;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 760;
}

.hero__lead,
.cta-microcopy,
.section__intro p,
.section--split > div > p,
.incentive-section > div > p,
.portal-panel p,
.service-area > div > p,
.final-cta h2 + p {
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.7;
}

.cta-microcopy {
  max-width: 62ch;
  margin: -8px 0 0;
  font-size: 14px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button--primary {
  background: var(--blue-800);
  color: white;
  box-shadow: 0 16px 34px rgba(36, 59, 103, 0.23);
}

.button--secondary {
  background: white;
  color: var(--blue-800);
  border-color: var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--blue-800);
  font-size: 13px;
  font-weight: 800;
}

.hero-lead-form {
  max-width: 620px;
  margin-top: 6px;
  padding: clamp(18px, 3vw, 24px);
  gap: 14px;
  border-color: rgba(36, 59, 103, 0.18);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.hero-lead-form .form-progress {
  min-height: 36px;
  padding: 10px 12px;
}

.hero-lead-form__header {
  display: grid;
  gap: 4px;
}

.hero-lead-form__header strong {
  color: var(--ink-900);
  font-size: 22px;
  line-height: 1.15;
}

.hero-lead-form__header span {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.5;
}

.hero-lead-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-lead-form label {
  font-size: 13px;
}

.hero-lead-form .input {
  min-height: 42px;
}

.hero-lead-form .button {
  width: fit-content;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(calc(100% - 36px), 1240px);
  margin: 10px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.proof-bar div {
  display: grid;
  gap: 6px;
  min-height: 130px;
  align-content: start;
  padding: clamp(18px, 2.5vw, 24px);
  background: white;
}

.proof-bar strong {
  color: var(--blue-800);
  font-size: 16px;
  line-height: 1.25;
}

.proof-bar span {
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.55;
}

.hero-media {
  position: relative;
  min-height: 568px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #dfe8f2;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-media:hover .media-panel,
.hero-media:focus-within .media-panel {
  transform: translateY(-2px);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 24, 44, 0.34) 0%, rgba(12, 24, 44, 0.08) 48%, rgba(12, 24, 44, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 54%, rgba(12, 24, 44, 0.16) 100%);
  z-index: 1;
}

.hero-media picture,
.hero-media img {
  display: block;
}

.hero-media img {
  width: 100%;
  height: 568px;
  object-fit: cover;
  object-position: 53% 45%;
  transform: scale(1.02);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.media-panel,
.media-rail {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 48px rgba(10, 20, 36, 0.22);
  backdrop-filter: blur(14px);
}

.media-panel {
  display: grid;
  gap: 7px;
  width: min(292px, calc(100% - 44px));
  padding: 18px;
  border-radius: 8px;
  animation: cardFloat 6.4s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.media-panel span,
.media-panel p {
  margin: 0;
  color: var(--ink-500);
  font-size: 13px;
  font-weight: 760;
}

.media-panel strong {
  color: var(--ink-900);
  font-size: 22px;
  line-height: 1.1;
}

.media-panel--project {
  left: 24px;
  bottom: 106px;
}

.media-panel--project i {
  position: relative;
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--blue-100);
}

.media-panel--project i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 54%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-800), var(--gold));
  animation: progressSweep 4.8s ease-in-out infinite;
}

.media-rail {
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.media-rail::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 25%;
  background: linear-gradient(180deg, rgba(248, 230, 166, 0.38), rgba(220, 166, 25, 0.12));
  border-bottom: 3px solid var(--gold);
  animation: railStep 9.6s ease-in-out infinite;
  pointer-events: none;
}

.media-rail span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 0 10px;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.media-rail span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: var(--line);
}

.media-rail span:first-child::before {
  display: none;
}

@keyframes progressSweep {
  0%, 100% {
    width: 50%;
  }
  50% {
    width: 86%;
  }
}

@keyframes heroDrift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.055) translate3d(-1.8%, -1.2%, 0);
  }
}

@keyframes metricShimmer {
  0%, 58%, 100% {
    opacity: 0;
    transform: translateX(-28%);
  }
  70% {
    opacity: 1;
  }
  82% {
    opacity: 0;
    transform: translateX(28%);
  }
}

@keyframes railStep {
  0%, 20% {
    transform: translateX(0);
  }
  25%, 45% {
    transform: translateX(100%);
  }
  50%, 70% {
    transform: translateX(200%);
  }
  75%, 100% {
    transform: translateX(300%);
  }
}

@keyframes cardFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

@keyframes revealUp {
  from {
    opacity: 1;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-item.is-visible {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

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

.proof-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(210px, 0.76fr) minmax(220px, 0.82fr) minmax(180px, 0.64fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  margin-top: 26px;
  padding: clamp(26px, 4vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(216, 224, 235, 0.92);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 251, 0.7)),
    white;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.proof-story__line {
  position: absolute;
  left: clamp(26px, 4vw, 40px);
  right: clamp(26px, 4vw, 40px);
  top: clamp(24px, 4vw, 38px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(220, 166, 25, 0.18), transparent);
}

.proof-story__item {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 30px;
}

.proof-story__item--primary {
  padding-right: clamp(10px, 3vw, 34px);
}

.proof-story__item--primary h2 {
  font-size: clamp(34px, 4.2vw, 52px);
}

.proof-story__item:not(.proof-story__item--primary) {
  padding-left: clamp(12px, 2vw, 22px);
  border-left: 1px solid var(--line);
}

.proof-story h2 {
  margin-bottom: 0;
  font-size: clamp(25px, 2.8vw, 34px);
  line-height: 1.08;
}

.proof-story__number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 0 0 7px rgba(220, 166, 25, 0.14);
}

.proof-story__photo {
  position: relative;
  z-index: 1;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.proof-story__photo img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  object-position: 52% 45%;
}

.proof-story p,
.service-row p,
.process-list p,
.incentive-card,
.area-card,
.footer {
  color: var(--ink-700);
  line-height: 1.6;
}

.section {
  padding: clamp(72px, 8vw, 104px) 0 0;
}

.section,
.section > *,
.landing-hero,
.landing-hero > *,
.landing-split,
.landing-split > *,
.info-grid,
.info-grid > *,
.path-connector,
.path-connector > *,
.lead-section,
.lead-section > * {
  min-width: 0;
}

.section__intro {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 28px;
}

.section__intro h2,
.path-connector h2 {
  overflow-wrap: anywhere;
}

.service-section {
  padding-top: clamp(74px, 8vw, 112px);
}

.service-stack {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
}

.service-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin-bottom: clamp(28px, 4vw, 42px);
}

.service-path {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1fr);
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.service-path::after,
.info-card::after,
.path-connector::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(220, 166, 25, 0.14), transparent 32%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.service-path:hover::after,
.service-path:focus-within::after,
.service-path.is-highlighted::after,
.info-card:hover::after,
.path-connector:hover::after {
  opacity: 1;
}

.service-path:hover,
.service-path:focus-within,
.service-path.is-highlighted,
.info-card:hover,
.info-card:focus-within {
  border-color: rgba(36, 59, 103, 0.28);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.service-path__media {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  background: #dfe8f2;
}

.service-path__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-path__copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
}

.service-path__label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-path h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.08;
}

.service-path p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.6;
}

.service-path .button {
  width: fit-content;
}

.path-quickpick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: -10px 0 24px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.path-quickpick span {
  color: var(--ink-500);
  font-size: 13px;
  font-weight: 850;
}

.path-quickpick button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--blue-800);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.path-quickpick button:hover,
.path-quickpick button:focus-visible {
  border-color: rgba(36, 59, 103, 0.34);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: stretch;
  min-height: 250px;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.service-row--reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
}

.service-row--reverse .service-row__media {
  order: 2;
}

.service-row:hover {
  border-color: rgba(36, 59, 103, 0.28);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.service-row__media {
  position: relative;
  display: block;
  margin: 0;
  min-height: 220px;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe8f2;
}

.service-row__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(22, 41, 68, 0.2), rgba(22, 41, 68, 0.02) 62%),
    linear-gradient(180deg, transparent, rgba(22, 41, 68, 0.12));
  z-index: 1;
}

.service-row__media::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 58px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 30px rgba(220, 166, 25, 0.42);
  z-index: 2;
}

.service-row__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.service-row__media--install img {
  object-position: 52% 44%;
}

.service-row__media--maintenance img {
  object-position: 48% 48%;
}

.service-row__media--detach img {
  object-position: 54% 46%;
}

.service-row__media--ev img {
  object-position: 50% 34%;
}

.service-row__copy {
  display: grid;
  align-content: center;
  gap: 13px;
  padding: clamp(18px, 4vw, 38px);
}

.service-row__copy span {
  width: fit-content;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-row__copy h3 {
  max-width: 16ch;
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.service-row__copy p {
  max-width: 54ch;
  margin-bottom: 0;
  font-size: 17px;
}

.section--split,
.process-section,
.incentive-section,
.portal-section,
.service-area {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.process-section {
  position: relative;
  align-items: center;
  width: min(calc(100% - 36px), 1240px);
  padding: clamp(48px, 6vw, 72px) clamp(20px, 4vw, 44px);
  margin-top: clamp(72px, 8vw, 104px);
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(circle at 82% 8%, rgba(220, 166, 25, 0.24), transparent 28%),
    linear-gradient(135deg, var(--blue-900), var(--blue-800));
  color: white;
  box-shadow: 0 24px 70px rgba(22, 41, 68, 0.22);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
  opacity: 0.26;
  pointer-events: none;
}

.process-copy,
.process-infographic {
  position: relative;
  z-index: 1;
}

.process-copy {
  display: grid;
  gap: 16px;
}

.process-copy .eyebrow,
.process-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.process-copy h2 {
  color: white;
}

.process-infographic {
  display: grid;
  gap: 18px;
}

.process-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.process-tabs::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 26px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.process-tab {
  position: relative;
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 92px;
  padding: 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.process-tab span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--blue-900);
  color: var(--gold-soft);
  font-size: 12px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.process-tab:hover,
.process-tab:focus-visible {
  border-color: rgba(248, 230, 166, 0.74);
  color: white;
  transform: translateY(-2px);
}

.process-tab.is-active {
  border-color: rgba(248, 230, 166, 0.92);
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.process-tab.is-active span {
  background: var(--gold);
  color: var(--blue-900);
}

.process-panels {
  min-height: 286px;
}

.process-panel {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink-900);
  box-shadow: 0 22px 52px rgba(9, 20, 36, 0.24);
  animation: panelReveal 260ms ease both;
}

.process-panel[hidden] {
  display: none;
}

.process-panel h3 {
  max-width: 18ch;
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.08;
}

.process-panel p,
.process-panel strong {
  max-width: 58ch;
}

.process-panel p {
  margin-bottom: 0;
  color: var(--ink-700);
  line-height: 1.65;
}

.process-panel strong {
  display: block;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--blue-800);
  line-height: 1.45;
}

.status-chip {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(220, 166, 25, 0.14);
  color: #76570a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.process-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.process-list li > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  width: min(calc(100% - 36px), 1240px);
  margin-inline: auto;
  padding: clamp(54px, 7vw, 92px) 0 34px;
}

.landing-hero__content {
  display: grid;
  gap: 18px;
}

.landing-hero h1 {
  max-width: 62ch;
  color: var(--blue-800);
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.landing-hero h2 {
  max-width: 12ch;
  font-size: clamp(44px, 6vw, 70px);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.landing-hero p {
  max-width: 66ch;
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.landing-hero__media,
.landing-split__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #dfe8f2;
  box-shadow: var(--shadow);
}

.landing-hero__media {
  min-height: 530px;
}

.landing-hero__media img,
.landing-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-hero__media img {
  min-height: 530px;
  object-position: 52% 44%;
}

.landing-grid-section {
  display: grid;
  gap: 24px;
}

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

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

.info-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.info-card h3,
.info-card p {
  margin: 0;
  overflow-wrap: anywhere;
}

.info-card p {
  color: var(--ink-700);
  line-height: 1.55;
}

.landing-split {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.landing-split--reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
}

.landing-split h2 {
  margin-bottom: 18px;
  overflow-wrap: anywhere;
}

.landing-split p {
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.7;
}

.landing-split__media {
  min-height: 390px;
}

.landing-split__media img {
  min-height: 390px;
}

.commercial-visuals {
  display: grid;
  gap: 18px;
}

.commercial-visuals__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 16px;
}

.commercial-visuals figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #dfe8f2;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.commercial-visuals figure:first-child {
  grid-row: span 2;
}

.commercial-visuals img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.commercial-visuals figure:first-child img {
  min-height: 536px;
}

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

.gallery-grid figure {
  display: grid;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 14px 16px;
  color: var(--blue-800);
  font-size: 14px;
  font-weight: 850;
}

.faq-section {
  display: grid;
  gap: 24px;
}

.value-section .info-card {
  border-top: 3px solid var(--gold);
}

.proof-section {
  display: grid;
  gap: 24px;
}

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

.proof-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(237, 243, 251, 0.72), rgba(255, 255, 255, 0.98)),
    white;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.proof-card strong {
  color: var(--ink-900);
  font-size: 20px;
  line-height: 1.2;
}

.proof-card span {
  color: var(--ink-700);
  line-height: 1.6;
}

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

.case-study-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.96)),
    white;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.case-study-card__label {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-study-card h3 {
  margin: 0;
  color: var(--ink-900);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
}

.case-study-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.case-study-card dl div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.case-study-card dt {
  color: var(--ink-500);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-study-card dd {
  margin: 0;
  color: var(--blue-900);
  font-weight: 850;
  line-height: 1.35;
}

.case-study-card p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.6;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--blue-800);
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-700);
  line-height: 1.65;
}

.plan-section {
  display: grid;
  gap: 24px;
}

.plan-section > * {
  min-width: 0;
}

.conversion-note,
.plan-decision {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2.4vw, 24px);
  border: 1px solid rgba(36, 59, 103, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
}

.conversion-note {
  margin: 0 0 18px;
}

.conversion-note h3,
.plan-decision h3 {
  margin: 0;
  color: var(--ink-900);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.12;
}

.conversion-note p,
.plan-decision p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.65;
}

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

.plan-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.plan-card--featured {
  border-color: rgba(220, 183, 0, 0.55);
  box-shadow: 0 20px 54px rgba(36, 59, 103, 0.12);
}

.plan-card__badge {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(220, 183, 0, 0.16);
  color: var(--blue-800);
  font-size: 12px;
  font-weight: 900;
}

.plan-card__header {
  display: grid;
  gap: 10px;
}

.plan-card h3,
.plan-card p {
  margin: 0;
}

.plan-card h3 {
  color: var(--ink-900);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
}

.plan-card__header strong {
  color: var(--blue-800);
  font-size: 20px;
}

.plan-card p,
.plan-disclaimer {
  color: var(--ink-700);
  line-height: 1.6;
}

.plan-card__note,
.plan-disclaimer {
  padding: 14px 16px;
  border: 1px solid rgba(36, 59, 103, 0.14);
  border-radius: 8px;
  background: var(--surface-soft);
  font-size: 14px;
  font-weight: 720;
}

.plan-card .button {
  align-self: end;
  width: fit-content;
}

.plan-card .check-list--compact {
  grid-template-columns: 1fr;
  gap: 10px;
}

.plan-card .check-list--compact li {
  min-height: 0;
  padding: 2px 0 2px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink-700);
  line-height: 1.45;
}

.plan-card .check-list--compact li::before {
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
}

.plan-decision {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(234, 241, 251, 0.55), rgba(255, 255, 255, 0.98)),
    white;
}

.comparison-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table caption {
  padding: 18px 20px;
  color: var(--blue-800);
  font-size: 18px;
  font-weight: 900;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-700);
  line-height: 1.35;
  vertical-align: top;
}

.comparison-table thead th {
  background: var(--surface-soft);
  color: var(--blue-800);
  font-weight: 900;
}

.comparison-table tbody th {
  color: var(--ink-900);
  font-weight: 850;
}

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

.check-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink-700);
  font-weight: 720;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
}

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

.process-roadmap {
  display: grid;
  gap: 24px;
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-list--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.roadmap-list li {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 154px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.roadmap-list li:hover,
.roadmap-list li:focus-visible,
.roadmap-list li.is-active {
  border-color: rgba(36, 59, 103, 0.34);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.roadmap-list li.is-active span {
  background: var(--gold);
  color: var(--blue-900);
}

.roadmap-detail {
  margin: -4px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(36, 59, 103, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(237, 243, 251, 0.9), rgba(255, 255, 255, 0.96));
  color: var(--blue-800);
  font-weight: 780;
  line-height: 1.55;
  animation: panelReveal 220ms ease both;
}

.roadmap-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: 12px;
  font-weight: 920;
}

.roadmap-list strong {
  line-height: 1.35;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.lead-section__intro {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 96px;
}

.lead-section__intro p {
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.7;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.form-progress {
  position: relative;
  overflow: hidden;
  min-height: 42px;
  padding: 12px 14px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--blue-800);
  font-size: 13px;
  font-weight: 850;
}

.form-progress::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  width: var(--form-progress, 0%);
  height: 4px;
  background: linear-gradient(90deg, var(--blue-800), var(--gold));
  transition: width 220ms ease;
}

.form-progress span {
  position: relative;
  z-index: 1;
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 780;
}

.input {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink-900);
  font: inherit;
  font-weight: 600;
}

textarea.input {
  min-height: 138px;
  resize: vertical;
}

.input:focus {
  outline: 3px solid rgba(67, 99, 161, 0.18);
  border-color: var(--blue-700);
}

.input--error {
  border-color: #b42318;
}

.field-error {
  min-height: 18px;
  color: #b42318;
  font-size: 12px;
  font-weight: 760;
}

.consent-field {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue-800);
}

.lead-form .button {
  width: fit-content;
}

.lead-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.lead-form__status {
  display: grid;
  gap: 12px;
  margin: 0;
  color: var(--ink-700);
  line-height: 1.55;
}

.lead-form__status:empty {
  display: none;
}

.lead-form__status--success,
.lead-form__status--error {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.lead-form__status--success {
  background: #eef8f2;
  border-color: rgba(19, 116, 72, 0.26);
  color: #0f5132;
}

.lead-form__status--error {
  background: #fff1f0;
  border-color: rgba(180, 35, 24, 0.28);
  color: #912018;
}

.lead-form__status .button {
  margin-top: 2px;
}

.path-connector {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(234, 241, 251, 0.72), rgba(255, 255, 255, 0.96)),
    white;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
}

.path-connector h2 {
  margin-bottom: 12px;
}

.path-connector p {
  max-width: 70ch;
  margin-bottom: 0;
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.7;
}

.path-connector__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.incentive-section {
  align-items: center;
  padding: clamp(56px, 7vw, 84px) clamp(20px, 4vw, 42px);
  margin-top: clamp(66px, 8vw, 108px);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  color: white;
}

.incentive-section .eyebrow,
.incentive-section p {
  color: rgba(255, 255, 255, 0.88);
}

.incentive-section h2 {
  color: white;
}

.incentive-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
}

.incentive-card strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.incentive-card a {
  color: white;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.incentive-card__label {
  color: var(--gold);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

.portal-section {
  align-items: stretch;
}

.portal-panel,
.portal-preview,
.area-card,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
}

.portal-panel {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
}

.portal-preview {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(180deg, rgba(234, 241, 251, 0.86), rgba(255, 255, 255, 0.96)),
    white;
}

.portal-preview__top,
.portal-preview__metric,
.portal-preview__status {
  padding: 18px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}

.portal-preview__top,
.portal-preview__status {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.portal-preview__top span,
.portal-preview__metric span,
.portal-preview__status span {
  color: var(--ink-500);
  font-size: 13px;
  font-weight: 800;
}

.portal-preview__metric {
  display: grid;
  gap: 10px;
}

.portal-preview__metric strong {
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1;
  color: var(--blue-800);
}

.service-area {
  align-items: center;
}

.area-card {
  display: grid;
  gap: 10px;
  padding: 28px;
}

.area-card strong {
  color: var(--ink-900);
  font-size: 20px;
}

.area-card a {
  color: var(--blue-700);
  font-weight: 850;
}

.final-cta {
  display: grid;
  gap: 20px;
  padding: clamp(34px, 5vw, 54px);
  margin-top: clamp(66px, 8vw, 108px);
  text-align: center;
  justify-items: center;
  background:
    linear-gradient(180deg, rgba(234, 241, 251, 0.72), rgba(255, 255, 255, 0.95)),
    white;
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta p {
  max-width: 620px;
  margin-bottom: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 36px), 1240px);
  margin: 44px auto 0;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer a {
  color: var(--blue-700);
  font-weight: 850;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .landing-hero,
  .section--split,
  .landing-split,
  .landing-split--reverse,
  .path-connector,
  .plan-decision,
  .process-section,
  .incentive-section,
  .portal-section,
  .service-area,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .path-connector__actions {
    justify-content: flex-start;
  }

  .hero,
  .landing-hero {
    padding-top: 42px;
  }

  .landing-hero__media,
  .landing-hero__media img {
    min-height: 420px;
  }

  .service-paths,
  .info-grid,
  .proof-bar,
  .proof-grid,
  .case-study-grid,
  .pricing-grid,
  .gallery-grid,
  .commercial-visuals__grid,
  .roadmap-list,
  .roadmap-list--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commercial-visuals figure:first-child {
    grid-row: auto;
  }

  .commercial-visuals figure:first-child img {
    min-height: 260px;
  }

  .lead-section__intro {
    position: static;
  }

  .proof-bar div {
    min-height: 0;
  }

  .process-section {
    margin-top: clamp(56px, 8vw, 84px);
  }

  .proof-story {
    grid-template-columns: 1fr;
  }

  .proof-story__line {
    top: 40px;
    bottom: 40px;
    left: 42px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--gold), rgba(220, 166, 25, 0.18), transparent);
  }

  .proof-story__item,
  .proof-story__item--primary {
    padding-top: 0;
    padding-left: 56px;
    padding-right: 0;
  }

  .proof-story__item:not(.proof-story__item--primary) {
    padding-left: 56px;
    border-left: 0;
  }

  .proof-story__number {
    position: absolute;
    left: 0;
    top: 2px;
  }

  .service-row,
  .service-row--reverse {
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  }

  .service-row--reverse .service-row__media {
    order: 0;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand__line {
    margin-top: 6px;
  }

  .header-cta {
    width: 100%;
  }

  .hero,
  .landing-hero,
  .section,
  .proof-bar,
  .proof-story,
  .final-cta,
  .footer {
    width: calc(100vw - 56px);
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__content,
  .hero-media,
  .landing-hero__content,
  .landing-hero__media,
  .proof-bar {
    width: 100%;
    justify-self: start;
  }

  .landing-hero__content {
    max-width: none;
  }

  .hero__actions,
  .trust-row,
  .portal-preview__top,
  .portal-preview__status,
  .footer {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 48px;
    white-space: normal;
    text-align: center;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 11px;
    letter-spacing: 0.08em;
    line-height: 1.45;
  }

  .hero-title {
    font-size: 43px;
    line-height: 1;
  }

  .landing-hero h2 {
    max-width: none;
    font-size: 35px;
    line-height: 1.02;
  }

  .landing-hero .eyebrow {
    font-size: 10px;
  }

  .landing-hero .button {
    padding-inline: 16px;
    font-size: 15px;
    line-height: 1.2;
  }

  .seo-h1 {
    font-size: 14px;
  }

  .hero__lead,
  .section__intro p,
  .section--split > div > p,
  .process-copy p,
  .incentive-section > div > p,
  .portal-panel p,
  .service-area > div > p {
    font-size: 17px;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-media img {
    height: 520px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(12, 24, 44, 0.08) 0%, rgba(12, 24, 44, 0.7) 100%);
  }

  .media-panel--project {
    left: 14px;
    right: 14px;
    bottom: 96px;
  }

  .media-rail {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-rail::after {
    display: none;
  }

  .process-section {
    width: min(calc(100% - 28px), 1240px);
    padding: 34px 18px;
  }

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

  .process-tabs::before {
    display: none;
  }

  .process-tab {
    min-height: 82px;
  }

  .process-panels {
    min-height: 0;
  }

  .process-panel h3 {
    max-width: none;
    font-size: 27px;
  }

  .proof-story {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .proof-story__item,
  .proof-story__item--primary,
  .proof-story__item:not(.proof-story__item--primary) {
    padding-left: 50px;
  }

  .proof-story__photo {
    margin-top: 4px;
  }

  .proof-story__item--primary h2,
  .proof-story h2 {
    font-size: 27px;
  }

  .service-row,
  .service-row--reverse,
  .service-path,
  .service-paths,
  .info-grid,
  .proof-bar,
  .proof-grid,
  .case-study-grid,
  .pricing-grid,
  .gallery-grid,
  .commercial-visuals__grid,
  .landing-split,
  .landing-split--reverse,
  .roadmap-list,
  .roadmap-list--five,
  .lead-section,
  .path-connector,
  .plan-decision,
  .form-grid,
  .check-list--compact {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-path__media {
    min-height: 190px;
  }

  .service-path__copy {
    padding: 20px;
  }

  .service-path .button,
  .lead-form .button,
  .hero-lead-form .button,
  .plan-card .button,
  .plan-decision .button,
  .path-connector__actions .button {
    width: 100%;
  }

  .comparison-table-wrap {
    margin-inline: -2px;
  }

  .hero-lead-form__grid {
    grid-template-columns: 1fr;
  }

  .landing-hero__media,
  .landing-hero__media img {
    min-height: 360px;
  }

  .landing-split__media,
  .landing-split__media img {
    min-height: 280px;
  }

  .service-row__media {
    min-height: 190px;
  }

  .service-row__copy {
    padding: 18px 4px 8px;
  }

  .service-row__copy h3 {
    max-width: none;
    font-size: 29px;
  }

  .service-row__copy p {
    font-size: 16px;
  }

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