/* Gittings Protective Security — homepage
   Palette sampled from 99Designs mockup 550837 */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --bg-header: #07080c;
  --yellow: #f0d41b;
  --yellow-hover: #ffe44a;
  --blue: #3b8fd4;
  --blue-bright: #2f7fe0;
  --blue-deep: #1a4f8a;
  --pink: #c14659;
  --text: #ffffff;
  --muted: #c5c8ce;
  --muted-2: #9aa0a8;
  --line: rgba(255, 255, 255, 0.08);
  --wrap: 1240px;
  --header-h: 168px;
  --font: "Montserrat", system-ui, -apple-system, Segoe UI, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input { font-family: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--yellow);
  color: #111;
  padding: 8px 16px;
  z-index: 10000;
}
.skip:focus { left: 12px; top: 12px; }

section[id], #contact { scroll-margin-top: calc(var(--header-h) + 10px); }
.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

/* Background texture */
.dots {
  background-image: radial-gradient(circle, rgba(90, 130, 190, 0.16) 1px, transparent 1.4px);
  background-size: 22px 22px;
}
.dots-hex {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(70, 110, 180, 0.22) 1px, transparent 1.4px);
  background-size: 18px 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}
.btn-yellow {
  background: var(--yellow);
  color: #111;
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  box-shadow: 0 0 24px rgba(240, 212, 27, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}
.btn-outline:hover {
  background: var(--yellow);
  color: #111;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.85);
}
.btn-outline-white:hover {
  background: #fff;
  color: #111;
}
.btn-blue {
  background: var(--blue-bright);
  color: #0a0a0a;
  border-color: var(--blue-bright);
  padding: 14px 28px;
  font-size: 13px;
}
.btn-blue:hover {
  background: #4a96ee;
  box-shadow: 0 0 22px rgba(47, 127, 224, 0.4);
}
.btn-lg { padding: 16px 28px; font-size: 14px; }
.btn-md { padding: 12px 20px; font-size: 12px; }
.btn-sm { padding: 10px 16px; font-size: 11px; }
.btn-glow { box-shadow: 0 8px 28px rgba(240, 212, 27, 0.22); }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  overflow: visible;
  background: linear-gradient(90deg, #12366a 0%, #0a1220 28%, #07080c 55%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.header-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1440px, calc(100% - 32px));
  margin-inline: auto;
  overflow: visible;
}
.header-panel {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.site-header .logo img {
  height: 148px;
  width: auto;
  max-width: none;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #fff;
  padding: 6px 0;
  position: relative;
}
.nav a:hover,
.nav a:focus-visible {
  color: var(--yellow);
}
.nav a:focus-visible { outline: none; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }

.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 42px;
  height: 42px;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  position: relative;
  content: "";
}
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 0;
  padding: 28px 0 20px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 60% at 8% 0%, rgba(40, 90, 180, 0.45), transparent 60%),
    radial-gradient(ellipse 40% 50% at 92% 20%, rgba(40, 80, 160, 0.25), transparent 60%),
    var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(80, 120, 190, 0.18) 1.1px, transparent 1.4px);
  background-size: 20px 20px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.55), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  align-items: center;
  min-height: 0;
}
.hero h1 {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.hero .lede {
  color: #e8eaee;
  font-size: 15px;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 0 18px;
  font-weight: 400;
}
.hero-graphic {
  position: absolute;
  right: -40px;
  top: 10px;
  height: 108%;
  width: auto;
  max-width: 58%;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
  mix-blend-mode: lighten;
  z-index: 1;
}

/* ========== SERVICES ========== */
.services {
  padding: 0 0 40px;
  background: var(--bg);
  position: relative;
  z-index: 3;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #0e0e10;
  border-top: 3px solid var(--yellow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover,
.svc-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(240, 212, 27, 0.25);
  outline: none;
}
.svc-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 168px;
  object-fit: cover;
}
.svc-body {
  padding: 12px 14px 14px;
  text-align: center;
  background: #0c0c0e;
  flex: 1;
}
.svc-body h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.35;
}
.svc-body p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 400;
}

/* ========== QUOTE BAR ========== */
.quote-bar {
  padding: 56px 0 64px;
  text-align: center;
  background: var(--bg);
}
.quote-bar h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

