/*
Theme Name: SSG Secure
Theme URI: http://127.0.0.1:8080
Author: Codex
Description: A custom business theme for Superior Security Guards.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: ssg-secure
*/

:root {
  --ssg-ink: #173f72;
  --ssg-panel: #214b82;
  --ssg-muted: #5f7188;
  --ssg-line: #d8e6f2;
  --ssg-soft: #f4f9fd;
  --ssg-white: #ffffff;
  --ssg-gold: #199bd3;
  --ssg-gold-dark: #126da5;
  --ssg-green: #1d85b9;
  --ssg-red: #244a7f;
  --ssg-shadow: 0 18px 50px rgba(23, 63, 114, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ssg-ink);
  background: var(--ssg-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-shell {
  overflow: hidden;
}

.ssg-container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ssg-white);
  border-bottom: 1px solid rgba(216, 230, 242, 0.95);
  box-shadow: 0 12px 34px rgba(23, 63, 114, 0.08);
  animation: headerDrop 480ms ease both;
}

.site-topbar {
  background: var(--ssg-ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 750;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.site-topbar a {
  color: var(--ssg-white);
  text-decoration: none;
}

.header-inner {
  width: min(1500px, calc(100% - 56px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 104px;
}

.brand-link {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  width: min(620px, 42vw);
  min-width: 360px;
  padding: 10px 0;
  transition: transform 180ms ease;
}

.brand-link:hover,
.brand-link:focus {
  transform: translateY(-1px);
}

.brand-link img {
  width: 100%;
  max-height: 76px;
  height: auto;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: left center;
  filter: none;
  transition: transform 220ms ease;
}

.brand-link:hover img,
.brand-link:focus img {
  transform: scale(1.04);
}

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

.brand-tagline {
  display: block;
  margin-top: 7px;
  color: var(--ssg-muted);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  min-width: 0;
}

.site-menu,
.submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-menu li {
  position: relative;
}

.site-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 13px;
  border-radius: 6px;
  color: #263a55;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-menu > li > a::before {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ssg-red), var(--ssg-gold));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-menu a:hover,
.site-menu a:focus {
  background: rgba(25, 155, 211, 0.08);
  color: var(--ssg-red);
  transform: translateY(-1px);
}

.site-menu > li > a:hover::before,
.site-menu > li > a:focus::before {
  opacity: 1;
  transform: scaleX(1);
}

.menu-item-has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.menu-item-has-children:hover > a::after,
.menu-item-has-children:focus-within > a::after {
  transform: rotate(225deg) translateY(-1px);
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 250px;
  padding: 12px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background: var(--ssg-white);
  box-shadow: 0 24px 58px rgba(23, 63, 114, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transform-origin: top center;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.submenu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 28px;
  width: 14px;
  height: 14px;
  border-left: 1px solid var(--ssg-line);
  border-top: 1px solid var(--ssg-line);
  background: var(--ssg-white);
  transform: rotate(45deg);
}

.site-menu > li:nth-last-child(-n + 3) .submenu {
  right: 0;
  left: auto;
}

.menu-item-has-children:hover > .submenu,
.menu-item-has-children:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.submenu a {
  width: 100%;
  justify-content: flex-start;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 6px;
  color: #263a55;
  font-size: 13px;
  font-weight: 800;
}

.submenu a:hover,
.submenu a:focus {
  background: rgba(25, 155, 211, 0.09);
  color: var(--ssg-red);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  color: var(--ssg-white);
  background-color: var(--ssg-ink);
  background-image:
    linear-gradient(90deg, rgba(23, 63, 114, 0.94), rgba(23, 63, 114, 0.72) 48%, rgba(23, 63, 114, 0.28)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(23, 63, 114, 0), rgba(23, 63, 114, 0.6));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: 78px 0 118px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--ssg-gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ssg-white);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
}

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

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--ssg-white);
}

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

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -72px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ssg-white);
  box-shadow: var(--ssg-shadow);
  border-radius: 8px;
  overflow: hidden;
}

.trust-item {
  min-height: 138px;
  padding: 26px;
  border-right: 1px solid var(--ssg-line);
}

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

.trust-number {
  display: block;
  color: var(--ssg-red);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.trust-label {
  display: block;
  margin-top: 10px;
  color: #2a3442;
  font-weight: 800;
}

.section {
  padding: 72px 0;
}

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

.section-dark {
  background: var(--ssg-ink);
  color: var(--ssg-white);
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--ssg-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: var(--ssg-gold);
}

.section-title {
  margin: 0;
  color: inherit;
  max-width: 860px;
  font-size: clamp(26px, 3.1vw, 38px);
  line-height: 1.14;
  letter-spacing: 0;
}

.section-intro {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--ssg-muted);
  font-size: 16.5px;
  line-height: 1.72;
}

.section-dark .section-intro {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 52px;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--ssg-shadow);
}

.image-badge {
  position: absolute;
  right: -18px;
  bottom: 22px;
  max-width: 260px;
  padding: 18px;
  border-radius: 8px;
  background: var(--ssg-white);
  box-shadow: var(--ssg-shadow);
  color: var(--ssg-ink);
  font-weight: 850;
}

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

.service-card,
.post-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 30px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.52), transparent 34%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  color: var(--ssg-ink);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(23, 63, 114, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
}

.service-card:hover,
.post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(36, 74, 127, 0.34);
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.82), transparent 36%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 24px 54px rgba(23, 63, 114, 0.14);
}

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

.service-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 22px;
}

.home-service-icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 20%, rgba(25, 155, 211, 0.24), transparent 36%),
    linear-gradient(145deg, #214b82, #0f315d);
  color: var(--ssg-gold);
  box-shadow: 0 16px 32px rgba(23, 63, 114, 0.18);
}

.home-service-icon svg {
  width: 38px;
  height: 38px;
}

.home-service-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .home-service-icon {
  color: var(--ssg-white);
  background:
    radial-gradient(circle at 70% 20%, rgba(25, 155, 211, 0.22), transparent 36%),
    linear-gradient(145deg, var(--ssg-red), #123967);
}

.service-card h3,
.post-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 360px;
  font-size: 24px;
  line-height: 1.18;
}

.service-card p,
.post-card p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--ssg-muted);
  font-size: 16px;
  line-height: 1.68;
}

.service-arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--ssg-red);
  font-weight: 900;
}

.service-arrow::after {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  transition: width 180ms ease;
}

.service-card:hover .service-arrow::after {
  width: 42px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

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

.coverage-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
}

.coverage-list span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ssg-gold);
}

.map-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 54px rgba(0, 22, 54, 0.28);
}

.map-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 63, 114, 0.04), rgba(23, 63, 114, 0.2)),
    linear-gradient(90deg, rgba(23, 63, 114, 0.2), rgba(31, 160, 216, 0.08));
  pointer-events: none;
}

.clients {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.client-logo {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background: var(--ssg-white);
}

.client-logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
}

.instagram-section {
  overflow: hidden;
}

.instagram-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
}

.instagram-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.instagram-card {
  flex: 0 0 calc(100% / 3);
  min-width: 0;
  padding: 0 10px;
  color: var(--ssg-blue);
  text-decoration: none;
}

.instagram-card > span {
  display: block;
}

.instagram-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 16%, rgba(31, 160, 216, 0.22), transparent 30%),
    linear-gradient(135deg, var(--ssg-blue), var(--ssg-sky));
  box-shadow: 0 20px 48px rgba(23, 63, 114, 0.16);
}

.instagram-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 300ms ease;
}

.instagram-card:hover .instagram-media img {
  transform: scale(1.04);
}

.instagram-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
}

.instagram-placeholder svg {
  width: 74px;
  height: 74px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.instagram-copy {
  min-height: 72px;
  margin-top: 16px;
  color: var(--ssg-muted);
  font-size: 15px;
  line-height: 1.5;
}

.instagram-link-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--ssg-red);
  font-weight: 900;
}

.instagram-link-label::after {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.instagram-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.instagram-control {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ssg-line);
  border-radius: 50%;
  background: var(--ssg-white);
  color: var(--ssg-blue);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.instagram-control:hover,
.instagram-control:focus-visible {
  background: var(--ssg-blue);
  color: var(--ssg-white);
  transform: translateY(-2px);
}

.cta-band {
  padding: 62px 0;
  background: var(--ssg-red);
  color: var(--ssg-white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.whatsapp-chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}

.whatsapp-chat-link {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--ssg-white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  pointer-events: auto;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-chat-link:hover,
.whatsapp-chat-link:focus-visible {
  transform: translateY(-3px) scale(1.03);
  background: #1ebe5d;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.whatsapp-chat-link svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-chat-bubble {
  position: relative;
  width: min(292px, calc(100vw - 112px));
  padding: 16px 42px 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: var(--ssg-white);
  color: var(--ssg-blue);
  box-shadow: 0 20px 48px rgba(5, 25, 55, 0.2);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  visibility: hidden;
  pointer-events: auto;
}

.whatsapp-chat-widget.is-visible .whatsapp-chat-bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.whatsapp-chat-widget.is-dismissed .whatsapp-chat-bubble {
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  visibility: hidden;
  pointer-events: none;
}

.whatsapp-chat-bubble::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 18px;
  width: 16px;
  height: 16px;
  background: var(--ssg-white);
  transform: rotate(45deg);
  box-shadow: 8px -8px 20px rgba(5, 25, 55, 0.06);
}

.whatsapp-chat-bubble strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.2;
}

.whatsapp-chat-bubble span {
  display: block;
  color: var(--ssg-muted);
  font-size: 13px;
  line-height: 1.4;
}

.whatsapp-chat-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 63, 114, 0.08);
  color: var(--ssg-blue);
  cursor: pointer;
  font-size: 19px;
  line-height: 1;
}

.whatsapp-chat-close:hover,
.whatsapp-chat-close:focus-visible {
  background: rgba(23, 63, 114, 0.14);
}

.cta-inner p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.site-footer {
  padding: 52px 0 28px;
  background: #123967;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1fr;
  gap: 36px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--ssg-white);
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--ssg-gold);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.page-hero {
  padding: 64px 0;
  background: var(--ssg-ink);
  color: var(--ssg-white);
}

.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(31px, 3.6vw, 48px);
  line-height: 1.08;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  padding: 72px 0;
}

.entry-content {
  color: #2b3441;
  font-size: 16.5px;
  line-height: 1.76;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--ssg-ink);
  line-height: 1.15;
}

.entry-content a {
  color: var(--ssg-red);
  font-weight: 800;
}

.entry-content .elementor,
.entry-content [class*="elementor-"] {
  max-width: 100%;
}

.sidebar-box {
  position: sticky;
  top: 104px;
  padding: 24px;
  border-radius: 8px;
  background: var(--ssg-soft);
}

.sidebar-box h2 {
  margin: 0 0 12px;
  font-size: 23px;
}

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

.subpage-hero {
  min-height: 460px;
  display: grid;
  align-items: end;
  color: var(--ssg-white);
  background-color: var(--ssg-ink);
  background-image:
    linear-gradient(90deg, rgba(23, 63, 114, 0.94), rgba(23, 63, 114, 0.68) 56%, rgba(23, 63, 114, 0.32)),
    var(--subpage-hero-image);
  background-position: center;
  background-size: cover;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 42px;
  align-items: end;
  padding: 72px 0;
}

