@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: #5b82ff;
  --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: #b7791f;
  --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 !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.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 {
  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 {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
  transition: color .2s ease;
}

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

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

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

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

.brand span {
  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 > .nav-parent-link {
  min-height: 0;
  padding: 0;
  color: inherit;
  border-radius: 0;
  background: transparent;
}

.nav-group summary > .nav-parent-link:hover,
.nav-group summary > .nav-parent-link.active {
  color: inherit;
  background: transparent;
}

.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.84) 42%, rgba(5, 8, 22, 0.52) 68%, rgba(5, 8, 22, 0.28)),
    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, auto 92%;
  background-position: center, 78% 18%, 58% 78%, right 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-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;
}

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

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

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

.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: clamp(34px, 4.8vw, 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;
}

.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 {
  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 {
  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,
.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: .22em;
  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;
}

.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: 16 / 9;
  min-height: 164px;
  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 {
  padding: 22px;
}

.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;
}

.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: clamp(22px, 3vw, 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;
}

.source-page-hero .page-hero-grid { align-items: start; }
.source-page-hero .source-trust-strip {
  grid-column: 1 / -1;
  margin-top: 20px;
}
.source-page-hero .trust-item { min-height: 142px; }
.source-page-hero .trust-item strong { font-size: 16px; }
.source-page-hero .trust-item > span:not(.trust-icon) { font-size: 13px; }
.source-card-section .proof-card { min-height: 100%; }
.source-card-section .card-link { display: inline-flex; margin-top: auto; padding-top: 16px; color: var(--brand); font-weight: 700; }
.source-coverage .section-actions { justify-content: center; }
.source-link-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px 24px; }
.source-link-grid a,
.source-sitemap-links a { display: flex; align-items: center; min-height: 44px; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 650; }
.source-link-grid a::after,
.source-sitemap-links a::after { content: "›"; margin-left: auto; color: var(--brand); font-size: 22px; line-height: 1; }
.source-sitemap-links { display: grid; }
.source-article .article-content { display: grid; gap: 34px; max-width: 920px; }
.source-article .article-content article { padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.source-article .article-content article:last-child { padding-bottom: 0; border-bottom: 0; }
.source-article .article-content p { margin: 14px 0 0; color: var(--muted); line-height: 1.75; }

.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;
}

.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.25fr .95fr .95fr 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: .18em;
  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-contact-list {
  display: grid;
  gap: 2px;
}

.site-footer .footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
  margin: 0;
  padding: 5px 0;
}

.footer-contact-icon {
  display: inline-flex;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  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;
}

.site-footer .footer-contact-copy {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
}

.footer-contact-copy strong,
.footer-license strong {
  color: #fff;
}

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

.footer-license {
  padding: 5px 0 5px 26px;
}

.site-footer .footer-parent-link {
  display: inline;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.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;
}

@media (max-width: 980px) {
  .hero-inner,
  .split,
  .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: clamp(34px, 4.8vw, 54px);
  }

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

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

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

@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;
  }

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

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

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

  .hero h1,
  .page-hero h1 {
    font-size: clamp(34px, 4.8vw, 54px);
  }

  .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: .14em;
  }

  .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: 980px) {
  .source-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .source-link-grid { grid-template-columns: 1fr; }
}

@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: 9vw;
  }
}

/* Document-driven Milenia templates */
img {
  height: auto;
}

.source-approved-hero,
.source-home-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  background-color: var(--navy);
  background-image: linear-gradient(90deg, rgba(5, 8, 22, 0.98) 0%, rgba(5, 8, 22, 0.9) 52%, rgba(5, 8, 22, 0.52) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.source-approved-hero {
  padding: 72px 20px 64px;
}

.source-approved-hero::after,
.source-home-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(13, 68, 255, 0.05), transparent 36%, rgba(5, 8, 22, 0.34));
}

.source-approved-hero-grid,
.source-home-hero .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: start;
  gap: 38px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.source-home-hero .hero-inner {
  padding: 72px 20px 64px;
}

.source-approved-hero-copy,
.source-home-hero .hero-inner > div:first-child {
  min-width: 0;
}

.source-approved-hero-copy h1,
.source-home-hero h1 {
  max-width: 760px;
  margin: 14px 0 20px;
  color: #fff;
  font-size: clamp(42px, 4.1vw, 60px);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.source-approved-hero-copy > p:not(.eyebrow),
.source-home-hero .hero-copy {
  max-width: 760px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.62;
}

.source-approved-hero .breadcrumbs,
.source-home-hero .breadcrumbs {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
}

.source-approved-hero .hero-actions,
.source-home-hero .hero-actions {
  margin-top: 26px;
}

.source-approved-trust,
.source-home-trust {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 34px;
}

.source-approved-hero-grid > .source-approved-trust {
  grid-column: 1 / -1;
}

.source-approved-trust .solution-trust-card,
.source-home-trust .trust-item {
  min-width: 0;
  min-height: 138px;
  padding: 16px 12px;
  border: 1px solid rgba(110, 145, 213, 0.36);
  border-radius: 6px;
  background: rgba(12, 24, 47, 0.68);
}

.source-approved-trust .solution-trust-icon,
.source-home-trust .trust-icon {
  display: flex;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  color: var(--brand-bright);
}

.source-approved-trust svg,
.source-home-trust svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.source-approved-trust strong,
.source-home-trust strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.source-approved-trust .solution-trust-card > span:last-child,
.source-home-trust .trust-item > span:last-child {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.35;
}

.source-approved-hero .lead-panel,
.source-home-hero .lead-panel {
  width: 390px;
  max-width: 100%;
  padding: 22px;
  border: 1px solid rgba(102, 145, 224, 0.56);
  border-radius: 7px;
  background: rgba(22, 39, 70, 0.96);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.source-approved-hero .lead-panel h2,
.source-home-hero .lead-panel h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

.source-approved-hero .lead-panel header p,
.source-home-hero .lead-panel header p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.source-approved-hero .lead-panel header p span,
.source-home-hero .lead-panel header p span {
  color: #75a0ff;
  font-weight: 700;
}

.source-approved-hero .lead-form,
.source-home-hero .lead-form {
  display: grid;
  gap: 10px;
}

.source-approved-hero .field input,
.source-approved-hero .field select,
.source-approved-hero .field textarea,
.source-home-hero .field input,
.source-home-hero .field select,
.source-home-hero .field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(190, 205, 232, 0.25);
  border-radius: 5px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.source-approved-hero .field textarea,
.source-home-hero .field textarea {
  min-height: 78px;
}

.source-approved-hero .lead-submit,
.source-home-hero .lead-submit {
  width: 100%;
  min-height: 48px;
}

.solution-section {
  padding: 84px 20px;
  color: var(--body);
  background: #fff;
}

.solution-section h2,
.source-blog-directory h2,
.source-contact-details h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.solution-section p,
.source-contact-details p {
  font-size: 16px;
  line-height: 1.65;
}

.source-approved-overview-grid,
.source-approved-fit-grid,
.source-approved-coverage-grid,
.source-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 52px;
}

.solution-overview-image,
.source-approved-fit-image,
.source-approved-coverage-grid > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.source-approved-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.source-approved-feature-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid #d9e0ea;
  border-radius: 6px;
  background: #fff;
}

.source-approved-feature-card .solution-feature-icon,
.solution-related-heading .solution-feature-icon {
  display: flex;
  width: 30px;
  height: 30px;
  color: var(--brand);
}

.source-approved-feature-card svg,
.solution-related-heading svg,
.source-contact-icon svg,
.area-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.source-approved-feature-card h3,
.solution-related-card h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.solution-related-card h3 a,
.proof-card-heading h3 a {
  color: inherit;
  text-decoration: none;
}

.solution-related-card h3 a:hover,
.proof-card-heading h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-approved-feature-card p,
.solution-related-card p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
}

.company-card-link,
.proof-card-link,
.source-blog-directory .card-link {
  color: var(--brand);
  font-weight: 700;
}

.source-approved-industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.source-approved-industry-grid .proof-card {
  overflow: hidden;
  padding: 0;
  border-radius: 6px;
}

.source-approved-industry-grid .proof-card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.source-approved-industry-grid .proof-card-body {
  padding: 22px;
}

.source-approved-fit {
  background: var(--soft);
}

.source-approved-fit-grid {
  align-items: start;
}

.solution-fit-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #d9e0ea;
  border-radius: 6px;
  background: #fff;
}

.solution-fit-list li {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 17px 18px;
  border-bottom: 1px solid #e1e6ee;
  color: var(--ink);
}

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

.solution-fit-list li::before {
  display: none;
  content: none;
}

.solution-fit-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.solution-fit-icon svg {
  width: 22px;
  height: 22px;
}

.solution-fit-content {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.source-approved-related {
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid #d8dee8;
}

.source-approved-related .solution-related-head h2 {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 28px;
}

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

.solution-related-card {
  overflow: hidden;
  border: 1px solid #d9e0ea;
  border-radius: 6px;
  background: #fff;
}

.solution-related-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.solution-related-body {
  padding: 22px;
}

.solution-related-heading {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.source-approved-coverage-grid {
  align-items: start;
}

.source-approved-coverage .coverage-subtitle {
  margin: 38px 0 16px;
  color: var(--ink);
  font-size: 20px;
}

.solution-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-area-grid li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid #d3dce9;
  border-radius: 5px;
  color: var(--ink);
}

.solution-area-grid .area-icon {
  display: flex;
  width: 19px;
  height: 19px;
  color: var(--brand);
}

.source-approved-coverage .section-actions {
  margin-top: 26px;
}

.source-approved-faq {
  padding: 84px 20px;
  color: #fff;
  background: var(--navy-800);
}

.source-approved-faq .section-head h2 {
  color: #fff;
}

.source-approved-faq .faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.source-approved-faq .faq-item {
  align-self: start;
  border: 1px solid rgba(102, 145, 224, 0.32);
  border-radius: 6px;
  background: rgba(22, 39, 70, 0.64);
}

.source-approved-faq .faq-item summary {
  min-height: 64px;
  padding: 18px 20px;
}

.source-approved-faq .faq-item summary h3 {
  color: #fff;
  font-size: 16px;
}

.source-approved-faq .faq-answer {
  padding: 0 20px 20px;
}

.source-approved-faq .faq-answer p {
  color: rgba(255, 255, 255, 0.75);
}

.source-home-service-overview,
.source-home-fit,
.source-home-industries,
.source-home-coverage {
  color: #fff;
  background: var(--navy-800);
}

.source-home-service-overview + .source-home-fit,
.source-home-fit + .source-home-industries,
.source-home-industries + .source-home-coverage {
  border-top: 1px solid rgba(102, 145, 224, 0.18);
}

.source-home-service-layout,
.source-home-fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 52px;
}

