@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/inter-var.woff2") format("woff2");
}

:root {
  --brand: #0d44ff;
  --brand-bright: #1855ff;
  --brand-soft: #3a6bff;
  --brand-dark: #0028c8;
  --navy: #050816;
  --navy-800: #071326;
  --navy-700: #0a1730;
  --ink: #111827;
  --body: #374151;
  --muted: #4b5563;
  --soft-white: #d7dfea;
  --line: #e5e7eb;
  --soft: #f4f5f7;
  --paper: #ffffff;
  --success: #15803d;
  --accent: var(--brand-soft);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--navy);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.js-loading .site-footer {
  visibility: hidden;
}

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

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

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

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

.skip-link {
  position: absolute;
  left: 10px;
  top: -48px;
  z-index: 100;
  background: var(--brand);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: #fff;
  background: rgba(5, 8, 22, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 7px 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.branch-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #fff;
  font-weight: 600;
  line-height: 1.45;
}

.branch-label em {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  font-weight: 400;
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
  transition: color .2s ease;
}

.topbar-phone:hover {
  color: #fff;
}

.topbar-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--brand-bright);
}

.topbar-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  min-height: 88px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-weight: 800;
  color: #fff;
}

.brand img {
  width: 148px;
  height: auto;
}

.brand-subtitle {
  color: var(--brand-bright);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.brand span:not(.brand-subtitle) {
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12.5px;
  font-weight: 500;
}

.main-nav a,
.nav-group summary {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 6px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.nav-group summary:hover,
.nav-group[open] summary {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

.main-nav .nav-cta {
  margin-left: 6px;
  color: #fff;
  background: var(--brand);
  font-weight: 600;
  padding-right: 14px;
  padding-left: 14px;
}

.main-nav .nav-cta:hover {
  background: var(--brand-dark);
}

.nav-group {
  position: relative;
}

.nav-group summary {
  list-style: none;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 50;
  display: none;
  width: min(360px, calc(100vw - 40px));
  padding: 12px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 19, 38, 0.98);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
}

.nav-group[open] .nav-menu,
.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  display: grid;
  gap: 4px;
}

.nav-menu-wide {
  width: min(650px, calc(100vw - 40px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nav-group-right .nav-menu {
  right: 0;
  left: auto;
  transform: none;
}

.nav-menu a {
  display: grid;
  min-height: auto;
  padding: 11px 12px;
}

.nav-menu strong {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.nav-menu span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: transparent;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(5, 8, 22, 0.98), rgba(5, 8, 22, 0.82) 42%, rgba(5, 8, 22, 0.26) 70%, rgba(5, 8, 22, 0.08)),
    radial-gradient(circle at 78% 18%, rgba(24, 85, 255, 0.28), transparent 28%),
    radial-gradient(circle at 58% 78%, rgba(255, 255, 255, 0.11), transparent 34%),
    var(--hero-image);
  background-size: auto, auto, auto, cover;
  background-position: center, 78% 18%, 58% 78%, center center;
  background-repeat: no-repeat;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 42%, rgba(255, 255, 255, 0.13), transparent 30%),
    radial-gradient(ellipse at 70% 18%, rgba(58, 107, 255, 0.16), transparent 34%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 26%, rgba(255, 255, 255, 0.05) 58%, transparent 76%);
  filter: none;
  opacity: 0.38;
  mix-blend-mode: normal;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(58vw, 820px);
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(5, 8, 22, 0.92), rgba(5, 8, 22, 0.24) 44%, rgba(5, 8, 22, 0.02)),
    var(--hero-image);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: .82;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 44px;
  align-items: center;
  max-width: var(--max);
  min-height: 680px;
  margin: 0 auto;
  padding: 78px 20px;
}

.hero-inner > div:first-child {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section .eyebrow,
.not-found .eyebrow {
  color: var(--brand);
}

.hero .eyebrow,
.page-hero .eyebrow,
.section.dark .eyebrow {
  color: var(--brand-bright);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--brand-bright);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  color: #fff;
  font-size: 54px;
  line-height: 1.08;
}

.hero-copy {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--soft-white);
  font-size: 16px;
  line-height: 1.625;
  overflow-wrap: break-word;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 180px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  color: #fff;
  background: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 14px 36px rgba(13, 68, 255, 0.42);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(58, 107, 255, 0.72);
  background: rgba(13, 68, 255, 0.22);
  box-shadow: 0 14px 36px rgba(13, 68, 255, 0.24);
}

.btn-light {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
  max-width: 1000px;
}