.subpage-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(31px, 3.8vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.subpage-hero-panel {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(23, 63, 114, 0.74);
  box-shadow: 0 24px 55px rgba(23, 63, 114, 0.28);
  backdrop-filter: blur(14px);
}

.subpage-hero-panel img {
  width: 100%;
  height: 152px;
  object-fit: cover;
  display: block;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(23, 63, 114, 0.28);
}

.subpage-hero-icon {
  width: 100%;
  height: 152px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 18%, rgba(25, 155, 211, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  color: var(--ssg-gold);
  box-shadow: 0 18px 34px rgba(23, 63, 114, 0.28);
}

.subpage-hero-icon svg {
  width: 82px;
  height: 82px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.subpage-hero-panel span {
  color: var(--ssg-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.subpage-hero-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--ssg-white);
  font-size: 24px;
  line-height: 1.15;
}

.subpage-hero-mobile-escorts {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  background-image:
    radial-gradient(circle at 78% 42%, rgba(31, 160, 216, 0.28), transparent 24%),
    linear-gradient(90deg, rgba(23, 63, 114, 0.97), rgba(23, 63, 114, 0.86) 48%, rgba(23, 63, 114, 0.7)),
    linear-gradient(140deg, transparent 0 57%, rgba(36, 74, 127, 0.32) 57% 60%, transparent 60%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.09) 0 2px, transparent 2px 44px),
    linear-gradient(135deg, #173f72, #214b82 48%, #2c6397);
}

.subpage-hero-mobile-escorts::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(23, 63, 114, 0.9) 0 38%, rgba(23, 63, 114, 0.72) 58%, rgba(23, 63, 114, 0.78) 100%),
    url("assets/images/mobile-escort-fleet-transparent.png");
  background-position: center, right 9vw center;
  background-repeat: no-repeat;
  background-size: cover, min(58vw, 900px) auto;
  opacity: 0.42;
  pointer-events: none;
}

.subpage-hero-mobile-escorts::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: max(18px, calc((100vw - 1180px) / 2 - 18px));
  bottom: 34px;
  width: min(42vw, 610px);
  height: 230px;
  background:
    radial-gradient(ellipse at 50% 96%, rgba(0, 12, 30, 0.3), transparent 62%),
    linear-gradient(180deg, transparent 0 68%, rgba(8, 19, 34, 0.34) 68% 81%, rgba(8, 19, 34, 0.52) 81% 100%);
  opacity: 0.7;
  pointer-events: none;
}

.subpage-hero-mobile-escorts .subpage-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  padding: 72px 0;
}

.subpage-hero-mobile-escorts .subpage-hero-panel {
  min-height: 270px;
  padding: 22px;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(31, 72, 124, 0.94), rgba(18, 54, 98, 0.94));
  box-shadow: 0 28px 64px rgba(3, 20, 45, 0.34);
  backdrop-filter: blur(14px);
}

.subpage-hero-mobile-escorts .subpage-hero-panel img {
  width: 100%;
  height: 150px;
  min-height: 0;
  object-fit: contain;
  padding: 16px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 14, 36, 0.22);
  filter: saturate(1.06) contrast(1.03);
}

.subpage-hero-mobile-escorts .subpage-hero-panel span,
.subpage-hero-mobile-escorts .subpage-hero-panel strong {
  display: block;
}

.subpage-hero-inventory .subpage-hero-panel img {
  object-fit: contain;
  height: 188px;
  padding: 10px;
  background: linear-gradient(180deg, #ffffff, #edf2f7);
}

.subpage-hero-company-profile .subpage-hero-panel img {
  object-fit: cover;
  object-position: center right;
}

.subpage-hero-future-services {
  background-image:
    linear-gradient(90deg, rgba(23, 63, 114, 0.96), rgba(23, 63, 114, 0.78) 54%, rgba(23, 63, 114, 0.42)),
    var(--subpage-hero-image);
}

.subpage-hero-future-services .subpage-hero-panel {
  background:
    radial-gradient(circle at 76% 18%, rgba(31, 160, 216, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(31, 72, 124, 0.94), rgba(18, 54, 98, 0.94));
}

.subpage-hero-future-services .subpage-hero-icon {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.18), transparent 30%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 24px),
    linear-gradient(135deg, rgba(23, 63, 114, 0.95), rgba(31, 160, 216, 0.56));
  color: var(--ssg-white);
}

.subpage-body {
  position: relative;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 38px;
  align-items: start;
}

.service-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: stretch;
}

.service-intro-main {
  padding: 38px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background: var(--ssg-white);
  box-shadow: 0 16px 42px rgba(23, 63, 114, 0.08);
}

.service-intro-main p:not(.section-kicker):not(.detail-lede) {
  margin: 0 0 18px;
  color: #455062;
}

.service-intro-main p:last-child {
  margin-bottom: 0;
}

.service-intro-aside {
  padding: 32px;
  border-radius: 8px;
  background: var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: var(--ssg-shadow);
}

.service-intro-aside span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--ssg-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-intro-aside strong {
  display: block;
  font-size: 54px;
  line-height: 0.95;
}

.service-intro-aside p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.service-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.service-directory-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(215, 221, 229, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 253, 0.98)),
    var(--ssg-white);
  color: var(--ssg-ink);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(23, 63, 114, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-directory-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--ssg-red), var(--ssg-gold));
}

.service-directory-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
  transition: transform 180ms ease, background 180ms ease;
}

.service-directory-card:hover,
.service-directory-card:focus {
  transform: translateY(-5px);
  border-color: rgba(36, 74, 127, 0.45);
  background:
    linear-gradient(145deg, #ffffff, #fff8e2),
    var(--ssg-white);
  box-shadow: 0 22px 48px rgba(23, 63, 114, 0.14);
}

.service-directory-card:hover::after,
.service-directory-card:focus::after {
  transform: scale(1.22);
  background: rgba(36, 74, 127, 0.12);
}

.service-directory-icon {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ssg-ink);
  color: var(--ssg-red);
  box-shadow: 0 14px 30px rgba(23, 63, 114, 0.18);
}

.service-directory-icon svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: var(--ssg-gold);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-directory-title {
  position: relative;
  z-index: 1;
  max-width: 220px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.08;
}

.service-directory-title {
  color: var(--ssg-ink);
}

.service-directory-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ssg-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-directory-action::after {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.service-directory-card:hover .service-directory-action::after,
.service-directory-card:focus .service-directory-action::after {
  transform: translateX(6px);
}

.conventional-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: stretch;
}

.conventional-copy {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(215, 221, 229, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.92)),
    var(--ssg-white);
  box-shadow: 0 22px 58px rgba(23, 63, 114, 0.12);
}

.conventional-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
}

.conventional-copy::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
  pointer-events: none;
}

.conventional-copy p:not(.section-kicker):not(.detail-lede) {
  margin: 0 0 18px;
  color: #455062;
}

.conventional-copy p:last-child {
  margin-bottom: 0;
}

.conventional-feature-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 8%, rgba(25, 155, 211, 0.3), transparent 34%),
    linear-gradient(145deg, rgba(24, 32, 43, 0.92), rgba(8, 11, 16, 0.98)),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 28px 70px rgba(23, 63, 114, 0.28);
}

.conventional-feature-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.conventional-feature-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(36, 74, 127, 0.24);
  pointer-events: none;
}

.conventional-feature-card .service-directory-icon {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.12);
  color: var(--ssg-gold);
  transform: scale(1.12);
  transform-origin: left top;
}

.conventional-feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 26px 0 12px;
  color: var(--ssg-white);
  font-size: 34px;
  line-height: 1.05;
}

.conventional-feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.feature-stat-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.feature-stat-row div {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-stat-row strong {
  display: block;
  color: var(--ssg-gold);
  font-size: 28px;
  line-height: 1;
}

.feature-stat-row span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

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

.training-section-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc),
    var(--ssg-white);
  box-shadow: 0 12px 30px rgba(23, 63, 114, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.training-section-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
}

.training-section-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 74, 127, 0.38);
  box-shadow: 0 22px 48px rgba(23, 63, 114, 0.13);
}

.training-section-card-wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.9), rgba(255, 255, 255, 0.98)),
    var(--ssg-white);
}

.training-section-card-accent {
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.92), rgba(255, 255, 255, 0.98)),
    var(--ssg-white);
}

.training-section-card span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, var(--ssg-ink), #0f315d);
  color: var(--ssg-gold);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(23, 63, 114, 0.18);
}

.training-section-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ssg-ink);
  font-size: 25px;
  line-height: 1.12;
}

.training-section-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--ssg-muted);
}

.staff-training-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.56fr);
  gap: 34px;
  align-items: stretch;
}

.staff-training-copy {
  padding: 44px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.78), rgba(255, 255, 255, 0.96) 38%, #ffffff),
    var(--ssg-white);
  box-shadow: 0 18px 42px rgba(23, 63, 114, 0.08);
}

.staff-training-copy p:not(.section-kicker):not(.detail-lede) {
  max-width: 820px;
  color: var(--ssg-muted);
  font-size: 18px;
}

.staff-training-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.staff-training-proof-grid div {
  min-height: 118px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(23, 63, 114, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(23, 63, 114, 0.05);
}

.staff-training-proof-grid strong {
  color: var(--ssg-red);
  font-size: 24px;
  line-height: 1;
}

.staff-training-proof-grid span {
  color: var(--ssg-muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.staff-training-command-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 18%, rgba(25, 155, 211, 0.22), transparent 26%),
    linear-gradient(145deg, rgba(23, 63, 114, 0.96), rgba(36, 74, 127, 0.82)),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 24px 54px rgba(23, 63, 114, 0.24);
}

.staff-training-command-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.staff-training-command-card .service-directory-icon,
.staff-training-command-card h3,
.staff-training-command-card strong,
.staff-training-command-card p {
  position: relative;
  z-index: 1;
}

.staff-training-command-card .service-directory-icon {
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.1);
}

.staff-training-command-card h3 {
  margin: 28px 0 8px;
  color: var(--ssg-gold);
  font-size: 18px;
  text-transform: uppercase;
}

.staff-training-command-card strong {
  max-width: 310px;
  color: var(--ssg-white);
  font-size: 48px;
  line-height: 1;
}

.staff-training-command-card p {
  max-width: 310px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.staff-training-flow {
  position: relative;
  margin-top: 34px;
  margin-bottom: 44px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-radius: 8px;
  background: var(--ssg-ink);
  box-shadow: 0 18px 44px rgba(23, 63, 114, 0.18);
}

.staff-training-flow::before {
  content: "";
  position: absolute;
  left: 44px;
  right: 44px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(25, 155, 211, 0.78), transparent);
}

.staff-training-flow-item {
  position: relative;
  z-index: 1;
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    #173f72;
}