.source-home-service-overview h2,
.source-home-fit h2,
.source-home-industries h2,
.source-home-coverage h2 {
  color: #fff;
}

.source-home-service-overview p,
.source-home-fit p,
.source-home-coverage p {
  color: rgba(255, 255, 255, 0.75);
}

.source-home-service-list {
  display: grid;
  border: 1px solid rgba(102, 145, 224, 0.34);
  border-radius: 6px;
  background: rgba(14, 29, 56, 0.64);
}

.source-home-service-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(102, 145, 224, 0.25);
}

.source-home-service-row:last-child {
  border-bottom: 0;
}

.source-home-service-row .service-icon {
  display: flex;
  width: 30px;
  height: 30px;
  color: var(--brand-bright);
}

.source-home-service-row svg,
.source-home-industry-card svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.source-home-service-copy {
  display: grid;
  gap: 4px;
}

.source-home-service-copy strong {
  color: #fff;
  font-size: 16px;
}

.source-home-service-copy em,
.source-home-service-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  line-height: 1.4;
}

.source-home-service-copy small,
.source-home-service-arrow {
  color: #5f8cff;
  font-weight: 700;
}

.source-home-fit .local-fit-list {
  margin: 0;
}

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

.source-home-industry-card {
  overflow: hidden;
  padding: 0 0 22px;
  border-color: rgba(102, 145, 224, 0.34);
  background: rgba(22, 39, 70, 0.66);
}

.source-home-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.source-home-industry-card .proof-card-heading,
.source-home-industry-card > p,
.source-home-industry-card > a {
  margin-right: 20px;
  margin-left: 20px;
}

.source-home-industry-card .proof-card-heading {
  margin-top: 20px;
}

.source-home-industry-card h3 {
  color: #fff;
}

.source-home-industry-card p {
  color: rgba(255, 255, 255, 0.72);
}

.source-home-industry-card .proof-icon {
  color: var(--brand-bright);
}

.source-home-copy-section {
  max-width: 980px;
}

.source-home-coverage h3 {
  margin-top: 28px;
  color: #fff;
}

.source-home-coverage .area-pills span {
  color: #fff;
  border-color: rgba(102, 145, 224, 0.42);
  background: rgba(14, 29, 56, 0.64);
}

.source-home-coverage .area-pill-icon {
  color: var(--brand-bright);
}

.home-faq-logo {
  width: 148px;
  margin: 0 auto 18px;
}

.source-blog-directory,
.source-contact-details,
.source-sitemap {
  padding: 84px 20px;
  background: #fff;
}

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

.source-blog-directory .blog-card {
  overflow: hidden;
  border: 1px solid #d9e0ea;
  border-radius: 6px;
  background: #fff;
}

.source-blog-directory .blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.source-blog-directory .blog-card .body {
  padding: 20px;
}

.source-blog-directory .blog-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 18px;
}

.source-contact-layout {
  align-items: start;
}

.source-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.source-contact-nap {
  display: grid;
  padding: 10px 24px;
  border: 1px solid #d9e0ea;
  border-radius: 6px;
  background: var(--soft);
  font-style: normal;
}

.source-contact-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #d9e0ea;
}

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

.source-contact-row > span:last-child {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.source-contact-row strong {
  color: var(--ink);
}

.source-contact-row > span:last-child > span {
  overflow-wrap: anywhere;
}

.source-contact-icon {
  display: flex;
  width: 24px;
  height: 24px;
  color: var(--brand);
}

.source-article .article-content {
  max-width: 920px;
}

.source-article .article-content section {
  padding: 26px 0;
  border-bottom: 1px solid #dfe4ec;
}

.source-article .article-content h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.18;
}

@media (max-width: 1100px) {
  .source-approved-hero-grid,
  .source-home-hero .hero-inner {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .source-approved-trust,
  .source-home-trust,
  .source-approved-feature-grid,
  .source-home-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .source-approved-hero-grid,
  .source-home-hero .hero-inner,
  .source-approved-overview-grid,
  .source-approved-fit-grid,
  .source-approved-coverage-grid,
  .source-contact-layout,
  .source-home-service-layout,
  .source-home-fit-layout {
    grid-template-columns: 1fr;
  }

  .source-approved-hero .lead-panel,
  .source-home-hero .lead-panel {
    width: min(100%, 560px);
  }

  .source-approved-industry-grid,
  .solution-related-grid,
  .solution-area-grid,
  .source-blog-directory .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .source-approved-hero,
  .source-home-hero .hero-inner,
  .solution-section,
  .source-approved-faq,
  .source-blog-directory,
  .source-contact-details {
    padding: 54px 20px;
  }

  .source-approved-hero-copy h1,
  .source-home-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .source-approved-trust,
  .source-home-trust,
  .source-approved-feature-grid,
  .source-approved-industry-grid,
  .solution-related-grid,
  .solution-area-grid,
  .source-blog-directory .grid,
  .source-home-industry-grid,
  .source-approved-faq .faq-list {
    grid-template-columns: 1fr;
  }

  .source-approved-trust .solution-trust-card,
  .source-home-trust .trust-item {
    min-height: 0;
  }

  .source-approved-feature-card {
    min-height: 0;
  }

  .source-approved-hero .lead-panel,
  .source-home-hero .lead-panel {
    width: 100%;
    padding: 18px;
  }

  .source-contact-actions {
    flex-direction: column;
  }

  .source-contact-actions .btn {
    width: 100%;
  }
}


.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;
  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;
}

.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));
}

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

/* Client-approved Tampa Cameras Installation home alignment. */
h1,
h2,
h3,
.eyebrow,
.site-footer h2 {
  letter-spacing: 0;
}

.topbar,
.nav-wrap,
.hero-inner {
  max-width: var(--max);
}

.topbar {
  min-height: 0;
  padding: 7px 20px;
  font-size: 11px;
}

.branch-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-wrap {
  min-height: 88px;
  padding: 0 20px;
}

.brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.brand img {
  width: 148px;
}

.brand-subtitle {
  color: #7da3ff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

.main-nav {
  gap: 2px;
  font-size: 12.5px;
}

.main-nav a,
.nav-group summary {
  min-height: 40px;
  padding: 8px 10px;
}

.main-nav .nav-cta {
  min-width: 0;
  justify-content: center;
  padding-right: 22px;
  padding-left: 22px;
}

.hero,
.hero-inner {
  min-height: 680px;
}

.hero {
  background-image:
    linear-gradient(90deg, rgba(5, 8, 22, 0.98), rgba(5, 8, 22, 0.86) 42%, rgba(5, 8, 22, 0.3) 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;
}

.hero::before {
  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%);
}

.hero-inner {
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 44px;
  align-items: center;
  padding: 78px 20px;
}

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

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

.hero h1 {
  max-width: 820px;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.08;
}

.hero-copy {
  max-width: 600px;
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.625;
}

.hero .lead-panel {
  transform: none;
}

.hero-actions {
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .btn {
  min-height: 58px;
  min-width: 258px;
  font-size: 16px;
}

.trust-strip {
  max-width: 840px;
  gap: 16px;
  margin-top: 30px;
}

.trust-item {
  min-height: 178px;
  gap: 6px;
  padding: 16px;
  border-color: rgba(58, 107, 255, 0.26);
  background: rgba(10, 23, 48, 0.58);
}

.trust-item strong {
  font-size: 15px;
}

.trust-item > span:not(.trust-icon) {
  font-size: 12px;
  line-height: 1.35;
}

.lead-panel {
  width: 100%;
  max-width: 420px;
  border-color: rgba(58, 107, 255, 0.72);
  background: rgba(10, 23, 48, 0.84);
  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);
}

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

.lead-panel h2 {
  font-size: 23px;
}

.lead-panel p {
  font-size: 15px;
}

.lead-form {
  gap: 10px;
  padding: 20px 24px 24px;
}

.field input,
.field select,
.field textarea {
  min-height: 50px;
  padding: 12px 14px;
  font-size: 15px;
}

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

.field-icon {
  left: 15px;
  width: 22px;
  height: 22px;
}

.field-icon svg {
  width: 22px;
  height: 22px;
}

.field textarea {
  min-height: 120px;
}

.lead-submit {
  min-height: 58px;
  font-size: 16px;
}

.section {
  padding: 82px 20px;
  content-visibility: visible;
  contain-intrinsic-size: none;
}

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

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

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

.home-services .wrap,
#tampa-areas .wrap,
.use-cases .wrap {
  max-width: var(--max);
}

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

.home-services .section-head {
  max-width: 790px;
}

.service-overview {
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .85fr);
  gap: 18px;
}

.service-feature,
.support-services,
.internal-link-group,
.coverage-list,
.section.dark .proof-card,
.section.dark .faq-item {
  border-color: rgba(58, 107, 255, 0.22);
}

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

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

.service-feature-body {
  padding: 32px;
}

.service-feature h3,
.support-services h3 {
  font-size: 24px;
}

.support-services {
  padding: 28px;
}

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

.support-service {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
}

.support-service strong {
  font-size: 16px;
}

.support-service em {
  font-size: 14px;
}

.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-style: solid;
  border-width: 1px;
  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: 16px;
  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: 38px;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

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

.commercial-depth .wrap,
.branch-section .wrap {
  max-width: var(--max);
}

.commercial-depth .split {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 44px;
  align-items: start;
}

.commercial-depth .split > div > p:not(.eyebrow),
.branch-section .split > div > p:not(.eyebrow),
.branch-section .list li {
  font-size: 16px;
  line-height: 1.55;
}

.commercial-depth .split > div > p:not(.eyebrow) {
  margin: 16px 0 0;
}

.commercial-feature-list {
  align-self: start;
}

.commercial-feature-list li {
  grid-template-columns: 12px minmax(0, 1fr);
  min-height: 82px;
}

