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

/* Width-matched local fallbacks prevent cold-load reflow while Inter is in
   flight. Each weight is tuned separately because synthetic system bold is
   substantially wider than Inter on Chromium/Linux. The family is activated
   only for unfrozen internal pages below. */
@font-face {
  font-family: "Inter Audit Fallback";
  font-style: normal;
  font-weight: 400;
  size-adjust: 106.4%;
  src: local("Arial"), local("Liberation Sans");
}

@font-face {
  font-family: "Inter Audit Fallback";
  font-style: normal;
  font-weight: 500;
  size-adjust: 107.7%;
  src: local("Arial"), local("Liberation Sans");
}

@font-face {
  font-family: "Inter Audit Fallback";
  font-style: normal;
  font-weight: 600 650;
  size-adjust: 101.4%;
  src: local("Arial Bold"), local("Liberation Sans Bold");
}

@font-face {
  font-family: "Inter Audit Fallback";
  font-style: normal;
  font-weight: 651 750;
  size-adjust: 102.4%;
  src: local("Arial Bold"), local("Liberation Sans Bold");
}

@font-face {
  font-family: "Inter Audit Fallback";
  font-style: normal;
  font-weight: 751 800;
  size-adjust: 103.8%;
  src: local("Arial Bold"), local("Liberation Sans Bold");
}

: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%;
}

.rev2-service-area-directory {
  margin-top: 2rem;
}

.rev2-service-area-directory > h3 {
  margin: 0 0 1rem;
  color: #fff;
  text-align: center;
}

.rev2-chip-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .7rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.rev2-chip-list li {
  min-width: 0;
}

.rev2-chip-list a,
.rev2-chip-list .rev2-area-chip {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: .65rem .8rem;
  border: 1px solid rgba(77, 137, 255, .42);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.rev2-chip-list .rev2-area-chip {
  cursor: default;
}

.rev2-chip-list a:hover,
.rev2-chip-list a:focus-visible {
  border-color: #4d89ff;
  background: rgba(77, 137, 255, .12);
}

.rev2-nearby-reference {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  padding: .65rem 1rem;
  border: 1px solid rgba(77, 137, 255, .42);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

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

@media (max-width: 520px) {
  .rev2-chip-list {
    grid-template-columns: 1fr;
  }
}

.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,
.icon-field select,
.icon-field textarea {
  padding-left: 40px;
}

.message-field.icon-field > .field-icon,
.rev2-textarea-shell .field-icon {
  top: 14px;
  transform: none;
}

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

main.unfrozen-page .not-found {
  background: #f4f7fb;
}

@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,
.solution-related-card .heading-remediation-card-title {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

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

.solution-related-card h3 a:hover,
.solution-related-card .heading-remediation-card-title a:hover,
.proof-card-heading h3 a:hover,
.proof-card-heading .heading-remediation-card-title 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;
}

.v42-blog-topic-overview .section-head,
.v42-blog-cluster .section-head {
  max-width: 860px;
}

.v42-blog-topic-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.v42-blog-topic-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 172px;
  padding: 24px;
  border: 1px solid #cfdbed;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 35, 76, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.v42-blog-topic-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc(50% - 9px);
  justify-self: center;
}

.v42-blog-topic-card:hover,
.v42-blog-topic-card:focus-visible {
  border-color: var(--brand);
  box-shadow: 0 18px 40px rgba(13, 68, 255, 0.14);
  transform: translateY(-3px);
}

.v42-blog-topic-card strong,
.v42-blog-topic-card em {
  display: block;
}

.v42-blog-topic-card strong {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.3;
}

.v42-blog-topic-card em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
}

.v42-blog-cluster-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
}

.v42-blog-cluster {
  scroll-margin-top: 120px;
}

.v42-blog-cluster-head:has(.section-head:only-child) {
  grid-template-columns: 1fr;
}

.v42-blog-cluster-media {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(58, 107, 255, 0.24);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.v42-blog-cluster-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.v42-blog-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.v42-blog-article-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-color: #cfdbed;
  box-shadow: 0 12px 28px rgba(13, 35, 76, 0.09);
}

.v42-blog-article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

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

.v42-blog-article-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.v42-blog-article-card p {
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.v42-blog-article-card .card-link {
  margin-top: auto;
  color: #fff;
  font-weight: 750;
}

.v42-blog-article-card .card-link:hover,
.v42-blog-article-card .card-link:focus-visible {
  color: #fff;
}

.section.dark .v42-blog-article-card {
  background: #fff;
}

.section.dark .v42-blog-article-card h3 {
  color: var(--ink);
}

.section.dark .v42-blog-article-card p {
  color: var(--muted);
}

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

  .v42-blog-cluster-head,
  .v42-blog-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v42-blog-cluster-head .section-head {
    grid-column: 1 / -1;
  }
}

