:root {
  --bg: #07111f;
  --bg-2: #0b0f17;
  --panel: #111827;
  --panel-soft: rgba(255, 255, 255, 0.06);
  --text: #ffffff;
  --muted: #cbd5e1;
  --muted-2: #91a0b5;
  --gold: #d4af37;
  --blue: #38bdf8;
  --red: #ef4444;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Manrope, Montserrat, Sora, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 34rem),
    linear-gradient(180deg, var(--bg), var(--bg-2) 38rem, #080b12);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--gold);
  color: #111827;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 31, 0.68);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.contact-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.14), rgba(56, 189, 248, 0.08));
  color: var(--muted);
  font-size: 0.82rem;
}

.strip-inner,
.strip-links,
.navbar,
.brand,
.hero-actions,
.mini-metrics {
  display: flex;
  align-items: center;
}

.strip-inner {
  min-height: 34px;
  justify-content: space-between;
  gap: 18px;
}

.strip-links {
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.strip-links a {
  transition: color 180ms ease;
}

.strip-links a:hover {
  color: var(--blue);
}

.navbar {
  min-height: 84px;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  gap: 12px;
  min-width: 230px;
}

.logo-brand {
  min-width: clamp(218px, 18vw, 270px);
  max-width: 270px;
  padding: 8px 0;
}

.logo-brand img {
  width: 100%;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(56, 189, 248, 0.08));
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.15);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linejoin: round;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted-2);
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.nav-panel a {
  position: relative;
  color: var(--muted);
  padding: 10px 9px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.nav-panel a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transition: transform 180ms ease;
}

.nav-panel a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-panel a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 104px 0;
  position: relative;
}

.section-dark,
.section-deep {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.92), rgba(7, 17, 31, 0.96));
}

.section-panel {
  background:
    linear-gradient(90deg, rgba(56, 189, 248, 0.06), rgba(212, 175, 55, 0.06)),
    #0d1522;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: calc(100vh - 119px);
  padding: 118px 0 36px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-bg,
.hero-overlay,
.cta-bg {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero-security.png");
  background-size: cover;
  background-position: 58% center;
  transform: scale(1.04);
  will-change: transform;
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 32%, rgba(56, 189, 248, 0.22), transparent 25rem),
    linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.86) 47%, rgba(7, 17, 31, 0.38) 74%, rgba(7, 17, 31, 0.78) 100%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.2), #07111f 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(290px, 0.5fr);
  gap: 42px;
  align-items: end;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.5);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(2.9rem, 5.4vw, 5rem);
  font-weight: 950;
  line-height: 1.02;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.8vw, 4.85rem);
  font-weight: 950;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-subhead,
.section-copy > p,
.section-heading p,
.cta-panel p,
.site-footer p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-subhead {
  max-width: 760px;
  font-size: clamp(1.03rem, 2vw, 1.22rem);
}

.tagline {
  margin: 0 0 26px;
  color: #f7e6a6;
  font-size: 1.03rem;
  font-weight: 900;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  color: #fff;
  font-weight: 900;
  line-height: 1.15;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: translateX(-80%);
  transition: transform 700ms ease, opacity 200ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  opacity: 1;
  transform: translateX(80%);
}

.btn-primary {
  color: #09111d;
  background: linear-gradient(135deg, #f3d46f, var(--gold));
  box-shadow: 0 0 36px rgba(212, 175, 55, 0.32);
}

.btn-secondary {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.42);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.12);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
}

.hero-panel {
  align-self: center;
}

.signal-card,
.hero-brief,
.map-card,
.cta-panel,
.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.signal-card {
  padding: 14px;
}

.hero-brief {
  position: relative;
  max-width: 390px;
  margin-left: auto;
  padding: 24px;
}

.hero-brief .live-dot {
  position: absolute;
  top: 24px;
  right: 24px;
}

.hero-brief strong {
  display: block;
  max-width: 290px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-brief p {
  margin-bottom: 18px;
  color: var(--muted);
}

.hero-brief a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 8px;
  padding: 10px 13px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  font-weight: 950;
}

.signal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.75);
  animation: pulse 1.9s infinite;
}

.signal-map {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(56, 189, 248, 0.24);
}

.signal-map img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mini-metrics {
  justify-content: space-between;
  margin-top: 12px;
  gap: 10px;
}

.mini-metrics span {
  flex: 1;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 6px;
  padding: 8px 10px;
  text-align: center;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  font-weight: 950;
}