.coverage-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-bright);
}

.branch-section .split {
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1.1fr);
  gap: 44px;
  align-items: start;
}

.branch-section .split img {
  height: 480px;
  min-height: 0;
}

.license-panel {
  margin-top: 20px;
  padding: 18px;
  border-color: rgba(58, 107, 255, 0.22);
}

.branch-section .list {
  gap: 9px;
  margin-top: 18px;
}

#tampa-areas .split {
  grid-template-columns: minmax(0, 1.3fr) minmax(390px, .9fr);
  gap: 44px;
  align-items: start;
}

#tampa-areas .split > div > p:not(.eyebrow) {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.55;
}

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

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

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

.coverage-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  color: var(--brand-bright);
}

.coverage-icon svg,
.process-icon svg,
.area-pill-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

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

.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 {
  grid-column: 1;
  grid-row: 1;
  color: var(--brand);
  font-size: 40px;
  font-weight: 650;
  line-height: 1;
}

.process-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  color: var(--brand-bright);
}

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

.process-card p {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.use-cases .section-head {
  max-width: 790px;
}

.use-cases .grid {
  column-gap: 18px;
  row-gap: 18px;
}

.use-cases .proof-card-media {
  aspect-ratio: 2.42 / 1;
}

.proof-card-with-media {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.proof-card-media {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  border-bottom: 1px solid rgba(58, 107, 255, 0.18);
}

.proof-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.proof-card-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.proof-card-heading .proof-icon {
  width: 44px;
  height: 44px;
  margin: 0;
}

.proof-card-heading h3 {
  font-size: 20px;
}

.proof-card-with-media .proof-card-body > p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.proof-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--brand-bright);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.home-faq-section .wrap {
  max-width: var(--max);
}

.home-faq-logo {
  width: 190px;
  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: 220px;
}

.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 {
  font-size: 14px;
  line-height: 1.5;
}

.trusted-technologies .wrap {
  max-width: var(--max);
}

.technology-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.technology-grid > span {
  display: inline-flex;
  min-width: 140px;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  color: #fff;
  border: 1px solid rgba(58, 107, 255, 0.46);
  border-radius: 6px;
  background: rgba(10, 23, 48, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.trusted-technologies + .section .wrap {
  max-width: var(--max);
}

.cta-band {
  padding: 34px;
}

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

.contact-copy {
  max-width: 690px;
}

.contact-detail-list {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-detail-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 15px 0;
  color: var(--body);
  border-bottom: 1px solid var(--line);
}

a.contact-detail-row:hover {
  color: var(--brand-dark);
}

.contact-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--brand);
  background: rgba(13, 68, 255, 0.08);
  border-radius: 6px;
}

.contact-detail-icon svg {
  width: 19px;
  height: 19px;
}

.contact-detail-row address,
.contact-detail-row > span:last-child:not(.contact-email-copy) {
  display: grid;
  gap: 2px;
  min-width: 0;
  margin: 0;
  font-style: normal;
}

.contact-detail-row strong {
  color: var(--ink);
  font-size: 13px;
}

.contact-email-copy {
  display: flex;
  align-items: baseline;
  gap: 7px;
  min-width: 0;
  white-space: nowrap;
}

.contact-parent {
  margin-top: 22px;
}

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

.contact-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-grid,
.footer-bottom {
  max-width: var(--max);
}

.footer-grid {
  grid-template-columns: 1.25fr .95fr .95fr 1.25fr;
  padding: 58px 20px 36px;
}

.footer-logo {
  width: 148px;
}

.site-footer h2 {
  color: var(--brand-bright);
  font-size: 12px;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  font-size: 13px;
  line-height: 1.625;
}

@media (max-width: 1180px) {
  .topbar,
  .nav-wrap {
    padding-right: 24px;
    padding-left: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    right: 20px;
    left: 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;
  }

  .main-nav .nav-cta {
    min-width: 0;
  }

  .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-group:not([open]) .nav-menu {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner,
  .page-hero-grid,
  .service-overview,
  .service-feature,
  .commercial-depth .split,
  .branch-section .split,
  #tampa-areas .split,
  .internal-link-groups,
  .process-section .process,
  .use-cases .grid,
  .faq-grid,
  .footer-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 36px;
    padding: 64px 24px;
  }

  .hero-inner > div:first-child,
  .page-hero .lead-panel,
  .lead-panel {
    max-width: 720px;
  }

  .page-hero .lead-panel {
    justify-self: stretch;
  }

  .hero .lead-panel {
    transform: none;
  }

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

  .trust-item {
    min-height: 150px;
  }

  .service-feature,
  .internal-link-groups,
  .process-section .process,
  .use-cases .grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-feature-media img,
  .branch-section .split img {
    min-height: 360px;
    height: 100%;
  }

  .commercial-depth .split,
  .branch-section .split,
  #tampa-areas .split,
  .contact-layout {
    gap: 44px;
  }
}

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

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

  .nav-wrap {
    min-height: 76px;
    padding: 0 20px;
  }

  .brand img {
    width: 118px;
  }

  .footer-logo {
    width: 118px;
  }

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

  .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-inner {
    padding: 54px 20px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

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

  .hero-actions .btn {
    min-height: 50px;
    min-width: 0;
  }

  .section {
    padding: 58px 20px;
  }

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

  .service-feature,
  .internal-link-groups,
  .process-section .process,
  .use-cases .grid,
  .faq-grid,
  .trust-strip,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .support-service {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .process .proof-card {
    min-height: 0;
  }

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

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

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(34px, 10.5vw, 44px);
  }

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

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

  .service-feature-body,
  .support-services,
  .proof-card-body,
  .process .proof-card,
  .cta-band {
    padding: 22px;
  }

  .proof-card-heading {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .proof-card-heading .proof-icon {
    width: 38px;
    height: 38px;
  }

  .footer-grid {
    padding-top: 42px;
    padding-bottom: 28px;
  }

  .contact-detail-row {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 9px;
  }

  .contact-detail-icon {
    width: 20px;
    height: 20px;
    background: transparent;
  }

  .contact-detail-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-email-copy {
    gap: 5px;
    font-size: 12px;
  }

  .footer-email-row .footer-contact-copy {
    font-size: 12px;
  }
}

/* Approved five-column footer */
.brand img {
  width: 168px;
  height: auto;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #040817;
  border-top: 1px solid rgba(102, 145, 224, 0.18);
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 62px 24px 44px;
}

.site-footer .footer-grid > * {
  position: relative;
  min-width: 0;
  padding: 0 24px;
}

.site-footer .footer-grid > :first-child {
  padding-left: 0;
}

.site-footer .footer-grid > :last-child {
  padding-right: 0;
}

.site-footer .footer-grid > * + *::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.08);
}

.site-footer .footer-logo {
  width: 168px;
  height: auto;
  margin: 0 0 22px;
  object-fit: contain;
}

.site-footer h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer .footer-column > a,
.site-footer .footer-company-links a {
  display: flex;
  align-items: center;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.35;
}

.site-footer .footer-current-page {
  display: flex;
  align-items: center;
  min-height: 34px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.site-footer .footer-branch-column p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.site-footer .footer-column > a::after {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.42);
  content: "›";
  font-size: 17px;
}

.site-footer .footer-brand-column > p {
  margin: 0 0 22px;
  font-size: 12px;
  line-height: 1.65;
}

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

.site-footer .footer-contact-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.site-footer .footer-contact-row p {
  margin: 0;
}

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

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

.site-footer .footer-contact-copy,
.site-footer .footer-contact-copy span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-footer .footer-license {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.site-footer .footer-company-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 14px;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.site-footer .footer-parent-link {
  color: #75a0ff;
}

/* Tampa revision 2: frozen four-page handoff. */
.rev2-hero {
  background-size: auto, auto, cover;
  background-position: center, 78% 18%, center;
}

.rev2-hero .page-hero-grid {
  align-items: start;
  column-gap: 48px;
}

.rev2-hero .page-hero-copy {
  padding-top: 20px;
}

.rev2-breadcrumb {
  display: block;
}

.rev2-hero .rev2-trust-strip {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  margin-top: 2px;
}

.rev2-hero .rev2-trust-strip .trust-item {
  min-height: 154px;
}

.rev2-lead-panel {
  max-width: 500px;
}

.rev2-form-microcopy {
  margin: 2px 0 0 !important;
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: 11px !important;
}

.rev2-form-step {
  margin: 8px 0 2px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
}

.rev2-form-step:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.rev2-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.45;
}

.rev2-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--brand-bright);
}

.rev2-file-field {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.rev2-file-field input {
  min-height: 0;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
}

.rev2-file-field small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.4;
}

.rev2-content-section .section-head {
  max-width: 960px;
}

.rev2-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 52px;
  align-items: center;
}

.rev2-section-grid .rev2-card-grid {
  grid-column: 1 / -1;
}

.rev2-section-media {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(102, 145, 224, 0.28);
  border-radius: 6px;
}

.rev2-section-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rev2-card-grid .proof-card {
  height: 100%;
}

.rev2-link-groups .internal-link-cards {
  align-items: stretch;
}

.rev2-link-groups .internal-link-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(83, 132, 255, 0.32);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)), rgba(10, 23, 48, 0.78);
}

.rev2-link-groups .internal-card-title {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.rev2-link-groups .internal-card-title > span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  color: var(--brand-bright);
}

.rev2-link-groups .internal-card-title svg {
  width: 100%;
  height: 100%;
}

.rev2-link-groups .internal-card-title h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.rev2-link-groups .internal-link-card nav {
  display: grid;
  align-content: start;
  margin-top: 10px;
}

.rev2-link-groups .internal-link-card nav > a,
.rev2-link-groups .internal-link-card nav > .rev2-current-link {
  display: flex;
  min-width: 0;
  min-height: 48px;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 13px;
  line-height: 1.35;
}

.rev2-link-groups .internal-link-card nav > a {
  color: #fff;
  transition: color .2s ease, padding-left .2s ease;
}

.rev2-link-groups .internal-link-card nav > a:hover {
  padding-left: 4px;
  color: var(--brand-bright);
}

.rev2-link-groups .internal-link-card nav > a i {
  flex: 0 0 auto;
  color: var(--brand-bright);
  font-size: 20px;
  font-style: normal;
  line-height: 1;
}

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