@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,
.icon-field select,
.icon-field textarea {
  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-heading .heading-remediation-card-title {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.section.dark .proof-card .heading-remediation-card-title {
  color: #fff;
}

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

.v42-application-card-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.v42-application-card-link .proof-card-body {
  flex: 1;
}

.v42-application-card-link:focus-visible {
  outline: 3px solid var(--brand-bright);
  outline-offset: -4px;
  border-radius: inherit;
}

.v42-application-card-link:hover h3 {
  color: var(--brand);
}

.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-legal-bar {
  display: grid;
  width: min(100%, 1320px);
  gap: 4px;
  margin: 0 auto;
  padding: 14px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .footer-legal-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  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-copy-complete .lead-form {
  gap: 14px;
}

.rev2-copy-complete .rev2-complete-field,
.rev2-copy-complete .rev2-note-field {
  display: grid;
  gap: 6px;
}

.rev2-copy-complete .rev2-field-label {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.rev2-copy-complete .rev2-input-shell {
  position: relative;
  display: block;
}

.rev2-copy-complete .rev2-input-shell input {
  padding-left: 48px;
}

.rev2-copy-complete .rev2-field-help {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  line-height: 1.45;
}

.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-copy-complete .rev2-consent {
  grid-template-columns: 1fr;
  gap: 7px;
}

.rev2-copy-complete .rev2-consent-control {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.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-note-field textarea {
  width: 100%;
  min-height: 76px;
  padding: 10px 12px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  line-height: 1.5;
}

.rev2-note-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

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

/* Contact keeps its dedicated hero geometry while the form itself follows the
   same compact, single-column field stack used by the Solutions pages. */
.rev2-contact-hero .page-hero-grid {
  grid-template-columns: minmax(360px, .82fr) minmax(620px, 1.18fr);
  width: 100%;
  max-width: 1320px;
  gap: 42px;
  align-items: start;
  padding-top: 68px;
  padding-bottom: 68px;
}

.rev2-contact-hero .page-hero-copy {
  position: sticky;
  top: 138px;
  padding-top: 8px;
}

@media (min-width: 641px) {
  .rev2-contact-hero .hero-actions {
    flex-wrap: nowrap;
  }

  .rev2-contact-hero .hero-actions .btn {
    min-width: 0;
    padding-right: 20px;
    padding-left: 20px;
    white-space: nowrap;
  }
}

.rev2-contact-hero .rev2-lead-panel {
  width: 100%;
  max-width: none;
  align-self: start;
  border-color: rgba(49, 126, 255, .72);
  background: rgba(5, 20, 43, .94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38), 0 0 0 1px rgba(80, 140, 255, .08);
}

.rev2-contact-hero .lead-panel header {
  padding: 26px 26px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.rev2-contact-hero .lead-panel h2 {
  font-size: 26px;
  line-height: 1.2;
}

.rev2-contact-hero .lead-panel header p {
  margin-top: 7px;
  font-size: 13px;
}

.rev2-contact-hero .lead-form {
  grid-template-columns: 1fr;
  gap: 14px 16px;
  padding: 22px 26px 26px;
}

.rev2-contact-hero .rev2-form-step,
.rev2-contact-hero .rev2-consent,
.rev2-contact-hero .lead-submit,
.rev2-contact-hero .rev2-form-microcopy,
.rev2-contact-hero .form-note,
.rev2-contact-hero [data-rev2-field="project_timeline"] {
  grid-column: 1 / -1;
}

.rev2-contact-hero .rev2-form-step {
  margin: 4px 0 0;
  padding-top: 16px;
  font-size: 14px;
  letter-spacing: .01em;
}

.rev2-contact-hero .rev2-form-step:first-of-type {
  padding-top: 0;
}

.rev2-contact-hero .rev2-field-label {
  font-size: 12px;
}

.rev2-contact-hero .rev2-field-help {
  color: rgba(255, 255, 255, .7);
}

.rev2-contact-hero .rev2-consent {
  color: rgba(255, 255, 255, .84);
  font-size: 12px;
  line-height: 1.5;
}

.rev2-contact-hero .rev2-consent input {
  width: 18px;
  height: 18px;
}

.rev2-contact-hero .field input,
.rev2-contact-hero .field select {
  min-height: 46px;
}

.rev2-contact-hero .field textarea {
  min-height: 104px;
}

.rev2-contact-hero [data-rev2-field="service_needed"] select[multiple] {
  min-height: 128px;
  padding: 7px 10px;
  background-image: none;
}

.rev2-contact-hero [data-rev2-field="service_needed"] option {
  padding: 5px 8px;
}

.rev2-contact-hero .rev2-file-field {
  padding: 0;
  border: 0;
  background: transparent;
}

.rev2-contact-hero .lead-submit {
  min-height: 52px;
  margin-top: 2px;
  font-size: 15px;
}

.rev2-contact-hero .rev2-form-microcopy {
  text-align: center;
}

@media (max-width: 1120px) {
  .rev2-contact-hero .page-hero-grid {
    grid-template-columns: 1fr;
    max-width: 900px;
  }

  .rev2-contact-hero .page-hero-copy {
    position: static;
    max-width: 760px;
    padding-top: 0;
  }

  .rev2-contact-hero .rev2-lead-panel {
    max-width: 780px;
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .rev2-contact-hero .page-hero-grid {
    gap: 36px;
    padding: 42px 20px;
  }

  .rev2-contact-hero .lead-panel header {
    padding: 22px 20px 18px;
  }

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

  .rev2-contact-hero .lead-form {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 16px 20px;
  }

  .rev2-contact-hero .field input,
  .rev2-contact-hero .field select,
  .rev2-contact-hero .field textarea,
  .rev2-contact-hero .rev2-note-field textarea {
    font-size: 16px;
  }

  .rev2-contact-hero .rev2-field-help,
  .rev2-contact-hero .rev2-form-microcopy {
    font-size: 12px !important;
  }

  .rev2-contact-hero .rev2-form-step,
  .rev2-contact-hero .rev2-consent,
  .rev2-contact-hero .lead-submit,
  .rev2-contact-hero .rev2-form-microcopy,
  .rev2-contact-hero .form-note,
  .rev2-contact-hero [data-rev2-field="project_timeline"] {
    grid-column: auto;
  }
}

.v42-operational-recommendations {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.v42-operational-recommendations .section-head {
  margin-bottom: 18px;
}

.v42-operational-recommendation-list {
  display: grid;
  gap: 12px;
}

.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,
.rev2-link-groups .internal-card-title .heading-remediation-card-title {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
}

.rev2-service-navigation .internal-card-title h3,
.rev2-service-navigation .internal-card-title .heading-remediation-card-title {
  margin: 0;
  color: #fff;
  font-size: 1.17em;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

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

main.unfrozen-page p.card-description-generated {
  display: block;
  height: auto;
  max-height: none;
  overflow: visible;
  visibility: visible;
  opacity: 1;
  overflow-wrap: anywhere;
}

main.unfrozen-page .internal-link-card > .navigation-card-description {
  min-height: 66px;
  margin: 14px 0 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

main.unfrozen-page.service-layout-standard .internal-link-card > .navigation-card-description {
  color: var(--muted);
}

main.unfrozen-page .proof-card-heading,
main.unfrozen-page .proof-card-heading h3 {
  min-width: 0;
}

main.unfrozen-page .proof-card-heading h3 {
  overflow-wrap: anywhere;
}

main.unfrozen-page .v42-process-grid .solution-feature-card > div {
  grid-template-rows: var(--v42-process-title-track, minmax(78px, auto)) minmax(0, 1fr);
}

main.unfrozen-page [data-card-row-alignment="proof-heading"] .wave6-category-grid .proof-card-heading {
  min-height: var(--proof-card-heading-track, auto);
  align-items: start;
}

main.unfrozen-page [data-card-row-alignment="proof-heading"] .wave6-category-grid .proof-card-heading .proof-icon {
  align-self: center;
}

@media (min-width: 761px) and (max-width: 1100px) {
  main.unfrozen-page [data-client-review-route="about-hub"] .wave6-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  main.unfrozen-page .internal-link-card > .navigation-card-description {
    min-height: 0;
  }

  main.unfrozen-page .v42-blog-topic-card > span:last-child {
    min-width: 0;
  }

  main.unfrozen-page .v42-blog-topic-card strong,
  main.unfrozen-page .v42-blog-topic-card em {
    overflow-wrap: anywhere;
  }

  main.unfrozen-page .v42-blog-topic-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }
}

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

.rev2-home-hero .rev2-home-trust {
  grid-column: 1 / -1;
  max-width: none;
  margin-top: 0;
}

.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 {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  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;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
}

.home-support-service {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  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%;
}

.rev2-use-cases figure.proof-card-media {
  margin: 0;
}

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

  .v42-blog-topic-nav,
  .v42-blog-cluster-head,
  .v42-blog-article-grid {
    grid-template-columns: 1fr;
  }

  .v42-blog-topic-card {
    grid-column: auto;
    width: 100%;
    min-height: 0;
    padding: 20px;
  }

  .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-priority-hero {
  isolation: isolate;
  background: #020815;
}

.v42-priority-hero .v42-hero-priority-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v42-priority-hero::before {
  z-index: 1;
  opacity: 1;
  background:
    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%),
    radial-gradient(ellipse at 70% 18%, rgba(58, 107, 255, .16), transparent 34%);
}

.v42-priority-hero .wrap {
  z-index: 2;
}

.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: 14px; 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 { grid-template-columns: repeat(auto-fit, minmax(190px, 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,
.v42-feature-grid .solution-feature-card .heading-remediation-card-title {
  margin: 1px 0 0;
}
.v42-feature-grid .solution-feature-card .heading-remediation-card-title {
  color: var(--ink);
  font-size: 1.17em;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}
.v42-feature-grid .solution-feature-card p { margin-top: 9px; }
.v42-service-technology-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
.v42-service-technology-layout .v42-feature-grid { margin-top: 0; }
.v42-technology-media {
  overflow: hidden;
  width: 100%;
  height: 340px;
  min-height: 0;
  margin: 0;
  border: 1px solid #cfd9ea;
  border-radius: 10px;
  background: #e8eef7;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}
.v42-technology-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.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-fit-title-aligned .v42-fit-copy { margin-top: -48px; }
.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-feature-grid.v42-solution-icon-clean .solution-feature-icon {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.v42-feature-grid.v42-solution-icon-clean .solution-feature-icon svg {
  width: 30px;
  height: 30px;
}

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

.unfrozen-page .v42-overview-section .v42-service-grid .solution-feature-card {
  grid-template-columns: 42px minmax(0, 1fr);
}

.unfrozen-page .service-layout-standard .rev2-service-cards .proof-card:not(.proof-card-with-media) {
  display: grid;
  grid-template-rows: minmax(54px, auto) auto;
  align-content: start;
}

.unfrozen-page .service-layout-standard .rev2-service-cards .proof-card:not(.proof-card-with-media) .proof-card-heading {
  min-height: 54px;
  align-items: start;
}

.unfrozen-page .service-layout-standard .rev2-service-cards .proof-card:not(.proof-card-with-media) .proof-card-heading h3 {
  margin-top: 0;
}

.unfrozen-page .v42-fit-list,
.unfrozen-page .rev2-solutions-bullet-layout .solution-fit-list {
  grid-auto-rows: auto;
  height: auto;
  gap: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.unfrozen-page .v42-fit-list li,
.unfrozen-page .rev2-solutions-bullet-layout .solution-fit-list li {
  align-content: start;
  min-height: 0;
  padding: 0;
  border: 0;
}

.unfrozen-page .dark.rev2-solutions-bullet-layout .solution-fit-list li {
  color: rgba(255, 255, 255, .92);
}

.unfrozen-page .rev2-industries-overview {
  padding-bottom: 48px;
}

.unfrozen-page .rev2-industries-overview .section-actions {
  justify-content: center;
}

.unfrozen-page .rev2-industries-overview + #industry-paths {
  padding-top: 48px;
}

.unfrozen-page .v42-fit-list li::before,
.unfrozen-page .rev2-solutions-bullet-layout .solution-fit-list li::before {
  display: none;
  content: none;
}

.unfrozen-page .v42-fit-grid-with-photo-bullets {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  column-gap: 66px;
  row-gap: 38px;
  align-items: center;
}

.unfrozen-page .v42-fit-grid-with-photo-bullets .v42-application-media {
  align-self: stretch;
  min-height: 340px;
  max-height: 440px;
  margin-top: 0;
}

.unfrozen-page .v42-fit-grid-with-photo-bullets .v42-application-media img {
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
}

.unfrozen-page .v42-application-inline {
  grid-column: 1 / -1;
  align-content: start;
  grid-template-rows: auto auto;
  gap: 22px;
  margin-top: 0;
  padding-top: 34px;
  border-top: 1px solid #d7e0ed;
}

.unfrozen-page .v42-application-inline .v42-fit-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 42px;
  row-gap: 24px;
}

.unfrozen-page .rev2-solutions-bullet-layout .rev2-section-copy {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: start;
}

.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-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 1fr; }
.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 .solution-related-card-static { grid-template-columns: 1fr; align-content: center; }
.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; }
.v42-related-grid .solution-related-card-no-copy .solution-related-body { justify-content: center; gap: 24px; padding: 20px; }
.v42-related-grid .solution-related-card-no-copy .solution-related-body .btn { margin-top: 0; }
.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-bright); }
.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; }
main.unfrozen-page .v42-source-article .v42-article-section,
main.unfrozen-page .v42-related-section[id],
main.unfrozen-page .v42-process-section[id],
main.unfrozen-page .v42-faq-section[id] { scroll-margin-top: 152px; }
main.unfrozen-page [id] { scroll-margin-top: 152px; }
.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-source-article .v42-article-section h2,
.v42-source-article .v42-article-section h3 {
  color: #0b3a75;
}
.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-technology-media { height: 280px; }
  .v42-application-block { align-content: start; grid-template-rows: auto; }
  .v42-fit-list { grid-auto-rows: auto; height: auto; }
  .v42-fit-title-aligned .v42-fit-copy { margin-top: 0; }
  .v42-hero .solution-trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .v42-process-grid { grid-template-columns: repeat(2, 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-overview-section .solution-overview-grid { grid-template-columns: minmax(0, 1fr); }
  .v42-overview-section .solution-overview-grid > * { min-width: 0; }
  .v42-feature-grid { grid-template-columns: 1fr; }
  .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-2,
  .v42-related-grid.v42-grid-count-6,
  .v42-process-grid,
  .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-technology-media { height: 220px; }
  .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; }
}

/* Related-card actions need to flex below desktop width. The shared button
   minimum otherwise exceeds the text column by 45px at 1024px. */
@media (min-width: 761px) and (max-width: 1100px) {
  main.unfrozen-page .v42-related-grid[class*="v42-grid-count-"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  main.unfrozen-page .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;
  }
}

/* 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;
}

/* Client-reviewed industrial sections use the previously empty desktop column. */
.v42-mapped-split-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  align-items: stretch;
  gap: 56px;
}

.v42-mapped-split-wrap .section-head {
  max-width: none;
  margin: 0;
}

.v42-mapped-split-wrap .mapped-section-media {
  align-self: stretch;
  width: 100%;
  max-width: none;
  min-height: 320px;
  margin: 0;
}

.v42-mapped-split-wrap .mapped-section-media img {
  height: 100%;
  max-height: none;
  min-height: 320px;
  aspect-ratio: auto;
}

.mapped-card-media {
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.wave6-category-media {
  width: min(100%, 940px);
  margin: 0 auto 30px;
}

.rev2-final-cta-with-media {
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr) auto;
}

.rev2-final-cta-media {
  overflow: hidden;
  width: 100%;
  margin: 0;
  border: 1px solid rgba(120, 170, 255, .2);
  border-radius: 7px;
}

.rev2-final-cta-media img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

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

  .mapped-card-media,
  .wave6-category-media,
  .rev2-final-cta-media {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 980px) {
  .v42-mapped-split-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .v42-mapped-split-wrap .mapped-section-media,
  .v42-mapped-split-wrap .mapped-section-media img {
    min-height: 0;
  }

  .v42-mapped-split-wrap .mapped-section-media img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .rev2-final-cta-with-media {
    grid-template-columns: 1fr;
  }

  .rev2-final-cta-media img {
    height: 240px;
  }
}

/* Official handoff refinements for non-frozen contact, local-market and article pages. */
.rev2-contact-details-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: stretch;
}

.rev2-contact-detail-list,
.rev2-contact-expectations {
  display: grid;
  gap: 14px;
}

.rev2-contact-detail-list > a,
.rev2-contact-detail-list > div,
.rev2-contact-expectations {
  padding: 20px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(3, 16, 38, .06);
}

.rev2-contact-detail-list > a,
.rev2-contact-detail-list > div {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.rev2-contact-detail-list svg { color: var(--brand-bright); }
.rev2-contact-detail-list address { font-style: normal; line-height: 1.55; }
.rev2-contact-expectations { align-content: center; }
.rev2-contact-expectations p { margin: 0; }
.rev2-public-trust-grid { margin-top: 0; }
.rev2-recommendation-list { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; }

.rev2-distinct-local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 42px;
  align-items: center;
}

.rev2-distinct-local-icon {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid rgba(47, 111, 237, .35);
  border-radius: 24px;
  color: var(--brand-bright);
  background: rgba(47, 111, 237, .08);
}

.rev2-distinct-local-section.dark .rev2-distinct-local-icon {
  border-color: rgba(255, 255, 255, .2);
  color: var(--brand-bright);
  background: rgba(255, 255, 255, .08);
}

.v42-article-trust { padding-top: 44px; padding-bottom: 44px; }
.v42-article-trust .solution-trust-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.v42-article-service-cards .v42-feature-grid { margin-top: 0; }
.v42-article-local-copy { max-width: 980px; margin: 0 auto; }
.v42-article-local-copy > p { font-size: 17px; line-height: 1.75; }
.v42-local-recommendation {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
}

.v42-local-recommendation svg { color: var(--brand-bright); }
.v42-local-recommendation p { margin: 0; }

@media (max-width: 760px) {
  .rev2-contact-details-grid,
  .rev2-distinct-local-grid { grid-template-columns: 1fr; }
  .rev2-distinct-local-icon { display: none; }
  .rev2-recommendation-list { grid-template-columns: 1fr; }
}

/* Camera service: approved copy in the Structured Cabling visual system. */
.camera-structured-layout {
  overflow: hidden;
  color: var(--ink);
  background: #f4f7fb;
}

.camera-structured-layout > .section {
  padding: 72px 20px;
}

.camera-structured-layout > .section > .wrap {
  width: 100%;
  max-width: 1320px;
}

.camera-structured-layout .camera-structured-hero .solution-hero-copy h1 {
  max-width: 720px;
}

.camera-structured-layout .camera-structured-hero .camera-structured-trust {
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
}

.camera-structured-layout > .rev2-content-section,
.camera-structured-layout > .rev2-link-groups,
.camera-structured-layout > .rev2-process,
.camera-structured-layout > .camera-use-cases {
  color: var(--ink);
  background: #fff;
}

.camera-structured-layout > .rev2-service-cards,
.camera-structured-layout > .rev2-link-groups,
.camera-structured-layout > .rev2-commercial-camera-services,
.camera-structured-layout > .rev2-license-trust-block,
.camera-structured-layout > .camera-use-cases {
  background: #f4f7fb;
}

.camera-structured-layout .rev2-content-section h2,
.camera-structured-layout .rev2-content-section h3,
.camera-structured-layout .rev2-link-groups h2,
.camera-structured-layout .rev2-link-groups h3,
.camera-structured-layout .rev2-process h2,
.camera-structured-layout .rev2-process h3,
.camera-structured-layout .camera-use-cases h2,
.camera-structured-layout .camera-use-cases h3 {
  color: var(--ink);
}

.camera-structured-layout .rev2-content-section p,
.camera-structured-layout .rev2-link-groups p,
.camera-structured-layout .rev2-process p,
.camera-structured-layout .camera-use-cases p {
  color: var(--muted);
}

.camera-structured-layout > .rev2-content-section .section-head p:not(.eyebrow) {
  color: var(--muted);
}

.camera-structured-layout .rev2-content-section .eyebrow,
.camera-structured-layout .rev2-link-groups .eyebrow,
.camera-structured-layout .rev2-process .eyebrow,
.camera-structured-layout .camera-use-cases .eyebrow {
  color: var(--brand);
}

.camera-structured-layout .source-approved-faq .eyebrow,
.camera-structured-layout .camera-structured-technologies .eyebrow {
  color: var(--brand-bright);
}

.camera-structured-layout > .rev2-service-overview {
  display: block;
}

.camera-structured-layout > .rev2-service-overview > .wrap {
  width: 100%;
  max-width: 1320px;
  min-width: 0;
}

.camera-structured-layout .rev2-service-overview .rev2-section-media img,
.camera-structured-layout .rev2-service-cards .rev2-section-media img {
  width: 100%;
  height: 420px;
  aspect-ratio: auto;
  object-fit: cover;
}

.camera-structured-layout .rev2-section-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
  gap: 52px;
}

.camera-structured-layout .rev2-section-copy,
.camera-structured-layout .rev2-section-copy > .section-head {
  min-width: 0;
}

.camera-structured-layout .rev2-section-copy > .section-head > p {
  max-width: 76ch;
}

.camera-structured-layout .rev2-section-media {
  border-color: #cfd9ea;
  border-radius: 8px;
  background: #e8eef7;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .12);
}

.camera-structured-layout .rev2-supporting-low-voltage-services .rev2-card-grid,
.camera-structured-layout .rev2-tampa-local-content .rev2-card-grid {
  margin-top: 30px;
}

.camera-structured-layout .rev2-supporting-low-voltage-services .proof-card {
  border-color: #cfd9ea;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}

.camera-structured-layout .rev2-supporting-low-voltage-services .proof-card h3 {
  color: var(--ink);
}

.camera-structured-layout .rev2-supporting-low-voltage-services .proof-card p {
  color: var(--muted);
}

.camera-structured-layout .proof-card,
.camera-structured-layout .process-card {
  overflow: hidden;
  height: 100%;
  border: 1px solid #cfd9ea;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}

.camera-structured-layout .proof-card:hover,
.camera-structured-layout .process-card:hover {
  border-color: rgba(31, 155, 255, .68);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .09);
  transform: translateY(-2px);
}

.camera-structured-layout .proof-card h3,
.camera-structured-layout .proof-card p,
.camera-structured-layout .process-card h3,
.camera-structured-layout .process-card p {
  color: var(--ink);
}

.camera-structured-layout .proof-card p,
.camera-structured-layout .process-card p {
  color: var(--muted);
}

.camera-structured-layout .proof-icon,
.camera-structured-layout .process-top i {
  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;
}

.camera-structured-layout .camera-use-cases .proof-icon,
.camera-structured-layout .rev2-supporting-low-voltage-services .proof-icon {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.camera-structured-layout .proof-icon {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.camera-structured-layout .proof-icon svg {
  width: 30px;
  height: 30px;
}

.camera-structured-layout .rev2-link-groups .internal-link-card {
  border-color: #cfd9ea;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}

.camera-structured-layout .rev2-link-groups .internal-card-title {
  border-bottom-color: #dbe3ef;
}

.camera-structured-layout .rev2-link-groups .internal-card-title h3,
.camera-structured-layout .rev2-link-groups .internal-card-title .heading-remediation-card-title,
.camera-structured-layout .rev2-link-groups .internal-link-card nav > a,
.camera-structured-layout .rev2-link-groups .internal-link-card nav > .rev2-current-link {
  color: var(--ink);
}

.camera-structured-layout .rev2-link-groups .internal-link-card nav > a,
.camera-structured-layout .rev2-link-groups .internal-link-card nav > .rev2-current-link {
  border-bottom-color: #e2e8f0;
}

.camera-structured-layout .rev2-tampa-local-content .section-head,
.camera-structured-layout .rev2-public-local-content .section-head,
.camera-structured-layout .rev2-commercial-camera-services .section-head {
  max-width: none;
}

.camera-structured-layout .camera-editorial-split {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 14px 72px;
  align-items: start;
}

.camera-structured-layout .camera-editorial-split > .eyebrow,
.camera-structured-layout .camera-editorial-split > h2 {
  grid-column: 1;
}

.camera-structured-layout .camera-editorial-split > h2 {
  max-width: 520px;
  margin-bottom: 0;
}

.camera-structured-layout .camera-editorial-body {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 3;
  gap: 16px;
}

.camera-structured-layout .camera-editorial-body p {
  max-width: 78ch;
  margin: 0;
}

.camera-structured-layout .camera-commercial-bullet-layout > h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.camera-structured-layout .camera-commercial-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .92fr);
  gap: 64px;
  align-items: stretch;
  margin-top: 32px;
}

.camera-structured-layout .camera-commercial-copy {
  display: grid;
  gap: 18px;
}

.camera-structured-layout .camera-commercial-copy p {
  max-width: 72ch;
  margin: 0;
}

.camera-structured-layout .camera-commercial-bullets {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.camera-structured-layout .camera-commercial-bullets li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 0;
  color: var(--ink);
  line-height: 1.6;
}

.camera-structured-layout .camera-commercial-bullets li + li {
  margin-top: 20px;
}

/* Client review 2026-07-22: the four Commercial Camera Services bullets
   fill the narrative column height on desktop, with every icon centered on
   its own paragraph. Stacked layouts retain their natural content height. */
@media (min-width: 1101px) {
  .camera-structured-layout .camera-commercial-bullets {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .camera-structured-layout .camera-commercial-bullets li + li {
    margin-top: 0;
  }
}

.camera-structured-layout .camera-commercial-dot {
  display: none;
}

.camera-structured-layout .camera-photo-bullets {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.camera-structured-layout .camera-photo-bullets li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: var(--ink);
  line-height: 1.55;
}

.camera-structured-layout .rev2-tampa-local-content .area-pills,
.camera-structured-layout .rev2-public-local-content .area-pills {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 36px;
}

.camera-structured-layout .rev2-tampa-local-content .area-pills > span,
.camera-structured-layout .rev2-public-local-content .area-pills > span {
  min-width: 0;
  color: var(--ink);
  border-color: #cfd9ea;
  background: #fff;
  font-size: 12px;
}

.camera-structured-layout .rev2-public-local-content .rev2-local-feature-list {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.camera-structured-layout .rev2-public-local-content .rev2-local-feature-list li {
  min-height: 0;
  padding: 20px;
  color: var(--ink);
  border: 1px solid #cfd9ea;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}

.camera-structured-layout .rev2-tampa-local-content .rev2-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.camera-structured-layout .rev2-process .process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.camera-structured-layout .rev2-process .process-card {
  min-height: 248px;
  padding: 26px;
  border-color: #cfd9ea;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}

.camera-structured-layout .rev2-process .process-top span {
  color: var(--brand);
}

.camera-structured-layout .rev2-process .process-top i {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
}

.camera-structured-layout .rev2-process .process-card h3 {
  color: var(--ink);
}

.camera-structured-layout .rev2-process .process-card p {
  color: var(--muted);
}

.camera-structured-layout .rev2-commercial-camera-services .wrap,
.camera-structured-layout .rev2-branch-positioning .wrap {
  max-width: 1180px;
}

.camera-structured-layout .rev2-branch-positioning {
  text-align: center;
  background: #fff;
}

.camera-structured-layout .rev2-branch-positioning .section-head {
  max-width: 920px;
  margin: 0 auto;
}

.camera-structured-layout .rev2-branch-positioning .section-head p:not(.eyebrow) {
  max-width: 78ch;
  margin-right: auto;
  margin-left: auto;
}

.camera-structured-layout .rev2-license-trust-block .rev2-section-copy {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 66px;
  align-items: start;
}

.camera-structured-layout .rev2-license-trust-block .solution-fit-list {
  margin-top: 0;
}

.camera-structured-layout .camera-use-cases .use-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
}

.camera-structured-layout .camera-use-cases .use-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border-color: #cfd9ea;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}

.camera-structured-layout .camera-use-cases .use-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.camera-structured-layout .camera-use-cases .use-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.camera-structured-layout .camera-use-cases .use-card h3,
.camera-structured-layout .camera-use-cases .use-card p {
  color: var(--ink);
}

.camera-structured-layout .camera-use-cases .use-card p {
  margin: 12px 0 20px;
  color: var(--muted);
}

.camera-structured-layout .camera-use-cases .proof-card-link {
  margin-top: auto;
}

.camera-structured-layout > .rev2-faq {
  color: #fff;
  background: #031026;
}

.camera-structured-layout > .rev2-faq .faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.camera-structured-layout > .rev2-faq .section-head h2,
.camera-structured-layout > .rev2-faq .faq-item h3 {
  color: #fff;
}

.camera-structured-layout > .rev2-faq .faq-item {
  align-self: start;
  margin: 0;
}

.camera-structured-layout > .camera-structured-technologies {
  color: #fff;
  background: #071a38;
}

.camera-structured-layout > .camera-structured-technologies .section-head h2 {
  color: #fff;
}

.camera-structured-layout > .camera-structured-technologies .technology-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: 1560px;
  gap: 10px 26px;
  margin: 12px auto 0;
}

.camera-structured-layout > .camera-structured-technologies .technology-grid span {
  grid-column: auto;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  justify-content: center;
  gap: 14px;
  padding: 10px 20px;
  color: #111827;
  border: 1px solid #cfd9ea;
  border-radius: 7px;
  background: #fff;
  box-shadow: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.camera-structured-layout > .camera-structured-technologies .technology-grid span:nth-child(7) {
  grid-column: auto;
}

.camera-structured-layout > .section:last-child {
  padding: 56px 20px;
  color: #fff;
  background: #031026;
}

.camera-structured-layout > .section:last-child .cta-band {
  max-width: 1280px;
  gap: 36px;
}

.camera-structured-layout > .section:last-child .cta-band h2 {
  max-width: 760px;
  color: #fff;
  font-size: 42px;
  line-height: 1.15;
}

.camera-structured-layout > .section:last-child .cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, .8);
}

@media (max-width: 1100px) {
  .camera-structured-layout .camera-structured-hero .camera-structured-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .camera-structured-layout > .rev2-service-overview,
  .camera-structured-layout .rev2-section-grid,
  .camera-structured-layout .camera-editorial-split,
  .camera-structured-layout .rev2-license-trust-block .rev2-section-copy {
    grid-template-columns: 1fr;
  }

  .camera-structured-layout .camera-editorial-body {
    grid-column: 1;
    grid-row: auto;
  }

  .camera-structured-layout .camera-commercial-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .unfrozen-page .v42-fit-grid-with-photo-bullets,
  .unfrozen-page .rev2-solutions-bullet-layout .rev2-section-copy {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .unfrozen-page .v42-application-inline {
    grid-column: 1;
  }

  .unfrozen-page .v42-application-inline .v42-fit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
  }

  .camera-structured-layout .rev2-tampa-local-content .area-pills,
  .camera-structured-layout .rev2-public-local-content .area-pills {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .camera-structured-layout .rev2-tampa-local-content .rev2-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .camera-structured-layout .rev2-process .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .camera-structured-layout > .camera-structured-technologies .technology-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .camera-structured-layout > .section {
    padding: 52px 16px;
  }

  .unfrozen-page .v42-application-inline .v42-fit-list {
    grid-template-columns: 1fr;
  }

  .camera-structured-layout .camera-structured-hero .camera-structured-trust,
  .camera-structured-layout .rev2-process .process-grid,
  .camera-structured-layout .camera-use-cases .use-case-grid,
  .camera-structured-layout > .rev2-faq .faq-list {
    grid-template-columns: 1fr;
  }

  .camera-structured-layout .rev2-service-overview .rev2-section-media img,
  .camera-structured-layout .rev2-service-cards .rev2-section-media img {
    height: 240px;
  }

  .camera-structured-layout .rev2-section-grid {
    gap: 30px;
  }

  .camera-structured-layout .rev2-tampa-local-content .area-pills,
  .camera-structured-layout .rev2-public-local-content .area-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }

  .camera-structured-layout .rev2-tampa-local-content .area-pills > span,
  .camera-structured-layout .rev2-public-local-content .area-pills > span {
    padding: 8px 9px;
    font-size: 11px;
  }

  .camera-structured-layout .rev2-tampa-local-content .rev2-card-grid {
    grid-template-columns: 1fr;
  }

  .camera-structured-layout > .camera-structured-technologies .technology-grid {
    grid-template-columns: 1fr;
  }

  .camera-structured-layout > .section:last-child .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .camera-structured-layout > .section:last-child .cta-band h2 {
    font-size: 34px;
  }

  .camera-structured-layout > .section:last-child .btn {
    width: 100%;
  }
}

/* Shared service-page geometry. Structured Cabling remains the visual reference. */
.service-layout-standard {
  --service-layout-max: 1560px;
  --service-layout-reading: 1280px;
}

.service-layout-standard > .rev2-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;
}

.service-layout-standard > .rev2-hero > .page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(400px, 480px);
  width: 100%;
  max-width: var(--service-layout-max);
  gap: 40px;
  align-items: center;
  padding: 48px 20px 34px;
}

.service-layout-standard > .rev2-hero .page-hero-copy {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  padding-top: 0;
}

.service-layout-standard > .rev2-hero .page-hero-copy h1 {
  max-width: 660px;
  font-size: clamp(46px, 3.8vw, 50px);
  line-height: 1.1;
}

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

.service-layout-standard > .rev2-hero .page-hero-copy > p {
  margin-top: 16px;
}

.service-layout-standard > .rev2-hero .rev2-lead-panel {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 480px;
}

.service-layout-standard > .rev2-hero .wave6-hero-trust,
.service-layout-standard > .rev2-hero .camera-structured-trust {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  margin-top: 0;
}

.service-layout-standard > .section {
  padding: 54px 20px;
}

.service-layout-standard > .section > .wrap {
  width: 100%;
  max-width: var(--service-layout-max);
}

.service-layout-standard > .rev2-commercial-camera-services > .wrap,
.service-layout-standard > .rev2-branch-positioning > .wrap {
  max-width: var(--service-layout-max);
}

.service-layout-standard > .section:not(.rev2-faq):not(:last-child) {
  color: var(--ink);
  background: #fff;
}

.service-layout-standard > .section:not(.rev2-faq):not(:last-child):nth-child(odd) {
  background: #f4f7fb;
}

.service-layout-standard > .section:not(.rev2-faq):not(:last-child) h2,
.service-layout-standard > .section:not(.rev2-faq):not(:last-child) h3 {
  color: var(--ink);
}

.service-layout-standard > .section:not(.rev2-faq):not(:last-child) p,
.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .rev2-local-feature-list li {
  color: var(--muted);
}

.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .eyebrow,
.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .proof-card-link {
  color: var(--brand);
}

.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .proof-card,
.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .process-card,
.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .internal-link-card {
  border-color: #cfd9ea;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}

.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .proof-card h3,
.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .process-card h3,
.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .internal-link-card h3 {
  color: var(--ink);
}

.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .proof-card p,
.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .process-card p,
.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .internal-link-card p {
  color: var(--muted);
}

.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .cta-band h2,
.service-layout-standard > .section:last-child .cta-band h2 {
  color: #fff;
}

.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .cta-band p,
.service-layout-standard > .section:last-child .cta-band p {
  color: rgba(255, 255, 255, .78);
}

.service-layout-standard > .rev2-faq > .wrap,
.service-layout-standard > .section:last-child > .wrap {
  max-width: var(--service-layout-reading);
}

.service-layout-standard .rev2-section-grid {
  grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr);
  gap: 66px;
}

.service-layout-standard .rev2-card-grid,
.service-layout-standard .wave6-category-grid,
.service-layout-standard .rev2-process .process-grid {
  gap: 20px;
  align-items: stretch;
}

.service-layout-standard .proof-card,
.service-layout-standard .process-card,
.service-layout-standard .internal-link-card {
  min-width: 0;
  border-radius: 10px;
}

.service-layout-standard .mapped-section-media {
  max-width: var(--service-layout-reading);
}

.required-contextual-links.service-layout-contextual > .wrap {
  max-width: 1280px;
}

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

  .service-layout-standard > .rev2-hero > .page-hero-grid,
  .service-layout-standard .rev2-section-grid {
    grid-template-columns: 1fr;
  }

  .service-layout-standard > .rev2-hero .page-hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .service-layout-standard > .rev2-hero .rev2-lead-panel {
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
    max-width: none;
  }

  .service-layout-standard > .rev2-hero .wave6-hero-trust,
  .service-layout-standard > .rev2-hero .camera-structured-trust {
    grid-column: 1;
    grid-row: 3;
  }
}

@media (max-width: 760px) {
  .service-layout-standard > .rev2-hero > .page-hero-grid {
    gap: 40px;
    padding: 34px 20px;
  }

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

  .service-layout-standard > .section {
    padding: 54px 20px;
  }
}

/* Wave 6 final publication layouts */
.wave6-hero-trust {
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  margin-top: 8px;
}

.wave6-hero-trust .solution-trust-card {
  min-width: 0;
  height: 100%;
}

.wave6-card-links {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.wave6-category-grid > .proof-card,
.rev2-related-services .proof-card,
.rev2-service-cards .proof-card,
.rev2-property-applications .proof-card {
  height: 100%;
}

.rev2-local-editorial-grid,
.rev2-primary-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 48px;
  align-items: center;
}

.rev2-local-editorial-grid .rev2-section-media,
.rev2-primary-focus-grid figure {
  overflow: hidden;
  width: 100%;
  margin: 0;
  border: 1px solid rgba(102, 145, 224, .28);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(3, 16, 38, .18);
}

.rev2-local-editorial-grid .rev2-section-media img,
.rev2-primary-focus-grid figure img {
  width: 100%;
  height: 420px;
  aspect-ratio: auto;
  object-fit: cover;
}

.rev2-local-feature-list {
  align-self: stretch;
  margin: 0;
}

.rev2-local-feature-list li {
  color: #fff;
}

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

.rev2-process .process-card {
  min-width: 0;
  min-height: 248px;
  padding: 24px;
  border: 1px solid rgba(83, 132, 255, .32);
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035)), rgba(10, 23, 48, .8);
}

.rev2-process .process-top {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  color: var(--brand-soft);
  font-weight: 700;
}

.rev2-process .process-top i {
  display: inline-flex;
  width: 34px;
  color: var(--brand-bright);
}

@media (max-width: 980px) {
  .wave6-hero-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rev2-local-editorial-grid,
  .rev2-primary-focus-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

@media (max-width: 760px) {
  .wave6-hero-trust {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rev2-local-editorial-grid .rev2-section-media img,
  .rev2-primary-focus-grid figure img {
    height: 250px;
  }

  .wave6-category-grid,
  .rev2-related-services .rev2-card-grid,
  .rev2-service-cards .rev2-card-grid,
  .rev2-property-applications .rev2-card-grid {
    grid-template-columns: 1fr;
  }

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

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

/* Consistent publication imagery for unfrozen service, application and hub cards. */
.unfrozen-page .rev2-service-cards .proof-card-media,
.unfrozen-page .rev2-property-applications .proof-card-media,
.unfrozen-page .wave6-category-grid .proof-card-media {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.unfrozen-page .rev2-service-cards .proof-card-media img,
.unfrozen-page .rev2-property-applications .proof-card-media img,
.unfrozen-page .wave6-category-grid .proof-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unfrozen-page .rev2-property-applications-media,
.unfrozen-page .wave6-category-media {
  width: min(100%, 760px);
  margin: 32px auto 0;
}

.unfrozen-page .rev2-property-applications-media img,
.unfrozen-page .wave6-category-media img {
  width: 100%;
  max-height: none;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (min-width: 981px) {
  .unfrozen-page .wave6-category-grid.wave6-grid-count-5,
  .unfrozen-page .rev2-property-applications .rev2-card-grid.rev2-grid-count-5 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .unfrozen-page .wave6-category-grid.wave6-grid-count-5 > *,
  .unfrozen-page .rev2-property-applications .rev2-card-grid.rev2-grid-count-5 > * {
    grid-column: span 2;
  }

  .unfrozen-page .wave6-category-grid.wave6-grid-count-5 > :nth-child(4),
  .unfrozen-page .rev2-property-applications .rev2-card-grid.rev2-grid-count-5 > :nth-child(4) {
    grid-column: 2 / span 2;
  }
}

.required-contextual-links {
  padding-top: 34px;
  padding-bottom: 34px;
}

.required-contextual-links nav {
  display: block;
  padding: 24px 28px;
  border: 1px solid rgba(13, 68, 255, .18);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.required-contextual-links h2 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
}

.required-contextual-links nav > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.required-contextual-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(13, 68, 255, .24);
  border-radius: 999px;
  color: var(--brand-dark);
  background: #f7f9ff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

/* Contextual service links: equal-width navigation cards without an empty heading column. */
.required-contextual-links.service-layout-contextual {
  padding-top: 24px;
  padding-bottom: 28px;
}

.required-contextual-links.service-layout-contextual nav {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.required-contextual-links.service-layout-contextual nav > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.required-contextual-links.service-layout-contextual a {
  position: relative;
  justify-content: flex-start;
  width: 100%;
  min-height: 68px;
  padding: 16px 48px 16px 20px;
  border-color: #cfd9ea;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.required-contextual-links.service-layout-contextual a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  transform: translateY(-50%) rotate(45deg);
}

.required-contextual-links.service-layout-contextual a:hover,
.required-contextual-links.service-layout-contextual a:focus-visible {
  border-color: rgba(13, 68, 255, .52);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .09);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .required-contextual-links.service-layout-contextual nav > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .required-contextual-links nav {
    padding: 22px;
  }

  .required-contextual-links nav > div {
    grid-template-columns: 1fr;
  }
}

/* Shared compact hero shell for the 18 approved camera and solution service routes. */
.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,
.service-hero-standard .icon-field select,
.service-hero-standard .icon-field textarea {
  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 .message-field.icon-field > .field-icon,
.service-hero-standard .rev2-textarea-shell .field-icon {
  top: 13px;
  transform: none;
}

.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: 14px;
  line-height: 1.22;
}

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

.unfrozen-page .page-hero .source-approved-trust .solution-trust-card,
.unfrozen-page .page-hero .source-trust-strip .trust-item {
  display: grid;
  grid-template-rows: 36px minmax(38px, auto) minmax(0, 1fr);
  align-content: stretch;
  align-items: start;
  gap: 8px;
}

.unfrozen-page .page-hero .source-approved-trust .solution-trust-icon,
.unfrozen-page .page-hero .source-trust-strip .trust-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 2px;
}

.unfrozen-page .page-hero .source-approved-trust .solution-trust-card strong,
.unfrozen-page .page-hero .source-trust-strip .trust-item strong {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.28;
}

.unfrozen-page .page-hero .source-approved-trust .solution-trust-card > span:last-child,
.unfrozen-page .page-hero .source-trust-strip .trust-item > span:last-child {
  font-size: 12.25px;
  line-height: 1.42;
}

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

/* Data Pro main-site form contract: visual normalization only; source copy and field order remain page-specific. */
.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;
}

.rev2-contact-hero .datapro-standard-form {
  max-width: 780px;
}

/* Center only the hero trust icon wrapper; approved title and description alignment stays unchanged. */
.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;
}

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

/* Client correction 2026-07-26: use one explicit internal geometry for every
   trust-card family. Titles occupy the same centered track, descriptions begin
   on the same line, and previous expanded title gutters are neutralized. */
@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;
  }

  .v42-article-trust-statements-only
    .solution-trust-grid
    > .solution-trust-card {
    grid-template-rows: 40px minmax(0, 1fr) !important;
  }

  .v42-article-trust-statements-only
    .solution-trust-grid
    > .solution-trust-card
    > strong {
    display: block !important;
    grid-row: 2;
    align-self: start !important;
    height: auto;
    min-height: 0;
    line-height: 1.4 !important;
    text-align: left !important;
    white-space: normal !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;
  }

  .v42-article-trust-statements-only
    .solution-trust-grid
    > .solution-trust-card
    > strong {
    font-size: 12px !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
  }
}

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

.rev2-contact-hero .datapro-standard-form {
  max-width: 488px;
}

@media (min-width: 1101px) {
  .home-v2-hero .hero-inner {
    grid-template-columns: minmax(0, 1fr) 488px;
  }
}

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

/* 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,
.rev2-home-hero .rev2-home-trust .trust-item > 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;
}

/* Client review: desktop trust titles and related-card actions stay on one line. */
@media (min-width: 1101px) {
  .rev2-home-hero .rev2-home-trust .trust-item {
    padding-right: 8px;
    padding-left: 8px;
  }

  .rev2-home-hero .rev2-home-trust .trust-item > strong {
    font-size: clamp(9px, .78vw, 12.5px);
    letter-spacing: -.02em;
    white-space: nowrap;
  }

  .unfrozen-page .page-hero .source-approved-trust .solution-trust-card strong,
  .unfrozen-page .page-hero .wave6-hero-trust .solution-trust-card strong,
  .unfrozen-page .page-hero .v42-trust-grid .solution-trust-card strong,
  .unfrozen-page .service-hero-standard .solution-trust-card strong {
    white-space: nowrap;
  }

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

  .unfrozen-page .page-hero .v42-trust-grid.v42-grid-count-5 .solution-trust-card strong {
    font-size: clamp(11px, .86vw, 14px) !important;
    letter-spacing: -.03em;
  }

  .unfrozen-page .v42-related-grid .solution-related-body .btn,
  .unfrozen-page .rev2-related-services .proof-card-link {
    white-space: nowrap;
  }

  .unfrozen-page .v42-related-grid .solution-related-body .btn {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 12px;
  }
}

/* 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-bright);
  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-bright);
  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,
.v42-feature-grid .solution-feature-card .heading-remediation-card-title {
  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),
.unfrozen-page .service-layout-standard .rev2-service-cards .proof-card:not(.proof-card-with-media) {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-layout-standard > .section:not(.rev2-faq):not(:last-child) .process-card {
  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 review 2026-07-24: every unfrozen trust-card set uses deterministic
   columns and equal-height rows. Icon, title and body copy share the same
   vertical tracks so the complete row stays aligned without changing copy. */
@media (min-width: 981px) {
  main.unfrozen-page .rev2-trust-strip {
    gap: 8px !important;
  }

  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ) {
    display: grid !important;
    grid-auto-flow: row;
    grid-auto-rows: 1fr;
    align-items: stretch !important;
  }

  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ) > :is(.solution-trust-card, .trust-item) {
    display: grid !important;
    grid-template-rows: 40px 28px minmax(0, 1fr) !important;
    align-content: stretch;
    align-items: start;
    min-width: 0 !important;
    height: 100% !important;
  }

  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ) > :is(.solution-trust-card, .trust-item) > :is(.solution-trust-icon, .trust-icon) {
    display: grid;
    width: 40px !important;
    height: 40px !important;
    place-items: center;
    justify-self: center;
    line-height: 0;
  }

  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ) > :is(.solution-trust-card, .trust-item) > :is(.solution-trust-icon, .trust-icon) > svg {
    display: block;
  }

  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ) > :is(.solution-trust-card, .trust-item) > strong {
    font-size: clamp(10px, .9vw, 13px) !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
  }

  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ) > :is(.solution-trust-card, .trust-item) > span:last-child {
    align-self: start;
    margin-top: 0;
  }
}