.staff-training-flow-item span {
  width: max-content;
  padding: 7px 12px;
  border-radius: 6px;
  background: var(--ssg-gold);
  color: var(--ssg-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.staff-training-flow-item strong {
  color: var(--ssg-white);
  font-size: 20px;
  line-height: 1.18;
}

.staff-training-heading {
  margin-bottom: 24px;
}

.safety-plan-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.56fr);
  gap: 34px;
  align-items: stretch;
}

.safety-plan-copy {
  padding: 44px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.78), rgba(255, 255, 255, 0.96) 38%, #ffffff),
    var(--ssg-white);
  box-shadow: 0 18px 42px rgba(23, 63, 114, 0.08);
}

.safety-plan-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.safety-plan-proof-grid div {
  min-height: 118px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(23, 63, 114, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(23, 63, 114, 0.05);
}

.safety-plan-proof-grid strong {
  color: var(--ssg-red);
  font-size: 28px;
  line-height: 1;
}

.safety-plan-proof-grid span {
  color: var(--ssg-muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.safety-plan-command-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 18%, rgba(25, 155, 211, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(36, 74, 127, 0.88), rgba(23, 63, 114, 0.95) 58%),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 24px 54px rgba(23, 63, 114, 0.24);
}

.safety-plan-command-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.safety-plan-command-card .service-directory-icon,
.safety-plan-command-card h3,
.safety-plan-command-card strong,
.safety-plan-command-card p {
  position: relative;
  z-index: 1;
}

.safety-plan-command-card .service-directory-icon {
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.1);
}

.safety-plan-command-card h3 {
  margin: 28px 0 8px;
  color: var(--ssg-gold);
  font-size: 18px;
  text-transform: uppercase;
}

.safety-plan-command-card strong {
  max-width: 310px;
  color: var(--ssg-white);
  font-size: 48px;
  line-height: 1;
}

.safety-plan-command-card p {
  max-width: 320px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.safety-plan-flow {
  position: relative;
  margin-top: 34px;
  margin-bottom: 44px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-radius: 8px;
  background: var(--ssg-ink);
  box-shadow: 0 18px 44px rgba(23, 63, 114, 0.18);
}

.safety-plan-flow::before {
  content: "";
  position: absolute;
  left: 44px;
  right: 44px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(25, 155, 211, 0.78), transparent);
}

.safety-plan-flow-item {
  position: relative;
  z-index: 1;
  min-height: 160px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    #173f72;
}

.safety-plan-flow-item span {
  width: max-content;
  padding: 7px 12px;
  border-radius: 6px;
  background: var(--ssg-gold);
  color: var(--ssg-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.safety-plan-flow-item strong {
  color: var(--ssg-white);
  font-size: 20px;
  line-height: 1.18;
}

.safety-plan-heading {
  margin-bottom: 24px;
}

.safety-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.safety-plan-card {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  padding: 28px 28px 28px 24px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  border: 1px solid rgba(215, 221, 229, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.98)),
    var(--ssg-white);
  box-shadow: 0 14px 34px rgba(23, 63, 114, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.safety-plan-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
}

.safety-plan-card::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(25, 155, 211, 0.2), rgba(25, 155, 211, 0.03) 66%, transparent 67%);
}

.safety-plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(36, 74, 127, 0.42);
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.36), rgba(255, 255, 255, 0.98) 46%, #ffffff),
    var(--ssg-white);
  box-shadow: 0 26px 56px rgba(23, 63, 114, 0.15);
}

.safety-plan-card span {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px 8px 14px 8px;
  background:
    linear-gradient(145deg, #214b82, #0f315d);
  color: var(--ssg-gold);
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(23, 63, 114, 0.22);
}

.safety-plan-card span::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ssg-red);
  box-shadow: 0 0 0 4px var(--ssg-white);
}

.safety-plan-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #405064;
  font-size: 16.5px;
  line-height: 1.72;
  font-weight: 560;
}

.safety-plan-card-accent {
  grid-column: span 2;
  min-height: 170px;
  background:
    linear-gradient(135deg, rgba(23, 63, 114, 0.96), rgba(40, 47, 58, 0.94)),
    var(--ssg-white);
  border-color: rgba(255, 255, 255, 0.08);
}

.safety-plan-card-accent::before {
  background: linear-gradient(180deg, var(--ssg-gold), var(--ssg-red));
}

.safety-plan-card-accent p {
  color: rgba(255, 255, 255, 0.78);
}

.safety-plan-card-accent span {
  background: var(--ssg-gold);
  color: var(--ssg-ink);
}

.safety-plan-card:nth-child(4n + 2)::before {
  background: linear-gradient(180deg, var(--ssg-gold), var(--ssg-red));
}

.safety-plan-card:nth-child(4n + 3)::before {
  background: linear-gradient(180deg, #2c6397, var(--ssg-gold));
}

.standard-equipment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.56fr);
  gap: 34px;
  align-items: stretch;
}

.standard-equipment-copy {
  padding: 44px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.78), rgba(255, 255, 255, 0.96) 38%, #ffffff),
    var(--ssg-white);
  box-shadow: 0 18px 42px rgba(23, 63, 114, 0.08);
}

.standard-equipment-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.standard-equipment-proof-grid div {
  min-height: 118px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(23, 63, 114, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(23, 63, 114, 0.05);
}

.standard-equipment-proof-grid strong {
  color: var(--ssg-red);
  font-size: 28px;
  line-height: 1;
}

.standard-equipment-proof-grid span {
  color: var(--ssg-muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.standard-equipment-command-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 18%, rgba(25, 155, 211, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(23, 63, 114, 0.96), rgba(36, 74, 127, 0.82)),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 24px 54px rgba(23, 63, 114, 0.24);
}

.standard-equipment-command-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.standard-equipment-command-card .service-directory-icon,
.standard-equipment-command-card h3,
.standard-equipment-command-card strong,
.standard-equipment-command-card p {
  position: relative;
  z-index: 1;
}

.standard-equipment-command-card .service-directory-icon {
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.1);
}

.standard-equipment-command-card h3 {
  margin: 28px 0 8px;
  color: var(--ssg-gold);
  font-size: 18px;
  text-transform: uppercase;
}

.standard-equipment-command-card strong {
  max-width: 330px;
  color: var(--ssg-white);
  font-size: 44px;
  line-height: 1;
}

.standard-equipment-command-card p {
  max-width: 320px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.standard-equipment-groups {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.standard-equipment-group {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(215, 221, 229, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.98)),
    var(--ssg-white);
  box-shadow: 0 16px 38px rgba(23, 63, 114, 0.08);
}

.standard-equipment-group::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
}

.standard-equipment-group::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.14);
}

.standard-equipment-group-accent {
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.86), rgba(255, 255, 255, 0.98)),
    var(--ssg-white);
}

.standard-equipment-group-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.standard-equipment-group-head > span {
  width: 68px;
  height: 68px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px 8px 14px 8px;
  background: linear-gradient(145deg, #214b82, #0f315d);
  color: var(--ssg-gold);
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(23, 63, 114, 0.22);
}

.standard-equipment-group-head h2 {
  margin: 0;
  color: var(--ssg-ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.standard-equipment-table {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.standard-equipment-row {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr 1fr;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(215, 221, 229, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #405064;
  font-weight: 720;
}

.standard-equipment-header {
  background: var(--ssg-ink);
  color: var(--ssg-white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.standard-equipment-row span:first-child {
  color: var(--ssg-ink);
  font-weight: 900;
}

.standard-equipment-header span:first-child {
  color: var(--ssg-gold);
}

.standard-equipment-table-compact .standard-equipment-row {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.communication-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.56fr);
  gap: 34px;
  align-items: stretch;
}

.communication-copy {
  padding: 44px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.78), rgba(255, 255, 255, 0.96) 38%, #ffffff),
    var(--ssg-white);
  box-shadow: 0 18px 42px rgba(23, 63, 114, 0.08);
}

.communication-copy p:not(.section-kicker):not(.detail-lede) {
  max-width: 860px;
  color: var(--ssg-muted);
  font-size: 18px;
}

.communication-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.communication-proof-grid div {
  min-height: 118px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(23, 63, 114, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(23, 63, 114, 0.05);
}

.communication-proof-grid strong {
  color: var(--ssg-red);
  font-size: 28px;
  line-height: 1;
}

.communication-proof-grid span {
  color: var(--ssg-muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.communication-command-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 18%, rgba(25, 155, 211, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(23, 63, 114, 0.96), rgba(47, 64, 84, 0.92)),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 24px 54px rgba(23, 63, 114, 0.24);
}

.communication-command-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.communication-command-card .service-directory-icon,
.communication-command-card h3,
.communication-command-card strong,
.communication-command-card p {
  position: relative;
  z-index: 1;
}

.communication-command-card .service-directory-icon {
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.1);
}

.communication-command-card h3 {
  margin: 28px 0 8px;
  color: var(--ssg-gold);
  font-size: 18px;
  text-transform: uppercase;
}

.communication-command-card strong {
  max-width: 330px;
  color: var(--ssg-white);
  font-size: 44px;
  line-height: 1;
}

.communication-command-card p {
  max-width: 320px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.communication-flow {
  position: relative;
  margin-top: 34px;
  margin-bottom: 44px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-radius: 8px;
  background: var(--ssg-ink);
  box-shadow: 0 18px 44px rgba(23, 63, 114, 0.18);
}

.communication-flow::before {
  content: "";
  position: absolute;
  left: 44px;
  right: 44px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(25, 155, 211, 0.78), transparent);
}

.communication-flow-item {
  position: relative;
  z-index: 1;
  min-height: 160px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    #173f72;
}

.communication-flow-item span {
  width: max-content;
  padding: 7px 12px;
  border-radius: 6px;
  background: var(--ssg-gold);
  color: var(--ssg-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.communication-flow-item strong {
  color: var(--ssg-white);
  font-size: 20px;
  line-height: 1.18;
}

.communication-heading {
  margin-bottom: 24px;
}

.communication-license-panel {
  margin-top: 0;
}

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

.communication-license-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(215, 221, 229, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.98)),
    var(--ssg-white);
  box-shadow: 0 16px 38px rgba(23, 63, 114, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.communication-license-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
}

.communication-license-card::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
}

.communication-license-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 74, 127, 0.4);
  box-shadow: 0 24px 50px rgba(23, 63, 114, 0.14);
}

.communication-license-card > span {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 14px 8px 14px 8px;
  background: linear-gradient(145deg, #214b82, #0f315d);
  color: var(--ssg-gold);
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(23, 63, 114, 0.22);
}

.communication-license-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: var(--ssg-ink);
  font-size: 30px;
  line-height: 1.08;
}

.communication-license-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.communication-license-meta p {
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  color: #405064;
}

.communication-license-meta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ssg-red);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.communication-license-card-accent {
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.9), rgba(255, 255, 255, 0.98)),
    var(--ssg-white);
}

.inventory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.56fr);
  gap: 34px;
  align-items: stretch;
}

.inventory-copy {
  padding: 44px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.78), rgba(255, 255, 255, 0.96) 38%, #ffffff),
    var(--ssg-white);
  box-shadow: 0 18px 42px rgba(23, 63, 114, 0.08);
}