/* ========== PHOTO STRIP ========== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.photo-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ========== ABOUT ========== */
.about {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 40% 50% at 0% 0%, rgba(160, 40, 60, 0.18), transparent 55%),
    radial-gradient(ellipse 35% 45% at 100% 100%, rgba(30, 80, 170, 0.22), transparent 55%),
    var(--bg);
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(90, 130, 190, 0.16) 1.1px, transparent 1.4px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse at 10% 40%, #000 0%, transparent 55%);
  pointer-events: none;
}
.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.eyebrow-red { color: var(--pink); }
.eyebrow-blue { color: var(--blue); }
.about h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.about .copy p {
  color: #e4e6ea;
  margin: 0 0 14px;
  font-size: 15px;
  max-width: 540px;
}
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 32px 0 28px;
}
.stat {
  padding-left: 16px;
  border-left: 3px solid var(--pink);
}
.stat.stat-blue { border-left-color: var(--blue); }
.stat .num {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--pink);
}
.stat.stat-blue .num { color: var(--blue); }
.stat .unit {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-left: 4px;
}
.stat.stat-blue .unit { color: var(--blue); }
.stat p {
  margin: 8px 0 0;
  font-size: 13.5px;
  color: var(--muted);
  max-width: 240px;
}
.about-visual {
  position: relative;
}
.about-visual img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}
.about-visual .fp {
  position: absolute;
  right: -18px;
  bottom: 18%;
  width: 92px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(224, 86, 154, 0.65));
  pointer-events: none;
}

/* ========== AFFILIATIONS ========== */
.affiliations {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
  background: var(--bg);
}
.aff-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}
.aff-head h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin: 8px 0 0;
}
.aff-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.org-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.org-list li {
  font-size: 14.5px;
  color: #eee;
}
.org-list strong {
  font-weight: 700;
  letter-spacing: 0.04em;
}
.aff-graphic {
  position: relative;
  min-height: 420px;
}
.aff-graphic img.arcs {
  width: 140%;
  max-width: none;
  position: absolute;
  right: -18%;
  top: 50%;
  transform: translateY(-50%);
  mix-blend-mode: screen;
  opacity: 0.95;
  pointer-events: none;
}
.aff-chips {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  padding: 40px 8px 40px 80px;
}
.chip {
  border: 1px solid rgba(90, 160, 230, 0.45);
  background: rgba(8, 14, 24, 0.75);
  color: #dbe7f5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  backdrop-filter: blur(4px);
}


/* ========== COSTARS ========== */
.costars {
  padding: 32px 0;
  background: #071018;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.costars-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
}
.costars-logo {
  background: #fff;
  padding: 8px 10px;
  max-width: 180px;
}
.costars-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.costars-copy h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  margin: 6px 0 14px;
  letter-spacing: -0.02em;
}
.costars-copy p {
  margin: 0;
  color: #d5dce6;
  font-size: 16px;
  line-height: 1.55;
  max-width: 38em;
}

/* ========== FAQ ========== */
.faq {
  position: relative;
  padding: 72px 0 64px;
  overflow: hidden;
  background: var(--bg);
}
.faq-bg {
  position: absolute;
  left: -20px;
  top: 40px;
  font-size: 280px;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.06em;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 40px;
  align-items: start;
}
.faq h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  margin: 8px 0 0;
  line-height: 1.15;
}
.accordion {
  border-top: 1px solid var(--line);
}
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item h3 { margin: 0; font-size: inherit; font-weight: inherit; }
.acc-btn {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  text-align: left;
  padding: 20px 48px 20px 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}
.acc-btn:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.acc-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  color: #fff;
}
.acc-item.is-open .acc-icon { color: var(--blue); }
.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  left: 50%;
  top: 50%;
}
.acc-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.acc-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s, transform 0.2s;
}
.acc-item.is-open .acc-icon::after { opacity: 0; }
.acc-panel {
  display: none;
  padding: 0 48px 20px 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}
.acc-item.is-open .acc-panel { display: block; }
.faq-actions {
  text-align: center;
  margin-top: 36px;
}

/* ========== NEWSLETTER ========== */
.newsletter {
  background: #1a1a1e;
  padding: 42px 0;
}
.news-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: center;
}
.news-inner h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin: 0 0 8px;
}
.news-inner p { margin: 0; color: var(--muted); font-size: 14px; }
.news-form .row {
  display: flex;
  max-width: 520px;
}
.news-form input[type="email"] {
  flex: 1;
  background: #0e0e10;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
  min-width: 0;
}
.news-form input::placeholder { color: #c4a81a; opacity: 0.85; }
.news-form input:focus-visible {
  box-shadow: 0 0 0 3px rgba(240, 212, 27, 0.25);
}
.news-form .btn { border-left: 0; padding: 14px 22px; font-size: 13px; }
.news-note {
  margin: 10px 0 0;
  font-size: 11px;
  color: var(--muted-2);
}
.news-form .thanks {
  display: none;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 600;
}
.news-form.is-done .row { display: none; }
.news-form.is-done .thanks { display: block; }

/* ========== FINAL CTA ========== */
.final-cta {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 40% 60% at 12% 50%, rgba(40, 90, 190, 0.28), transparent 60%),
    var(--bg);
}
.final-cta .cta-graphic {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  height: 130%;
  width: auto;
  max-width: 50%;
  object-fit: contain;
  mix-blend-mode: lighten;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}