@media (min-width: 981px) and (max-width: 1100px) {
  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ) {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  main.unfrozen-page :is(
    .solution-trust-grid,
    .source-approved-trust,
    .wave6-hero-trust
  ).v42-grid-count-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1101px) {
  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ) {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  main.unfrozen-page :is(
    .solution-trust-grid,
    .source-approved-trust,
    .wave6-hero-trust
  ).v42-grid-count-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ).v42-grid-count-5 > :is(.solution-trust-card, .trust-item),
  main.unfrozen-page :is(.trust-strip, .camera-structured-trust)
    > :is(.solution-trust-card, .trust-item) {
    padding-right: 8px;
    padding-left: 8px;
  }

  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ).v42-grid-count-5 > :is(.solution-trust-card, .trust-item) > strong,
  main.unfrozen-page :is(.trust-strip, .camera-structured-trust)
    > :is(.solution-trust-card, .trust-item) > strong {
    font-size: clamp(8.25px, .72vw, 11px) !important;
    letter-spacing: -.03em;
  }
}

/* Resource-article trust signals are complete statements rather than short
   card headings. Keep one approved copy, allow readable wrapping and align
   every statement from the same top track without horizontal overflow. */
@media (min-width: 981px) {
  main.unfrozen-page .v42-article-trust-statements-only .solution-trust-card {
    grid-template-rows: 40px minmax(0, 1fr) !important;
  }

  main.unfrozen-page
    .v42-article-trust.v42-article-trust-statements-only
    .v42-trust-grid.v42-grid-count-5
    > .solution-trust-card
    > strong {
    align-self: start;
    font-size: 12px !important;
    line-height: 1.4 !important;
    letter-spacing: 0;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
}

/* Client review 2026-07-23: Wave 6 industry trust cards must remain
   equal-width and aligned. The approved five-card titles stay on one line
   without changing their wording. */
@media (min-width: 981px) and (max-width: 1100px) {
  main.unfrozen-page
    > .page-hero.wave6-hero[data-template-family*="INDUSTRY-SERVICE"]
    .wave6-hero-trust {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-rows: 1fr;
    align-items: stretch !important;
  }

  main.unfrozen-page
    > .page-hero.wave6-hero[data-template-family*="INDUSTRY-SERVICE"]
    .wave6-hero-trust
    > .solution-trust-card {
    min-width: 0 !important;
    height: 100%;
  }
}

@media (min-width: 1101px) {
  main.unfrozen-page
    > .page-hero.wave6-hero[data-template-family*="INDUSTRY-SERVICE"]
    .wave6-hero-trust {
    display: grid !important;
    grid-auto-rows: 1fr;
    align-items: stretch !important;
  }

  main.unfrozen-page
    > .page-hero.wave6-hero[data-template-family*="INDUSTRY-SERVICE"]
    .wave6-hero-trust.v42-grid-count-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  main.unfrozen-page
    > .page-hero.wave6-hero[data-template-family*="INDUSTRY-SERVICE"]
    .wave6-hero-trust
    > .solution-trust-card {
    min-width: 0 !important;
    height: 100%;
    padding-right: 8px;
    padding-left: 8px;
  }

  main.unfrozen-page
    > .page-hero.wave6-hero[data-template-family*="INDUSTRY-SERVICE"]
    .wave6-hero-trust.v42-grid-count-5
    > .solution-trust-card
    > strong {
    font-size: clamp(8.25px, .72vw, 11px) !important;
    letter-spacing: -.03em;
  }

}

/* Client review 2026-07-26: harden the internal geometry of every unfrozen
   trust-card family at the responsive breakpoints. Card copy is unchanged.
   Fixed icon/title tracks keep icons, headings and body copy on the same
   horizontal lines while minmax(0, 1fr) prevents long headings from widening
   a card's implicit grid column. */
@media (min-width: 641px) and (max-width: 980px) {
  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ) {
    display: grid !important;
    grid-auto-rows: 1fr;
    align-items: stretch !important;
  }

  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ) > :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;
    align-content: stretch !important;
    align-items: start !important;
    min-width: 0 !important;
    height: 100% !important;
  }

  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ) > :is(.solution-trust-card, .trust-item) > :is(.solution-trust-icon, .trust-icon) {
    align-self: start !important;
    justify-self: center;
    width: 40px !important;
    height: 40px !important;
    margin: 0;
  }

  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ) > :is(.solution-trust-card, .trust-item) > strong {
    align-self: start !important;
    min-width: 0;
    width: 100%;
    margin: 0;
    text-align: center;
  }

  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ) > :is(.solution-trust-card, .trust-item) > span:last-child {
    align-self: start !important;
    min-width: 0;
    margin-top: 0;
  }

  main.unfrozen-page .v42-article-trust-statements-only .solution-trust-card {
    grid-template-rows: 40px minmax(0, 1fr) !important;
  }
}