.trust-item {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 6px;
  min-height: 126px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.trust-icon,
.service-icon,
.proof-icon,
.license-icon,
.process-icon,
.coverage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-bright);
}

.trust-icon svg,
.service-icon svg,
.proof-icon svg,
.license-icon svg,
.process-icon svg,
.coverage-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.trust-icon {
  width: 36px;
  height: 36px;
}

.trust-item strong {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
}

.trust-item > span:not(.trust-icon) {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10.5px;
  line-height: 1.35;
}

.lead-panel {
  border: 1px solid rgba(58, 107, 255, 0.24);
  border-radius: 12px;
  background: rgba(10, 23, 48, 0.82);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.46),
    0 0 28px rgba(58, 107, 255, 0.16),
    inset 0 1px 0 rgba(58, 107, 255, 0.45),
    inset 0 0 0 1px rgba(58, 107, 255, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.lead-panel header {
  padding: 20px 20px 0;
}

.lead-panel h2 {
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.lead-panel p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  line-height: 1.5;
}

.lead-panel p span {
  color: var(--brand-soft);
  font-weight: 800;
}

.lead-form {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px 20px 22px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  position: relative;
  display: block;
}

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

.field-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.58);
  pointer-events: none;
}

.field-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.055);
  padding: 10px 12px;
  font-size: 13.5px;
  line-height: 1.5;
  outline: none;
}

.icon-field input {
  padding-left: 40px;
}

.field select {
  appearance: none;
  color: rgba(255, 255, 255, 0.82);
  padding-right: 38px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.62)' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.field select option {
  color: #fff;
  background: #0a1628;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(58, 107, 255, 0.8);
  box-shadow: 0 0 0 2px rgba(13, 68, 255, 0.24);
}

.field textarea {
  min-height: 86px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: #9ff3b4;
  font-size: 13px;
  font-weight: 800;
}

.form-note.is-error {
  color: #ffb3b3;
}

.form-note.is-success {
  color: #9ff3b4;
}

.lead-submit {
  width: 100%;
  min-height: 42px;
}