.cta-copy {
  max-width: 560px;
  text-align: right;
}
.cta-kicker {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 12px;
}
.cta-copy h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 28px;
}
.cta-copy .btns {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ========== CAREERS ========== */
.careers {
  padding: 80px 0 72px;
  text-align: center;
  background: #121214;
}
.careers h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  margin: 8px 0 18px;
}
.careers .intro {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #e4e6ea;
  font-size: 15px;
}
.careers .fp-center {
  width: 52px;
  height: auto;
  margin: 8px auto 18px;
  filter: drop-shadow(0 0 8px rgba(47, 127, 224, 0.5));
}
.apply-line {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.career-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(1100px, 100%);
  margin: 0 auto;
}
.career-btns .btn {
  padding: 18px 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #000;
  padding: 28px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.footer-meta {
  font-size: 12.5px;
  color: #ddd;
  line-height: 1.7;
}
.footer-meta a { color: #fff; text-decoration: none; }
.footer-meta a:hover { color: var(--yellow); text-decoration: underline; }
.footer-meta .pi {
  display: block;
  margin-top: 6px;
  color: var(--muted-2);
  font-size: 11.5px;
}
.social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  text-decoration: none;
}
.social a:hover { border-color: var(--yellow); color: var(--yellow); }
.social svg { width: 14px; height: 14px; fill: currentColor; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .career-btns { grid-template-columns: 1fr 1fr; }
  .hero-graphic { max-width: 50%; opacity: 0.85; }
  .aff-layout, .about-grid, .faq-layout, .news-inner, .costars-inner { grid-template-columns: 1fr; }
  .faq-bg { display: none; }
  .aff-graphic { min-height: 280px; }
  .cta-copy { text-align: left; }
  .cta-copy .btns { justify-content: flex-start; }
  .final-cta .cta-graphic { opacity: 0.45; }
}

@media (max-width: 860px) {
  :root { --header-h: 118px; }
  .header-panel { display: none; }
  .header-inner.is-open .header-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0; right: 0;
    top: var(--header-h);
    background: #0b0d12;
    padding: 16px 20px 20px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    z-index: 20;
  }
  .header-inner.is-open .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-left: 0;
  }
  .header-inner.is-open .header-ctas { flex-wrap: wrap; }
  .menu-toggle { display: grid; place-items: center; margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr; min-height: 0; }
  .hero-graphic { position: relative; max-width: 70%; height: 140px; right: auto; top: auto; margin: 8px -24px 0 auto; }
  .hero { padding: 20px 0 16px; min-height: 0; }
  .svc-card img { max-height: 140px; }
  .stats { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-strip img:last-child { grid-column: 1 / -1; height: 200px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .site-header .logo img { height: 100px; }
}

@media (max-width: 560px) {
  .svc-grid, .career-btns { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .news-form .row { flex-direction: column; }
  .news-form .btn { border-left: 1px solid var(--yellow); }
  .wrap { width: min(var(--wrap), calc(100% - 32px)); }
  .btn { white-space: normal; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ========== OFFICERS SERVICE PAGE ========== */
.page-officers .nav a[aria-current="page"] {
  color: var(--yellow);
}
.page-officers .nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero-officers {
  position: relative;
  min-height: 560px;
  padding: 96px 0 100px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 72% 58% at 50% 40%, rgba(6, 7, 10, 0.42), transparent 70%),
    linear-gradient(180deg, rgba(6, 7, 10, 0.50) 0%, rgba(6, 7, 10, 0.58) 50%, rgba(10, 10, 10, 0.96) 100%),
    url("assets/officers-hero-clean.jpg") center center / cover no-repeat,
    var(--bg);
}
.hero-officers::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(80, 120, 190, 0.14) 1.1px, transparent 1.4px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero-officers-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-inline: auto;
}
.hero-officers h1 {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.hero-officers .lede {
  color: #e8eaee;
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 32px;
  font-weight: 400;
}

.officers-pro {
  padding: 72px 0 56px;
  text-align: center;
  background: var(--bg);
}
.officers-pro .pro-fp {
  width: 42px;
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 10px rgba(224, 86, 154, 0.55));
}
.officers-pro h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.officers-pro p {
  max-width: 760px;
  margin: 0 auto 16px;
  color: #e4e6ea;
  font-size: 15.5px;
  line-height: 1.7;
}
.officers-pro .emphasis {
  font-weight: 700;
  color: #f4f5f7;
}

.officers-duty {
  padding: 24px 0 48px;
  background: var(--bg);
}
.duty-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
  column-gap: 12px;
  align-items: stretch;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid rgba(187, 58, 85, 0.7);
  background:
    radial-gradient(ellipse 70% 80% at 100% 50%, rgba(120, 24, 42, 0.55), transparent 60%),
    linear-gradient(90deg, #14080c 0%, #1a0c12 42%, #4a1420 100%);
  box-shadow: 0 0 0 1px rgba(193, 70, 89, 0.12), 0 18px 40px rgba(0, 0, 0, 0.35);
}
.duty-copy {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 44px 32px 44px 44px;
  position: relative;
  z-index: 1;
}
.duty-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(193, 70, 89, 0.22) 1.1px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.7), transparent 75%);
  pointer-events: none;
}
.duty-copy h2,
.duty-copy p,
.duty-copy ul {
  position: relative;
  z-index: 1;
}
.duty-copy h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.15;
}
.duty-copy p {
  margin: 0 0 22px;
  color: #e4e6ea;
  font-size: 14.5px;
  max-width: 520px;
}
.duty-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px 16px;
  max-width: 100%;
}
.duty-list li {
  position: relative;
  min-width: 0;
  padding-left: 28px;
  padding-right: 6px;
  font-size: 13.5px;
  line-height: 1.35;
  color: #f2f3f5;
  overflow-wrap: break-word;
}
.duty-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  background: #bb3a55;
  border-radius: 2px;
}
.duty-list li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  pointer-events: none;
}
.duty-photo {
  position: relative;
  min-height: 420px;
  min-width: 0;
  overflow: hidden;
  z-index: 0;
}
.duty-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.duty-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1a0c12 0%, rgba(26, 12, 18, 0.35) 28%, transparent 58%);
  pointer-events: none;
}

