:root {
  --ink: #090d12;
  --charcoal: #17202a;
  --steel: #43505d;
  --muted: #667482;
  --line: #dce3ea;
  --soft: #f5f7fa;
  --white: #ffffff;
  --gold: #f2c318;
  --gold-dark: #a97800;
  --green: #15645a;
  --teal: #0f8f83;
  --blue: #2357d6;
  --coral: #d85b3f;
  --plum: #6f4bc1;
  --shadow: 0 18px 48px rgba(9, 13, 18, .12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
}

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

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
}

.topbar .wrap {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar strong,
.topbar a {
  color: var(--gold);
}

.topbar a {
  font-weight: 850;
  white-space: nowrap;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(9, 13, 18, .05);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-name {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-dark);
}

.header-call {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button.gold {
  background: var(--gold);
  color: var(--ink);
}

.button.outline {
  background: transparent;
  border-color: currentColor;
  color: var(--white);
}

.button.light {
  background: var(--white);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 13, 18, .96), rgba(9, 13, 18, .78) 42%, rgba(9, 13, 18, .18) 72%, rgba(9, 13, 18, .03)),
    url("security-hero.jpg") center right / cover no-repeat;
}

.hero::after,
.page-hero::after,
.cta-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--gold-dark));
}

.hero .wrap {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 690px);
  align-items: center;
  padding: 68px 0 78px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  color: inherit;
  line-height: 1.08;
}

h1 {
  max-width: 840px;
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 3.4vw, 46px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 0 0 18px;
}

.hero p {
  max-width: 620px;
  color: #e6edf3;
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  background: rgba(255, 255, 255, .09);
  color: #f2f7fb;
  font-size: 13px;
  font-weight: 900;
}

.hero-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(9, 13, 18, .84);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 25px;
}

.hero-card p {
  color: #d8e2eb;
  font-size: 16px;
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.dispatch-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(9, 13, 18, .88);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
}

.dispatch-head {
  min-height: 56px;
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: #dfe8ef;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.dispatch-head strong {
  color: var(--gold);
}

.pulse-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #36d399;
  box-shadow: 0 0 0 5px rgba(54, 211, 153, .16);
}

.dispatch-map {
  position: relative;
  min-height: 250px;
  background:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(242, 195, 24, .18), rgba(21, 100, 90, .16)),
    #0c1219;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.route-line {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, .75));
  transform-origin: left center;
}

.route-line.one {
  left: 52px;
  top: 88px;
  width: 220px;
  transform: rotate(18deg);
}

.route-line.two {
  left: 108px;
  top: 168px;
  width: 180px;
  transform: rotate(-28deg);
}

.route-pin {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 4px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  background: var(--ink);
  transform: rotate(-45deg);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
}

.route-pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.route-pin.p1 {
  left: 42px;
  top: 74px;
}

.route-pin.p2 {
  right: 76px;
  top: 122px;
}

.route-pin.p3 {
  left: 108px;
  bottom: 45px;
}

.dispatch-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .12);
}

.dispatch-status div {
  padding: 16px;
  background: rgba(255, 255, 255, .06);
}

.dispatch-status span,
.hero-mini-grid span {
  display: block;
  color: #bfcbd5;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.dispatch-status strong,
.hero-mini-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  line-height: 1.1;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-mini-grid div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(9, 13, 18, .76);
}

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

.quick-list li {
  display: flex;
  gap: 10px;
  color: #edf3f7;
  font-weight: 750;
}

.quick-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 7px;
  flex: 0 0 auto;
  background: var(--gold);
  clip-path: polygon(14% 44%, 0 58%, 38% 96%, 100% 24%, 84% 10%, 36% 66%);
}

.proof-strip {
  padding: 20px 0;
  background: var(--soft);
  color: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: transparent;
}

.proof-grid div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 13px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(9, 13, 18, .05);
}

.proof-grid div:nth-child(2) {
  border-top-color: var(--teal);
}

.proof-grid div:nth-child(3) {
  border-top-color: var(--blue);
}

.proof-grid div:nth-child(4) {
  border-top-color: var(--coral);
}

.proof-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 195, 24, .5);
  border-radius: 4px;
  color: var(--ink);
  background: var(--gold);
  font-size: 13px;
  font-weight: 950;
}