.lead-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.section {
  padding: 82px 20px;
  background: var(--paper);
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

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

.section.dark {
  color: #fff;
  background:
    radial-gradient(circle at 14% 8%, rgba(13, 68, 255, 0.18), transparent 30%),
    linear-gradient(180deg, var(--navy), var(--navy-800));
}

.section.dark h2,
.section.dark h3 {
  color: #fff;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  max-width: 790px;
  margin-bottom: 34px;
}

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

.section-head h2 {
  font-size: 38px;
  line-height: 1.15;
}

.section-head p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.section.dark .section-head p:not(.eyebrow),
.section.dark p {
  color: rgba(255, 255, 255, 0.82);
}

.home-services,
.branch-section,
.home-coverage,
.process-section,
.use-cases {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section.dark .proof-card,
.section.dark .faq-item {
  border-color: rgba(58, 107, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(10, 23, 48, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.section.dark .proof-card h3,
.section.dark .faq-item h3 {
  color: #fff;
}

.section.dark .proof-card p,
.section.dark .faq-item p {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.service-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .85fr);
  gap: 18px;
  align-items: stretch;
}

.service-feature,
.support-services {
  border: 1px solid rgba(58, 107, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(10, 23, 48, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
  overflow: hidden;
}

.service-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.service-feature-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px;
}

.service-feature h3,
.support-services h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.service-feature p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.625;
}

.service-feature-body > p:not(.mini-kicker) {
  margin: 14px 0 0;
}

.service-feature .btn {
  margin-top: 26px;
}

.mini-kicker {
  margin: 0 0 10px;
  color: var(--brand-soft);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: uppercase;
}

.support-services {
  padding: 28px;
}

.support-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.support-service {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  transition: border-color .2s ease, transform .2s ease;
}

.support-service:first-child {
  border-top: 0;
}

.support-service:hover {
  border-color: rgba(24, 85, 255, 0.48);
  transform: translateX(2px);
}

.support-service .service-icon {
  margin-bottom: 0;
}

.support-service strong,
.support-service em {
  display: block;
}

.support-service strong {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.support-service em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12.5px;
  line-height: 1.5;
  font-style: normal;
}

.internal-link-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.internal-link-group {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(58, 107, 255, 0.2);
  border-radius: 8px;
  background: rgba(10, 23, 48, 0.58);
}

.internal-link-heading {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.internal-link-heading .service-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 0;
}

.internal-link-group h3 {
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.internal-link-group ul {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.internal-link-group li {
  border-bottom: 1px solid rgba(58, 107, 255, 0.22);
}

.internal-link-group li:last-child {
  border-bottom: 0;
}

.internal-link-group a {
  display: flex;
  width: 100%;
  min-height: 35px;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
  transition: color .2s ease;
}

.internal-link-group a::after {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-top: 1.5px solid var(--brand-bright);
  border-right: 1.5px solid var(--brand-bright);
  transform: rotate(45deg);
}

.internal-link-group a:hover {
  color: #fff;
}

.service-card,
.proof-card,
.faq-item,
.blog-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.service-card {
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.service-card img,
.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.section.dark .service-card {
  border-color: rgba(58, 107, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(10, 23, 48, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.section.dark .service-card:hover {
  border-color: rgba(24, 85, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 50px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(13, 68, 255, 0.2);
}

.service-card .body,
.blog-card .body,
.proof-card,
.faq-item {
  padding: 22px;
}

.service-card .body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}


.proof-card-with-media {
  display: flex;
  flex-direction: column;
  padding: 0;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.proof-card-media {
  position: relative;
  aspect-ratio: 2.35 / 1;
  min-height: 136px;
  overflow: hidden;
  background: #050816;
  border-bottom: 1px solid rgba(58, 107, 255, 0.18);
}

.proof-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 8, 22, 0.02), rgba(5, 8, 22, 0.24)),
    radial-gradient(circle at 88% 12%, rgba(24, 85, 255, 0.24), transparent 34%);
}

.proof-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .35s ease;
}

.proof-card-with-media:hover {
  border-color: rgba(24, 85, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 50px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(13, 68, 255, 0.2);
  transform: translateY(-2px);
}

.proof-card-with-media:hover .proof-card-media img {
  transform: scale(1.045);
}

.proof-card-body {
  display: grid;
  flex: 1;
  grid-template-columns: 36px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 18px;
  row-gap: 14px;
  align-content: start;
  padding: 20px 22px 18px;
}

.proof-card-heading {
  display: contents;
}

.proof-card-heading .proof-icon {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: 34px;
  height: 34px;
  margin: 0;
  color: var(--brand-bright);
}

.proof-card-heading h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin: 0;
}

.proof-card-with-media .proof-card-body > p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
}

.proof-card-with-media .proof-card-link {
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: end;
  margin-left: 0;
  margin-top: 2px;
  padding-top: 0;
}

.service-card h3,
.proof-card h3,
.blog-card h3 {
  font-size: 16px;
  line-height: 1.3;
}

.section.dark .service-card h3 {
  color: #fff;
}

.service-card p,
.proof-card p,
.blog-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section.dark .service-card p {
  color: rgba(255, 255, 255, 0.78);
}

.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--brand-bright);
}

.proof-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
}

.proof-card-body .proof-icon {
  margin-bottom: 12px;
}

.proof-card-body .proof-card-heading .proof-icon {
  margin-bottom: 0;
}

.proof-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--brand-bright);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  word-break: break-word;
}

.proof-card-link::after {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.proof-card-link:hover {
  color: #fff;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 172px;
  margin-top: 18px;
  padding: 11px 16px;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  transition: transform .2s ease, background .2s ease, box-shadow .25s ease;
}

.card-link:hover {
  color: #fff;
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(13, 68, 255, 0.34);
}

.service-card p {
  margin-bottom: 20px;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: 44px;
  align-items: center;
}

.split img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.service-aside {
  display: grid;
  gap: 18px;
}

.service-aside .section-media {
  min-height: 260px;
  height: 260px;
  border: 1px solid rgba(58, 107, 255, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.branch-section .split img {
  border: 1px solid rgba(58, 107, 255, 0.22);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3);
}

.license-panel {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 560px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(58, 107, 255, 0.22);
  border-radius: 8px;
  background: rgba(10, 23, 48, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.license-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.license-panel strong,
.license-panel div span {
  display: block;
}

.license-panel strong {
  color: #fff;
  line-height: 1.2;
}

.license-panel div span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

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

.list li {
  position: relative;
  padding-left: 28px;
  color: var(--body);
}

.section.dark .list li {
  color: rgba(255, 255, 255, 0.78);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.local-fit-list {
  margin-top: 0;
  align-self: center;
}

.legal-content {
  display: grid;
  gap: 28px;
  max-width: 880px;
}

.legal-content article {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.legal-content p {
  margin: 0;
}

.process {
  counter-reset: step;
}

.process .proof-card {
  position: relative;
  min-height: 190px;
}

.process .proof-card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 28px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background: #071326;
}

.cta-band h2 {
  color: #fff;
  font-size: 32px;
}

.cta-band p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(5, 8, 22, 0.98), rgba(5, 8, 22, 0.82) 48%, rgba(5, 8, 22, 0.42)),
    radial-gradient(circle at 78% 18%, rgba(24, 85, 255, 0.24), transparent 30%),
    var(--hero-image);
  background-size: auto, auto, auto 108%;
  background-position: center, 78% 18%, right center;
  background-repeat: no-repeat;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
  padding: 104px 20px 88px;
}


.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: 44px;
  align-items: center;
}

.page-hero-copy {
  min-width: 0;
}

.page-hero .lead-panel {
  justify-self: end;
  width: 100%;
  max-width: 480px;
}

.page-hero .lead-panel p {
  max-width: none;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.page-hero .lead-panel p span {
  color: var(--brand-soft);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.not-found .breadcrumbs {
  color: var(--muted);
}

.not-found .breadcrumbs a {
  color: var(--brand);
}

.page-hero h1 {
  max-width: 860px;
  color: #fff;
  font-size: 54px;
}

.page-hero p {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--soft-white);
  font-size: 16px;
  line-height: 1.625;
}

.contact-hero .wrap {
  padding-bottom: 76px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: 64px;
  align-items: start;
}

.contact-details > p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
}

.contact-list {
  display: grid;
  margin-top: 28px;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail-row:last-child {
  border-bottom: 0;
}

.contact-detail-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--brand);
}

.contact-detail-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-detail-row > div {
  min-width: 0;
}

.contact-detail-row strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 14px;
}

.contact-detail-row address,
.contact-detail-row > div > span,
.contact-detail-row a {
  color: var(--body);
  font-size: 15px;
  font-style: normal;
  line-height: 1.5;
}

.contact-detail-row a {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-detail-row .contact-inline-detail {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.contact-inline-detail strong {
  display: inline;
  margin: 0;
}

.contact-email-row a {
  white-space: nowrap;
}

.contact-layout .lead-panel {
  width: 100%;
  max-width: 480px;
  background: rgba(10, 23, 48, 0.98);
}

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

.faq-item {
  padding: 0;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.faq-item[open] {
  border-color: rgba(24, 85, 255, 0.45);
}

.faq-item summary {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 22px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -4px;
}

.faq-item summary h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.faq-toggle {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(24, 85, 255, 0.5);
  border-radius: 50%;
  background: rgba(24, 85, 255, 0.08);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer p {
  margin: 0;
}

.site-footer {
  color: #fff;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr .9fr 1.25fr;
  gap: 34px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 20px 36px;
}

.footer-logo {
  width: 148px;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.625;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

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

.footer-address {
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-style: normal;
  line-height: 1.625;
}

.footer-address span {
  display: block;
}

.footer-contact-list {
  display: grid;
  gap: 10px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.footer-contact-icon {
  display: inline-flex;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--brand-bright);
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-contact-copy {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact-copy strong {
  color: #fff;
  font-weight: 600;
}

.site-footer .footer-contact-copy a,
.site-footer .footer-parent-link {
  display: inline;
  margin: 0;
}

.footer-email-row .footer-contact-copy,
.footer-email-row a {
  white-space: nowrap;
}

.footer-license {
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.footer-divider {
  margin: 0 7px;
  color: rgba(255, 255, 255, 0.38);
}

.footer-parent-link {
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.not-found {
  min-height: 54vh;
  padding: 90px 20px;
  color: #cbd5e1;
  background: var(--navy);
}

.not-found .wrap {
  max-width: 900px;
}

.not-found h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(40px, 7vw, 68px);
}

.not-found p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.7;
}

.not-found .eyebrow,
.not-found .breadcrumbs a {
  color: #8fb0ff;
}

.not-found .breadcrumbs,
.not-found .breadcrumbs span[aria-current="page"] {
  color: #cbd5e1;
}

.not-found .section-actions {
  margin-top: 34px;
}

@media (max-width: 1080px) and (min-width: 981px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) and (min-width: 761px) {
  .brand img {
    width: 132px;
  }

  .brand-subtitle {
    font-size: 11px;
  }

  .main-nav {
    font-size: 11.5px;
  }

  .main-nav a,
  .nav-group summary {
    padding-right: 7px;
    padding-left: 7px;
  }

  .main-nav .nav-cta {
    margin-left: 3px;
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 980px) {
  .hero-inner,
  .page-hero-grid,
  .split,
  .contact-layout,
  .service-overview,
  .service-feature,
  .footer-grid,
  .grid.cols-3,
  .grid.cols-4 {
    grid-template-columns: 1fr;
  }

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

  .hero h1,
  .page-hero h1 {
    font-size: 48px;
  }

  .lead-panel {
    max-width: 520px;
  }

  .service-aside {
    max-width: 520px;
  }

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

/* Document-governed pilot templates */
.document-hero .page-hero-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 480px);
  gap: 52px;
}

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

.document-hero h1 {
  max-width: 820px;
  font-size: clamp(2.35rem, 4.4vw, 3.5rem);
  line-height: 1.06;
}

.document-lead-panel {
  width: 100%;
  max-width: 488px;
  border: 1px solid rgba(91, 130, 255, 0.72);
  border-radius: 12px;
  background: rgba(5, 8, 22, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.document-lead-panel header p span,
.document-lead-panel header p {
  color: rgba(255, 255, 255, 0.78);
}

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

.document-lead-panel .field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.document-lead-panel .field > span {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.document-lead-panel .field input,
.document-lead-panel .field select,
.document-lead-panel .field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.document-lead-panel .field select option {
  color: #111827;
}

.document-lead-panel .field input:focus,
.document-lead-panel .field select:focus,
.document-lead-panel .field textarea:focus {
  border-color: #5b82ff;
  outline: 2px solid rgba(91, 130, 255, 0.4);
  outline-offset: 1px;
}

.document-lead-panel .form-span {
  grid-column: 1 / -1;
}

.form-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 16px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.document-section {
  padding-block: 82px;
}

.document-copy {
  max-width: 1180px;
}

.document-copy > h2 {
  max-width: 850px;
  margin: 0 0 22px;
  font-size: clamp(2rem, 3.5vw, 2.4rem);
  line-height: 1.14;
}

.document-copy > p {
  max-width: 850px;
}

.document-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.document-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(5, 8, 22, 0.06);
}

.document-card h3,
.document-card-title {
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid #1855ff;
  font-size: 1rem;
  line-height: 1.3;
}

.document-card-title {
  color: #111827;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.3;
}

.document-section-title {
  max-width: 850px;
  margin: 0 0 22px;
  color: #111827;
  font-size: clamp(2rem, 3.5vw, 2.4rem);
  font-weight: 750;
  line-height: 1.14;
}

.document-card p:last-child {
  margin-bottom: 0;
}

.document-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.document-chips span {
  border: 1px solid rgba(91, 130, 255, 0.45);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(91, 130, 255, 0.1);
}

.contact-form-section .document-lead-panel {
  margin-inline: auto;
}

.main-nav .nav-current {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #fff;
  font-weight: 750;
  box-shadow: inset 0 -2px #5b82ff;
}

.no-document-image {
  background: linear-gradient(125deg, #050816 0%, #071326 55%, #0d44ff 150%);
}

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

.directory-card {
  display: flex;
  min-width: 0;
  min-height: 138px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  background: #fff;
  color: #111827;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(5, 8, 22, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.directory-card:hover,
.directory-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(5, 8, 22, 0.11);
}

.directory-card span {
  color: #0d44ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-card strong {
  overflow-wrap: anywhere;
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .document-hero .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .document-lead-panel {
    max-width: none;
  }
}

@media (max-width: 980px) {
  .document-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .document-lead-panel .form-grid,
  .document-card-grid,
  .directory-grid {
    grid-template-columns: 1fr;
  }

  .document-lead-panel .form-span {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .document-section {
    padding-block: 58px;
  }
}

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

@media (max-width: 760px) {
  .topbar {
    display: flex;
    padding: 7px 20px;
    font-size: 11px;
  }

  .topbar a,
  .branch-label em {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 8px 8px;
  }

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

  .brand img {
    width: 118px;
  }

  .footer-logo {
    width: 118px;
  }

  .service-aside .section-media {
    min-height: 220px;
    height: 220px;
  }

  .brand span {
    font-size: 14px;
  }

  .hero-inner {
    padding: 54px 20px;
  }

  .hero {
    background-image:
      linear-gradient(90deg, rgba(5, 8, 22, 0.98), rgba(5, 8, 22, 0.9) 58%, rgba(5, 8, 22, 0.58)),
      radial-gradient(circle at 78% 18%, rgba(24, 85, 255, 0.24), transparent 28%),
      radial-gradient(circle at 58% 78%, rgba(255, 255, 255, 0.08), transparent 34%),
      var(--hero-image);
    background-position: center, 78% 18%, 58% 78%, 70% center;
  }

  .hero::after {
    width: 100%;
    opacity: .18;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-copy,
  .page-hero p {
    font-size: 15px;
    line-height: 1.625;
  }

  .section {
    padding: 58px 20px;
  }

  .section-head h2,
  .cta-band h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .eyebrow {
    letter-spacing: 0;
    font-size: 10px;
  }

  .process-number {
    font-size: 34px;
  }

  .grid.cols-2,
  .trust-strip,
  .support-service,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .nav-group summary {
    justify-content: space-between;
  }

  .nav-menu {
    position: static;
    display: grid;
    width: auto;
    padding: 4px 0 8px 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-menu-wide {
    grid-template-columns: 1fr;
  }

  .nav-group:not([open]) .nav-menu {
    display: none;
  }

  .service-feature-media img {
    min-height: 260px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  .hero,
  .hero-inner {
    max-width: 100vw;
  }

  .hero-inner > div:first-child,
  .hero-actions,
  .trust-strip,
  .lead-panel {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .hero-copy {
    max-width: calc(100vw - 40px);
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    padding-right: 16px;
    padding-left: 16px;
  }

  .lead-panel {
    max-width: calc(100vw - 40px);
  }
  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero .eyebrow {
    display: block;
    overflow-wrap: anywhere;
  }

  .hero .eyebrow::before {
    display: block;
    margin-bottom: 8px;
  }
}


.stats-section,
.commercial-depth,
.home-faq-section,
.trusted-technologies {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stat-card {
  min-height: 136px;
  padding: 22px;
  border: 1px solid rgba(58, 107, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)), rgba(10, 23, 48, 0.72);
}

.stat-card h3,
.stat-card span {
  display: block;
}

.stat-card h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.stat-card span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.55;
}

.area-pills,
.technology-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.area-pills span,
.technology-grid span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 9px 12px;
  color: #fff;
  border: 1px solid rgba(58, 107, 255, 0.26);
  border-radius: 6px;
  background: rgba(10, 23, 48, 0.72);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.area-pill-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--brand-bright);
}

.area-pill-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.coverage-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 10px 20px;
  list-style: none;
  border: 1px solid rgba(58, 107, 255, 0.3);
  border-radius: 8px;
  background: rgba(10, 23, 48, 0.62);
}

.coverage-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 74px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(58, 107, 255, 0.34);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

.coverage-list li:last-child {
  border-bottom: 0;
}

.coverage-icon {
  width: 38px;
  height: 38px;
  margin: 0;
}

.commercial-depth .split {
  align-items: start;
}

.commercial-depth .list {
  padding: 26px;
  border: 1px solid rgba(58, 107, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)), rgba(10, 23, 48, 0.72);
}

.technology-grid {
  justify-content: center;
}

.technology-grid span {
  min-width: 126px;
  justify-content: center;
  font-size: 14px;
}

.faq-list-two {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-faq-logo {
  width: 190px;
  height: auto;
  margin: 0 auto 24px;
}

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

.faq-card {
  min-height: 276px;
}

.faq-card summary {
  align-items: flex-start;
  min-height: 0;
  padding: 22px 22px 12px;
}

.faq-card summary h3 {
  font-size: 15px;
  line-height: 1.35;
}

.faq-card .faq-toggle {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
}

.faq-card .faq-answer {
  padding: 0 22px 22px;
}

.faq-card .faq-answer p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

.process-section .wrap {
  max-width: 1488px;
}

.process-section .section-head {
  max-width: 1180px;
}

.process-section .process {
  gap: 28px;
}

.process .proof-card {
  position: relative;
  min-height: 245px;
  padding: 28px;
}

.process .proof-card::before {
  content: none;
}

.process-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  column-gap: 20px;
  row-gap: 18px;
}

.process-number {
  display: block;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: var(--brand);
  font-size: 40px;
  font-weight: 650;
  line-height: 1;
}

.process-icon {
  width: 64px;
  height: 64px;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
}

.process-icon svg {
  stroke-width: 1.15;
}

.process-card h3 {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(58, 107, 255, 0.34);
}

.process-card p {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0;
}

@media (max-width: 980px) {
  .stats-grid,
  .faq-list-two,
  .faq-grid,
  .internal-link-groups {
    grid-template-columns: 1fr;
  }
}