.officers-license {
  padding: 28px 0 12px;
  text-align: center;
  background: var(--bg);
}
.officers-license p {
  max-width: 780px;
  margin: 0 auto;
  color: #e4e6ea;
  font-size: 15.5px;
  line-height: 1.75;
}

.officers-cta {
  position: relative;
  padding: 20px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 40% 60% at 18% 50%, rgba(240, 212, 27, 0.12), transparent 55%),
    radial-gradient(ellipse 35% 50% at 88% 40%, rgba(40, 90, 190, 0.28), transparent 60%),
    var(--bg);
}
.officers-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(80, 120, 190, 0.12) 1.1px, transparent 1.4px);
  background-size: 20px 20px;
  pointer-events: none;
}
.officers-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.officers-cta .cta-shield img {
  width: min(380px, 100%);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 12px 36px rgba(240, 212, 27, 0.18));
}
.officers-cta .cta-copy {
  max-width: 560px;
  text-align: left;
}
.officers-cta .cta-copy h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 28px;
}
.officers-cta .cta-copy .btns {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .duty-box { grid-template-columns: 1fr; }
  .duty-photo { min-height: 340px; }
  .duty-photo img { position: relative; height: 340px; }
  .officers-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .officers-cta .cta-copy { margin-inline: auto; text-align: center; }
  .officers-cta .cta-copy .btns { justify-content: center; }
}

@media (max-width: 860px) {
  .hero-officers { padding: 56px 0 64px; min-height: 0; }
  .duty-copy { padding: 32px 24px; }
  .duty-list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .duty-box { border-radius: 24px; }
}

.page-officers .site-footer {
  padding: 28px 20px 36px;
  overflow: visible;
}
.page-officers .site-footer .wrap {
  width: min(var(--wrap), 100%);
}
.page-officers .footer-inner {
  max-width: 100%;
  align-items: center;
  gap: 16px;
}
.page-officers .footer-meta {
  min-width: 0;
  overflow-wrap: anywhere;
}
.page-officers .social {
  flex-shrink: 0;
  margin-inline-end: 2px;
}
.page-officers .social a {
  flex-shrink: 0;
  overflow: visible;
}
.page-officers .social svg {
  overflow: visible;
}

/* ========== INVESTIGATIONS SERVICE PAGE ========== */
.page-investigations .nav a[aria-current="page"] {
  color: var(--yellow);
}
.page-investigations .nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero-investigations {
  position: relative;
  min-height: 560px;
  padding: 96px 0 100px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(6, 7, 10, 0.52) 0%, rgba(6, 7, 10, 0.64) 48%, rgba(10, 10, 10, 0.96) 100%),
    url("assets/investigations-hero.jpg") center 42% / cover no-repeat,
    var(--bg);
}
.hero-investigations::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(80, 120, 190, 0.12) 1.1px, transparent 1.4px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero-investigations-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-inline: auto;
}
.hero-investigations h1 {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.hero-investigations .lede {
  color: #e8eaee;
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 32px;
  font-weight: 400;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.inv-feature {
  padding: 72px 0 40px;
  background: var(--bg);
}
.inv-feature-flip { padding: 40px 0 64px; }
.inv-feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.inv-feature-flip .inv-feature-grid {
  grid-template-columns: 0.9fr 1.1fr;
}
.inv-feature-copy h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.inv-feature-copy p {
  color: #e4e6ea;
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 540px;
}
.inv-feature-copy a:not(.btn) {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.inv-feature-copy a:not(.btn):hover { color: var(--yellow); text-decoration: underline; }
.inv-feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.inv-feature-icon img {
  width: min(380px, 100%);
  height: auto;
}

.inv-report {
  padding: 24px 0 72px;
  background: var(--bg);
}
.inv-report-box {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  border: 2px solid var(--blue);
  text-align: center;
  padding: 72px 40px;
  background:
    linear-gradient(180deg, rgba(8, 10, 16, 0.72) 0%, rgba(8, 10, 16, 0.78) 100%),
    url("assets/investigations-report.jpg") center / cover no-repeat,
    #0c1018;
  box-shadow: 0 0 0 1px rgba(47, 127, 224, 0.18), 0 18px 40px rgba(0, 0, 0, 0.35);
}
.inv-report-box h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 28px;
}

.inv-claims {
  padding: 56px 0 64px;
  text-align: center;
  background: var(--bg);
}
.inv-claims h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.inv-lead {
  max-width: 820px;
  margin: 0 auto 36px;
  color: #e4e6ea;
  font-size: 15.5px;
  line-height: 1.7;
}

.inv-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
  text-align: left;
}
.inv-list-2 {
  grid-template-columns: 1fr 1fr;
  gap: 14px 36px;
  max-width: 980px;
  margin: 0 auto;
}
.inv-list li {
  position: relative;
  padding-left: 32px;
  font-size: 14.5px;
  line-height: 1.4;
  color: #f2f3f5;
}
.inv-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  background: var(--blue-bright);
  border-radius: 2px;
}
.inv-list li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  pointer-events: none;
}