.inventory-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.inventory-proof-grid div {
  min-height: 118px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(23, 63, 114, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(23, 63, 114, 0.05);
}

.inventory-proof-grid strong {
  color: var(--ssg-red);
  font-size: 28px;
  line-height: 1;
}

.inventory-proof-grid span {
  color: var(--ssg-muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.inventory-command-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 18%, rgba(25, 155, 211, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(23, 63, 114, 0.96), rgba(36, 74, 127, 0.82)),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 24px 54px rgba(23, 63, 114, 0.24);
}

.inventory-command-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.inventory-command-card .service-directory-icon,
.inventory-command-card h3,
.inventory-command-card strong,
.inventory-command-card p {
  position: relative;
  z-index: 1;
}

.inventory-command-card .service-directory-icon {
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.1);
}

.inventory-command-card h3 {
  margin: 28px 0 8px;
  color: var(--ssg-gold);
  font-size: 18px;
  text-transform: uppercase;
}

.inventory-command-card strong {
  max-width: 330px;
  color: var(--ssg-white);
  font-size: 44px;
  line-height: 1;
}

.inventory-command-card p {
  max-width: 320px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.inventory-groups {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.inventory-group {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(215, 221, 229, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.98)),
    var(--ssg-white);
  box-shadow: 0 16px 38px rgba(23, 63, 114, 0.08);
}

.inventory-group::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
}

.inventory-group::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.14);
}

.inventory-group-accent {
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.86), rgba(255, 255, 255, 0.98)),
    var(--ssg-white);
}

.inventory-group-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.inventory-group-head > span {
  width: 68px;
  height: 68px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px 8px 14px 8px;
  background: linear-gradient(145deg, #214b82, #0f315d);
  color: var(--ssg-gold);
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(23, 63, 114, 0.22);
}

.inventory-group-head h2 {
  margin: 0;
  color: var(--ssg-ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.inventory-table {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.inventory-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.45fr 0.6fr;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(215, 221, 229, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #405064;
  font-weight: 720;
}

.inventory-header {
  background: var(--ssg-ink);
  color: var(--ssg-white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inventory-row span:first-child {
  color: var(--ssg-ink);
  font-weight: 900;
}

.inventory-header span:first-child {
  color: var(--ssg-gold);
}

.inventory-row span:last-child {
  justify-self: end;
  min-width: 48px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(25, 155, 211, 0.18);
  color: var(--ssg-red);
  text-align: center;
  font-weight: 900;
}

.inventory-header span:last-child {
  background: transparent;
  color: var(--ssg-white);
}

.inventory-table-compact .inventory-row {
  grid-template-columns: 1fr 1.4fr 1fr 0.6fr;
}

.static-guard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: stretch;
}

.static-guard-copy {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(215, 221, 229, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.92)),
    var(--ssg-white);
  box-shadow: 0 22px 58px rgba(23, 63, 114, 0.12);
}

.static-guard-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
}

.static-guard-copy::after {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -78px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(36, 74, 127, 0.1);
  pointer-events: none;
}

.static-guard-copy p:not(.section-kicker):not(.detail-lede) {
  margin: 0;
  color: #455062;
}

.static-guard-command-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 8%, rgba(25, 155, 211, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(24, 32, 43, 0.94), rgba(7, 10, 14, 0.98)),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 28px 70px rgba(23, 63, 114, 0.28);
}

.static-guard-command-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.static-guard-command-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(36, 74, 127, 0.24);
  pointer-events: none;
}

.static-guard-command-card .service-directory-icon {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.12);
  transform-origin: left top;
}

.static-guard-command-card h3 {
  position: relative;
  z-index: 1;
  margin: 28px 0 12px;
  color: var(--ssg-white);
  font-size: 34px;
  line-height: 1.05;
}

.static-guard-command-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.guard-process-card {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc),
    var(--ssg-white);
  box-shadow: 0 12px 30px rgba(23, 63, 114, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.guard-process-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
}

.guard-process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 74, 127, 0.38);
  box-shadow: 0 22px 48px rgba(23, 63, 114, 0.13);
}

.guard-process-card-wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.92), rgba(255, 255, 255, 0.98)),
    var(--ssg-white);
}

.guard-process-card span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--ssg-ink), #0f315d);
  color: var(--ssg-gold);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(23, 63, 114, 0.18);
}

.guard-process-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ssg-ink);
  font-size: 25px;
  line-height: 1.12;
}

.guard-process-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--ssg-muted);
}

.bodyguard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: stretch;
}

.bodyguard-copy {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(215, 221, 229, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.92)),
    var(--ssg-white);
  box-shadow: 0 22px 58px rgba(23, 63, 114, 0.12);
}

.bodyguard-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
}

.bodyguard-copy::after {
  content: "";
  position: absolute;
  right: -78px;
  top: -78px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
  pointer-events: none;
}

.bodyguard-copy p:not(.section-kicker):not(.detail-lede) {
  margin: 0;
  color: #455062;
}

.bodyguard-elite-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 10%, rgba(25, 155, 211, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(24, 32, 43, 0.94), rgba(7, 10, 14, 0.98)),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 28px 70px rgba(23, 63, 114, 0.28);
}

.bodyguard-elite-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.bodyguard-elite-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(36, 74, 127, 0.24);
  pointer-events: none;
}

.bodyguard-elite-card .service-directory-icon {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.12);
  transform-origin: left top;
}

.bodyguard-elite-card h3 {
  position: relative;
  z-index: 1;
  margin: 28px 0 12px;
  color: var(--ssg-white);
  font-size: 34px;
  line-height: 1.05;
}

.bodyguard-elite-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.protection-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc),
    var(--ssg-white);
  box-shadow: 0 12px 30px rgba(23, 63, 114, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.protection-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
}

.protection-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 74, 127, 0.38);
  box-shadow: 0 22px 48px rgba(23, 63, 114, 0.13);
}

.protection-card span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--ssg-ink), #0f315d);
  color: var(--ssg-gold);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(23, 63, 114, 0.18);
}

.protection-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ssg-ink);
  font-size: 24px;
  line-height: 1.12;
}

.protection-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--ssg-muted);
}

.cash-transit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: stretch;
}

.cash-transit-copy {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(215, 221, 229, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.92)),
    var(--ssg-white);
  box-shadow: 0 22px 58px rgba(23, 63, 114, 0.12);
}

.cash-transit-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
}

.cash-transit-copy::after {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -78px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
  pointer-events: none;
}

.cash-transit-copy p:not(.section-kicker):not(.detail-lede) {
  margin: 0 0 18px;
  color: #455062;
}

.cash-transit-copy p:last-child {
  margin-bottom: 0;
}

.cash-transit-secure-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 10%, rgba(25, 155, 211, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(24, 32, 43, 0.94), rgba(7, 10, 14, 0.98)),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 28px 70px rgba(23, 63, 114, 0.28);
}

.cash-transit-secure-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.cash-transit-secure-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(36, 74, 127, 0.24);
  pointer-events: none;
}

.cash-transit-secure-card .service-directory-icon {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.12);
  transform-origin: left top;
}

.cash-transit-secure-card h3 {
  position: relative;
  z-index: 1;
  margin: 28px 0 12px;
  color: var(--ssg-white);
  font-size: 34px;
  line-height: 1.05;
}

.cash-transit-secure-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.cash-control-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc),
    var(--ssg-white);
  box-shadow: 0 12px 30px rgba(23, 63, 114, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cash-control-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
}

.cash-control-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 74, 127, 0.38);
  box-shadow: 0 22px 48px rgba(23, 63, 114, 0.13);
}

.cash-control-card span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--ssg-ink), #0f315d);
  color: var(--ssg-gold);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(23, 63, 114, 0.18);
}

.cash-control-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ssg-ink);
  font-size: 24px;
  line-height: 1.12;
}

.cash-control-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--ssg-muted);
}

.valuable-strip {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 28px;
  border-radius: 8px;
  background: var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 18px 42px rgba(23, 63, 114, 0.16);
}

.valuable-strip span {
  color: var(--ssg-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.valuable-strip strong {
  color: var(--ssg-white);
  font-size: 22px;
  line-height: 1.2;
}

.equipment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: stretch;
}

.equipment-copy {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(215, 221, 229, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.92)),
    var(--ssg-white);
  box-shadow: 0 22px 58px rgba(23, 63, 114, 0.12);
}

.equipment-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
}

.equipment-copy::after {
  content: "";
  position: absolute;
  right: -78px;
  top: -78px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
  pointer-events: none;
}

.equipment-copy p:not(.section-kicker):not(.detail-lede) {
  margin: 0;
  color: #455062;
}

.equipment-tech-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 10%, rgba(25, 155, 211, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(24, 32, 43, 0.94), rgba(7, 10, 14, 0.98)),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 28px 70px rgba(23, 63, 114, 0.28);
}

.equipment-tech-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.equipment-tech-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(36, 74, 127, 0.24);
  pointer-events: none;
}

.equipment-tech-card .service-directory-icon {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.12);
  transform-origin: left top;
}

.equipment-tech-card h3 {
  position: relative;
  z-index: 1;
  margin: 28px 0 12px;
  color: var(--ssg-white);
  font-size: 34px;
  line-height: 1.05;
}

.equipment-tech-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.equipment-card {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc),
    var(--ssg-white);
  box-shadow: 0 12px 30px rgba(23, 63, 114, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.equipment-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
}

.equipment-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 74, 127, 0.38);
  box-shadow: 0 22px 48px rgba(23, 63, 114, 0.13);
}

.equipment-card-wide {
  grid-column: span 3;
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.92), rgba(255, 255, 255, 0.98)),
    var(--ssg-white);
}

.equipment-card span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--ssg-ink), #0f315d);
  color: var(--ssg-gold);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(23, 63, 114, 0.18);
}

.equipment-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ssg-ink);
  font-size: 24px;
  line-height: 1.12;
}

.equipment-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--ssg-muted);
}

.escort-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: stretch;
}

.escort-copy {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(215, 221, 229, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.92)),
    var(--ssg-white);
  box-shadow: 0 22px 58px rgba(23, 63, 114, 0.12);
}

.escort-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
}

.escort-copy::after {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -78px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
  pointer-events: none;
}

.escort-copy p:not(.section-kicker):not(.detail-lede) {
  margin: 0;
  color: #455062;
}

.escort-fleet-scene {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 34px 30px 42px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 24%, rgba(25, 155, 211, 0.28), transparent 30%),
    linear-gradient(145deg, rgba(24, 32, 43, 0.96), rgba(7, 10, 14, 0.98)),
    var(--ssg-ink);
  box-shadow: 0 28px 70px rgba(23, 63, 114, 0.22);
}

.escort-fleet-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 47%, rgba(36, 74, 127, 0.26) 47% 49%, transparent 49% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 58px);
}

.escort-fleet-scene::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  pointer-events: none;
}

.escort-skyline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 150px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 34px, transparent 34px 52px);
  clip-path: polygon(0 40%, 8% 22%, 15% 50%, 24% 16%, 32% 44%, 41% 24%, 49% 54%, 57% 18%, 65% 46%, 75% 28%, 84% 52%, 92% 20%, 100% 44%, 100% 100%, 0 100%);
}