.service-card,
.why-card,
.badge-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.service-card::before,
.why-card::before,
.badge-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), transparent 40%, rgba(56, 189, 248, 0.12));
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover::before,
.why-card:hover::before,
.badge-card:hover::before {
  opacity: 1;
}

.split,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 58px;
  align-items: center;
}

.feature-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.feature-grid.reverse .feature-image {
  order: 2;
}

.feature-grid.reverse .section-copy {
  order: 1;
}

.section-copy {
  max-width: 680px;
}

.about .split,
#security-guards .feature-grid,
#camera-systems .split,
#investigations .feature-grid,
.region .split {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  row-gap: 28px;
}

.about .section-copy,
#security-guards .section-copy,
#camera-systems .section-copy,
#investigations .section-copy,
.region .section-copy {
  display: block;
  max-width: 920px;
  order: 1;
}

.about .section-copy .eyebrow,
.about .section-copy h2,
#security-guards .section-copy .eyebrow,
#security-guards .section-copy h2,
#camera-systems .section-copy .eyebrow,
#camera-systems .section-copy h2,
#investigations .section-copy .eyebrow,
#investigations .section-copy h2,
.region .section-copy .eyebrow,
.region .section-copy h2 {
  grid-column: 1 / -1;
}

.about .section-copy h2,
#security-guards .section-copy h2,
#camera-systems .section-copy h2,
#investigations .section-copy h2,
.region .section-copy h2 {
  max-width: 1050px;
  margin-bottom: 8px;
  font-size: clamp(2.6rem, 4.7vw, 4.45rem);
  line-height: 1.03;
}

.about .section-copy > p,
.about .check-grid {
  grid-column: auto;
}

.about .media-stack {
  grid-column: auto;
  grid-row: auto;
  align-self: start;
  order: 2;
  max-width: 860px;
}

#security-guards .feature-image {
  grid-column: auto;
  grid-row: auto;
  align-self: start;
  order: 2;
  max-width: 860px;
}

#security-guards .section-copy > p,
#security-guards .feature-list {
  grid-column: auto;
}

#camera-systems .section-copy > p,
#camera-systems .feature-list,
#camera-systems .section-copy > .btn {
  grid-column: auto;
}

#camera-systems .tech-visual {
  grid-column: auto;
  grid-row: auto;
  align-self: start;
  order: 2;
  max-width: 860px;
}

#investigations .feature-image {
  grid-column: auto;
  grid-row: auto;
  align-self: start;
  order: 2;
  max-width: 860px;
}

#investigations .section-copy > p,
#investigations .pill-grid {
  grid-column: auto;
}

.region .section-copy > p,
.region .section-copy > .btn {
  grid-column: auto;
}

.region .map-card {
  grid-column: auto;
  grid-row: auto;
  align-self: start;
  order: 2;
  max-width: 860px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.media-stack,
.feature-image,
.tech-visual,
.map-card {
  position: relative;
}

.media-stack img,
.feature-image img,
.tech-visual img,
.map-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.floating-proof {
  position: absolute;
  left: -22px;
  bottom: 22px;
  width: min(300px, 86%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(7, 17, 31, 0.9);
  box-shadow: var(--shadow);
}

.floating-proof strong,
.floating-proof span {
  display: block;
}

.floating-proof strong {
  color: var(--gold);
  font-size: 1.45rem;
  line-height: 1;
}

.floating-proof span {
  margin-top: 8px;
  color: var(--muted);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.check-grid span,
.pill-grid span {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  color: #e7edf7;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 750;
}

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

.service-card {
  min-height: 300px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.38);
  box-shadow: 0 20px 70px rgba(56, 189, 248, 0.12);
}

.service-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card a {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: var(--gold);
  font-weight: 900;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 28px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.6);
}

.section-tech {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.18), transparent 32rem),
    linear-gradient(180deg, #07111f, #0b0f17);
}

.scan-lines {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image: linear-gradient(rgba(56, 189, 248, 0.15) 1px, transparent 1px);
  background-size: 100% 9px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  animation: scan 7s linear infinite;
}

.tech-visual {
  isolation: isolate;
}

.screen-grid {
  position: absolute;
  inset: 20px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  pointer-events: none;
}

.screen-grid span {
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.14), transparent);
  animation: screenPulse 3s ease-in-out infinite;
}

.screen-grid span:nth-child(2),
.screen-grid span:nth-child(3) {
  animation-delay: 900ms;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-grid span {
  font-size: 0.9rem;
}

.modal-trigger {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.46);
  border-radius: 8px;
  padding: 11px 16px;
  color: #09111d;
  background: linear-gradient(135deg, #f3d46f, var(--gold));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 34px rgba(212, 175, 55, 0.22);
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.modal-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38), 0 0 42px rgba(212, 175, 55, 0.3);
}