.inv-split-photo {
  padding: 40px 0 56px;
  background: var(--bg);
}
.inv-attorney { padding: 24px 0 64px; }
.inv-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.inv-split-grid-flip {
  grid-template-columns: 0.9fr 1.1fr;
}
.inv-split-copy h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.inv-split-copy p {
  color: #e4e6ea;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 520px;
}
.inv-photo-stack {
  overflow: hidden;
  border-radius: 8px;
}
.inv-photo-stack img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.inv-photo-single {
  overflow: hidden;
  border-radius: 8px;
}
.inv-photo-single img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
}

.inv-cta {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 40% 60% at 18% 50%, rgba(40, 90, 190, 0.28), transparent 55%),
    radial-gradient(ellipse 35% 50% at 88% 40%, rgba(240, 212, 27, 0.12), transparent 60%),
    var(--bg);
}
.inv-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(80, 120, 190, 0.12) 1.1px, transparent 1.4px);
  background-size: 20px 20px;
  pointer-events: none;
}
.inv-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.inv-cta .cta-shield img {
  width: min(380px, 100%);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 12px 36px rgba(47, 127, 224, 0.22));
}
.inv-cta .cta-copy {
  max-width: 560px;
  text-align: left;
}
.inv-cta .cta-copy h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 28px;
}
.inv-cta .cta-copy .btns {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.page-investigations .site-footer .wrap {
  width: min(var(--wrap), calc(100% - 64px));
}
.page-investigations .footer-inner { max-width: 100%; }
.page-investigations .footer-meta {
  min-width: 0;
  overflow-wrap: anywhere;
}
.page-investigations .social,
.page-investigations .social a { flex-shrink: 0; }

@media (max-width: 1100px) {
  .inv-feature-grid,
  .inv-feature-flip .inv-feature-grid,
  .inv-split-grid,
  .inv-split-grid-flip,
  .inv-cta-inner { grid-template-columns: 1fr; }
  .inv-feature-icon { order: -1; }
  .inv-cta .cta-copy { margin-inline: auto; text-align: center; }
  .inv-cta .cta-copy .btns { justify-content: center; }
}

@media (max-width: 860px) {
  .hero-investigations { padding: 56px 0 64px; min-height: 0; }
  .inv-report-box { padding: 48px 24px; border-radius: 28px; }
  .inv-list-2 { grid-template-columns: 1fr; }
  .inv-feature { padding: 48px 0 24px; }
  .inv-feature-flip { padding: 24px 0 48px; }
}

@media (max-width: 560px) {
  .inv-report-box { border-radius: 20px; padding: 40px 18px; }
}

/* ========== ELECTRONIC SECURITY SERVICE PAGE ========== */
.page-electronic .nav a[aria-current="page"] {
  color: var(--yellow);
}
.page-electronic .nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero-electronic {
  position: relative;
  min-height: 560px;
  padding: 96px 0 100px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(6, 7, 10, 0.50) 0%, rgba(6, 7, 10, 0.58) 48%, rgba(10, 10, 10, 0.94) 100%),
    url("assets/electronic-hero.jpg") center 46% / cover no-repeat,
    var(--bg);
}
.hero-electronic::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(80, 120, 190, 0.12) 1.1px, transparent 1.4px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero-electronic-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-inline: auto;
}
.hero-electronic h1 {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.hero-electronic .lede {
  color: #e8eaee;
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 32px;
  font-weight: 400;
}

.elec-smart,
.electronic-smart {
  padding: 72px 0 56px;
  text-align: center;
  background: var(--bg);
}
.page-electronic .smart-fp {
  width: 42px;
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 10px rgba(224, 86, 154, 0.55));
}
.elec-smart h2,
.electronic-smart h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.elec-smart p,
.electronic-smart p {
  max-width: 780px;
  margin: 0 auto 16px;
  color: #e4e6ea;
  font-size: 15.5px;
  line-height: 1.7;
}
.elec-smart strong,
.electronic-smart strong {
  font-weight: 700;
  color: #f4f5f7;
}