.escort-route-map {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  min-height: 270px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(25, 155, 211, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.escort-route-map::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 50%;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--ssg-red), var(--ssg-gold));
  transform: rotate(-14deg);
  box-shadow: 0 0 22px rgba(25, 155, 211, 0.28);
}

.escort-route-icon {
  position: relative;
  z-index: 2;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ssg-ink);
  color: var(--ssg-gold);
  box-shadow: 0 24px 52px rgba(23, 63, 114, 0.3);
}

.escort-route-icon svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-node {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 4px solid var(--ssg-gold);
  border-radius: 50%;
  background: var(--ssg-red);
  box-shadow: 0 0 0 8px rgba(25, 155, 211, 0.12);
}

.route-node-a {
  left: 17%;
  top: 60%;
}

.route-node-b {
  left: 47%;
  top: 42%;
}

.route-node-c {
  right: 17%;
  top: 28%;
}

.escort-fleet-scene > span {
  position: absolute;
  left: 30px;
  bottom: 22px;
  z-index: 2;
  padding: 9px 12px;
  border-radius: 6px;
  background: rgba(36, 74, 127, 0.92);
  color: var(--ssg-white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.escort-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc),
    var(--ssg-white);
  box-shadow: 0 12px 30px rgba(23, 63, 114, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.escort-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
}

.escort-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 74, 127, 0.38);
  box-shadow: 0 22px 48px rgba(23, 63, 114, 0.13);
}

.escort-card span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--ssg-ink), #0f315d);
  color: var(--ssg-gold);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(23, 63, 114, 0.18);
}

.escort-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ssg-ink);
  font-size: 24px;
  line-height: 1.12;
}

.escort-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--ssg-muted);
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: stretch;
}

.event-copy {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(215, 221, 229, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.92)),
    var(--ssg-white);
  box-shadow: 0 22px 58px rgba(23, 63, 114, 0.12);
}

.event-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
}

.event-copy::after {
  content: "";
  position: absolute;
  right: -78px;
  top: -78px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
  pointer-events: none;
}

.event-copy p:not(.section-kicker):not(.detail-lede) {
  margin: 0 0 18px;
  color: #455062;
}

.event-copy p:last-child {
  margin-bottom: 0;
}

.event-spotlight-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 10%, rgba(25, 155, 211, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(24, 32, 43, 0.94), rgba(7, 10, 14, 0.98)),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 28px 70px rgba(23, 63, 114, 0.28);
}

.event-spotlight-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.event-spotlight-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(36, 74, 127, 0.24);
  pointer-events: none;
}

.event-spotlight-card .service-directory-icon {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.12);
  transform-origin: left top;
}

.event-spotlight-card h3 {
  position: relative;
  z-index: 1;
  margin: 28px 0 12px;
  color: var(--ssg-white);
  font-size: 34px;
  line-height: 1.05;
}

.event-spotlight-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.event-timeline-card {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc),
    var(--ssg-white);
  box-shadow: 0 12px 30px rgba(23, 63, 114, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.event-timeline-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
}

.event-timeline-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 74, 127, 0.38);
  box-shadow: 0 22px 48px rgba(23, 63, 114, 0.13);
}

.event-timeline-card span {
  position: relative;
  z-index: 1;
  min-width: 76px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  padding: 0 14px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--ssg-ink), #0f315d);
  color: var(--ssg-gold);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(23, 63, 114, 0.18);
}

.event-timeline-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ssg-ink);
  font-size: 24px;
  line-height: 1.12;
}

.event-timeline-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--ssg-muted);
}

.event-control-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 26px 28px;
  border-radius: 8px;
  background: var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 18px 42px rgba(23, 63, 114, 0.16);
}

.event-control-strip span {
  color: var(--ssg-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-control-strip strong {
  display: block;
  margin-top: 8px;
  color: var(--ssg-white);
  font-size: 22px;
  line-height: 1.2;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: stretch;
}

.access-copy {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(215, 221, 229, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.92)),
    var(--ssg-white);
  box-shadow: 0 22px 58px rgba(23, 63, 114, 0.12);
}

.access-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
}

.access-copy::after {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -78px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
  pointer-events: none;
}

.access-copy p:not(.section-kicker):not(.detail-lede) {
  margin: 0;
  color: #455062;
}

.access-control-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 10%, rgba(25, 155, 211, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(24, 32, 43, 0.94), rgba(7, 10, 14, 0.98)),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 28px 70px rgba(23, 63, 114, 0.28);
}

.access-control-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.access-control-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(36, 74, 127, 0.24);
  pointer-events: none;
}

.access-control-card .service-directory-icon {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.12);
  transform-origin: left top;
}

.access-control-card h3 {
  position: relative;
  z-index: 1;
  margin: 28px 0 12px;
  color: var(--ssg-white);
  font-size: 34px;
  line-height: 1.05;
}

.access-control-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.access-flow-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc),
    var(--ssg-white);
  box-shadow: 0 12px 30px rgba(23, 63, 114, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.access-flow-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
}

.access-flow-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 74, 127, 0.38);
  box-shadow: 0 22px 48px rgba(23, 63, 114, 0.13);
}

.access-flow-card span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--ssg-ink), #0f315d);
  color: var(--ssg-gold);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(23, 63, 114, 0.18);
}

.access-flow-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ssg-ink);
  font-size: 24px;
  line-height: 1.12;
}

.access-flow-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--ssg-muted);
}

.access-strip {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 26px 28px;
  border-radius: 8px;
  background: var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 18px 42px rgba(23, 63, 114, 0.16);
}

.access-strip span {
  color: var(--ssg-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.access-strip strong {
  color: var(--ssg-white);
  font-size: 22px;
  line-height: 1.2;
}

.response-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: stretch;
}

.response-copy {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(215, 221, 229, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.92)),
    var(--ssg-white);
  box-shadow: 0 22px 58px rgba(23, 63, 114, 0.12);
}

.response-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
}

.response-copy::after {
  content: "";
  position: absolute;
  right: -78px;
  top: -78px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(36, 74, 127, 0.1);
  pointer-events: none;
}

.response-copy p:not(.section-kicker):not(.detail-lede) {
  margin: 0 0 18px;
  color: #455062;
}

.response-copy p:last-child {
  margin-bottom: 0;
}

.response-rapid-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 10%, rgba(25, 155, 211, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(24, 32, 43, 0.94), rgba(7, 10, 14, 0.98)),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 28px 70px rgba(23, 63, 114, 0.28);
}

.response-rapid-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.response-rapid-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(36, 74, 127, 0.24);
  pointer-events: none;
}

.response-rapid-card .service-directory-icon {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.12);
  transform-origin: left top;
}

.response-rapid-card h3 {
  position: relative;
  z-index: 1;
  margin: 28px 0 12px;
  color: var(--ssg-white);
  font-size: 34px;
  line-height: 1.05;
}

.response-rapid-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.response-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc),
    var(--ssg-white);
  box-shadow: 0 12px 30px rgba(23, 63, 114, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.response-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
}

.response-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 74, 127, 0.38);
  box-shadow: 0 22px 48px rgba(23, 63, 114, 0.13);
}

.response-card span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--ssg-ink), #0f315d);
  color: var(--ssg-gold);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(23, 63, 114, 0.18);
}

.response-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ssg-ink);
  font-size: 24px;
  line-height: 1.12;
}

.response-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--ssg-muted);
}

.response-strip {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 26px 28px;
  border-radius: 8px;
  background: var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 18px 42px rgba(23, 63, 114, 0.16);
}

.response-strip span {
  color: var(--ssg-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.response-strip strong {
  color: var(--ssg-white);
  font-size: 24px;
  line-height: 1.16;
}

.survey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: stretch;
}

.survey-copy {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(215, 221, 229, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.92)),
    var(--ssg-white);
  box-shadow: 0 22px 58px rgba(23, 63, 114, 0.12);
}

.survey-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
}

.survey-copy::after {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -78px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
  pointer-events: none;
}

.survey-copy p:not(.section-kicker):not(.detail-lede) {
  margin: 0 0 18px;
  color: #455062;
}

.survey-copy p:last-child {
  margin-bottom: 0;
}

.survey-report-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 10%, rgba(25, 155, 211, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(24, 32, 43, 0.94), rgba(7, 10, 14, 0.98)),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 28px 70px rgba(23, 63, 114, 0.28);
}

.survey-report-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.survey-report-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(36, 74, 127, 0.24);
  pointer-events: none;
}

.survey-report-card .service-directory-icon {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.12);
  transform-origin: left top;
}

.survey-report-card h3 {
  position: relative;
  z-index: 1;
  margin: 28px 0 12px;
  color: var(--ssg-white);
  font-size: 34px;
  line-height: 1.05;
}

.survey-report-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.survey-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc),
    var(--ssg-white);
  box-shadow: 0 12px 30px rgba(23, 63, 114, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.survey-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
}

.survey-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 74, 127, 0.38);
  box-shadow: 0 22px 48px rgba(23, 63, 114, 0.13);
}

.survey-card span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--ssg-ink), #0f315d);
  color: var(--ssg-gold);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(23, 63, 114, 0.18);
}

.survey-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ssg-ink);
  font-size: 24px;
  line-height: 1.12;
}

.survey-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--ssg-muted);
}

.survey-strip {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 26px 28px;
  border-radius: 8px;
  background: var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 18px 42px rgba(23, 63, 114, 0.16);
}

.survey-strip span {
  color: var(--ssg-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.survey-strip strong {
  color: var(--ssg-white);
  font-size: 22px;
  line-height: 1.2;
}

.future-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: stretch;
}

.future-copy {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(215, 221, 229, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.92)),
    var(--ssg-white);
  box-shadow: 0 22px 58px rgba(23, 63, 114, 0.12);
}

.future-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
}

.future-copy::after {
  content: "";
  position: absolute;
  right: -78px;
  top: -78px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
  pointer-events: none;
}

.future-copy p:not(.section-kicker):not(.detail-lede) {
  margin: 0;
  color: #455062;
}

.future-vision-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 10%, rgba(25, 155, 211, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(24, 32, 43, 0.94), rgba(7, 10, 14, 0.98)),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 28px 70px rgba(23, 63, 114, 0.28);
}

.future-vision-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.future-vision-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(36, 74, 127, 0.24);
  pointer-events: none;
}

.future-vision-card .service-directory-icon {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.12);
  transform-origin: left top;
}

.future-vision-card h3 {
  position: relative;
  z-index: 1;
  margin: 28px 0 12px;
  color: var(--ssg-white);
  font-size: 34px;
  line-height: 1.05;
}

.future-vision-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.future-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc),
    var(--ssg-white);
  box-shadow: 0 12px 30px rgba(23, 63, 114, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.future-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
}

.future-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 74, 127, 0.38);
  box-shadow: 0 22px 48px rgba(23, 63, 114, 0.13);
}

.future-card-wide {
  grid-column: span 3;
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.92), rgba(255, 255, 255, 0.98)),
    var(--ssg-white);
}