@media (min-width: 981px) {
  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ) > :is(.solution-trust-card, .trust-item) {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  main.unfrozen-page :is(
    .solution-trust-grid,
    .trust-strip,
    .source-approved-trust,
    .wave6-hero-trust
  ) > :is(.solution-trust-card, .trust-item) > :is(
    .solution-trust-icon,
    .trust-icon,
    strong,
    span:last-child
  ) {
    min-width: 0;
    max-width: 100%;
  }
}

@media (min-width: 981px) and (max-width: 1100px) {
  .rev2-home-hero .rev2-home-trust .trust-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 40px 28px minmax(0, 1fr);
    align-content: stretch;
    align-items: start;
    padding-right: 8px;
    padding-left: 8px;
  }

  .rev2-home-hero .rev2-home-trust .trust-item > strong {
    align-self: start;
    min-width: 0;
    width: 100%;
    font-size: 9px;
    letter-spacing: -.02em;
    line-height: 1.25;
    white-space: nowrap;
  }

  .rev2-home-hero .rev2-home-trust .trust-item > span:last-child {
    align-self: start;
    margin-top: 0;
  }
}

@media (min-width: 1101px) and (max-width: 1279px) {
  main.unfrozen-page
    .page-hero
    .v42-trust-grid.v42-grid-count-5:not(.v42-article-trust-statements-only)
    > .solution-trust-card
    > strong {
    font-size: clamp(9px, .86vw, 11px) !important;
  }
}