.elec-monitor,
.electronic-monitor {
  padding: 24px 0 56px;
  background: var(--bg);
}
.monitor-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid rgba(47, 127, 224, 0.72);
  background:
    radial-gradient(ellipse 70% 80% at 100% 50%, rgba(20, 70, 150, 0.55), transparent 60%),
    linear-gradient(90deg, #081018 0%, #0c1828 42%, #12305a 100%);
  box-shadow: 0 0 0 1px rgba(47, 127, 224, 0.14), 0 18px 40px rgba(0, 0, 0, 0.35);
}
.monitor-copy {
  padding: 48px 36px 48px 48px;
  position: relative;
}
.monitor-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(47, 127, 224, 0.22) 1.1px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.7), transparent 75%);
  pointer-events: none;
}
.monitor-copy h2,
.monitor-copy ul,
.monitor-copy .btn {
  position: relative;
  z-index: 1;
}
.monitor-copy h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  line-height: 1.15;
}
.monitor-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.monitor-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.4;
  color: #f2f3f5;
}
.monitor-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #bb3a55;
  border-radius: 2px;
}
.monitor-list li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  pointer-events: none;
}
.monitor-list li.plus {
  color: #6eb6ff;
  font-weight: 700;
}
.monitor-list li.plus::before {
  background: var(--blue-bright);
}
.monitor-photo {
  position: relative;
  min-height: 360px;
}
.monitor-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}
.monitor-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0c1828 0%, rgba(12, 24, 40, 0.35) 28%, transparent 58%);
  pointer-events: none;
}

.elec-alarm,
.electronic-alarm {
  position: relative;
  padding: 72px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 45% 55% at 88% 55%, rgba(160, 40, 70, 0.22), transparent 60%),
    radial-gradient(ellipse 35% 50% at 8% 20%, rgba(40, 90, 190, 0.16), transparent 55%),
    var(--bg);
}
.elec-alarm::before,
.electronic-alarm::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(90, 130, 190, 0.12) 1.1px, transparent 1.4px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse at 80% 50%, #000 0%, transparent 70%);
  pointer-events: none;
}
.elec-alarm-grid,
.alarm-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.alarm-copy .eyebrow { margin-bottom: 14px; }
.alarm-copy h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.alarm-copy p {
  color: #e4e6ea;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 16px;
  max-width: 560px;
}
.alarm-copy .emphasis {
  font-weight: 700;
  color: #f4f5f7;
}
.alarm-visual img,
.alarm-devices img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