.future-card span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--ssg-ink), #0f315d);
  color: var(--ssg-gold);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(23, 63, 114, 0.18);
}

.future-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ssg-ink);
  font-size: 24px;
  line-height: 1.12;
}

.future-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--ssg-muted);
}

.detail-main {
  min-width: 0;
}

.detail-lede {
  max-width: 700px;
  color: #3a4654;
  font-size: 17px;
  line-height: 1.7;
}

.service-intro-main p:not(.section-kicker):not(.detail-lede),
.conventional-copy p:not(.section-kicker):not(.detail-lede),
.staff-training-copy p:not(.section-kicker):not(.detail-lede),
.communication-copy p:not(.section-kicker):not(.detail-lede),
.static-guard-copy p:not(.section-kicker):not(.detail-lede),
.bodyguard-copy p:not(.section-kicker):not(.detail-lede),
.cash-transit-copy p:not(.section-kicker):not(.detail-lede),
.equipment-copy p:not(.section-kicker):not(.detail-lede),
.escort-copy p:not(.section-kicker):not(.detail-lede),
.event-copy p:not(.section-kicker):not(.detail-lede),
.access-copy p:not(.section-kicker):not(.detail-lede),
.response-copy p:not(.section-kicker):not(.detail-lede),
.survey-copy p:not(.section-kicker):not(.detail-lede),
.future-copy p:not(.section-kicker):not(.detail-lede),
.procurement-copy p:not(.section-kicker):not(.detail-lede),
.story-copy p:not(.section-kicker),
.contact-map-copy p:not(.section-kicker) {
  font-size: 16px;
  line-height: 1.72;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.capability-grid.compact {
  margin-top: 0;
}

.capability-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background: var(--ssg-white);
  box-shadow: 0 12px 30px rgba(23, 63, 114, 0.07);
}

.capability-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #fff4cf;
  color: var(--ssg-red);
  font-weight: 900;
}

.capability-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.16;
}

.capability-card p {
  margin: 12px 0 0;
  color: var(--ssg-muted);
}

.related-panel {
  position: sticky;
  top: 120px;
  padding: 22px;
  border-radius: 8px;
  background: var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: var(--ssg-shadow);
}

.related-panel h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.related-panel a,
.strength-tile {
  text-decoration: none;
}

.related-panel a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.related-panel a:hover,
.related-panel a.is-current {
  background: var(--ssg-gold);
  color: var(--ssg-ink);
}

.strength-detail-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: start;
}

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

.strength-tile {
  min-height: 142px;
  padding: 22px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background: var(--ssg-white);
  color: var(--ssg-ink);
  box-shadow: 0 12px 26px rgba(23, 63, 114, 0.07);
}

.strength-tile span {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 99px;
  background: var(--ssg-red);
}

.strength-tile strong {
  font-size: 20px;
  line-height: 1.2;
}

.strength-tile:hover,
.strength-tile.is-current {
  background: var(--ssg-ink);
  color: var(--ssg-white);
}

.procurement-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.55fr);
  gap: 34px;
  align-items: stretch;
}

.procurement-copy {
  padding: 44px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.82), rgba(255, 255, 255, 0.96) 38%, #ffffff),
    var(--ssg-white);
  box-shadow: 0 18px 42px rgba(23, 63, 114, 0.08);
}

.procurement-copy p:not(.section-kicker):not(.detail-lede) {
  max-width: 820px;
  color: var(--ssg-muted);
  font-size: 18px;
}

.procurement-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.procurement-proof-grid div {
  min-height: 118px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(23, 63, 114, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(23, 63, 114, 0.05);
}

.procurement-proof-grid strong {
  color: var(--ssg-red);
  font-size: 24px;
  line-height: 1;
}

.procurement-proof-grid span {
  color: var(--ssg-muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.procurement-command-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(36, 74, 127, 0.84), rgba(23, 63, 114, 0.94) 54%),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 24px 54px rgba(23, 63, 114, 0.24);
}

.procurement-command-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.procurement-command-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.18);
}

.procurement-command-card .service-directory-icon,
.procurement-command-card h3,
.procurement-command-card strong,
.procurement-command-card p {
  position: relative;
  z-index: 1;
}

.procurement-command-card .service-directory-icon {
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.1);
}

.procurement-command-card h3 {
  margin: 28px 0 8px;
  color: var(--ssg-gold);
  font-size: 18px;
  text-transform: uppercase;
}

.procurement-command-card strong {
  color: var(--ssg-white);
  font-size: 70px;
  line-height: 0.95;
}

.procurement-command-card p {
  max-width: 280px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.procurement-flow {
  position: relative;
  margin-top: 34px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-radius: 8px;
  background: var(--ssg-ink);
  box-shadow: 0 18px 44px rgba(23, 63, 114, 0.18);
}

.procurement-flow::before {
  content: "";
  position: absolute;
  left: 44px;
  right: 44px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(25, 155, 211, 0.78), transparent);
}

.procurement-flow-item {
  position: relative;
  z-index: 1;
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    #173f72;
}

.procurement-flow-item span {
  width: max-content;
  padding: 7px 12px;
  border-radius: 6px;
  background: var(--ssg-gold);
  color: var(--ssg-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.procurement-flow-item strong {
  color: var(--ssg-white);
  font-size: 20px;
  line-height: 1.18;
}

.procurement-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.procurement-step {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background: var(--ssg-white);
  box-shadow: 0 12px 30px rgba(23, 63, 114, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.procurement-step::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
}

.procurement-step:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 74, 127, 0.4);
  box-shadow: 0 22px 48px rgba(23, 63, 114, 0.13);
}

.procurement-step span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--ssg-ink), #0f315d);
  color: var(--ssg-gold);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(23, 63, 114, 0.18);
}

.procurement-step h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ssg-ink);
  font-size: 23px;
  line-height: 1.12;
}

.procurement-step p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--ssg-muted);
}

.procurement-step-accent {
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.94), rgba(255, 255, 255, 0.98)),
    var(--ssg-white);
}

.procurement-band {
  margin-top: 34px;
  padding: 34px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 63, 114, 0.96), rgba(32, 42, 54, 0.94)),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 18px 44px rgba(23, 63, 114, 0.18);
}

.procurement-band h2 {
  margin: 0;
  color: var(--ssg-white);
  font-size: 34px;
  line-height: 1.08;
}

.procurement-band p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.gallery-page-section {
  background:
    linear-gradient(180deg, #f2f5f8 0, #ffffff 520px),
    var(--ssg-white);
}

.gallery-showcase {
  position: relative;
  overflow: hidden;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  align-items: stretch;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(120deg, rgba(36, 74, 127, 0.18), transparent 45%),
    radial-gradient(circle at 82% 18%, rgba(25, 155, 211, 0.22), transparent 28%),
    linear-gradient(145deg, #173f72, #0f315d 68%);
  box-shadow: 0 28px 70px rgba(23, 63, 114, 0.22);
}

.gallery-showcase::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  pointer-events: none;
}

.gallery-showcase-copy {
  position: relative;
  z-index: 1;
  min-height: 520px;
  padding: 36px 14px 36px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-showcase-copy h2 {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--ssg-white);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.gallery-showcase-copy p:not(.section-kicker) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.72;
}

.gallery-showcase-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 150px));
  gap: 12px;
  margin-top: 34px;
}

.gallery-showcase-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.gallery-showcase-stats strong {
  display: block;
  color: var(--ssg-gold);
  font-size: 34px;
  line-height: 1;
}

.gallery-showcase-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-feature-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
  min-height: 520px;
}

.gallery-feature-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(23, 63, 114, 0.26);
}

.gallery-feature-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(23, 63, 114, 0.28)),
    linear-gradient(90deg, rgba(25, 155, 211, 0.16), transparent 28%);
  pointer-events: none;
}

.gallery-feature-tile-1 {
  grid-row: span 2;
}

.gallery-feature-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-feature-tile-4,
.gallery-feature-tile-5 {
  display: none;
}

.gallery-library-head {
  margin-top: 46px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.gallery-library-head .section-title {
  margin-bottom: 0;
}

.gallery-library-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.gallery-library-tabs span {
  min-height: 42px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background: var(--ssg-white);
  color: var(--ssg-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-library-tabs span:first-child {
  border-color: rgba(36, 74, 127, 0.35);
  background: var(--ssg-ink);
  color: var(--ssg-white);
}

.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.media-gallery-grid.gallery-full-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-gallery-grid figure {
  margin: 0;
}

.media-gallery-grid .gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(215, 221, 229, 0.92);
  background: #e8edf3;
  aspect-ratio: 16 / 11;
  box-shadow: 0 14px 32px rgba(23, 63, 114, 0.1);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.media-gallery-grid .gallery-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.media-gallery-grid .gallery-image figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 42px 14px 14px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  background: linear-gradient(180deg, transparent, rgba(23, 63, 114, 0.84));
  color: var(--ssg-white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.media-gallery-grid .gallery-image figcaption span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ssg-gold);
  color: var(--ssg-ink);
  font-size: 12px;
  font-weight: 900;
}

.media-gallery-grid .gallery-image figcaption strong {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.media-gallery-grid .gallery-image:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 74, 127, 0.35);
  box-shadow: 0 22px 48px rgba(23, 63, 114, 0.17);
}

.media-gallery-grid .gallery-image:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.media-gallery-grid .gallery-image:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.board-layout {
  display: grid;
  gap: 36px;
}

.board-intro {
  max-width: 860px;
}

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

.board-highlight-row > div {
  min-height: 190px;
  padding: 26px;
  border-radius: 8px;
  background: var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 18px 38px rgba(23, 63, 114, 0.15);
}

.board-highlight-row span,
.director-meta span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--ssg-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.board-highlight-row strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.board-highlight-row p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.director-grid {
  display: grid;
  gap: 18px;
}

.director-card {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 34px;
  padding: 34px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background: var(--ssg-white);
  box-shadow: 0 16px 38px rgba(23, 63, 114, 0.08);
}

.director-card-featured {
  border-top: 5px solid var(--ssg-red);
}

.director-meta {
  padding-right: 30px;
  border-right: 1px solid var(--ssg-line);
}

.director-meta h3 {
  margin: 0;
  color: var(--ssg-ink);
  font-size: 30px;
  line-height: 1.08;
}

.director-meta p {
  margin: 12px 0 0;
  color: var(--ssg-muted);
  font-weight: 800;
}

.director-copy p {
  margin: 0 0 16px;
  color: #455062;
  font-size: 16px;
}

.director-copy p:last-child {
  margin-bottom: 0;
}

.jobs-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.jobs-status-card {
  padding: 38px;
  border-radius: 8px;
  background: var(--ssg-white);
  box-shadow: var(--ssg-shadow);
}

.jobs-status-card .detail-lede strong {
  color: var(--ssg-red);
}

.jobs-status-card > p:not(.section-kicker):not(.detail-lede) {
  margin: 0 0 26px;
  color: #455062;
}

.jobs-info-grid {
  display: grid;
  gap: 14px;
}

.jobs-info-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background: var(--ssg-white);
}

.jobs-info-card span {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ssg-ink);
  color: var(--ssg-gold);
  font-weight: 900;
}