.nav-menu-information > span {
  display: grid;
  gap: 4px;
  padding: 11px 14px;
  color: #fff;
}

.nav-menu-information small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

@media (max-width: 980px) {
  .rev2-section-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .rev2-hero .page-hero-copy {
    padding-top: 0;
  }

  .rev2-hero .rev2-trust-strip,
  .rev2-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .rev2-hero .rev2-trust-strip .trust-item {
    min-height: 0;
  }
}

@media (max-width: 1100px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 42px;
  }

  .site-footer .footer-grid > * {
    padding: 0 20px;
  }

  .site-footer .footer-grid > :nth-child(4)::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .brand img {
    width: 136px;
    height: auto;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .site-footer .footer-grid > * {
    padding: 26px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer .footer-grid > :first-child {
    padding-top: 0;
    border-top: 0;
  }

  .site-footer .footer-grid > * + *::before {
    display: none;
  }

  .site-footer .footer-logo {
    width: 136px;
  }

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

/* Keep document-driven hero geometry independent from the legacy page hero. */
.page-hero.source-approved-hero > .wrap {
  padding: 0;
}

@media (max-width: 640px) {
  .page-hero.source-approved-hero {
    padding: 54px 20px;
  }

  .page-hero.source-approved-hero > .wrap,
  .page-hero.source-approved-hero .lead-panel {
    width: 100%;
    max-width: none;
  }
}

/* Orlando Installation Home V2 layout parity - structure only, content remains site-specific. */
.source-home-hero,
.source-home-hero .hero-inner {
  min-height: 760px;
}

.source-home-hero .hero-inner {
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 52px;
  max-width: 1420px;
  padding-top: 68px;
  padding-bottom: 68px;
}

.source-home-hero .hero-copy {
  max-width: 720px;
}

.source-home-hero .source-home-trust {
  max-width: 1060px;
}

.source-home-service-overview > .wrap,
.source-home-fit > .wrap,
.source-home-industries > .wrap,
.source-home-coverage > .wrap,
.source-home-faq > .wrap {
  width: min(100%, 1420px);
  max-width: 1420px;
}

.source-home-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(540px, .98fr);
  gap: 68px;
  align-items: start;
}

.source-home-service-layout > .section-head {
  max-width: 760px;
}

.source-home-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(120, 170, 255, .26);
  border-radius: 8px;
  background: rgba(9, 25, 51, .78);
}

.source-home-service-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  gap: 14px;
  align-items: start;
  min-height: 150px;
  padding: 20px;
  border-right: 0;
  border-bottom: 1px solid rgba(120, 170, 255, .2);
  color: #fff;
  text-decoration: none;
}

.source-home-service-row:nth-child(odd) {
  border-right: 1px solid rgba(120, 170, 255, .2);
}

.source-home-service-row:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.source-home-service-copy {
  display: grid;
  gap: 5px;
}

.source-home-service-copy strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
}

.source-home-service-copy em {
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.source-home-service-copy small,
.source-home-service-arrow {
  color: var(--brand-bright);
}

.source-home-service-kicker {
  color: var(--brand-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.source-home-service-copy small {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
}

.source-home-service-arrow {
  font-size: 24px;
  line-height: 1;
}

.source-home-fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 72px;
  align-items: center;
}

.source-home-fit-layout > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .8);
  line-height: 1.68;
}

.source-home-fit .local-fit-list {
  margin: 0;
  padding: 24px 30px;
  border: 1px solid rgba(120, 170, 255, .25);
  border-radius: 8px;
  background: rgba(9, 25, 51, .74);
}

.source-home-fit .local-fit-list li {
  padding-top: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(120, 170, 255, .18);
}

.source-home-fit .local-fit-list li:last-child {
  border-bottom: 0;
}

.source-home-industry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.source-home-industry-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  padding: 0;
  border-radius: 8px;
  background: rgba(17, 36, 67, .92);
}

.source-home-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
}

.source-home-card-body {
  display: flex;
  min-height: 230px;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.source-home-industry-card > .proof-card-heading,
.source-home-industry-card > p,
.source-home-industry-card > .proof-card-link {
  margin-right: 22px;
  margin-left: 22px;
}

.source-home-industry-card > .proof-card-heading {
  margin-top: 20px;
}

.source-home-industry-card > .proof-card-link {
  margin-bottom: 22px;
}

.source-home-industry-card .proof-card-heading {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.source-home-industry-card .proof-icon {
  width: 32px;
  height: 32px;
}

.source-home-industry-card h3 {
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.source-home-industry-card p {
  color: rgba(255, 255, 255, .77);
  font-size: 14px;
  line-height: 1.55;
}

.source-home-industry-card .proof-card-link {
  margin-top: auto;
}

.source-home-coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: 72px;
  align-items: center;
}

.source-home-coverage-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .8);
  line-height: 1.68;
}

.source-home-area-panel {
  padding: 30px;
  border: 1px solid rgba(120, 170, 255, .26);
  border-radius: 8px;
  background: rgba(9, 25, 51, .76);
}

.source-home-area-panel h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 18px;
}

.source-home-area-panel .area-pills {
  margin-top: 0;
}

.source-home-area-panel .area-pills span {
  background: rgba(7, 21, 43, .78);
}

.source-home-faq .faq-grid,
.home-faq-section .faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.source-home-faq .faq-item,
.source-home-faq .faq-card,
.home-faq-section .faq-item,
.home-faq-section .faq-card {
  min-height: 0;
  height: auto;
}

@media (max-width: 1100px) {
  .source-home-hero,
  .source-home-hero .hero-inner {
    min-height: auto;
  }

  .source-home-hero .hero-inner,
  .source-home-service-layout,
  .source-home-fit-layout,
  .source-home-coverage-grid {
    grid-template-columns: 1fr;
  }

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

  .source-home-hero .hero-inner,
  .source-home-service-layout,
  .source-home-fit-layout,
  .source-home-coverage-grid {
    gap: 38px;
  }
}

@media (max-width: 760px) {
  .source-home-hero .hero-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .source-home-service-list,
  .source-home-industry-grid,
  .source-home-faq .faq-grid,
  .home-faq-section .faq-grid {
    grid-template-columns: 1fr;
  }

  .source-home-service-row {
    min-height: 0;
  }

  .source-home-service-row:nth-child(odd) {
    border-right: 0;
  }

  .source-home-service-row:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(120, 170, 255, .2);
  }

  .source-home-service-row:last-child {
    border-bottom: 0;
  }

  .source-home-card-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .source-home-card-body {
    min-height: 0;
  }

  .source-home-area-panel {
    padding: 22px;
  }
}

/* Orlando Installation Home V2 parity. Keep this block scoped to the approved home template. */
.home-services,
.branch-section,
.use-cases,
.commercial-depth,
.home-faq-section,
.trusted-technologies {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-v2-hero,
.home-v2-hero .hero-inner {
  min-height: 760px;
}

.home-v2-hero .hero-inner {
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 52px;
  max-width: 1420px;
  padding-top: 68px;
  padding-bottom: 68px;
}

.home-v2-hero .hero-copy {
  max-width: 720px;
}

.home-v2-hero .trust-strip {
  max-width: 1060px;
}

.home-v2-hero .hero-copy + .hero-copy {
  margin-top: 12px;
}

.home-v2-service-overview .section-head,
.home-v2-solutions .section-head {
  max-width: 960px;
}

.home-v2-service-overview > .wrap,
.home-v2-solutions > .wrap,
.home-coverage-section > .wrap,
.home-process-section > .wrap,
.use-cases > .wrap,
.home-faq-section > .wrap,
.trusted-technologies > .wrap {
  max-width: 1420px;
}

.home-commercial-stack {
  display: grid;
  gap: 74px;
}

.home-camera-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(540px, 0.98fr);
  gap: 68px;
  align-items: start;
}

.home-v2-service-overview .section-head {
  max-width: 1080px;
  margin-bottom: 0;
}

.home-camera-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(120, 170, 255, 0.26);
  border-radius: 8px;
  background: rgba(9, 25, 51, 0.78);
}

.home-camera-service-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  gap: 14px;
  align-items: start;
  min-height: 160px;
  padding: 22px;
  border-bottom: 1px solid rgba(120, 170, 255, 0.2);
  color: #fff;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}

.home-camera-service-row:nth-child(odd) {
  border-right: 1px solid rgba(120, 170, 255, 0.2);
}

.home-camera-service-row:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.home-camera-service-row:hover,
.home-camera-service-row:focus-visible {
  background: rgba(24, 85, 255, 0.1);
}

.home-camera-service-row .service-icon {
  width: 30px;
  height: 30px;
}

.home-camera-service-copy {
  display: grid;
  gap: 5px;
}

.home-service-kicker {
  color: var(--brand-bright);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-camera-service-copy strong {
  font-size: 16px;
  line-height: 1.25;
}

.home-camera-service-copy em {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.home-camera-service-copy small {
  color: var(--brand-bright);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.home-camera-service-arrow {
  color: var(--brand-bright);
  font-size: 24px;
  line-height: 1;
  text-align: right;
}

.home-system-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(430px, .85fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
}

.home-primary-system-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  min-height: 400px;
  overflow: hidden;
  border: 1px solid rgba(120, 170, 255, .28);
  border-radius: 8px;
  background: rgba(9, 25, 51, .76);
}

.home-primary-system-media {
  position: relative;
  margin: 0;
  min-height: 400px;
  overflow: hidden;
}

.home-primary-system-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 58%, rgba(9, 25, 51, .82));
  pointer-events: none;
}

.home-primary-system-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% 55%;
}

.home-primary-system-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 38px;
}

.home-primary-system-copy .service-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
}

.home-primary-system-copy .eyebrow {
  margin-bottom: 14px;
}

.home-primary-system-copy .eyebrow::before,
.home-support-panel > .eyebrow::before {
  display: none;
}

.home-primary-system-copy h2,
.home-primary-system-copy h3 {
  color: #fff;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.12;
}

.home-primary-system-copy > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .8);
  line-height: 1.62;
}

.home-primary-system-copy .btn {
  margin-top: 24px;
}

.home-support-panel {
  padding: 24px 28px;
  border: 1px solid rgba(120, 170, 255, .28);
  border-radius: 8px;
  background: rgba(9, 25, 51, .76);
}