.elec-cta,
.electronic-cta {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 40% 60% at 18% 50%, rgba(240, 212, 27, 0.14), transparent 55%),
    radial-gradient(ellipse 35% 50% at 88% 40%, rgba(40, 90, 190, 0.28), transparent 60%),
    var(--bg);
}
.elec-cta::before,
.electronic-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(80, 120, 190, 0.12) 1.1px, transparent 1.4px);
  background-size: 20px 20px;
  pointer-events: none;
}
.elec-cta-inner,
.electronic-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.elec-cta .cta-shield img,
.elec-cta .cta-sign img,
.electronic-cta .cta-shield img,
.electronic-cta .cta-sign img {
  width: min(420px, 100%);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 12px 36px rgba(47, 127, 224, 0.28));
}
.elec-cta .cta-copy,
.electronic-cta .cta-copy {
  max-width: 560px;
  text-align: left;
}
.elec-cta .cta-copy h2,
.electronic-cta .cta-copy h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 28px;
}
.elec-cta .cta-copy .btns,
.electronic-cta .cta-copy .btns {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.page-electronic .site-footer .wrap {
  width: min(var(--wrap), calc(100% - 64px));
}
.page-electronic .footer-inner { max-width: 100%; }
.page-electronic .footer-meta {
  min-width: 0;
  overflow-wrap: anywhere;
}
.page-electronic .social,
.page-electronic .social a { flex-shrink: 0; }

@media (max-width: 1100px) {
  .monitor-box { grid-template-columns: 1fr; }
  .monitor-photo { min-height: 340px; }
  .monitor-photo img { position: relative; height: 340px; }
  .elec-alarm-grid,
  .alarm-grid { grid-template-columns: 1fr; }
  .alarm-visual,
  .alarm-devices { order: -1; max-width: 560px; margin-inline: auto; }
  .elec-cta-inner,
  .electronic-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .elec-cta .cta-copy,
  .electronic-cta .cta-copy { margin-inline: auto; text-align: center; }
  .elec-cta .cta-copy .btns,
  .electronic-cta .cta-copy .btns { justify-content: center; }
}

@media (max-width: 860px) {
  .hero-electronic { padding: 56px 0 64px; min-height: 0; }
  .monitor-copy { padding: 32px 24px; }
  .elec-smart,
  .electronic-smart { padding: 48px 0 40px; }
  .elec-alarm,
  .electronic-alarm { padding: 48px 0 48px; }
}

@media (max-width: 560px) {
  .monitor-box { border-radius: 24px; }
}

/* ========== INVESTIGATIONS SERVICE PAGE ========== */
.page-investigations .nav a[aria-current="page"] {
  color: var(--yellow);
}
.page-investigations .nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero-inv {
  position: relative;
  min-height: 560px;
  padding: 96px 0 100px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(6, 7, 10, 0.62) 0%, rgba(6, 7, 10, 0.72) 48%, rgba(10, 10, 10, 0.96) 100%),
    url("assets/investigations-hero.jpg") center 46% / cover no-repeat,
    var(--bg);
}
.hero-inv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(80, 120, 190, 0.12) 1.1px, transparent 1.4px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 72%);
  pointer-events: none;
}
.hero-inv-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-inline: auto;
}
.hero-inv h1 {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.hero-inv .lede {
  color: #e8eaee;
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 32px;
  font-weight: 400;
}
.hero-inv-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.inv-split {
  padding: 72px 0 48px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.inv-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(80, 120, 190, 0.12) 1.1px, transparent 1.4px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse at 80% 50%, #000 0%, transparent 70%);
  pointer-events: none;
}
.inv-split-flip::before {
  mask-image: radial-gradient(ellipse at 20% 50%, #000 0%, transparent 70%);
}
.inv-split-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.inv-split-flip .inv-split-grid {
  grid-template-columns: 0.9fr 1.1fr;
}
.inv-split-copy h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.inv-split-copy p {
  color: #e4e6ea;
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 560px;
}
.inv-split-copy p a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.inv-split-copy p a:hover { color: var(--yellow); }
.inv-split-copy .eyebrow {
  margin: 0 0 12px;
}
.inv-split-copy .eyebrow-blue {
  color: var(--blue);
}
.inv-split-icon svg,
.inv-split-icon img {
  width: min(380px, 100%);
  height: auto;
  margin-inline: auto;
  display: block;
}

.inv-report {
  padding: 24px 0 64px;
  background: var(--bg);
}
.inv-report-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 2px solid var(--blue);
  min-height: 340px;
  padding: 64px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(6, 10, 18, 0.62) 0%, rgba(6, 10, 18, 0.78) 100%),
    url("assets/investigations-report.jpg") center / cover no-repeat,
    #0a1018;
  box-shadow: 0 0 0 1px rgba(59, 143, 212, 0.18), 0 18px 40px rgba(0, 0, 0, 0.35);
}
.inv-report-card h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  max-width: 720px;
}
.inv-report-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.inv-claims {
  padding: 56px 0 40px;
  background: var(--bg);
  text-align: center;
}
.inv-claims-inner { max-width: 980px; }
.inv-claims h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.inv-lead {
  color: #e4e6ea;
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 auto 36px;
  max-width: 820px;
}

.inv-check {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
  text-align: left;
}
.inv-check-2 {
  grid-template-columns: 1fr 1fr;
  gap: 14px 36px;
  margin-bottom: 0;
}
.inv-check li {
  position: relative;
  padding-left: 32px;
  font-size: 14.5px;
  line-height: 1.4;
  color: #f2f3f5;
}
.inv-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  background: var(--blue-bright);
  border-radius: 2px;
}
.inv-check li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  pointer-events: none;
}

.inv-panel {
  padding: 48px 0 56px;
  background: var(--bg);
}
.inv-panel-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.inv-panel-flip .inv-panel-grid {
  grid-template-columns: 0.9fr 1.1fr;
}
.inv-panel-copy h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.inv-panel-copy p {
  color: #e4e6ea;
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 540px;
}
.inv-panel-copy .eyebrow {
  margin: 0 0 12px;
}
.inv-panel-copy .eyebrow-red {
  color: var(--pink);
}
.inv-photos {
  display: grid;
  gap: 14px;
}
.inv-photos img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
}
.inv-portrait img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
}

.inv-cta {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 40% 60% at 18% 50%, rgba(240, 212, 27, 0.12), transparent 55%),
    radial-gradient(ellipse 35% 50% at 88% 40%, rgba(40, 90, 190, 0.28), transparent 60%),
    var(--bg);
}
.inv-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(80, 120, 190, 0.12) 1.1px, transparent 1.4px);
  background-size: 20px 20px;
  pointer-events: none;
}
.inv-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.inv-cta .cta-shield img {
  width: min(380px, 100%);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 12px 36px rgba(47, 127, 224, 0.22));
}
.inv-cta .cta-copy {
  max-width: 560px;
  text-align: left;
}
.inv-cta .cta-copy h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 28px;
}
.inv-cta .cta-copy .btns {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .inv-split-grid,
  .inv-split-flip .inv-split-grid,
  .inv-panel-grid,
  .inv-panel-flip .inv-panel-grid,
  .inv-cta-inner {
    grid-template-columns: 1fr;
  }
  .inv-split-icon { order: -1; }
  .inv-split-flip .inv-split-icon { order: -1; }
  .inv-cta .cta-copy { margin-inline: auto; text-align: center; }
  .inv-cta .cta-copy .btns { justify-content: center; }
  .inv-portrait { max-width: 480px; margin-inline: auto; }
}