.content-modal {
  width: min(900px, calc(100% - 32px));
  height: min(82vh, 820px);
  max-height: none;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0;
  color: #fff;
  background: transparent;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.62);
  overflow: hidden;
}

.content-modal[open] {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.content-modal[open] {
  display: flex;
}

.content-modal::backdrop {
  background: rgba(3, 8, 16, 0.82);
  backdrop-filter: blur(10px);
}

.modal-shell {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: none;
  padding: clamp(24px, 5vw, 48px);
  overflow-wrap: anywhere;
  background:
    radial-gradient(circle at 92% 12%, rgba(56, 189, 248, 0.16), transparent 26rem),
    linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(7, 17, 31, 0.98));
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  left: 11px;
  top: 20px;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.content-modal h2 {
  max-width: 720px;
  margin-bottom: 18px;
}

.modal-content > p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1rem;
}

.modal-content h3 {
  margin: 28px 0 12px;
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.modal-content p strong {
  color: #fff;
}

.ethics-list {
  display: grid;
  gap: 12px;
  max-width: 790px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: ethics;
}

.ethics-list li {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px 16px 58px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
}

.ethics-list li::before {
  counter-increment: ethics;
  content: counter(ethics, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
}

.philosophy-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.philosophy-values article {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.philosophy-values strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  text-transform: uppercase;
}

.philosophy-values p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.modal-closing {
  margin-top: 26px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.modal-closing p {
  max-width: 780px;
  color: var(--muted);
}

.modal-closing p:first-child,
.modal-closing p:last-child {
  color: #fff;
  font-weight: 900;
}

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

.industry-card {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(7, 17, 31, 0.34), rgba(7, 17, 31, 0.9)),
    var(--bg);
  background-size: cover;
  background-position: center;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(56, 189, 248, 0.12), transparent 38%),
    var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform 260ms ease, filter 260ms ease;
}

.industry-card:hover::before {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.industry-card span {
  position: absolute;
  inset: 14px auto auto 14px;
  z-index: 1;
  max-width: calc(100% - 28px);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(7, 17, 31, 0.74);
  backdrop-filter: blur(12px);
  font-weight: 950;
  line-height: 1.12;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.map-card {
  padding: 12px;
}

.map-card img {
  aspect-ratio: 16 / 9;
}

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

#why-title {
  max-width: 980px;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.05;
}

.why-intro {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin-top: 22px;
}

.why-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.why-card {
  min-height: 168px;
  padding: 22px;
}

.why-card strong,
.why-card span {
  display: block;
}

.why-card strong {
  margin-bottom: 14px;
  line-height: 1.12;
}

.why-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.badge-card {
  min-height: 180px;
  padding: 24px;
  text-align: center;
  display: grid;
  place-items: center;
  align-content: center;
}

.badge-card span,
.badge-card small {
  color: var(--muted-2);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.badge-card strong {
  color: var(--gold);
  font-size: 1.18rem;
  line-height: 1.18;
}

.final-cta {
  overflow: hidden;
  background: #07111f;
}

.cta-bg {
  background-image:
    linear-gradient(90deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.58), rgba(7, 17, 31, 0.94)),
    url("assets/port-security.png");
  background-size: cover;
  background-position: center;
}

.cta-panel {
  position: relative;
  max-width: 870px;
  padding: clamp(28px, 6vw, 58px);
}

.cta-panel h2 {
  margin-bottom: 18px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a,
.contact-cards > span {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-cards strong,
.contact-cards span span {
  display: block;
}

.contact-cards strong {
  color: var(--muted-2);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-cards span span,
.contact-cards a span {
  margin-top: 6px;
  color: #fff;
  font-weight: 950;
}

.contact-form {
  padding: 24px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
}

.contact-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px 13px;
  color: #fff;
  background: rgba(7, 17, 31, 0.76);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(56, 189, 248, 0.74);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.14);
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note a {
  color: var(--blue);
  font-weight: 900;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
}

.thank-you-main {
  width: 100%;
}

.thank-you-panel h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6rem);
}

.site-footer {
  padding: 64px 0 24px;
  background: #050a12;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.8fr 0.8fr 0.7fr;
  gap: 30px;
}

.footer-brand {
  align-items: flex-start;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

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

.footer-nav {
  display: grid;
  gap: 8px;
}

.copyright {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted-2);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

@keyframes scan {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 180px;
  }
}

@keyframes screenPulse {
  0%,
  100% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .service-grid,
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .nav-panel a {
    padding-inline: 8px;
    font-size: 0.82rem;
  }
}

@media (max-width: 1180px) {
  .navbar {
    min-height: 70px;
  }

  .logo-brand {
    min-width: 0;
    width: min(270px, calc(100vw - 110px));
  }

  .logo-brand img {
    max-height: 60px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-panel {
    position: fixed;
    inset: 70px 0 auto auto;
    width: min(420px, 100%);
    height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 18px;
    background: rgba(7, 17, 31, 0.98);
    border-left: 1px solid var(--border);
    transform: translateX(calc(100% + 32px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 240ms ease, opacity 180ms ease, visibility 0ms linear 240ms;
    box-shadow: none;
  }

  .menu-open .nav-panel {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 240ms ease, opacity 180ms ease;
    box-shadow: var(--shadow);
  }

  .nav-panel a {
    padding: 15px;
    font-size: 1rem;
    white-space: normal;
  }

  .hero-grid,
  .split,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about .section-copy,
  #security-guards .section-copy,
  #camera-systems .section-copy,
  #investigations .section-copy,
  .region .section-copy {
    display: block;
    order: 1;
  }

  .about .media-stack,
  #security-guards .feature-image,
  #camera-systems .tech-visual,
  #investigations .feature-image,
  .region .map-card {
    order: 2;
  }

  .about .media-stack,
  #security-guards .feature-image,
  #security-guards .section-copy > p,
  #security-guards .feature-list,
  #camera-systems .section-copy > p,
  #camera-systems .feature-list,
  #camera-systems .section-copy > .btn,
  #camera-systems .tech-visual,
  #investigations .feature-image,
  #investigations .section-copy > p,
  #investigations .pill-grid,
  .region .section-copy > p,
  .region .section-copy > .btn,
  .region .map-card {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-grid.reverse .feature-image,
  .feature-grid.reverse .section-copy {
    order: initial;
  }

  #security-guards .section-copy,
  #investigations .section-copy {
    order: 1;
  }

  #security-guards .feature-image,
  #investigations .feature-image {
    order: 2;
  }

  .about .section-copy h2,
  #security-guards .section-copy h2,
  #camera-systems .section-copy h2,
  #investigations .section-copy h2,
  .region .section-copy h2 {
    font-size: clamp(2.15rem, 6.6vw, 3.45rem);
    line-height: 1.06;
  }

  .floating-proof {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .hero-panel {
    display: none;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .contact-strip {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 98px;
  }

  .service-grid,
  .why-grid,
  .industry-grid,
  .badge-row,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 78px 0;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .logo-brand {
    width: min(235px, calc(100vw - 96px));
    min-width: 0;
    max-width: none;
  }

  .logo-brand img {
    max-height: 58px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    max-width: 180px;
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(2.45rem, 10.8vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  #why-title {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .about .section-copy h2,
  #security-guards .section-copy h2,
  #camera-systems .section-copy h2,
  #investigations .section-copy h2,
  .region .section-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
    line-height: 1.08;
  }

  .section-copy > p,
  .section-heading p,
  .hero-subhead,
  .cta-panel p {
    font-size: 0.98rem;
  }

  .hero {
    padding-bottom: 28px;
  }

  .hero-logo {
    width: min(320px, 96%);
    margin-bottom: 24px;
  }

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

  .service-grid,
  .why-grid,
  .industry-grid,
  .badge-row,
  .footer-grid,
  .check-grid,
  .feature-list.two-col,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .service-card,
  .why-card,
  .badge-card {
    min-height: auto;
  }

  .floating-proof {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .screen-grid {
    inset: 12px;
    gap: 7px;
  }

  .modal-trigger {
    position: static;
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }

  .content-modal {
    width: calc(100dvw - 20px);
    height: min(86vh, 760px);
    max-width: calc(100dvw - 20px);
    margin: 0;
  }

  .content-modal[open] {
    inset: 50% auto auto 10px;
    transform: translateY(-50%);
  }

  .modal-shell {
    padding: 24px 16px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .content-modal h2 {
    max-width: calc(100% - 46px);
    font-size: clamp(2rem, 12vw, 3rem);
    line-height: 1.02;
  }

  .modal-content > p,
  .modal-closing p {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .ethics-list li {
    padding: 15px 14px 15px 48px;
  }

  .philosophy-values {
    grid-template-columns: 1fr;
  }
}