@media (min-width: 1101px) {
  main.unfrozen-page
    .v42-trust-grid.v42-grid-count-5
    > .solution-trust-card
    > strong {
    width: calc(100% + 14px);
    max-width: calc(100% + 14px);
    margin-right: -7px;
    margin-left: -7px;
  }

  main.unfrozen-page
    .v42-article-trust.v42-article-trust-statements-only
    .v42-trust-grid.v42-grid-count-5
    > .solution-trust-card
    > strong {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  main.unfrozen-page
    .solution-trust-grid.v42-grid-count-4
    > .solution-trust-card
    > strong {
    width: calc(100% + 16px);
    max-width: calc(100% + 16px);
    margin-right: -8px;
    margin-left: -8px;
  }

  main.unfrozen-page
    .wave6-hero-trust.v42-grid-count-5
    > .solution-trust-card
    > strong {
    width: calc(100% + 8px);
    max-width: calc(100% + 8px);
    margin-right: -4px;
    margin-left: -4px;
  }

  main.unfrozen-page
    > .page-hero.wave6-hero[data-template-family*="INDUSTRY-SERVICE"]
    .wave6-hero-trust.v42-grid-count-5
    > .solution-trust-card
    > strong {
    width: calc(100% + 14px);
    max-width: calc(100% + 14px);
    margin-right: -7px;
    margin-left: -7px;
    font-size: clamp(7.8px, .69vw, 11px) !important;
    letter-spacing: -.05em;
  }
}

@media (min-width: 1101px) {
  main.unfrozen-page
    .page-hero
    .rev2-trust-strip
    > .trust-item
    > strong {
    width: calc(100% + 14px);
    max-width: calc(100% + 14px);
    margin-right: -7px;
    margin-left: -7px;
    font-size: clamp(8.25px, .7vw, 10.7px) !important;
  }
}

/* Industry service pages share the same horizontal shell as Solutions.
   FAQ remains on the narrower reading width used by the reference pages. */
main.unfrozen-page > .page-hero.wave6-hero[data-template-family*="INDUSTRY-SERVICE"] > .wrap.page-hero-grid,
main.unfrozen-page > .page-hero.wave6-hero[data-template-family*="INDUSTRY-SERVICE"] ~ .section:not(.rev2-faq) > .wrap {
  width: 100%;
  max-width: var(--tampa-service-shell);
}

main.unfrozen-page > .page-hero.wave6-hero[data-template-family*="INDUSTRY-SERVICE"] ~ .rev2-faq > .wrap {
  width: 100%;
  max-width: 1280px;
}

/* Client review 2026-07-21: linked related-service cards navigate to
   dedicated pages, so contextual destination photography replaces decorative icons. */
.unfrozen-page .rev2-related-services-with-media .proof-card-media {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.unfrozen-page .rev2-related-services-with-media .proof-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unfrozen-page .rev2-related-services-with-media .proof-card-heading-without-icon,
.unfrozen-page .rev2-related-industries .proof-card-heading-without-icon {
  grid-template-columns: minmax(0, 1fr);
  min-height: 52px;
  align-items: start;
}

.unfrozen-page .rev2-related-services-with-media .proof-card-heading-without-icon h3,
.unfrozen-page .rev2-related-services-with-media .proof-card-heading-without-icon .heading-remediation-card-title {
  margin: 0;
}

.unfrozen-page .rev2-related-industries .proof-card-heading-without-icon h3 {
  margin: 0;
}

.unfrozen-page .rev2-related-industries .proof-card-heading-without-icon .heading-remediation-card-title {
  margin: 0;
}

@media (max-width: 389px) {
  .unfrozen-page .rev2-related-industries .proof-card-heading-without-icon h3 {
    font-size: 16px;
  }

  .unfrozen-page .rev2-related-industries .proof-card-heading-without-icon .heading-remediation-card-title {
    font-size: 16px;
  }
}

@media (min-width: 981px) and (max-width: 1049px) {
  .unfrozen-page .rev2-related-industries .proof-card-heading-without-icon h3 {
    font-size: 18px;
  }

  .unfrozen-page .rev2-related-industries .proof-card-heading-without-icon .heading-remediation-card-title {
    font-size: 18px;
  }
}

/* Client review 2026-07-22: keep the Tampa camera page's editorial columns
   top-aligned, then align the feature cards with the title on desktop.
   Copy, areas, feature order and the stacked mobile layout remain unchanged. */
.camera-structured-layout .rev2-public-local-content .rev2-local-editorial-grid {
  align-items: start;
}

.camera-structured-layout .rev2-public-local-content .rev2-local-feature-list {
  align-self: start;
}

.camera-structured-layout .rev2-public-local-content .rev2-local-feature-column {
  display: grid;
  min-width: 0;
  gap: 24px;
  align-self: start;
}

.camera-structured-layout .rev2-public-local-content .rev2-local-feature-media img {
  height: clamp(260px, 24vw, 340px);
  aspect-ratio: auto;
  object-fit: cover;
}

@media (min-width: 981px) {
  .camera-structured-layout .rev2-public-local-content .rev2-local-feature-list {
    margin-top: 43px;
  }
}

/* Process cards use a shared vertical rhythm even when a title wraps. */
.camera-structured-layout.service-layout-standard > .rev2-process.section:not(.rev2-faq):not(:last-child) .process-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 48px 78px minmax(0, 1fr);
  align-content: start;
  justify-content: normal;
}

.camera-structured-layout .rev2-process .process-top {
  width: 100%;
  height: 48px;
}

.camera-structured-layout .rev2-process .process-card h3 {
  min-height: 0;
  margin: 14px 0 0;
}

/* Desktop article navigation fills the left column before the right without
   coupling the height of unrelated items across two grid rows. */
@media (min-width: 761px) {
  .v42-article-toc:not([data-client-review-route="fiber-optic"]) ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(7, auto);
    grid-auto-flow: column;
  }
}

