:root {
  --black: #080b0f;
  --navy: #111a24;
  --graphite: #1d2630;
  --slate: #536170;
  --line: #d9e0e7;
  --mist: #f4f7fa;
  --white: #ffffff;
  --gold: #f3c411;
  --gold-deep: #b48908;
  --gold-bright: #ffe066;
  --charcoal: #2d2d2b;
  --silver: #79838c;
  --shadow: 0 24px 70px rgba(8, 11, 15, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 8px 12px;
  background: var(--black);
  color: var(--white);
  z-index: 30;
}

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

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

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

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.brand-name {
  display: block;
  color: var(--black);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.nav-links a {
  color: var(--graphite);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--gold-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(8, 11, 15, .2);
}

.button.gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 12px 24px rgba(200, 162, 74, .2);
}

.button.ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
  box-shadow: none;
}

.button.light {
  background: var(--white);
  color: var(--black);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 11, 15, .96) 0%, rgba(8, 11, 15, .9) 38%, rgba(8, 11, 15, .45) 70%, rgba(8, 11, 15, .25) 100%),
    url("security-hero.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--black), var(--gold), var(--charcoal));
}

.hero .wrap {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 790px);
  align-items: center;
  padding: 82px 0 96px;
}

.hero-panel {
  max-width: 790px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 6.5vw, 82px);
}

h2 {
  font-size: clamp(31px, 4.2vw, 54px);
}

h3 {
  font-size: 23px;
}

p {
  margin: 0 0 18px;
}

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

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 820px;
  margin-top: 42px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .22);
}

.hero-proof div {
  padding: 20px;
  background: rgba(8, 11, 15, .68);
}

.hero-proof strong {
  display: block;
  color: var(--gold-bright);
  font-size: 26px;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 7px;
  color: #e1e7ed;
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

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

.home-contact {
  padding: 0;
  background: var(--mist);
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: start;
  margin-top: -70px;
  padding: 34px;
  background: var(--white);
  border-top: 6px solid var(--gold);
  box-shadow: var(--shadow);
  z-index: 3;
}

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

.contact-copy p {
  max-width: 680px;
  color: var(--slate);
  font-size: 18px;
}

.contact-direct {
  margin-top: 24px;
}

.contact-direct a {
  color: var(--black);
  font-weight: 900;
}

.intro {
  max-width: 830px;
  margin-bottom: 38px;
}

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

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

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

.service-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px;
  border-radius: 0;
  color: var(--white);
  background: var(--black) center / cover no-repeat;
  background-image: var(--image);
  box-shadow: 0 12px 34px rgba(8, 11, 15, .12);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 11, 15, .12), rgba(8, 11, 15, .9)),
    linear-gradient(135deg, rgba(243, 196, 17, .46), transparent 48%);
}

.service-card > * {
  position: relative;
}

.service-card p {
  color: #dbe3ea;
}

.service-card a {
  color: var(--gold-bright);
  font-weight: 900;
}

.service-card:nth-child(2)::before {
  background:
    linear-gradient(180deg, rgba(8, 11, 15, .12), rgba(8, 11, 15, .9)),
    linear-gradient(135deg, rgba(121, 131, 140, .62), transparent 46%);
}

.service-card:nth-child(3)::before {
  background:
    linear-gradient(180deg, rgba(8, 11, 15, .12), rgba(8, 11, 15, .9)),
    linear-gradient(135deg, rgba(243, 196, 17, .42), transparent 46%);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  padding: 30px;
  box-shadow: 0 12px 28px rgba(8, 11, 15, .05);
}

.card a {
  color: var(--gold-deep);
  font-weight: 900;
}

.answer-section {
  background: var(--white);
}

.answer-shell {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 34px;
  align-items: start;
  padding: 36px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 46px rgba(8, 11, 15, .08);
}

.answer-lead .eyebrow {
  color: var(--gold-deep);
}

.answer-lead p {
  color: var(--slate);
  font-size: 18px;
}

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

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

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

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

.answer-grid a {
  color: var(--gold-deep);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
  gap: 54px;
  align-items: start;
}

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

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

.ops-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.ops-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: rgba(255, 255, 255, .07);
  border-left: 3px solid var(--gold);
}

.ops-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  font-weight: 950;
}

.ops-item strong {
  display: block;
}

.ops-item span {
  color: #cbd5df;
  font-size: 14px;
}

.trust-band {
  padding: 0 0 88px;
  background: var(--mist);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(8, 11, 15, .06);
}

.trust-grid div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  display: block;
  color: var(--black);
  font-size: 21px;
  line-height: 1.2;
}

.trust-grid span {
  display: block;
  margin-top: 8px;
  color: var(--slate);
}

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

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

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

.industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.industry {
  min-height: 150px;
  padding: 24px;
  background: var(--white);
}

.industry strong {
  display: block;
  font-size: 21px;
}

.industry span {
  color: var(--slate);
}

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

.location-grid a,
.location-grid span {
  display: block;
  min-height: 58px;
  padding: 17px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--graphite);
  font-weight: 900;
  text-decoration: none;
}

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

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

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

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

.lead-form.compact {
  padding: 24px;
  background: var(--black);
}

.lead-form.compact label {
  color: var(--white);
}

.lead-form.compact input,
.lead-form.compact textarea {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.lead-form.compact input::placeholder,
.lead-form.compact textarea::placeholder {
  color: rgba(255, 255, 255, .68);
}

.lead-form.compact textarea {
  min-height: 110px;
}

.form-note {
  color: var(--slate);
  font-size: 14px;
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 11, 15, .98), rgba(8, 11, 15, .88)),
    radial-gradient(circle at 80% 20%, rgba(243, 196, 17, .24), transparent 34%);
  padding: 62px 0;
}

.mission-band {
  padding: 78px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 11, 15, .98), rgba(8, 11, 15, .9)),
    radial-gradient(circle at 88% 10%, rgba(243, 196, 17, .2), transparent 38%);
}

.mission-band .eyebrow {
  color: var(--gold-bright);
}

.mission-band h2 {
  max-width: 1050px;
}

.mission-band p {
  max-width: 780px;
  color: #d9e2ea;
  font-size: 19px;
}

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

.cta-band p {
  max-width: 720px;
  color: #d9e2ea;
  font-size: 18px;
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 11, 15, .96), rgba(17, 26, 36, .88)),
    radial-gradient(circle at 80% 20%, rgba(243, 196, 17, .24), transparent 32%);
  padding: 92px 0 78px;
  border-bottom: 6px solid var(--gold);
}

.page-hero p {
  max-width: 790px;
  color: #dce5ec;
  font-size: 20px;
}

.content {
  max-width: 880px;
}

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

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.site-footer {
  padding: 56px 0 28px;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr .8fr;
  gap: 38px;
}

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

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

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

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

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0 16px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero .wrap {
    min-height: 630px;
  }

  .hero-proof,
  .service-grid,
  .grid,
  .answer-shell,
  .answer-grid,
  .trust-grid,
  .contact-panel,
  .split,
  .industries,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-band .wrap,
  .topbar .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    min-width: 0;
  }

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

  .hero .wrap {
    min-height: 610px;
    padding: 58px 0 74px;
  }

  .section {
    padding: 62px 0;
  }

  .service-card {
    min-height: 260px;
  }
}