.proof-grid div:nth-child(2) .proof-icon {
  border-color: rgba(15, 143, 131, .28);
  background: var(--teal);
  color: var(--white);
}

.proof-grid div:nth-child(3) .proof-icon {
  border-color: rgba(35, 87, 214, .28);
  background: var(--blue);
  color: var(--white);
}

.proof-grid div:nth-child(4) .proof-icon {
  border-color: rgba(216, 91, 63, .28);
  background: var(--coral);
  color: var(--white);
}

.proof-grid strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.proof-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 76px 0;
}

.section.tight {
  padding: 48px 0;
}

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

.service-snapshot {
  background: var(--white);
}

.snapshot-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.snapshot-head h2 {
  max-width: 740px;
}

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

.coverage-tile {
  --tile: var(--gold);
  --tile-soft: rgba(242, 195, 24, .16);
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 7px solid var(--tile);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, var(--tile-soft), transparent 58%),
    var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(9, 13, 18, .08);
}

.coverage-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 13, 18, .04), transparent);
}

.coverage-tile.guard {
  --tile: var(--gold);
  --tile-soft: rgba(242, 195, 24, .22);
}

.coverage-tile.patrol {
  --tile: var(--teal);
  --tile-soft: rgba(15, 143, 131, .16);
}

.coverage-tile.public {
  --tile: var(--coral);
  --tile-soft: rgba(216, 91, 63, .16);
}

.coverage-tile.site {
  --tile: var(--blue);
  --tile-soft: rgba(35, 87, 214, .15);
}

.coverage-tile > * {
  position: relative;
}

.tile-mark {
  position: absolute;
  top: -94px;
  right: -8px;
  color: var(--tile);
  opacity: .16;
  font-size: 76px;
  font-weight: 950;
  line-height: 1;
}

.coverage-tile strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.05;
}

.coverage-tile span:last-child {
  color: var(--steel);
  font-size: 15px;
}

.program-section {
  background:
    linear-gradient(180deg, var(--soft), rgba(255, 255, 255, 0) 68%),
    var(--white);
}

.program-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .75fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.program-head p {
  margin-bottom: 10px;
  color: var(--steel);
  font-size: 18px;
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .46fr);
  gap: 18px;
  align-items: stretch;
}

.program-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.program-card {
  --accent: var(--gold);
  --card-image: url("services/onsite-security-patrol.jpg");
  position: relative;
  display: grid;
  align-content: end;
  gap: 14px;
  overflow: hidden;
  min-height: 220px;
  padding: 22px;
  border: 0;
  border-bottom: 6px solid var(--accent);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(9, 13, 18, .06) 0%, rgba(9, 13, 18, .36) 42%, rgba(9, 13, 18, .9) 100%),
    var(--card-image) center / cover no-repeat;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(9, 13, 18, .07);
}

.program-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(9, 13, 18, .1);
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 13, 18, .24), transparent 48%);
}

.program-card.retail {
  --card-image: url("services/retail-security.jpg");
}

.program-card.construction {
  --accent: var(--teal);
  --card-image: url("services/construction-security.jpg");
}

.program-card.patrol {
  --accent: var(--blue);
  --card-image: url("services/onsite-security-patrol.jpg");
}

.program-card.healthcare {
  --accent: var(--green);
  --card-image: url("services/healthcare-security.jpg");
}

.program-card.restaurant {
  --accent: var(--coral);
  --card-image: url("services/restaurant-security.jpg");
}

.program-card.event {
  --accent: var(--plum);
  --card-image: url("services/commercial-real-estate-security.jpg");
}

.program-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 4px;
  background: var(--accent);
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}

.program-copy,
.program-copy span,
.ops-points strong,
.ops-points span {
  display: block;
}

.program-copy {
  position: relative;
  z-index: 1;
}

.program-copy strong {
  color: var(--white);
  font-size: 24px;
  line-height: 1.1;
}

.program-copy span {
  margin-top: 8px;
  color: #e2ebf1;
  font-size: 15px;
}

.program-ops {
  padding: 26px;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(21, 100, 90, .78), rgba(9, 13, 18, .94)),
    url("services/onsite-security-patrol.jpg") center / cover no-repeat;
  color: var(--white);
  box-shadow: var(--shadow);
}

.program-ops .eyebrow {
  color: var(--gold);
}