@media (max-width: 860px) {
  .hero-inv { padding: 56px 0 64px; min-height: 0; }
  .inv-check-2 { grid-template-columns: 1fr; }
  .inv-split, .inv-claims, .inv-panel { padding-left: 0; padding-right: 0; }
  .inv-report-card { padding: 48px 20px; border-radius: 20px; min-height: 280px; }
}

@media (max-width: 560px) {
  .inv-photos img { height: 200px; }
}

/* ========== REFER A CASE ========== */
.refer-hero {
  position: relative;
  padding: 72px 0 48px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 42% 70% at 18% 30%, rgba(240, 212, 27, 0.1), transparent 58%),
    radial-gradient(ellipse 38% 60% at 88% 20%, rgba(40, 90, 190, 0.3), transparent 62%),
    var(--bg);
}
.refer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(80, 120, 190, 0.12) 1.1px, transparent 1.4px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 72%);
  pointer-events: none;
}
.refer-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-inline: auto;
}
.refer-hero .eyebrow { margin: 0 0 12px; }
.refer-hero h1 {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.refer-hero .lede {
  color: #e8eaee;
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 400;
}
.refer-hero .lede a {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: none;
}
.refer-hero .lede a:hover { text-decoration: underline; }

.refer-body {
  padding: 8px 0 88px;
  background: var(--bg);
}
.refer-sent {
  background: rgba(240, 212, 27, 0.12);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 14px 18px;
  margin: 0 auto 24px;
  font-weight: 600;
  font-size: 15px;
  max-width: 920px;
}
.refer-sent a { color: var(--yellow); }
.refer-sent:focus { outline: 2px solid var(--yellow); outline-offset: 3px; }

.refer-form {
  max-width: 920px;
  margin-inline: auto;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
  padding: 36px 40px 32px;
  border-radius: 8px;
}
.refer-form input,
.refer-form textarea,
.refer-form button {
  font-family: inherit;
}
.refer-required-note {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--muted);
}
.refer-form .req { color: var(--yellow); font-weight: 700; }

.refer-fieldset {
  border: 0;
  margin: 0 0 24px;
  padding: 0;
  min-width: 0;
}
.refer-fieldset legend {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  padding: 0;
  color: #fff;
}
.refer-subhead {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.refer-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 16px;
}
.refer-form .check,
.refer-form .radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #e8eaee;
  cursor: pointer;
  line-height: 1.4;
}
.refer-form .check input,
.refer-form .radio input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--yellow);
  flex-shrink: 0;
}
.refer-radio-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.refer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 16px;
}
.refer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  margin-bottom: 8px;
}
.refer-form .field {
  margin-bottom: 16px;
  min-width: 0;
}
.refer-form .field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #e4e6ea;
}
.refer-form input[type="text"],
.refer-form input[type="email"],
.refer-form input[type="date"],
.refer-form textarea {
  width: 100%;
  background: #0e0e10;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  border-radius: 2px;
}
.refer-form textarea { resize: vertical; min-height: 88px; }
.refer-form input[type="text"]:focus,
.refer-form input[type="email"]:focus,
.refer-form input[type="date"]:focus,
.refer-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(240, 212, 27, 0.22);
}
.refer-form input[type="date"] {
  color-scheme: dark;
}
.refer-form input[type="file"] {
  width: 100%;
  color: var(--muted);
  font-size: 13px;
  background: #0e0e10;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 12px 14px;
}
.refer-form input[type="file"]::file-selector-button {
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--yellow);
  color: #111;
  border: 0;
  padding: 8px 12px;
  margin-right: 12px;
  cursor: pointer;
}
.field-help {
  margin: 8px 0 0;
  font-size: 12.5px;
  color: var(--muted-2);
  line-height: 1.5;
}
.field-help a { color: var(--yellow); }
.refer-claims {
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.refer-claims legend {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}
.refer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 8px;
}
.refer-actions .btn { min-width: 140px; }

@media (max-width: 860px) {
  .refer-form { padding: 28px 20px 24px; }
  .refer-grid,
  .refer-checks { grid-template-columns: 1fr; }
  .refer-hero { padding: 48px 0 32px; }
}

/* Contact and employment forms (reuse .refer-form) */
.refer-form select,
.refer-form input[type="tel"] {
  width: 100%;
  background: #0e0e10;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  border-radius: 2px;
  font-family: inherit;
  color-scheme: dark;
}
.refer-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23f0d41b' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.refer-form select option {
  background: #0e0e10;
  color: #fff;
}
.refer-form select:focus,
.refer-form input[type="tel"]:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(240, 212, 27, 0.22);
}