.jobs-info-card h3 {
  margin: 0 0 6px;
  color: var(--ssg-ink);
  font-size: 22px;
}

.jobs-info-card p {
  grid-column: 2;
  margin: 0;
  color: var(--ssg-muted);
}

.profile-download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 38px;
  align-items: start;
}

.download-card {
  padding: 28px;
  border-radius: 8px;
  background: var(--ssg-soft);
  border: 1px solid var(--ssg-line);
}

.download-card h3 {
  margin: 0;
  font-size: 24px;
}

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

.profile-hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  color: var(--ssg-white);
  background-color: var(--ssg-ink);
  background-image:
    linear-gradient(90deg, rgba(23, 63, 114, 0.94), rgba(23, 63, 114, 0.7) 54%, rgba(23, 63, 114, 0.28)),
    var(--profile-hero-image);
  background-position: center;
  background-size: cover;
}

.profile-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 155, 211, 0.08), rgba(25, 155, 211, 0)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

.profile-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: end;
  padding: 74px 0;
}

.profile-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.profile-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.profile-command-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(23, 63, 114, 0.72);
  box-shadow: 0 28px 70px rgba(23, 63, 114, 0.34);
  backdrop-filter: blur(14px);
}

.profile-command-card div {
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.profile-command-card div:last-child {
  border-bottom: 0;
}

.profile-command-card span {
  display: block;
  color: var(--ssg-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-command-card strong {
  display: block;
  margin-top: 6px;
  color: var(--ssg-white);
  font-size: 22px;
  line-height: 1.1;
}

.introduction-clean-hero {
  min-height: 520px;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(3, 12, 34, 0.9), rgba(3, 12, 34, 0.45) 42%, rgba(3, 12, 34, 0.02) 74%),
    var(--profile-hero-image);
  background-position: center;
}

.introduction-clean-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 82px 0;
}

.introduction-clean-hero .profile-hero-copy {
  max-width: 520px;
  padding: 30px 32px;
  border-left: 5px solid var(--ssg-gold);
  border-radius: 8px;
  background: rgba(3, 12, 34, 0.42);
  box-shadow: 0 24px 58px rgba(3, 12, 34, 0.22);
  backdrop-filter: blur(4px);
}

.introduction-clean-hero .profile-hero-copy h1 {
  font-size: clamp(36px, 4.5vw, 58px);
}

.introduction-clean-hero .profile-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
}

.introduction-clean-section {
  background:
    linear-gradient(180deg, #ffffff, var(--ssg-soft));
}

.introduction-content-shell {
  max-width: 1040px;
}

.introduction-content-main {
  display: grid;
  gap: 18px;
}

.introduction-official-block {
  position: relative;
  overflow: hidden;
  padding: 26px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.82), rgba(255, 255, 255, 0.98) 42%),
    var(--ssg-white);
  box-shadow: 0 16px 34px rgba(23, 63, 114, 0.08);
}

.introduction-official-block::after {
  content: "";
  position: absolute;
  right: -54px;
  top: -54px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.11);
}

.introduction-official-block > span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--ssg-ink), #0f315d);
  color: var(--ssg-white);
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(23, 63, 114, 0.18);
}

.introduction-official-block p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #36485e;
  font-size: 16px;
  line-height: 1.8;
}

.profile-overview {
  background: #123967;
  color: var(--ssg-white);
  padding: 34px 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 24px;
  align-items: stretch;
}

.overview-panel {
  padding: 32px;
  border-radius: 8px;
  background: var(--ssg-white);
  color: var(--ssg-ink);
}

.overview-panel h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.overview-panel p:not(.section-kicker) {
  margin: 16px 0 0;
  color: var(--ssg-muted);
  font-size: 17px;
}

.introduction-official-panel p:not(.section-kicker) {
  font-size: 16px;
  line-height: 1.78;
}

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

.fact-card {
  min-height: 152px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fact-card strong {
  display: block;
  color: var(--ssg-gold);
  font-size: 32px;
  line-height: 1;
}

.fact-card span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.profile-story-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 54px;
  align-items: center;
}

.story-media {
  position: relative;
}

.story-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--ssg-shadow);
}

.story-media-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--ssg-gold);
  border-radius: 6px;
  background: rgba(23, 63, 114, 0.86);
  color: var(--ssg-white);
  font-weight: 850;
}

.story-copy p:not(.section-kicker) {
  color: #3b4654;
  font-size: 18px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

.section-heading-row .section-intro {
  max-width: 440px;
  margin: 0;
}

.license-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
}

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

.license-card,
.sector-card {
  border-radius: 8px;
  background: var(--ssg-white);
  border: 1px solid var(--ssg-line);
  box-shadow: 0 12px 28px rgba(23, 63, 114, 0.06);
}

.license-card {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  font-weight: 850;
}

.license-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.license-map {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ssg-ink);
}

.license-map img {
  width: min(280px, 80%);
  filter: drop-shadow(0 22px 32px rgba(23, 63, 114, 0.25));
}

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

.sector-card {
  min-height: 150px;
  padding: 24px;
}

.sector-card span {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 99px;
  background: var(--ssg-red);
}

.sector-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.sector-card p {
  margin: 12px 0 0;
  color: var(--ssg-muted);
  font-size: 15px;
  line-height: 1.55;
}

.sector-card-muted {
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.76), rgba(255, 255, 255, 0.98)),
    var(--ssg-white);
}

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

.introduction-client-head {
  align-items: start;
  margin-bottom: 24px;
}

.introduction-client-head .section-title {
  max-width: 620px;
}

.introduction-client-head .section-intro {
  max-width: 420px;
}

.introduction-client-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.introduction-client-card {
  position: relative;
  min-height: 92px;
  overflow: hidden;
  padding: 18px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.78), rgba(255, 255, 255, 0.98) 44%),
    var(--ssg-white);
  box-shadow: 0 12px 28px rgba(23, 63, 114, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.introduction-client-card::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.12);
}

.introduction-client-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 155, 211, 0.38);
  box-shadow: 0 20px 44px rgba(23, 63, 114, 0.13);
}

.introduction-client-card img {
  display: none;
}

.introduction-client-badge {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 18%, rgba(25, 155, 211, 0.35), transparent 36%),
    linear-gradient(145deg, var(--ssg-ink), #0f315d);
  box-shadow: 0 12px 24px rgba(23, 63, 114, 0.18);
}

.introduction-client-badge::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 3px solid var(--ssg-white);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) translate(-1px, -2px);
}

.introduction-client-card span {
  position: relative;
  z-index: 1;
  color: var(--ssg-ink);
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.35;
}

.profile-clients {
  padding: 84px 0;
}

.profile-client-grid .client-logo {
  background: rgba(255, 255, 255, 0.96);
}

.profile-contact-band {
  padding: 58px 0;
  background: var(--ssg-gold);
  color: var(--ssg-ink);
}

.contact-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
}

.profile-contact-band h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.12;
}

.contact-quick-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--ssg-white);
  box-shadow: 0 18px 36px rgba(23, 63, 114, 0.16);
}

.contact-quick-card a:not(.button) {
  display: block;
  margin-bottom: 12px;
  color: var(--ssg-ink);
  font-weight: 850;
  text-decoration: none;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.56fr);
  gap: 34px;
  align-items: stretch;
}

.contact-page-copy {
  padding: 44px;
  border: 1px solid var(--ssg-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.78), rgba(255, 255, 255, 0.96) 38%, #ffffff),
    var(--ssg-white);
  box-shadow: 0 18px 42px rgba(23, 63, 114, 0.08);
}

.contact-page-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.contact-page-proof-grid div {
  min-height: 118px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(23, 63, 114, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(23, 63, 114, 0.05);
}

.contact-page-proof-grid strong {
  color: var(--ssg-red);
  font-size: 24px;
  line-height: 1;
}

.contact-page-proof-grid span {
  color: var(--ssg-muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.contact-page-command-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 18%, rgba(25, 155, 211, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(23, 63, 114, 0.96), rgba(47, 64, 84, 0.92)),
    var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 24px 54px rgba(23, 63, 114, 0.24);
}

.contact-page-command-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.contact-page-command-card .service-directory-icon,
.contact-page-command-card h3,
.contact-page-command-card strong,
.contact-page-command-card p {
  position: relative;
  z-index: 1;
}

.contact-page-command-card .service-directory-icon {
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.1);
}

.contact-page-command-card h3 {
  margin: 28px 0 8px;
  color: var(--ssg-gold);
  font-size: 18px;
  text-transform: uppercase;
}

.contact-page-command-card strong {
  max-width: 330px;
  color: var(--ssg-white);
  font-size: 44px;
  line-height: 1;
}

.contact-page-command-card p {
  max-width: 320px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.contact-page-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(215, 221, 229, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.98)),
    var(--ssg-white);
  color: var(--ssg-ink);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(23, 63, 114, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-page-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--ssg-red), var(--ssg-gold));
}

.contact-page-card::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(25, 155, 211, 0.16);
}

.contact-page-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 74, 127, 0.4);
  box-shadow: 0 24px 50px rgba(23, 63, 114, 0.14);
}

.contact-page-card span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 14px 8px 14px 8px;
  background: linear-gradient(145deg, #214b82, #0f315d);
  color: var(--ssg-gold);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(23, 63, 114, 0.22);
}

.contact-page-card h3,
.contact-page-card p {
  position: relative;
  z-index: 1;
}

.contact-page-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.1;
}

.contact-page-card p {
  margin: 0;
  color: var(--ssg-muted);
  font-weight: 650;
  line-height: 1.55;
}

.contact-page-card-main {
  grid-column: span 2;
}

.contact-page-card-accent {
  background:
    linear-gradient(135deg, rgba(231, 245, 253, 0.9), rgba(255, 255, 255, 0.98)),
    var(--ssg-white);
}

.contact-map-panel {
  margin-top: 34px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: stretch;
  border-radius: 8px;
  background: var(--ssg-ink);
  color: var(--ssg-white);
  box-shadow: 0 18px 44px rgba(23, 63, 114, 0.18);
}

.contact-map-copy h2 {
  margin: 0;
  color: var(--ssg-white);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.contact-map-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.74);
}

.contact-map-frame {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border: 0;
}

.service-intro-main p:not(.section-kicker):not(.detail-lede),
.conventional-copy p:not(.section-kicker):not(.detail-lede),
.staff-training-copy p:not(.section-kicker):not(.detail-lede),
.communication-copy p:not(.section-kicker):not(.detail-lede),
.static-guard-copy p:not(.section-kicker):not(.detail-lede),
.bodyguard-copy p:not(.section-kicker):not(.detail-lede),
.cash-transit-copy p:not(.section-kicker):not(.detail-lede),
.equipment-copy p:not(.section-kicker):not(.detail-lede),
.escort-copy p:not(.section-kicker):not(.detail-lede),
.event-copy p:not(.section-kicker):not(.detail-lede),
.access-copy p:not(.section-kicker):not(.detail-lede),
.response-copy p:not(.section-kicker):not(.detail-lede),
.survey-copy p:not(.section-kicker):not(.detail-lede),
.future-copy p:not(.section-kicker):not(.detail-lede),
.procurement-copy p:not(.section-kicker):not(.detail-lede),
.story-copy p:not(.section-kicker),
.contact-map-copy p:not(.section-kicker) {
  font-size: 16px;
  line-height: 1.72;
}