/* Client review 2026-07-27: every V4.2 service-card family uses shared title
   and copy tracks. Icons stay in the upper-left heading position. */
.v42-service-grid .solution-feature-icon,
.unfrozen-page .v42-overview-section .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,
  .v42-service-grid .solution-feature-card .heading-remediation-card-title {
    grid-column: 2;
    grid-row: 1;
    min-height: 3.25em;
    align-self: start;
    margin: 0;
  }

  .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,
  .unfrozen-page .v42-overview-section .v42-service-grid .solution-feature-icon {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: center;
  }
}

/* Client review 2026-07-27: article summary cards need their own visible H2,
   consistent separation between title and copy, and one shared card height
   across every desktop row. */
.v42-article-card-group-head {
  margin-top: 0;
}

.v42-article-card-group-head .eyebrow {
  margin-bottom: 8px;
}

@media (min-width: 761px) {
  .v42-article-service-cards .v42-service-grid {
    grid-auto-rows: 1fr;
    align-items: stretch;
  }

  .v42-article-service-cards .v42-service-grid .solution-feature-card {
    height: 100%;
  }

  .v42-article-service-cards .v42-service-grid .solution-feature-card p:not(.heading-remediation-card-title) {
    margin-top: 18px;
  }
}

/* Complete live-audit remediation, 2026-07-31. Keep every rule anchored to
   unfrozen internal pages so the approved Home and frozen core pages retain
   their exact rendered baselines. */
