/* Final Professional Surveillance Landing Page */
:root {
  --bg: #02050b;
  --panel: rgba(9, 22, 43, .82);
  --panel-2: rgba(13, 31, 57, .72);
  --text: #f8fbff;
  --muted: #aebbd0;
  --soft: #75849b;
  --line: rgba(120, 175, 255, .18);
  --line-2: rgba(20, 120, 255, .34);
  --blue: #006cff;
  --blue-2: #1688ff;
  --green: #43d89f;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0,0,0,.38);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 5%, rgba(20,120,255,.16), transparent 30%),
    radial-gradient(circle at 12% 16%, rgba(58,184,255,.08), transparent 28%),
    linear-gradient(180deg, var(--bg), #06101f 48%, var(--bg));
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.section { padding: 92px 0; }
.section-sm { padding: 72px 0; }
.section-muted {
  background: rgba(255,255,255,.018);
  border-block: 1px solid rgba(255,255,255,.045);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3,7,18,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(20,120,255,.24), rgba(58,184,255,.06));
  border: 1px solid rgba(58,184,255,.45);
  transition: .25s ease;
}

.brand:hover .brand-mark { transform: scale(1.04); box-shadow: 0 0 32px rgba(20,120,255,.28); }

.brand-mark svg {
  width: 29px;
  height: 29px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.04;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--blue-2);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #d7e2f2;
  font-size: 14px;
  font-weight: 600;
}

.nav-menu a {
  position: relative;
  transition: .22s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  border-radius: 20px;
  background: var(--blue);
  transition: .22s ease;
}

.nav-menu a:hover { color: var(--blue-2); }
.nav-menu a:hover::after { width: 100%; }

.mobile-menu-head { display: none; }

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
  border-radius: 999px;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.58);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

body.menu-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  transition: .22s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #005cff);
  color: white;
  box-shadow: 0 16px 38px rgba(20,120,255,.26);
}
.btn-primary:hover { box-shadow: 0 22px 55px rgba(20,120,255,.36); }
.btn-secondary {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.18);
  color: white;
}
.btn-secondary:hover {
  border-color: rgba(58,184,255,.45);
  box-shadow: 0 18px 44px rgba(20,120,255,.16);
}
.btn-white { background: white; color: #071120; }
.play-icon {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  font-size: 10px;
}

/* HERO - matched to approved reference */
.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  padding: 52px 0 34px;
  overflow: hidden;
  background: #030712;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-banner.jpeg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: .92;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,7,18,.97) 0%, rgba(3,7,18,.84) 42%, rgba(3,7,18,.26) 76%, rgba(3,7,18,.82) 100%),
    linear-gradient(180deg, rgba(3,7,18,.20) 0%, rgba(3,7,18,.74) 82%, rgba(3,7,18,1) 100%),
    radial-gradient(circle at 70% 45%, rgba(20,120,255,.24), transparent 42%);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  min-height: 655px;
}

.hero-copy {
  max-width: 660px;
  padding-top: 44px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(20,120,255,.10);
  border: 1px solid rgba(58,184,255,.46);
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-2);
  fill: none;
  stroke-width: 2;
}

.hero-copy h1 {
  font-size: clamp(54px, 6vw, 78px);
  line-height: 1.05;
  letter-spacing: -.064em;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero-copy h1 span {
  display: block;
  color: var(--blue);
}

.blue-line {
  width: 46px;
  height: 3px;
  background: var(--blue);
  border-radius: 99px;
  margin-bottom: 24px;
}

.hero-copy p {
  color: #e0e8f6;
  font-size: 18px;
  max-width: 590px;
  margin-bottom: 28px;
}

.hero-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 620px;
  gap: 0;
  margin-bottom: 32px;
}

.hero-icons article {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.hero-icons article:last-child { border-right: 0; }

.circle-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 1px solid rgba(20,120,255,.66);
  background: rgba(20,120,255,.08);
  color: var(--blue);
  transition: .25s ease;
}

.circle-icon svg {
  width: 31px;
  height: 31px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-icons strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
  color: #f4f8ff;
}

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

.hero-floating-card {
  position: absolute;
  right: 54px;
  bottom: 78px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(430px, 38vw);
  padding: 20px 24px;
  border: 1px solid rgba(120,175,255,.30);
  background: rgba(7,18,35,.70);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.team-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: white;
  flex: 0 0 auto;
}