@media (max-width: 980px) {
  .header-inner {
    width: min(100% - 28px, 1180px);
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 0;
  }

  .brand-link {
    width: min(560px, 100%);
    min-width: 0;
  }

  .brand-link img {
    max-height: 68px;
  }

  .site-nav {
    width: 100%;
  }

  .topbar-inner {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .site-menu {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6px;
  }

  .site-menu > li {
    position: static;
  }

  .site-menu a {
    min-height: 38px;
    background: var(--ssg-soft);
    font-size: 13px;
  }

  .site-menu > li > a::before {
    display: none;
  }

  .submenu {
    position: static;
    width: min(100%, 520px);
    min-width: 0;
    margin-top: 6px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: 0 12px 26px rgba(23, 63, 114, 0.12);
  }

  .submenu::before {
    display: none;
  }

  .menu-item-has-children:hover > .submenu,
  .menu-item-has-children:focus-within > .submenu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 760px;
    background-image:
      linear-gradient(180deg, rgba(23, 63, 114, 0.9), rgba(23, 63, 114, 0.6)),
      var(--hero-image);
  }

  .trust-grid,
  .services-grid,
  .service-directory-grid,
  .training-section-grid,
  .staff-training-proof-grid,
  .staff-training-flow,
  .safety-plan-proof-grid,
  .safety-plan-flow,
  .safety-plan-grid,
  .standard-equipment-proof-grid,
  .communication-proof-grid,
  .communication-flow,
  .communication-license-grid,
  .inventory-proof-grid,
  .contact-page-proof-grid,
  .contact-page-grid,
  .guard-process-grid,
  .protection-grid,
  .cash-control-grid,
  .equipment-grid,
  .escort-grid,
  .event-timeline-grid,
  .access-flow-grid,
	  .response-grid,
	  .survey-grid,
	  .future-grid,
	  .procurement-process,
	  .procurement-proof-grid,
	  .procurement-flow,
	  .clients,
  .posts-grid,
  .fact-grid,
  .license-grid,
  .sector-grid,
  .introduction-office-grid,
  .introduction-client-directory {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .coverage-grid,
  .content-layout,
  .footer-grid,
  .profile-hero-grid,
  .overview-grid,
  .profile-story-grid,
  .license-layout,
  .contact-band-grid,
  .subpage-hero-grid,
  .service-detail-grid,
	  .service-intro-layout,
	  .staff-training-layout,
	  .safety-plan-layout,
		  .standard-equipment-layout,
		  .communication-layout,
	  .inventory-layout,
	  .contact-page-layout,
	  .contact-map-panel,
	  .gallery-showcase,
		  .conventional-layout,
  .static-guard-layout,
  .bodyguard-layout,
  .cash-transit-layout,
  .equipment-layout,
  .escort-layout,
  .event-layout,
  .access-layout,
  .response-layout,
	  .survey-layout,
	  .future-layout,
	  .strength-detail-grid,
	  .procurement-layout,
	  .procurement-band,
	  .board-highlight-row,
  .director-card,
  .jobs-layout,
  .profile-download-layout {
    grid-template-columns: 1fr;
  }

  .director-meta {
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--ssg-line);
  }

  .training-section-card-wide {
    grid-column: auto;
  }

  .guard-process-card-wide {
    grid-column: auto;
  }

  .equipment-card-wide {
    grid-column: auto;
  }

  .future-card-wide {
    grid-column: auto;
  }

  .related-panel {
    position: static;
  }

  .gallery-feature-board {
    min-height: 430px;
  }

  .gallery-showcase-copy {
    min-height: auto;
    padding: 18px 10px 0;
  }

  .media-gallery-grid,
  .media-gallery-grid.gallery-full-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-hero {
    min-height: auto;
  }

  .profile-hero-grid {
    padding: 70px 0;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-badge {
    right: 18px;
  }

  .instagram-card {
    flex-basis: 50%;
  }
}

@media (max-width: 640px) {
  .ssg-container {
    width: min(100% - 24px, 1180px);
  }

  .site-topbar {
    display: none;
  }

  .brand-link img {
    max-height: 54px;
  }

  .site-menu a {
    min-height: 38px;
    padding: 0 10px;
    font-size: 13px;
  }

  .menu-item-has-children:hover > .submenu,
  .menu-item-has-children:focus-within > .submenu {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 44px 0 82px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: 36px;
    line-height: 1.1;
  }

  .hero-lede {
    max-width: 560px;
    font-size: 17px;
  }

  .trust-grid,
  .services-grid,
  .service-directory-grid,
  .training-section-grid,
  .staff-training-proof-grid,
  .staff-training-flow,
  .safety-plan-proof-grid,
  .safety-plan-flow,
  .safety-plan-grid,
  .standard-equipment-proof-grid,
  .communication-proof-grid,
  .communication-flow,
  .communication-license-grid,
  .inventory-proof-grid,
  .contact-page-proof-grid,
  .contact-page-grid,
  .guard-process-grid,
  .protection-grid,
  .cash-control-grid,
  .equipment-grid,
  .escort-grid,
  .event-timeline-grid,
  .access-flow-grid,
	  .response-grid,
	  .survey-grid,
	  .future-grid,
	  .procurement-process,
	  .procurement-proof-grid,
	  .procurement-flow,
	  .clients,
  .coverage-list,
  .posts-grid,
  .fact-grid,
  .license-grid,
  .sector-grid,
	  .capability-grid,
	  .strength-matrix,
	  .procurement-band,
	  .introduction-office-grid,
	  .introduction-client-directory,
	  .media-gallery-grid,
  .media-gallery-grid.gallery-full-grid {
    grid-template-columns: 1fr;
  }

  .introduction-official-block {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .introduction-official-block > span {
    width: 50px;
    height: 50px;
  }

  .introduction-clean-hero {
    min-height: 430px;
  }

  .introduction-clean-hero-grid {
    padding: 64px 0;
  }

  .introduction-clean-hero .profile-hero-copy {
    max-width: 340px;
    padding: 24px;
  }

  .subpage-hero {
    min-height: auto;
  }

  .subpage-hero-grid {
    padding: 46px 0;
  }

  .subpage-hero h1 {
    max-width: 620px;
    font-size: 30px;
    line-height: 1.12;
  }

  .subpage-hero p:not(.eyebrow) {
    max-width: 560px;
    font-size: 16px;
  }

  .subpage-hero-panel {
    min-height: 190px;
  }

  .subpage-hero-panel img {
    height: 132px;
  }

  .subpage-hero-mobile-escorts {
    min-height: auto;
  }

  .subpage-hero-mobile-escorts::before {
    background-position: center, center bottom 62px;
    background-size: cover, min(92vw, 620px) auto;
    opacity: 0.28;
  }

  .subpage-hero-mobile-escorts::after {
    right: 18px;
    bottom: 34px;
    width: min(86vw, 480px);
    height: 180px;
  }

  .subpage-hero-mobile-escorts .subpage-hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 56px 0;
  }

  .subpage-hero-mobile-escorts .subpage-hero-panel {
    width: min(100%, 420px);
    min-height: 250px;
  }

  .subpage-hero-mobile-escorts .subpage-hero-panel img {
    height: 138px;
  }

  .safety-plan-card,
  .safety-plan-card-accent {
    grid-column: auto;
  }

  .safety-plan-card {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: auto;
    padding: 22px 22px 22px 20px;
  }

  .safety-plan-card span {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }

  .standard-equipment-group {
    padding: 22px;
  }

  .standard-equipment-group-head {
    align-items: flex-start;
  }

  .standard-equipment-row,
  .standard-equipment-table-compact .standard-equipment-row {
    grid-template-columns: 1fr 1fr;
  }

  .standard-equipment-header {
    display: none;
  }

  .inventory-group {
    padding: 22px;
  }

  .inventory-group-head {
    align-items: flex-start;
  }

  .inventory-row,
  .inventory-table-compact .inventory-row {
    grid-template-columns: 1fr 1fr;
  }

  .inventory-header {
    display: none;
  }

  .inventory-row span:last-child {
    justify-self: start;
  }

  .contact-page-card-main {
    grid-column: auto;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 320px;
  }

  .gallery-showcase {
    padding: 22px;
  }

  .gallery-showcase::before {
    inset: 10px;
  }

  .gallery-showcase-copy h2 {
    font-size: 38px;
  }

  .gallery-showcase-stats {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-feature-board {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .gallery-feature-tile {
    aspect-ratio: 16 / 11;
  }

  .gallery-feature-tile-1 {
    grid-row: auto;
  }

  .gallery-library-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-library-tabs {
    justify-content: flex-start;
  }

  .service-directory-card {
    min-height: 205px;
  }

  .service-directory-icon {
    width: 76px;
    height: 76px;
  }

  .service-directory-icon svg {
    width: 44px;
    height: 44px;
  }

  .conventional-copy,
  .conventional-feature-card,
  .static-guard-copy,
  .static-guard-command-card,
  .bodyguard-copy,
  .bodyguard-elite-card,
  .cash-transit-copy,
  .cash-transit-secure-card,
  .equipment-copy,
  .equipment-tech-card,
  .escort-copy,
  .event-copy,
  .event-spotlight-card,
  .access-copy,
  .access-control-card,
  .response-copy,
  .response-rapid-card,
  .survey-copy,
  .survey-report-card,
  .future-copy,
  .future-vision-card {
    padding: 28px;
  }

  .escort-fleet-scene {
    min-height: 330px;
    padding: 24px 18px 38px;
  }

  .escort-route-map {
    min-height: 230px;
  }

  .escort-route-icon {
    width: 104px;
    height: 104px;
  }

  .escort-route-icon svg {
    width: 62px;
    height: 62px;
  }

  .valuable-strip {
    grid-template-columns: 1fr;
  }

  .event-control-strip {
    grid-template-columns: 1fr;
  }

  .access-strip {
    grid-template-columns: 1fr;
  }

  .response-strip {
    grid-template-columns: 1fr;
  }

  .survey-strip {
    grid-template-columns: 1fr;
  }

  .feature-stat-row {
    grid-template-columns: 1fr;
  }

  .profile-hero-copy h1 {
    font-size: 30px;
    line-height: 1.12;
  }

  .jobs-info-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .profile-hero-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .profile-command-card strong {
    font-size: 19px;
  }

  .story-media-note {
    position: static;
    margin-top: 12px;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--ssg-line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 54px 0;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .instagram-card {
    flex-basis: 100%;
    padding: 0;
  }

  .instagram-copy {
    min-height: auto;
  }

  .whatsapp-chat-widget {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .whatsapp-chat-link {
    width: 56px;
    height: 56px;
  }

  .whatsapp-chat-link svg {
    width: 31px;
    height: 31px;
  }

  .whatsapp-chat-bubble {
    width: min(260px, calc(100vw - 96px));
    padding: 14px 38px 14px 16px;
  }
}