.home-support-panel > .eyebrow {
  margin-bottom: 12px;
}

.home-support-panel > h2,
.home-support-panel > h3 {
  max-width: 420px;
  color: #fff;
  font-size: 27px;
  line-height: 1.14;
}

.home-support-service-list {
  display: grid;
  margin-top: 12px;
}

.home-support-service {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgba(120, 170, 255, .26);
}

.home-support-service .service-icon {
  width: 28px;
  height: 28px;
  margin: 0;
}

.home-support-service h3,
.home-support-service em,
.home-support-service small {
  display: block;
}

.home-support-service h3 {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
}

.home-support-service em {
  margin-top: 3px;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  font-style: normal;
  line-height: 1.38;
}

.home-support-service small {
  margin-top: 5px;
  color: var(--brand-bright);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.home-v2-solutions .internal-link-groups {
  margin-top: 24px;
}

.home-industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.home-industry-grid > .proof-card {
  height: 100%;
}

.home-coverage-section {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.home-coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: 72px;
  align-items: center;
}

.home-coverage-copy h2,
.home-branch-copy h2 {
  color: #fff;
  font-size: clamp(34px, 3.3vw, 48px);
  line-height: 1.1;
}

.home-coverage-copy > p,
.home-branch-copy > p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
  line-height: 1.68;
}

.home-coverage-copy .coverage-subtitle {
  margin-top: 25px;
  color: #fff;
  font-size: 15px;
}

.home-coverage-list {
  align-self: stretch;
  justify-content: center;
  padding: 12px 28px;
  background: rgba(9, 25, 51, .76);
}

.home-coverage-list li {
  grid-template-columns: 48px minmax(0, 1fr);
  min-height: 90px;
  padding: 18px 0;
  font-size: 15px;
}

.home-coverage-list .coverage-icon {
  width: 42px;
  height: 42px;
}

.home-branch-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  gap: 66px;
  align-items: stretch;
  padding-top: 70px;
  border-top: 1px solid rgba(120, 170, 255, 0.18);
}

.home-branch-points {
  max-width: 760px;
}

.home-branch-media {
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(120, 170, 255, .28);
  border-radius: 8px;
  background: var(--navy-800);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .3);
}

.home-branch-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
}

.home-process-section {
  padding-top: 58px;
  border-top: 1px solid rgba(120, 170, 255, .18);
}

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

.home-faq-section .faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.home-faq-section .faq-card {
  height: auto;
  min-height: 92px;
  background: rgba(10, 23, 48, .76);
}

.home-faq-section .faq-card:not([open]) {
  height: 92px;
}

.home-faq-section .faq-card summary {
  min-height: 92px;
  align-items: center;
}

.trusted-technologies .technology-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.trusted-technologies .technology-grid > span {
  grid-column: span 2;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  box-sizing: border-box;
}

.trusted-technologies .technology-grid > span:nth-child(7) {
  grid-column: 2 / span 2;
}

@media (max-width: 1100px) {
  .home-camera-service-layout,
  .home-v2-hero .hero-inner,
  .home-branch-showcase,
  .home-system-showcase,
  .home-coverage-grid {
    grid-template-columns: 1fr;
  }

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

  .home-v2-hero .hero-inner {
    gap: 36px;
  }

  .home-camera-service-layout {
    gap: 28px;
  }

  .home-branch-showcase,
  .home-coverage-grid {
    gap: 38px;
  }

  .home-branch-media {
    min-height: 390px;
  }

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

  .trusted-technologies .technology-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .trusted-technologies .technology-grid > span:nth-child(7) {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .home-v2-hero .hero-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .home-camera-service-list,
  .home-primary-system-card,
  .home-industry-grid,
  .home-faq-section .faq-grid,
  .home-v2-hero .trust-strip {
    grid-template-columns: 1fr;
  }

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

  .trusted-technologies .technology-grid > span {
    min-height: 58px;
    height: 58px;
  }

  .home-faq-section .faq-card,
  .home-faq-section .faq-card:not([open]),
  .home-faq-section .faq-card summary {
    min-height: 112px;
  }

  .home-faq-section .faq-card:not([open]) {
    height: 112px;
  }

  .home-camera-service-row {
    min-height: 0;
    padding: 20px;
  }

  .home-camera-service-row:nth-child(odd) {
    border-right: 0;
  }

  .home-camera-service-row:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(120, 170, 255, 0.2);
  }

  .home-camera-service-row:last-child {
    border-bottom: 0;
  }

  .home-primary-system-card,
  .home-primary-system-media {
    min-height: 0;
  }

  .home-primary-system-media {
    aspect-ratio: 16 / 10;
  }

  .home-primary-system-media img {
    object-position: 32% center;
  }

  .home-primary-system-media::after {
    background: linear-gradient(180deg, transparent 66%, rgba(9, 25, 51, .72));
  }

  .home-primary-system-copy,
  .home-support-panel {
    padding: 24px;
  }

  .home-branch-showcase {
    padding-top: 50px;
  }

  .home-branch-media {
    min-height: 280px;
  }

  .home-coverage-list {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* Tampa v4.2: Orlando service-page composition, populated exclusively from Tampa handoffs. */
.v42-hero {
  min-height: 790px;
  background-image: linear-gradient(90deg, rgba(2, 8, 21, .99) 0%, rgba(2, 8, 21, .9) 44%, rgba(2, 8, 21, .52) 72%, rgba(2, 8, 21, .38) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.v42-hero .wrap,
.v42-overview-section .wrap,
.v42-fit-section .wrap,
.v42-related-section .wrap,
.v42-process-section .wrap {
  max-width: 1560px;
}

.v42-hero .wrap { padding: 48px 20px 34px; }
.v42-hero .solution-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(400px, 480px); gap: 40px; align-items: center; }
.v42-hero .solution-hero-copy h1 { max-width: 660px; font-size: clamp(46px, 3.8vw, 50px); line-height: 1.1; }
.v42-hero .solution-hero-copy > p,
.v42-hero .solution-hero-copy .hero-actions { max-width: 700px; }
.v42-hero .solution-hero-copy > p { margin-top: 16px; }
.v42-hero .solution-hero-copy .eyebrow { margin-top: 24px; }
.v42-hero .lead-panel { width: 100%; max-width: 480px; justify-self: end; border-color: rgba(31, 155, 255, .72); background: rgba(6, 21, 40, .9); }

.v42-source-ordered-trust .solution-hero-grid { column-gap: 40px; row-gap: 20px; }
.v42-source-ordered-trust .solution-hero-copy { grid-column: 1; grid-row: 1; }
.v42-source-ordered-trust .lead-panel { grid-column: 2; grid-row: 1; align-self: center; }
.v42-source-ordered-trust .solution-trust-grid { grid-column: 1 / -1; grid-row: 2; margin-top: 0; }

.v42-hero .solution-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin-top: 20px;
}

.v42-hero .solution-trust-card {
  display: grid;
  grid-template-rows: 32px auto 1fr;
  gap: 8px;
  min-height: 142px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 6px;
  background: rgba(3, 12, 28, .58);
}

.v42-hero .solution-trust-icon { display: inline-flex; width: 32px; height: 32px; color: var(--brand-bright); }
.v42-hero .solution-trust-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; }
.v42-hero .solution-trust-card strong { display: block; color: #fff; font-size: 13px; line-height: 1.25; }
.v42-hero .solution-trust-card > span:last-child { display: block; color: rgba(255, 255, 255, .78); font-size: 11.5px; line-height: 1.45; }

.v42-overview-section,
.v42-fit-section,
.v42-related-section,
.v42-process-section { padding: 54px 20px; }
.v42-overview-section .solution-overview-grid,
.v42-fit-section .solution-fit-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 66px; align-items: center; }
.v42-overview-section .solution-overview-image { width: 100%; height: 500px; border-radius: 8px; object-fit: cover; }
.v42-overview-media,
.v42-application-media {
  overflow: hidden;
  margin: 0;
  border: 1px solid #cfd9ea;
  border-radius: 8px;
  background: #e8eef7;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .12);
}
.v42-overview-media .solution-overview-image { display: block; border-radius: 0; }
.v42-feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-top: 28px; }
.v42-card-group-head { margin-top: 46px; }
.v42-card-group-head h2,
.v42-application-block > h2 { margin: 0; font-size: 26px; line-height: 1.2; }
.v42-application-block { display: grid; align-self: stretch; align-content: stretch; grid-template-rows: auto minmax(0, 1fr); width: 100%; gap: 22px; }
.v42-service-grid.v42-grid-count-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.v42-process-grid.v42-grid-count-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.v42-feature-grid .solution-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  min-height: 232px;
  padding: 26px;
  border: 1px solid #cfd9ea;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
  align-content: start;
}
.v42-feature-grid .solution-feature-card:hover { border-color: rgba(31, 155, 255, .68); box-shadow: 0 8px 20px rgba(15, 23, 42, .09); transform: translateY(-2px); }
.v42-feature-grid .solution-feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(31, 155, 255, .2);
  border-radius: 10px;
  color: var(--brand-bright);
  background: #eef7ff;
}
.v42-feature-grid .solution-feature-icon svg { width: 25px; height: 25px; }
.v42-feature-grid .solution-feature-card h3 { margin: 1px 0 0; }
.v42-feature-grid .solution-feature-card p { margin-top: 9px; }
.v42-process-grid .solution-feature-card {
  grid-template-columns: 1fr;
  gap: 15px;
  min-height: 248px;
  padding-top: 54px;
}
.v42-process-grid .solution-feature-icon { width: 52px; height: 52px; }
.v42-process-step {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--brand-bright);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}