.team-icon svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.hero-floating-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.hero-floating-card span {
  display: block;
  color: #d9e5f5;
  font-size: 13px;
  margin-top: 4px;
}

.hero-bottom-bar {
  position: relative;
  z-index: 4;
  margin-top: -10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(120,175,255,.24);
  background: rgba(6,16,32,.78);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-bottom-bar article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.10);
  transition: .25s ease;
}

.hero-bottom-bar article:last-child { border-right: 0; }
.hero-bottom-bar article:hover {
  background: rgba(20,120,255,.12);
}
.hero-bottom-bar article:hover .circle-icon {
  transform: scale(1.06);
  box-shadow: 0 0 34px rgba(20,120,255,.30);
}

.hero-bottom-bar .circle-icon {
  width: 86px;
  height: 50px;
  margin: 0;
}

.hero-bottom-bar h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.hero-bottom-bar p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.scroll-down {
  position: relative;
  z-index: 4;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.scroll-down span {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.68);
  border-radius: 20px;
  position: relative;
}

.scroll-down span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 4px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: white;
  animation: scrollDot 1.6s infinite ease-in-out;
}

.scroll-down small {
  color: rgba(255,255,255,.64);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* Shared sections */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  border-radius: 999px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}
.section-head.center { text-align: center; margin-inline: auto; }
.section-head h2,
.section-copy h2,
.contact-copy h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 850;
  margin-bottom: 15px;
}
.section-head h2 span,
.section-copy h2 span,
.contact-copy h2 span { color: var(--blue-2); }
.section-head p,
.section-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  max-width: 680px;
}

.two-column {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.feature-list article {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(58,184,255,.35);
  background: rgba(20,120,255,.08);
  border-radius: 16px;
  flex: 0 0 auto;
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue-2);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-list h3 {
  font-size: 19px;
  margin-bottom: 4px;
}
.feature-list p { font-size: 15px; }

.stock-image-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 12px;
  background: rgba(255,255,255,.035);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.stock-image-card img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  transition: .35s ease;
}
.stock-image-card:hover img { transform: scale(1.035); }
.caption-card {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(5,13,28,.84);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(120,175,255,.25);
}
.caption-card strong { display: block; margin-bottom: 5px; }
.caption-card span { color: var(--muted); font-size: 14px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card,
.package-card,
.steps article,
.testimonial-grid article,
.contact-form {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13,31,57,.82), rgba(6,15,31,.72));
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
}
.service-card { padding: 25px; }
.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(58,184,255,.35);
  background: rgba(20,120,255,.08);
  border-radius: 16px;
  font-size: 22px;
}
.service-card h3 {
  font-size: 19px;
  margin: 18px 0 8px;
}
.service-card p {
  color: var(--muted);
  font-size: 15px;
}

.wide-image-panel {
  position: relative;
  margin-top: 28px;
  min-height: 290px;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.wide-image-panel img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
  transition: .35s ease;
}
.wide-image-panel:hover img { transform: scale(1.03); }
.wide-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,7,18,.86), rgba(3,7,18,.35));
}
.wide-image-panel div {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 34px;
  max-width: 610px;
}
.wide-image-panel span {
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .10em;
}
.wide-image-panel h3 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -.035em;
  margin-top: 8px;
}

.package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.package-card {
  padding: 34px;
  position: relative;
  overflow: hidden;
}
.package-card.featured {
  border-color: rgba(58,184,255,.62);
  box-shadow: 0 22px 70px rgba(20,120,255,.16);
}
.package-label {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(20,120,255,.12);
  border: 1px solid rgba(20,120,255,.34);
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.package-card h3 {
  font-size: 30px;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.package-card p {
  color: var(--muted);
  margin-bottom: 20px;
}
.package-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 25px;
}
.package-card li {
  display: flex;
  gap: 10px;
  color: #d7e2f2;
  font-size: 15px;
}
.package-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}
.package-card .btn { width: 100%; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.steps article {
  padding: 28px 22px;
}
.steps span {
  display: inline-flex;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.steps h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.steps p {
  color: var(--muted);
  font-size: 14px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.portfolio-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
}
.portfolio-card img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  object-position: center;
  transition: .35s ease;
}
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-card h3 {
  padding: 18px 18px 4px;
  font-size: 18px;
}
.portfolio-card p {
  padding: 0 18px 20px;
  color: var(--muted);
  font-size: 14px;
}

/* Client carousel */
.logo-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
  padding: 18px 0;
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #07101f, transparent);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #07101f, transparent);
}