.program-ops h3 {
  max-width: 360px;
  font-size: 30px;
}

.program-ops p {
  color: #e1ebf0;
}

.ops-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.ops-points li {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  background: rgba(255, 255, 255, .1);
}

.ops-points strong {
  color: var(--white);
}

.ops-points span {
  margin-top: 3px;
  color: #cbd8df;
  font-size: 14px;
}

.intro {
  max-width: 820px;
  margin-bottom: 34px;
}

.intro .eyebrow,
.content .eyebrow,
.contact-copy .eyebrow {
  color: var(--gold-dark);
}

.intro p,
.content p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.grid,
.service-grid,
.answer-grid,
.industries,
.location-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(9, 13, 18, .07);
}

.service-media {
  position: relative;
  min-height: 174px;
  background: var(--ink) center / cover no-repeat;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(9, 13, 18, .44));
}

.service-body {
  padding: 22px;
}

.service-body h2 {
  font-size: 27px;
}

.service-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 8px;
  border-left: 3px solid var(--gold);
  background: var(--soft);
  color: var(--steel);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.service-body p {
  color: var(--muted);
}

.service-body a,
.card a,
.answer-grid a,
.content a {
  color: var(--gold-dark);
  font-weight: 900;
}

.card,
.contact-panel,
.answer-shell,
.operations-panel,
.form-panel {
  border-radius: var(--radius);
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(9, 13, 18, .06);
}

.card p {
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 32px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-direct {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-left: 4px solid var(--gold);
  background: var(--soft);
  color: var(--ink);
  font-weight: 900;
}

.contact-aside {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-aside .eyebrow {
  color: var(--gold);
}

.contact-aside .checklist li {
  border-bottom-color: rgba(255, 255, 255, .14);
  color: #e9f0f5;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
}

.contact-methods a,
.contact-methods div {
  display: block;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  background: rgba(255, 255, 255, .07);
  text-decoration: none;
}

.contact-methods span {
  display: block;
  color: #aebbc6;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-methods strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.lead-form {
  display: grid;
  gap: 14px;
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #c9d2dc;
  border-radius: 4px;
  background: var(--white);
  color: var(--charcoal);
  font: inherit;
}

.lead-form textarea {
  min-height: 118px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.visual-band {
  color: var(--white);
  background: var(--ink);
}

.visual-split {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: 36px;
  align-items: center;
}

.visual-copy p {
  max-width: 660px;
  color: #d4dee6;
  font-size: 18px;
}

.visual-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.visual-checks span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, .07);
  color: #edf3f7;
  font-weight: 850;
}

.photo-system {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  min-height: 430px;
}

.photo-main,
.photo-stack div {
  border-radius: var(--radius);
  background: var(--charcoal) center / cover no-repeat;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .28);
}

.photo-main {
  min-height: 430px;
}

.photo-stack {
  display: grid;
  gap: 14px;
}

.photo-stack div {
  min-height: 208px;
}

.answer-shell {
  display: grid;
  grid-template-columns: .85fr 1.25fr;
  gap: 30px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  background: linear-gradient(135deg, #ffffff, #f7fafc);
}

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

.answer-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.answer-grid h3 {
  font-size: 19px;
}

.answer-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: 42px;
  align-items: start;
}

.operations-panel {
  padding: 28px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.operations-panel h3 {
  color: var(--gold);
}

.operations-panel p {
  color: #dbe4eb;
}

.operations-panel .checklist li {
  border-bottom-color: rgba(255, 255, 255, .14);
  color: #e9f0f5;
}

.operations-panel .checklist li::before {
  background: var(--gold);
}

.ops-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.ops-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 14px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, .08);
}

.ops-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.ops-item strong,
.ops-item span {
  display: block;
}

.ops-item span:last-child {
  color: #c8d4dd;
  font-size: 14px;
}

.checklist {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  font-weight: 800;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 15px;
  height: 15px;
  background: var(--green);
  clip-path: polygon(14% 44%, 0 58%, 38% 96%, 100% 24%, 84% 10%, 36% 66%);
}

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

.industry {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.industry strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.industry span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.mission-band,
.cta-band {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 13, 18, .98), rgba(21, 100, 90, .86)),
    url("security-hero.jpg") center / cover no-repeat;
}

.mission-band {
  padding: 66px 0 72px;
}