.v42-fit-section { padding-bottom: 54px; background: #fff; }
.v42-fit-section .solution-fit-grid { align-items: start; }
.v42-application-media { margin-top: 28px; }
.v42-application-media img { display: block; width: 100%; max-height: 340px; aspect-ratio: 16 / 9; object-fit: cover; }
.v42-fit-list { display: grid; grid-auto-rows: minmax(0, 1fr); height: 100%; gap: 18px; }
.v42-fit-list li { display: grid; align-content: center; gap: 14px; }
.v42-fit-list li::before { display: none; content: none; }
.v42-fit-list strong { color: var(--ink); font-size: 15px; line-height: 1.35; }
.v42-fit-list .solution-fit-content > span { color: var(--ink); font-size: 13.5px; line-height: 1.5; }

.v42-related-section .solution-related-block { margin-top: 0; }
.v42-related-section .solution-related-head h2 { margin: 0 0 26px; }
.v42-related-grid.v42-grid-count-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.v42-related-grid .solution-related-card { display: grid; grid-template-columns: minmax(150px, 42%) minmax(0, 1fr); min-height: 238px; padding: 10px; }
.v42-related-grid .solution-related-card > img { width: 100%; height: 100%; min-height: 216px; aspect-ratio: auto; border-radius: 6px; object-fit: cover; }
.v42-related-grid img[data-related-route="/security-camera-installation/"] { object-position: 60% center; }
.v42-related-grid img[data-related-route="/access-control-installation/"] { object-position: 84% center; }
.v42-related-grid img[data-related-route="/ip-video-surveillance/"] { object-position: 38% center; }
.v42-related-grid img[data-related-route="/fiber-optic-installation-system-in-tampa/"] { object-position: 28% center; }
.v42-related-grid img[data-related-route="/industrial-security-solutions/"] { object-position: 85% center; }
.v42-related-grid img[data-related-route="/contact/"] { object-position: 38% center; }
.v42-related-grid .solution-related-body { display: flex; min-width: 0; flex-direction: column; align-items: stretch; padding: 12px 12px 4px 20px; }
.v42-related-grid .solution-related-body .btn { width: 100%; margin-top: auto; }

/* Client review: desktop trust titles and related-card actions remain single-line. */
@media (min-width: 1101px) {
  .v42-hero .solution-trust-card strong {
    white-space: nowrap;
  }

  .v42-hero .solution-trust-grid.v42-grid-count-5 .solution-trust-card {
    padding-right: 8px;
    padding-left: 8px;
  }

  .v42-hero .solution-trust-grid.v42-grid-count-5 .solution-trust-card strong {
    font-size: clamp(8.75px, .78vw, 12.5px) !important;
    letter-spacing: -.02em;
  }

  .v42-related-grid .solution-related-body .btn {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 12px;
    white-space: nowrap;
  }
}

.v42-process-section { background: #fff; }
.v42-process-head h2 { max-width: 760px; }
.v42-final-cta { padding: 56px 20px; color: #fff; background: #031026; }
.v42-final-cta .eyebrow { color: var(--brand-soft); }
.v42-final-cta .wrap { display: flex; max-width: 1280px; gap: 36px; align-items: center; justify-content: space-between; }
.v42-final-cta h2 { max-width: 760px; color: #fff; font-size: 42px; line-height: 1.15; }
.v42-final-cta p:not(.eyebrow) { max-width: 720px; color: rgba(255, 255, 255, .8); }
.v42-final-cta .btn { flex: 0 0 auto; }
.v42-faq-section .solution-faq-wrap { max-width: 1280px; }
.v42-faq-section .solution-faq-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v42-question-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.v42-question-list .proof-card { min-height: 0; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .16); }
.v42-question-list h3 { margin: 0; color: #fff; font-size: 19px; line-height: 1.4; }
.v42-article-toc-section { padding: 46px 20px; background: #f4f7fb; }
.v42-article-toc { max-width: 1120px; padding: 30px; border: 1px solid #dbe3ef; border-radius: 18px; background: #fff; box-shadow: 0 16px 40px rgba(3, 16, 38, .08); }
.v42-article-toc h2 { margin: 0 0 20px; color: var(--ink); }
.v42-article-toc ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 30px; margin: 0; padding-left: 22px; }
.v42-article-toc a { color: var(--ink); font-weight: 700; text-decoration-color: rgba(15, 85, 184, .35); text-underline-offset: 4px; }
.v42-source-article .article-content { max-width: 980px; }
.v42-source-article .v42-article-section { scroll-margin-top: 120px; }
.v42-source-article .v42-article-subsection { margin-left: 34px; padding-left: 24px; border-left: 3px solid #dbe3ef; }
.v42-source-article .v42-article-section h3 { margin: 0 0 12px; color: var(--ink); font-size: 24px; }
.v42-article-list { display: grid; gap: 12px; margin-top: 22px; }
.v42-article-list li { display: grid; gap: 4px; }
.v42-article-list span { color: var(--muted); }

@media (max-width: 1100px) {
  .v42-hero { min-height: auto; }
  .v42-hero .solution-hero-grid,
  .v42-overview-section .solution-overview-grid,
  .v42-fit-section .solution-fit-grid { grid-template-columns: 1fr; }
  .v42-hero .lead-panel { justify-self: stretch; max-width: none; }
  .v42-source-ordered-trust .solution-hero-copy { grid-column: 1; grid-row: 1; }
  .v42-source-ordered-trust .lead-panel { grid-column: 1; grid-row: 2; }
  .v42-source-ordered-trust .solution-trust-grid { grid-column: 1; grid-row: 3; }
  .v42-application-block { align-content: start; grid-template-rows: auto; }
  .v42-fit-list { grid-auto-rows: auto; height: auto; }
  .v42-hero .solution-trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .v42-process-grid.v42-grid-count-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .v42-hero .wrap { padding-top: 34px; padding-bottom: 34px; }
  .v42-hero .solution-hero-copy h1 { max-width: 100%; font-size: clamp(32px, 8.6vw, 38px); line-height: 1.12; }
  .v42-feature-grid .solution-feature-card { min-height: 0; padding: 24px; }
  .v42-process-grid .solution-feature-card { min-height: 224px; padding-top: 52px; }
  .v42-hero .solution-trust-grid,
  .v42-service-grid.v42-grid-count-6,
  .v42-related-grid.v42-grid-count-6,
  .v42-process-grid.v42-grid-count-4 { grid-template-columns: 1fr; }
  .v42-hero .solution-trust-card { min-height: 0; }
  .v42-overview-section .solution-overview-image { height: 260px; }
  .v42-faq-section .solution-faq-list { grid-template-columns: 1fr; }
  .v42-related-grid .solution-related-card { grid-template-columns: 1fr; }
  .v42-related-grid .solution-related-card > img { min-height: 180px; max-height: 220px; }
  .v42-related-grid .solution-related-body { padding: 18px; }
  .v42-final-cta .wrap { align-items: flex-start; flex-direction: column; }
  .v42-final-cta .btn { width: 100%; }
  .v42-article-toc ol { grid-template-columns: 1fr; }
  .v42-question-list { grid-template-columns: 1fr; }
  .v42-source-article .v42-article-subsection { margin-left: 0; padding-left: 18px; }
}

/* Approved route + component-key imagery, placed inside its mapped section. */
.mapped-section-media {
  overflow: hidden;
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 32px auto 0;
  border: 1px solid rgba(120, 170, 255, 0.22);
  border-radius: 10px;
  background: #0b2141;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.mapped-section-media + .mapped-section-media {
  margin-top: 22px;
}

.mapped-section-media img {
  display: block;
  width: 100%;
  max-height: 560px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 600px) {
  .mapped-section-media {
    width: calc(100% - 28px);
    margin-top: 22px;
  }
}

/* Explicitly authorized service-hero sizing adjustment; approved copy remains unchanged. */
.service-hero-standard {
  min-height: 960px;
}

.page-hero.service-hero-standard > .wrap.solution-hero-grid,
.page-hero.service-hero-standard > .wrap.page-hero-grid {
  grid-template-rows: minmax(690px, max-content) minmax(180px, max-content);
  row-gap: 16px;
  width: 100%;
  max-width: 1560px;
  padding-top: 40px;
  padding-bottom: 34px;
}

.service-hero-standard .lead-panel {
  width: 100%;
  max-width: 480px;
}

.service-hero-standard .lead-panel header {
  padding: 16px 20px 0;
}

.service-hero-standard .lead-panel h2 {
  font-size: 20px;
  line-height: 1.2;
}

.service-hero-standard .lead-panel header p {
  margin-top: 4px;
  font-size: 12.5px;
  line-height: 1.35;
}

.service-hero-standard .lead-form {
  gap: 8px;
  padding: 14px 20px 18px;
}

.service-hero-standard .field input,
.service-hero-standard .field select,
.service-hero-standard .field textarea {
  min-height: 44px;
  padding: 9px 12px;
  font-size: 14px;
  line-height: 1.4;
}

.service-hero-standard .icon-field input {
  padding-left: 42px;
}

.service-hero-standard .field-icon {
  left: 13px;
  width: 18px;
  height: 18px;
}

.service-hero-standard .field-icon svg {
  width: 18px;
  height: 18px;
}

.service-hero-standard .field textarea {
  min-height: 82px;
}

.service-hero-standard .lead-submit {
  min-height: 48px;
  font-size: 14px;
}

.service-hero-standard .rev2-form-microcopy {
  font-size: 10.5px !important;
  line-height: 1.35;
}

.service-hero-standard .solution-trust-grid {
  margin-top: 0;
}

.service-hero-standard .solution-trust-card {
  grid-template-rows: 28px auto 1fr;
  gap: 6px;
  min-height: 180px;
  padding: 12px;
}

.service-hero-standard .solution-trust-icon {
  width: 28px;
  height: 28px;
}

.service-hero-standard .solution-trust-card strong {
  font-size: 12.5px;
  line-height: 1.22;
}

.service-hero-standard .solution-trust-card > span:last-child {
  font-size: 11px;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .service-hero-standard {
    min-height: auto;
  }

  .page-hero.service-hero-standard > .wrap.solution-hero-grid,
  .page-hero.service-hero-standard > .wrap.page-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    width: calc(100% - 40px);
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    padding: 34px 0;
  }

  .service-hero-standard .lead-panel {
    width: auto;
    min-width: 0;
    max-width: 100%;
    justify-self: stretch;
  }

  .service-hero-standard .solution-trust-card {
    min-height: 142px;
  }
}

@media (max-width: 760px) {
  .service-hero-standard .solution-trust-card {
    min-height: 0;
  }
}

/* Authorized global form and hero-trust visual exception; frozen source copy remains unchanged. */
.hero .datapro-standard-form,
.page-hero .datapro-standard-form {
  width: 100%;
  max-width: 488px;
  align-self: center;
  justify-self: end;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(120, 170, 255, 0.28);
  border-radius: 12px;
  background: rgba(10, 23, 48, 0.86);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 28px rgba(58, 107, 255, 0.14), inset 0 1px 0 rgba(120, 170, 255, 0.22);
  backdrop-filter: blur(10px);
}

.hero .datapro-standard-form > header,
.page-hero .datapro-standard-form > header {
  padding: 18px 18px 0;
  border-bottom: 0;
}

.hero .datapro-standard-form h2,
.page-hero .datapro-standard-form h2 {
  font-size: 20px;
  line-height: 1.2;
}

.hero .datapro-standard-form > header p,
.page-hero .datapro-standard-form > header p {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.4;
}

.hero .datapro-standard-form .lead-form,
.page-hero .datapro-standard-form .lead-form {
  gap: 10px;
  padding: 14px 18px 22px;
}

.hero .datapro-standard-form .field input,
.hero .datapro-standard-form .field select,
.hero .datapro-standard-form .field textarea,
.page-hero .datapro-standard-form .field input,
.page-hero .datapro-standard-form .field select,
.page-hero .datapro-standard-form .field textarea,
.page-hero .datapro-standard-form .rev2-note-field textarea {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.045);
  color: #fff;
  font-size: 13.5px;
  line-height: 1.45;
}

.hero .datapro-standard-form .icon-field input,
.hero .datapro-standard-form .icon-field textarea,
.page-hero .datapro-standard-form .icon-field input,
.page-hero .datapro-standard-form .icon-field textarea {
  padding-left: 40px;
}

.hero .datapro-standard-form .select-field .field-icon,
.page-hero .datapro-standard-form .select-field .field-icon {
  display: none;
}

.hero .datapro-standard-form .select-field select,
.page-hero .datapro-standard-form .select-field select {
  padding-right: 36px;
  padding-left: 12px;
}

.hero .datapro-standard-form .field-icon,
.page-hero .datapro-standard-form .field-icon {
  left: 13px;
  width: 18px;
  height: 18px;
}

.hero .datapro-standard-form .field-icon svg,
.page-hero .datapro-standard-form .field-icon svg {
  width: 18px;
  height: 18px;
}

.hero .datapro-standard-form .field textarea,
.page-hero .datapro-standard-form .field textarea,
.page-hero .datapro-standard-form .rev2-note-field textarea {
  min-height: 64px;
}

.hero .datapro-standard-form .message-field.icon-field > .field-icon,
.hero .datapro-standard-form .rev2-textarea-shell .field-icon,
.page-hero .datapro-standard-form .message-field.icon-field > .field-icon,
.page-hero .datapro-standard-form .rev2-textarea-shell .field-icon {
  top: 13px;
  transform: none;
}

.hero .datapro-standard-form .lead-submit,
.page-hero .datapro-standard-form .lead-submit {
  position: relative;
  min-height: 42px;
  margin-top: 2px;
  padding-right: 44px;
  border-radius: 6px;
  font-size: 14px;
}

.hero .datapro-standard-form .lead-submit::after,
.page-hero .datapro-standard-form .lead-submit::after {
  position: absolute;
  right: 18px;
  top: 50%;
  content: "\2192";
  transform: translateY(-52%);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.hero .datapro-standard-form .rev2-form-microcopy,
.page-hero .datapro-standard-form .rev2-form-microcopy {
  margin-top: 1px !important;
  font-size: 10.5px !important;
  line-height: 1.35;
  text-align: center;
}

.page-hero .solution-trust-card > .solution-trust-icon,
.page-hero .trust-item > .trust-icon,
.rev2-home-hero .trust-item > .trust-icon {
  justify-self: center;
  margin-right: auto;
  margin-left: auto;
}

/* Hero trust cards: centered icon and title, body copy preserved */
.page-hero .source-approved-trust .solution-trust-card,
.page-hero .wave6-hero-trust .solution-trust-card,
.page-hero .v42-trust-grid .solution-trust-card,
.service-hero-standard .solution-trust-card {
  text-align: left;
}

.page-hero .source-approved-trust .solution-trust-icon,
.page-hero .wave6-hero-trust .solution-trust-icon,
.page-hero .v42-trust-grid .solution-trust-icon,
.service-hero-standard .solution-trust-icon {
  justify-self: center;
  margin-right: auto;
  margin-left: auto;
}

.page-hero .source-approved-trust .solution-trust-card strong,
.page-hero .wave6-hero-trust .solution-trust-card strong,
.page-hero .v42-trust-grid .solution-trust-card strong,
.service-hero-standard .solution-trust-card strong {
  display: block;
  align-self: center;
  width: 100%;
  text-align: center;
}

.page-hero .source-approved-trust .solution-trust-card > span:last-child,
.page-hero .wave6-hero-trust .solution-trust-card > span:last-child,
.page-hero .v42-trust-grid .solution-trust-card > span:last-child,
.service-hero-standard .solution-trust-card > span:last-child {
  text-align: left;
}

@media (max-width: 1100px) {
  .hero .datapro-standard-form,
  .page-hero .datapro-standard-form {
    width: auto;
    min-width: 0;
    max-width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 700px) {
  .hero .datapro-standard-form .lead-form,
  .page-hero .datapro-standard-form .lead-form {
    grid-template-columns: 1fr;
    padding: 14px 16px 18px;
  }

  .hero .datapro-standard-form .field input,
  .hero .datapro-standard-form .field select,
  .hero .datapro-standard-form .field textarea,
  .page-hero .datapro-standard-form .field input,
  .page-hero .datapro-standard-form .field select,
  .page-hero .datapro-standard-form .field textarea,
  .page-hero .datapro-standard-form .rev2-note-field textarea {
    font-size: 16px;
  }
}

/* Final compact-form parity pass. Complete-copy forms retain every approved
   label/help string in the DOM while using placeholders as the visible UI. */
@media (min-width: 701px) {
  .page-hero .datapro-standard-form.rev2-copy-complete .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .page-hero .datapro-standard-form.rev2-copy-complete :is(
    .rev2-form-step,
    .message-field,
    .rev2-note-field,
    .rev2-consent,
    .lead-submit,
    .rev2-form-microcopy,
    .form-note
  ) {
    grid-column: 1 / -1;
  }
}

.page-hero .datapro-standard-form.rev2-copy-complete .rev2-field-label:not(.rev2-consent-title),
.page-hero .datapro-standard-form.rev2-copy-complete .rev2-field-help {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.page-hero .datapro-standard-form.rev2-copy-complete .rev2-complete-field,
.page-hero .datapro-standard-form.rev2-copy-complete .rev2-note-field {
  gap: 0;
}

.page-hero .datapro-standard-form select[multiple] {
  height: 42px;
  min-height: 42px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-right: 36px !important;
  overflow: hidden;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.58) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58) 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 18px,
    calc(100% - 12px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  scrollbar-width: none;
}

.page-hero .datapro-standard-form select[multiple]:focus {
  height: 112px;
  overflow-y: auto;
  background-image: none;
  scrollbar-width: thin;
}

.page-hero .datapro-standard-form select[multiple]::-webkit-scrollbar {
  display: none;
}

.page-hero .datapro-standard-form select[multiple]:not(:focus) option:not(:first-child):not(:checked) {
  display: none;
}

.hero .datapro-standard-form .lead-submit,
.page-hero .datapro-standard-form .lead-submit {
  height: 42px;
  min-height: 42px;
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 700px) {
  .hero .datapro-standard-form .field textarea,
  .page-hero .datapro-standard-form .field textarea,
  .page-hero .datapro-standard-form .rev2-note-field textarea {
    min-height: 96px !important;
  }
}

/* Orlando-matched footer structure with Tampa copy */
.site-footer.rev2-footer {
  color: #fff;
  background: var(--navy);
}

.site-footer.rev2-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.05fr 1.05fr .82fr 1.35fr;
  gap: 32px;
  max-width: 1420px;
  margin: 0 auto;
  padding: 58px 20px 36px;
}

.site-footer.rev2-footer .footer-grid > * {
  position: relative;
}

@media (min-width: 1181px) {
  .site-footer.rev2-footer .footer-grid > * + *::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: -16px;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
  }
}

.site-footer.rev2-footer .footer-logo {
  display: block;
  width: 190px;
  height: auto;
  aspect-ratio: 900 / 271;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 18px;
}

.site-footer.rev2-footer .footer-brand-column > p,
.site-footer.rev2-footer .footer-service-column > p {
  margin: 0 0 18px;
}

.site-footer.rev2-footer .footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer.rev2-footer h2 {
  position: relative;
  margin: 0 0 14px;
  padding: 0 0 10px;
  color: var(--brand-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-footer.rev2-footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-bright);
}

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

.site-footer.rev2-footer a {
  display: inline-flex;
  align-items: center;
  margin: 8px 0;
}

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

.site-footer.rev2-footer .footer-column > a,
.site-footer.rev2-footer .footer-column > .footer-current-page {
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.45;
}

.site-footer.rev2-footer .footer-column > a::after {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-top: 1px solid rgba(255, 255, 255, .58);
  border-right: 1px solid rgba(255, 255, 255, .58);
  transform: rotate(45deg);
}

.site-footer.rev2-footer .footer-contact-list {
  display: grid;
  justify-items: start;
  gap: 7px;
}

.site-footer.rev2-footer .footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  width: 100%;
  max-width: 100%;
  margin: 4px 0;
}

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

.site-footer.rev2-footer .footer-contact-icon svg {
  width: 100%;
  height: 100%;
}

.site-footer.rev2-footer .footer-contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  gap: 2px;
  min-width: 0;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.82);
  white-space: normal;
}

.site-footer.rev2-footer .footer-contact-label {
  display: block;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.site-footer.rev2-footer .footer-contact-value {
  display: block;
  max-width: 100%;
  font-size: 12.5px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: normal;
}

.site-footer.rev2-footer .footer-address-row {
  align-items: flex-start;
}

.site-footer.rev2-footer .footer-address-row .footer-contact-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: normal;
}

.site-footer.rev2-footer .footer-email-row,
.site-footer.rev2-footer .footer-email-row .footer-contact-copy {
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
}

.site-footer.rev2-footer .footer-area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 14px;
}