.logo-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: logoMove 28s linear infinite;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  min-width: 170px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(120,175,255,.16);
  background: rgba(255,255,255,.04);
  color: #dce9fb;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: .25s ease;
}

.logo-item:hover {
  background: rgba(20,120,255,.15);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(20,120,255,.20);
}

@keyframes logoMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-grid article {
  padding: 28px;
}
.stars {
  color: #ffcc4d;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-grid p {
  color: #d7e2f2;
  font-size: 15px;
  margin-bottom: 20px;
}
.person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.person span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white;
  font-weight: 800;
}
.person strong { font-size: 14px; }

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 46px;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(20,120,255,.94), rgba(9,35,72,.88)),
    radial-gradient(circle at 90% 20%, rgba(255,255,255,.26), transparent 26%);
  box-shadow: var(--shadow);
}
.cta-box h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
  max-width: 690px;
}
.cta-box p {
  color: rgba(255,255,255,.86);
  margin-top: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
}
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 22px;
}
.contact-info {
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.contact-info strong { color: var(--text); }

.contact-form {
  padding: 28px;
  display: grid;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
input, select, textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.045);
  color: white;
  font: inherit;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(58,184,255,.75);
  box-shadow: 0 0 0 4px rgba(58,184,255,.08);
}
select option { color: #06101f; }
textarea {
  min-height: 135px;
  resize: vertical;
}

footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 34px 0;
  color: var(--muted);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

/* Hover / animation */
.hover-card {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.hover-card:hover {
  transform: translateY(-7px);
  border-color: rgba(58,184,255,.48);
  background: linear-gradient(180deg, rgba(16,43,80,.88), rgba(7,20,42,.80));
  box-shadow: 0 28px 70px rgba(20,120,255,.16);
}

.animate-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s ease;
}

.animate-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1180px) {
  .hero-floating-card {
    right: 24px;
    width: 390px;
  }
}

@media (max-width: 1120px) {
  .mobile-toggle { display: block; }
  .nav-cta { display: none; }

  .nav-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: min(340px, 86vw);
    height: 100vh;
    z-index: 120;
    transform: translateX(-105%);
    transition: transform .32s ease;
    background: rgba(3,7,18,.98);
    border-right: 1px solid var(--line);
    padding: 22px;
    box-shadow: 28px 0 80px rgba(0,0,0,.46);
  }

  body.menu-open .nav-menu {
    transform: translateX(0);
  }

  .mobile-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 26px;
  }

  .mobile-close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.04);
    color: white;
    border-radius: 10px;
    font-size: 26px;
    cursor: pointer;
  }

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

  .nav-menu a {
    display: block;
    padding: 14px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.035);
  }

  .nav-menu a::after {
    display: none;
  }

  .hero-content-wrap,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(520px, 100%);
    margin-top: 34px;
  }

  .hero-content-wrap {
    min-height: auto;
  }

  .hero-bottom-bar,
  .service-grid,
  .steps,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-bottom-bar article:nth-child(2) {
    border-right: 0;
  }

  .hero-bottom-bar article {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 68px 0; }
  .hero {
    padding: 44px 0 34px;
  }
  .hero-copy h1 { font-size: 44px; }
  .hero-icons,
  .hero-bottom-bar,
  .service-grid,
  .package-grid,
  .steps,
  .portfolio-grid,
  .testimonial-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-icons article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
    padding: 16px 0;
  }
  .hero-icons article:last-child {
    border-bottom: 0;
  }
  .hero-bottom-bar article { border-right: 0; }
  .stock-image-card img,
  .wide-image-panel img {
    height: 320px;
  }
  .hero-floating-card {
    align-items: flex-start;
  }
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
  }
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .scroll-down {
    display: none;
  }
}


/* Secure Solutions USA logo update */
.brand-logo-only {
  min-width: auto;
  flex-shrink: 0;
}

.site-logo {
  width: 255px;
  max-height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 108, 255, .24));
  transition: transform .25s ease, filter .25s ease;
}

.brand-logo-only:hover .site-logo {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 14px 36px rgba(0, 108, 255, .36));
}

/* Hide old generated icon if any old brand markup remains */
.brand-logo-only .brand-mark {
  display: none;
}

@media (max-width: 760px) {
  .site-logo {
    width: 205px;
    max-height: 70px;
  }
}