.mission-band h2,
.mission-band p {
  max-width: 950px;
}

.mission-band p,
.cta-band p {
  color: #dce6ec;
  font-size: 18px;
}

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

.location-grid a,
.location-grid span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  font-weight: 900;
  text-decoration: none;
}

.page-hero {
  position: relative;
  padding: 78px 0 68px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 13, 18, .96), rgba(21, 32, 42, .9)),
    url("security-hero.jpg") center / cover no-repeat;
}

.page-hero p {
  max-width: 800px;
  color: #dce6ee;
  font-size: 19px;
}

.content {
  max-width: 880px;
}

.faq details {
  margin-bottom: 12px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq p {
  margin-top: 12px;
  color: var(--muted);
}

.cta-band {
  padding: 58px 0 64px;
}

.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  max-width: 820px;
}

.site-footer {
  padding: 48px 0 24px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 34px;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 14px;
}

.site-footer p {
  color: #cbd6df;
}

.site-footer a {
  color: var(--gold);
}

.fine {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #aeb8c2;
  font-size: 14px;
}

.thank-you {
  min-height: 56vh;
  display: grid;
  align-items: center;
}

@media (max-width: 1020px) {
  .header-call {
    display: none;
  }

  .hero .wrap,
  .contact-panel,
  .answer-shell,
  .visual-split,
  .program-head,
  .program-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .hero .wrap {
    min-height: auto;
    padding: 58px 0 60px;
  }

  .hero-card,
  .hero-visual {
    max-width: 640px;
  }

  .proof-grid,
  .coverage-tiles,
  .program-services,
  .service-grid,
  .grid,
  .industries,
  .location-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .topbar .wrap {
    min-height: 34px;
    font-size: 12px;
  }

  .topbar span {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav {
    min-height: 66px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    max-width: 226px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    font-size: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 108px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
    gap: 4px;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 4px;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: var(--soft);
  }

  h1 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .hero {
    background-position: 62% center;
  }

  .hero .wrap {
    padding: 42px 0 46px;
  }

  .hero p,
  .page-hero p {
    font-size: 17px;
  }

  .hero-card {
    padding: 20px;
  }

  .hero-visual {
    gap: 10px;
  }

  .dispatch-map {
    min-height: 190px;
  }

  .route-line.one {
    width: 176px;
  }

  .route-line.two {
    width: 142px;
  }

  .dispatch-status,
  .hero-mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dispatch-status div,
  .hero-mini-grid div {
    padding: 12px 10px;
  }

  .dispatch-status span,
  .hero-mini-grid span {
    font-size: 10px;
  }

  .dispatch-status strong,
  .hero-mini-grid strong {
    font-size: 13px;
  }

  .snapshot-head {
    align-items: stretch;
    flex-direction: column;
  }

  .actions {
    display: grid;
  }

  .proof-grid,
  .coverage-tiles,
  .program-services,
  .service-grid,
  .grid,
  .answer-grid,
  .industries,
  .location-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .proof-grid div {
    padding: 18px;
  }

  .coverage-tile {
    min-height: 172px;
  }

  .section {
    padding: 54px 0;
  }

  .section.tight {
    padding: 36px 0;
  }

  .contact-panel,
  .answer-shell,
  .card,
  .contact-aside,
  .operations-panel,
  .program-ops,
  .service-body {
    padding: 20px;
  }

  .program-card {
    min-height: 0;
  }

  .card h2,
  .contact-panel h2,
  .hero-card h2 {
    font-size: 26px;
  }

  .visual-split {
    gap: 24px;
  }

  .photo-system {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .photo-main {
    min-height: 240px;
  }

  .photo-stack {
    grid-template-columns: 1fr 1fr;
  }

  .photo-stack div {
    min-height: 150px;
  }

  .service-media {
    min-height: 150px;
  }

  .page-hero {
    padding: 54px 0 48px;
  }

  .cta-band .wrap {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .brand-name {
    max-width: 190px;
    font-size: 12px;
  }

  .brand small {
    font-size: 9px;
  }

  .topbar span {
    max-width: 180px;
  }
}

@media (max-width: 340px) {
  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand {
    gap: 10px;
  }

  .brand-name {
    max-width: 168px;
    font-size: 11px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .dispatch-status,
  .hero-mini-grid {
    grid-template-columns: 1fr;
  }
}