.site-footer.rev2-footer .footer-area-grid a {
  gap: 6px;
  margin: 0;
  padding: 4px 0;
  color: rgba(255, 255, 255, .82);
  font-size: 11.5px;
}

.site-footer.rev2-footer .footer-area-grid a > span {
  display: inline-flex;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: var(--brand-bright);
}

.site-footer.rev2-footer .footer-license-badge {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.site-footer.rev2-footer .footer-license-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: var(--brand-bright);
}

.site-footer.rev2-footer .footer-license-badge strong,
.site-footer.rev2-footer .footer-license-badge span {
  display: block;
}

.site-footer.rev2-footer .footer-license-badge strong {
  color: var(--brand-soft);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer.rev2-footer .footer-license-badge div > span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  line-height: 1.4;
}

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

.site-footer.rev2-footer .footer-bottom a {
  display: inline;
  margin: 0;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1180px) {
  .site-footer.rev2-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer.rev2-footer .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

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

/* Tampa service-page scale normalization.
   Keeps copy untouched while making service heroes/header use the same larger visual shell. */
:root {
  --tampa-service-shell: 1560px;
}

.topbar,
.nav-wrap {
  max-width: var(--tampa-service-shell);
}

.service-layout-standard > .rev2-hero,
.page-hero.service-hero-standard {
  min-height: 960px;
}

.service-layout-standard > .rev2-hero > .page-hero-grid,
.page-hero.service-hero-standard > .wrap.solution-hero-grid,
.page-hero.service-hero-standard > .wrap.page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 480px);
  grid-template-rows: minmax(690px, max-content) minmax(180px, max-content);
  width: 100%;
  max-width: var(--tampa-service-shell);
  gap: 40px;
  row-gap: 16px;
  padding-top: 40px;
  padding-bottom: 34px;
}