body:has(main.unfrozen-page) {
  font-family: "Inter", "Inter Audit Fallback", sans-serif;
}

main.unfrozen-page ~ .site-footer.rev2-footer h2,
main.unfrozen-page ~ .site-footer.rev2-footer .footer-license-badge strong,
.unfrozen-page .v42-final-cta .eyebrow,
.unfrozen-page .section.dark.source-approved-faq .eyebrow {
  color: var(--brand-soft);
}

/* The parent destinations remain comfortably operable even when their header
   disclosure controls are rendered alongside them. */
body:has(main.unfrozen-page) .nav-group .nav-parent-link {
  display: inline-flex;
  min-width: 24px;
  min-height: 24px;
  align-items: center;
}

/* Keep compact text links operable as 24px targets on audited internal pages.
   The selectors cover the shared shell, article TOCs, breadcrumbs and the
   small contextual link patterns without changing the frozen Home/core CSS. */
body:has(main.unfrozen-page) .topbar-phone,
main.unfrozen-page .breadcrumbs a,
main.unfrozen-page .v42-article-toc a,
main.unfrozen-page .solution-related-heading h3 a,
main.unfrozen-page .source-cta-phone,
main.unfrozen-page .v42-mapped-split-wrap .section-head p a,
main.unfrozen-page .internal-link-card nav > a,
main.unfrozen-page .editorial-contextual-inlinks a,
main.unfrozen-page ~ .site-footer.rev2-footer .footer-parent-link {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
}

@media (min-width: 761px) and (max-width: 980px) {
  /* Inter's fallback is wider at this breakpoint and temporarily wraps the
     branch line. Reserving its two-line height prevents the entire page from
     moving when the webfont replaces it. */
  body:has(main.unfrozen-page) .topbar {
    height: 47px;
    min-height: 47px;
  }

  /* Four columns leave only about 41px for card copy at 768px. Two bounded
     columns keep every V4.2 card inside the viewport across tablet widths. */
  main.unfrozen-page .v42-feature-grid.v42-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  main.unfrozen-page .v42-feature-grid.v42-service-grid > *,
  main.unfrozen-page .v42-feature-grid.v42-service-grid .solution-feature-card > div,
  main.unfrozen-page .v42-feature-grid.v42-service-grid :is(h3, .heading-remediation-card-title, p) {
    min-width: 0;
  }

  main.unfrozen-page .v42-feature-grid.v42-service-grid :is(h3, .heading-remediation-card-title, p) {
    overflow-wrap: anywhere;
  }
}

/* Direct client-feedback remediation, 2026-07-31. These rules are isolated
   to the reviewed hubs and article route; Home and frozen core routes do not
   match any selector in this block. */
.wave6-category-section[data-client-review-route="solutions-hub"] .wave6-category-grid > .proof-card-with-media:hover {
  border-color: #cfd9ea;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
  transform: none;
}

.wave6-category-section[data-client-review-route="solutions-hub"] .wave6-category-grid > .proof-card-with-media:hover .proof-card-media img {
  transform: scale(1.01);
}

.wave6-category-section[data-client-review-route="solutions-hub"] .wave6-category-grid .wave6-card-primary-media {
  display: block;
  color: inherit;
}

.wave6-category-section[data-client-review-route="solutions-hub"] .wave6-category-grid .wave6-card-primary-media:hover .proof-card-media img,
.wave6-category-section[data-client-review-route="solutions-hub"] .wave6-category-grid .wave6-card-primary-media:focus-visible .proof-card-media img {
  transform: scale(1.035);
}

.wave6-category-section[data-client-review-route="solutions-hub"] .wave6-category-grid .wave6-card-primary-title {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 4px;
}

.wave6-category-section[data-client-review-route="solutions-hub"] .wave6-category-grid .wave6-card-primary-title:hover,
.wave6-category-section[data-client-review-route="solutions-hub"] .wave6-category-grid .wave6-card-primary-title:focus-visible {
  color: var(--brand);
  text-decoration: underline;
}

.wave6-category-section[data-client-review-route="solutions-hub"] .wave6-category-grid .wave6-card-links .proof-card-link {
  min-height: 44px;
  margin-top: 0;
  padding: 10px 12px;
  border: 1px solid rgba(15, 85, 184, .16);
  border-radius: 6px;
  background: rgba(15, 85, 184, .045);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.wave6-category-section[data-client-review-route="solutions-hub"] .wave6-category-grid .wave6-card-links .proof-card-link:hover,
.wave6-category-section[data-client-review-route="solutions-hub"] .wave6-category-grid .wave6-card-links .proof-card-link:focus-visible {
  border-color: rgba(15, 85, 184, .48);
  background: rgba(15, 85, 184, .12);
  transform: translateX(2px);
}

.v42-article-service-cards[data-client-review-route="data-cabling"] .v42-article-card-group-head {
  margin-bottom: 28px;
}

@media (min-width: 761px) {
  .v42-article-service-cards[data-client-review-route="data-cabling"] .v42-service-grid .solution-feature-card h3,
  .v42-article-service-cards[data-client-review-route="data-cabling"] .v42-service-grid .solution-feature-card .heading-remediation-card-title {
    min-height: 2.5em;
  }

  .v42-article-service-cards[data-client-review-route="data-cabling"] .v42-service-grid .solution-feature-card p:not(.heading-remediation-card-title) {
    margin-top: 8px;
  }

  .v42-article-service-cards[data-client-review-route="data-cabling"] .v42-service-grid .solution-feature-card {
    row-gap: 0;
  }
}

.v42-process-section[data-client-review-route="data-cabling"] .v42-process-grid .solution-feature-card > div {
  grid-template-rows: 96px minmax(0, 1fr);
}

.v42-process-section[data-client-review-route="data-cabling"] .v42-process-grid .solution-feature-card > div h3 {
  display: flex;
  align-items: flex-end;
  margin: 0;
  padding-bottom: 14px;
}

.v42-article-toc[data-client-review-route="fiber-optic"] ol {
  display: block;
  column-count: 2;
  column-gap: 42px;
}

.v42-article-toc[data-client-review-route="fiber-optic"] li {
  break-inside: avoid;
  margin-bottom: 10px;
  padding-right: 10px;
}

@media (min-width: 1101px) and (max-width: 1279px) {
  .v42-process-section[data-client-review-route="data-cabling"] .v42-process-grid.v42-grid-count-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .v42-process-section[data-client-review-route="data-cabling"] .v42-process-grid .solution-feature-card > div {
    grid-template-rows: 128px minmax(0, 1fr);
  }
}

.v42-source-article[data-client-review-route="data-cabling"] {
  background: #f4f7fb;
}

.v42-source-article[data-client-review-route="data-cabling"] .article-content {
  display: grid;
  gap: 20px;
}

.v42-source-article[data-client-review-route="data-cabling"] .v42-article-section {
  margin: 0;
  padding: 28px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(3, 16, 38, .055);
}

.v42-source-article[data-client-review-route="data-cabling"] .v42-article-section:last-child {
  padding-bottom: 28px;
  border-bottom: 1px solid #dbe3ef;
}

.v42-source-article[data-client-review-route="data-cabling"] .v42-article-subsection {
  margin-left: 34px;
  border-left: 4px solid rgba(15, 85, 184, .4);
}

.v42-source-article[data-client-review-route="data-cabling"] .v42-article-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.v42-source-article[data-client-review-route="data-cabling"] .v42-article-group-subsection {
  padding: 20px;
  border: 1px solid #dbe3ef;
  border-radius: 9px;
  background: #f8faff;
}

.v42-source-article[data-client-review-route="data-cabling"] .v42-article-group-subsection h3 {
  margin: 0;
}

@media (max-width: 760px) {
  .v42-article-toc[data-client-review-route="fiber-optic"] ol {
    column-count: 1;
  }

  .v42-process-section[data-client-review-route="data-cabling"] .v42-process-grid .solution-feature-card > div {
    grid-template-rows: auto auto;
  }

  .v42-process-section[data-client-review-route="data-cabling"] .v42-process-grid .solution-feature-card > div h3 {
    display: block;
  }

  .v42-source-article[data-client-review-route="data-cabling"] .v42-article-section {
    padding: 22px;
  }

  .v42-source-article[data-client-review-route="data-cabling"] .v42-article-subsection {
    margin-left: 0;
  }

  .v42-source-article[data-client-review-route="data-cabling"] .v42-article-group {
    grid-template-columns: 1fr;
  }
}

main.unfrozen-page:has(.rev2-contact-hero)
  .rev2-public-trust-grid > .solution-trust-card > span:last-child {
  margin-top: 6px;
}

main.unfrozen-page .contact-related-card-retired {
  display: none !important;
}

/* Contact endcap: merge the two required internal-link appendices into one
   compact, intentional panel after the FAQ. */
main.unfrozen-page .contact-contextual-endcap {
  padding: 56px 20px;
  border-top: 1px solid rgba(120, 170, 255, .16);
  background: #031026;
}

main.unfrozen-page .contact-contextual-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, .8fr);
  align-items: center;
  gap: 48px;
  padding: 36px 40px;
  border: 1px solid rgba(120, 170, 255, .24);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 38, 78, .96), rgba(7, 24, 53, .96));
  box-shadow: 0 18px 44px rgba(0, 0, 0, .2);
}