.service-layout-standard > .rev2-hero .page-hero-copy h1,
.page-hero.service-hero-standard .page-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(52px, 4.2vw, 56px);
  line-height: 1.08;
}

.service-layout-standard > .rev2-hero .page-hero-copy > p,
.page-hero.service-hero-standard .page-hero-copy > p,
.service-layout-standard > .rev2-hero .page-hero-copy .hero-actions,
.page-hero.service-hero-standard .page-hero-copy .hero-actions {
  max-width: 760px;
}

@media (max-width: 1100px) {
  .service-layout-standard > .rev2-hero,
  .page-hero.service-hero-standard {
    min-height: auto;
  }

  .service-layout-standard > .rev2-hero > .page-hero-grid,
  .page-hero.service-hero-standard > .wrap.solution-hero-grid,
  .page-hero.service-hero-standard > .wrap.page-hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    width: calc(100% - 40px);
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    padding: 34px 0;
  }
}

@media (max-width: 760px) {
  .service-layout-standard > .rev2-hero .page-hero-copy h1,
  .page-hero.service-hero-standard .page-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(32px, 8.6vw, 38px);
    line-height: 1.12;
  }
}

/* Tampa global card vertical alignment.
   Layout-only normalization: source copy and link structure remain untouched. */
.v42-feature-grid,
.solution-feature-grid,
.rev2-card-grid,
.process-grid,
.wave6-category-grid {
  align-items: stretch;
}

.v42-feature-grid .solution-feature-card {
  align-content: start;
  align-items: start;
}

.v42-feature-grid .solution-feature-card > div {
  align-self: start;
}

.v42-feature-grid .solution-feature-icon {
  align-self: center;
  justify-self: center;
}

.unfrozen-page .v42-overview-section .v42-service-grid .solution-feature-card {
  align-content: start;
  align-items: start;
}

.unfrozen-page .v42-overview-section .v42-service-grid .solution-feature-card > div {
  align-self: start;
}

.unfrozen-page .v42-overview-section .v42-service-grid .solution-feature-icon {
  align-self: center;
  justify-self: center;
}

.v42-feature-grid .solution-feature-card h3 {
  margin-top: 0;
}

.v42-feature-grid .solution-feature-card p {
  margin-top: 8px;
}

.v42-process-section {
  color: var(--ink);
  background: #f4f7fb;
}

.v42-process-grid .solution-feature-card {
  grid-template-columns: minmax(0, 1fr) 48px;
  grid-template-rows: 48px minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 18px;
  align-content: start;
  align-items: start;
  padding: 26px;
}

.v42-process-grid .v42-process-step {
  position: static;
  inset: auto;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: start;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

.v42-process-grid .solution-feature-card > div {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-rows: 78px minmax(0, 1fr);
  gap: 18px;
  width: 100%;
  align-self: stretch;
}

.v42-process-grid .solution-feature-card > div h3 {
  align-self: stretch;
  margin: 14px 0 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(58, 107, 255, .34);
  font-size: 20px;
  line-height: 1.35;
}

.v42-process-grid .solution-feature-card > div p {
  align-self: start;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .proof-card:not(.proof-card-with-media),
.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .process-card,
.unfrozen-page .service-layout-standard .rev2-service-cards .proof-card:not(.proof-card-with-media) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .proof-card:not(.proof-card-with-media) .proof-card-heading,
.unfrozen-page .service-layout-standard .rev2-service-cards .proof-card:not(.proof-card-with-media) .proof-card-heading {
  align-items: center;
}

@media (max-width: 760px) {
  .v42-feature-grid .solution-feature-card {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 0;
    align-content: start;
  }

  .v42-process-grid .solution-feature-card {
    grid-template-columns: minmax(0, 1fr) 48px;
    grid-template-rows: 48px minmax(0, 1fr);
    min-height: 0;
    padding: 24px;
  }

  .v42-process-grid .solution-feature-card > div {
    grid-template-rows: minmax(78px, auto) auto;
  }
}

/* Trust-card icon scale: consistent across every home and service hero variant. */
.solution-trust-grid .solution-trust-card > .solution-trust-icon,
.source-approved-trust .solution-trust-card > .solution-trust-icon,
.wave6-hero-trust .solution-trust-card > .solution-trust-icon,
.trust-strip .trust-item > .trust-icon,
.source-home-trust .trust-item > .trust-icon {
  width: 40px;
  height: 40px;
}

.solution-trust-grid .solution-trust-card,
.source-approved-trust .solution-trust-card,
.wave6-hero-trust .solution-trust-card {
  grid-template-rows: 40px auto 1fr;
}

/* Client-approved responsive alignment-only correction. The frozen page copy,
   hierarchy and card count remain unchanged; only the internal tracks are
   normalized so a wrapped title cannot lower the following paragraph. */
@media (min-width: 641px) and (max-width: 980px) {
  .page-hero .v42-trust-grid {
    display: grid;
    grid-auto-rows: 1fr;
    align-items: stretch;
  }

  .page-hero .v42-trust-grid > .solution-trust-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 40px 32px minmax(0, 1fr);
    align-content: stretch;
    align-items: start;
    min-width: 0;
    height: 100%;
  }

  .page-hero .v42-trust-grid > .solution-trust-card > .solution-trust-icon {
    align-self: start;
    justify-self: center;
    width: 40px;
    height: 40px;
    margin: 0;
  }

  .page-hero .v42-trust-grid > .solution-trust-card > strong,
  .page-hero .v42-trust-grid > .solution-trust-card > span:last-child {
    align-self: start;
    min-width: 0;
    width: 100%;
    margin-top: 0;
  }
}

/* Client-authorized trust-title correction 2026-07-26. The frozen copy,
   card count and icons stay unchanged; only deterministic internal tracks are
   shared with the rest of Tampa. */
@media (min-width: 641px) {
  :is(.solution-trust-grid, .trust-strip) {
    display: grid !important;
    grid-auto-rows: 1fr;
    align-items: stretch !important;
  }

  :is(.solution-trust-grid, .trust-strip)
    > :is(.solution-trust-card, .trust-item) {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: 40px 40px minmax(0, 1fr) !important;
    row-gap: 0 !important;
    align-content: stretch !important;
    align-items: stretch !important;
    min-width: 0 !important;
    height: 100% !important;
  }

  :is(.solution-trust-grid, .trust-strip)
    > :is(.solution-trust-card, .trust-item)
    > :is(.solution-trust-icon, .trust-icon) {
    grid-row: 1;
    align-self: center !important;
    justify-self: center !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
  }

  :is(.solution-trust-grid, .trust-strip)
    > :is(.solution-trust-card, .trust-item)
    > strong {
    display: flex !important;
    grid-row: 2;
    align-self: stretch !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 40px;
    min-height: 40px;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  :is(.solution-trust-grid, .trust-strip)
    > :is(.solution-trust-card, .trust-item)
    > span:last-child {
    grid-row: 3;
    align-self: start !important;
    min-width: 0;
    margin-top: 0 !important;
  }
}

@media (min-width: 981px) {
  :is(.solution-trust-grid, .trust-strip)
    > :is(.solution-trust-card, .trust-item)
    > strong {
    font-size: clamp(9px, .72vw, 11px) !important;
    letter-spacing: -.02em !important;
    white-space: nowrap !important;
  }

  .solution-trust-grid.v42-grid-count-4
    > .solution-trust-card
    > strong {
    font-size: clamp(10px, .8vw, 13px) !important;
  }
}

/* Client-authorized 2026-07-27 service-card icon correction.
   Keep the frozen page copy and composition intact while moving each service
   icon to the upper-left heading track used by the reviewed desktop cards. */
.v42-service-grid .solution-feature-icon {
  align-self: start;
  justify-self: center;
}

@media (min-width: 761px) {
  .v42-service-grid .solution-feature-card {
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
    align-content: stretch;
    align-items: stretch;
  }

  .v42-service-grid .solution-feature-card > div {
    display: contents;
  }

  .v42-service-grid .solution-feature-card h3 {
    grid-column: 2;
    grid-row: 1;
    min-height: 3.25em;
    align-self: start;
  }

  .v42-service-grid .solution-feature-card p {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin-top: 8px;
  }

  .v42-service-grid .solution-feature-icon {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: center;
  }
}

/* The shared 180px button minimum overflows the narrow related-card text
   track at tablet widths. Desktop and mobile geometry remain unchanged. */
@media (min-width: 761px) and (max-width: 1100px) {
  .v42-related-grid[class*="v42-grid-count-"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v42-related-grid .solution-related-body .btn {
    min-width: 0;
    max-width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}