main.unfrozen-page .contact-contextual-copy {
  max-width: 680px;
}

main.unfrozen-page .contact-contextual-copy .eyebrow {
  margin: 0 0 10px;
  color: var(--brand-soft);
}

main.unfrozen-page .contact-contextual-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}

main.unfrozen-page .contact-contextual-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
  line-height: 1.65;
}

main.unfrozen-page .contact-contextual-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

main.unfrozen-page .contact-contextual-actions-3 > :last-child {
  grid-column: 1 / -1;
}

main.unfrozen-page .contact-contextual-action {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  padding: 14px 44px 14px 18px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

main.unfrozen-page .contact-contextual-action-secondary {
  border-color: rgba(120, 170, 255, .42);
  background: rgba(7, 22, 48, .72);
}

main.unfrozen-page .contact-contextual-action i {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

main.unfrozen-page .contact-contextual-action:hover,
main.unfrozen-page .contact-contextual-action:focus-visible {
  border-color: #8eb2ff;
  background: #2458ff;
  transform: translateY(-2px);
}

main.unfrozen-page .contact-contextual-action-secondary:hover,
main.unfrozen-page .contact-contextual-action-secondary:focus-visible {
  background: rgba(21, 55, 111, .94);
}

@media (max-width: 980px) {
  main.unfrozen-page .contact-contextual-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  main.unfrozen-page .contact-contextual-endcap {
    padding: 36px 16px;
  }

  main.unfrozen-page .contact-contextual-panel {
    gap: 24px;
    padding: 28px 22px;
    border-radius: 12px;
  }

  main.unfrozen-page .contact-contextual-copy h2 {
    font-size: clamp(27px, 8vw, 34px);
  }

  main.unfrozen-page .contact-contextual-actions {
    grid-template-columns: 1fr;
  }

  main.unfrozen-page .contact-contextual-action {
    width: 100%;
  }
}

/* About: keep all six service descriptions visible and align their actions
   consistently without imposing fixed card heights. */
main.unfrozen-page .about-related-services-copy .rev2-card-grid {
  grid-auto-rows: 1fr;
  align-items: stretch;
}

main.unfrozen-page .about-related-services-copy .proof-card-with-media {
  height: 100%;
}

main.unfrozen-page .about-related-services-copy .proof-card-body > p {
  display: block;
  min-height: 68px;
  color: rgba(255, 255, 255, .82);
}

@media (max-width: 760px) {
  main.unfrozen-page .about-related-services-copy .rev2-card-grid {
    grid-auto-rows: auto;
  }

  main.unfrozen-page .about-related-services-copy .proof-card-body > p {
    min-height: 0;
  }
}

/* Contextual navigation endcaps: keep document-mandated links visible while
   presenting them as a compact part of the Data Pro dark visual system. */
main.unfrozen-page .section.alt.required-contextual-links,
main.unfrozen-page .section.alt.editorial-contextual-links {
  padding: 44px 20px;
  border-top: 1px solid rgba(120, 170, 255, .16);
  background:
    radial-gradient(circle at 12% 0%, rgba(13, 68, 255, .16), transparent 34%),
    linear-gradient(180deg, var(--navy-800), var(--navy));
  contain-intrinsic-size: auto 190px;
}

main.unfrozen-page .required-contextual-links > .wrap,
main.unfrozen-page .editorial-contextual-links > .wrap,
main.unfrozen-page .required-contextual-links.service-layout-contextual > .wrap {
  max-width: 1280px;
}

main.unfrozen-page .required-contextual-links nav,
main.unfrozen-page .required-contextual-links.service-layout-contextual nav,
main.unfrozen-page .editorial-contextual-links > .wrap {
  display: grid;
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1.66fr);
  align-items: center;
  gap: 28px;
  padding: 28px 30px;
  border: 1px solid rgba(120, 170, 255, .28);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 38, 78, .96), rgba(7, 24, 53, .96));
  box-shadow: 0 18px 44px rgba(0, 0, 0, .2);
}

main.unfrozen-page .required-contextual-links nav::before,
main.unfrozen-page .editorial-contextual-links > .wrap::before {
  display: block;
  color: var(--brand-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

main.unfrozen-page .required-contextual-links nav::before {
  content: "Related pages";
  padding-left: 28px;
  background: linear-gradient(var(--brand-bright), var(--brand-bright)) left center / 18px 2px no-repeat;
}

main.unfrozen-page .required-contextual-links nav > div,
main.unfrozen-page .required-contextual-links.service-layout-contextual nav > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  justify-content: initial;
}

@media (min-width: 901px) {
  main.unfrozen-page .required-contextual-links .contextual-link-row[data-contextual-link-count="3"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

main.unfrozen-page .required-contextual-links a,
main.unfrozen-page .required-contextual-links.service-layout-contextual a {
  position: relative;
  display: inline-flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: flex-start;
  padding: 13px 44px 13px 16px;
  border: 1px solid rgba(120, 170, 255, .38);
  border-radius: 8px;
  color: #fff;
  background: rgba(5, 16, 39, .72);
  box-shadow: none;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  text-align: left;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

main.unfrozen-page .required-contextual-links a::after,
main.unfrozen-page .required-contextual-links.service-layout-contextual a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--brand-soft);
  border-right: 2px solid var(--brand-soft);
  transform: translateY(-50%) rotate(45deg);
}

main.unfrozen-page .required-contextual-links a:hover,
main.unfrozen-page .required-contextual-links a:focus-visible,
main.unfrozen-page .required-contextual-links.service-layout-contextual a:hover,
main.unfrozen-page .required-contextual-links.service-layout-contextual a:focus-visible {
  border-color: #8eb2ff;
  color: #fff;
  background: rgba(21, 55, 111, .94);
  box-shadow: none;
  transform: translateY(-2px);
}

main.unfrozen-page .editorial-contextual-links > .wrap {
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1.66fr);
}

main.unfrozen-page .editorial-contextual-inlinks {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.65;
}

main.unfrozen-page .editorial-contextual-links > .wrap::before {
  content: "Nearby service areas";
  padding-left: 28px;
  background: linear-gradient(var(--brand-bright), var(--brand-bright)) left center / 18px 2px no-repeat;
}

main.unfrozen-page .editorial-contextual-inlinks a {
  color: #8eb2ff;
  font-weight: 750;
  text-decoration-color: rgba(142, 178, 255, .5);
  text-underline-offset: 3px;
}

main.unfrozen-page .editorial-contextual-inlinks a:hover,
main.unfrozen-page .editorial-contextual-inlinks a:focus-visible {
  color: #fff;
  text-decoration-color: var(--brand-soft);
}

@media (max-width: 900px) {
  main.unfrozen-page .required-contextual-links nav,
  main.unfrozen-page .required-contextual-links.service-layout-contextual nav,
  main.unfrozen-page .editorial-contextual-links > .wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  main.unfrozen-page .required-contextual-links nav > div,
  main.unfrozen-page .required-contextual-links.service-layout-contextual nav > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  main.unfrozen-page .section.alt.required-contextual-links,
  main.unfrozen-page .section.alt.editorial-contextual-links {
    padding: 30px 16px;
  }

  main.unfrozen-page .required-contextual-links nav,
  main.unfrozen-page .required-contextual-links.service-layout-contextual nav,
  main.unfrozen-page .editorial-contextual-links > .wrap {
    padding: 22px;
    border-radius: 12px;
  }

  main.unfrozen-page .required-contextual-links nav > div,
  main.unfrozen-page .required-contextual-links.service-layout-contextual nav > div {
    grid-template-columns: 1fr;
  }

  main.unfrozen-page .required-contextual-links a,
  main.unfrozen-page .required-contextual-links.service-layout-contextual a {
    min-height: 54px;
  }
}

/* Process alignment v2: every unfrozen Rev2 card row shares the title track.
   The runtime supplies the natural maximum for each visual row; the fallback
   remains readable before JavaScript runs, and stacked mobile cards stay fluid. */
main.unfrozen-page .rev2-process .process-grid {
  align-items: stretch;
}

main.unfrozen-page .rev2-process .process-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 48px var(--rev2-process-title-track, minmax(78px, auto)) minmax(0, 1fr);
  align-content: start;
  justify-content: normal;
}

main.unfrozen-page .rev2-process .process-top {
  width: 100%;
  height: 48px;
  grid-column: 1;
  grid-row: 1;
}

main.unfrozen-page .rev2-process .process-card > h3 {
  min-height: 0;
  grid-column: 1;
  grid-row: 2;
  align-self: stretch;
  margin: 14px 0 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(58, 107, 255, .34);
}

main.unfrozen-page .rev2-process .process-card > p {
  grid-column: 1;
  grid-row: 3;
  align-self: start;
  margin: 0;
}

@media (max-width: 1100px) and (min-width: 761px) {
  main.unfrozen-page .rev2-process .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  main.unfrozen-page .rev2-process .process-card {
    grid-template-rows: 48px minmax(78px, auto) auto;
  }
}

/* Modern browsers align process rows without depending on script execution.
   Each card spans the same three parent tracks: header, title/divider and copy. */
@media (min-width: 761px) {
  @supports (grid-template-rows: subgrid) {
    main.unfrozen-page .v42-process-grid,
    main.unfrozen-page .rev2-process .process-grid {
      grid-auto-rows: auto auto auto;
    }

    main.unfrozen-page .v42-process-section .v42-process-grid > .solution-feature-card,
    main.unfrozen-page .rev2-process .process-grid > .process-card {
      grid-row: span 3;
      grid-template-rows: subgrid !important;
      align-items: start;
    }

    main.unfrozen-page .v42-process-section .v42-process-grid > .solution-feature-card > div {
      display: contents;
    }

    main.unfrozen-page .v42-process-section .v42-process-grid > .solution-feature-card > div > h3 {
      grid-column: 1 / -1;
      grid-row: 2;
    }

    main.unfrozen-page .v42-process-section .v42-process-grid > .solution-feature-card > div > p {
      grid-column: 1 / -1;
      grid-row: 3;
    }
  }
}
