/* ============================================================
   NEXO MONITORING — Light design system (v4)
   AI security cameras • perimeter fencing • smart alarms
   Palette (3 brand colors):
     #0046FF  electric blue   → primary / interactive
     #2E6BFF  warm orange      → accent / highlights
     #E9E9E9  light gray       → page canvas
   + white surfaces and a deep-navy ink for AA/AAA contrast.
   Fonts: Sora (headings + body)
   ============================================================ */

:root {
  /* brand */
  --blue:      #0046FF;
  --blue-deep: #0033CC;   /* hover / pressed */
  --orange:    #2E6BFF;
  --orange-deep:#0046FF;
  --gray:      #E9E9E9;

  /* surfaces — light */
  --bg:        #E9E9E9;   /* page canvas (brand gray) */
  --bg-2:      #F5F6F8;   /* raised / alternating band */
  --surface:   #ffffff;   /* card */
  --surface-2: #F1F2F5;   /* elevated / table head */
  --line:      rgba(12, 21, 38, 0.10);
  --line-2:    rgba(12, 21, 38, 0.16);

  /* text — deep navy ink */
  --text:      #0C1526;
  --text-soft: #4C566B;
  --text-dim:  #7A8398;

  /* legacy accent aliases mapped to the 3-color system */
  --mint:   var(--blue);     /* eyebrows, underlines, links */
  --green:  var(--blue);     /* checks */
  --cyan:   var(--orange);   /* live dots */
  --violet: var(--orange);
  --amber:  var(--orange);   /* stars */

  --grad-primary: linear-gradient(105deg, #0046FF, #2E56FF 48%, #2E6BFF);
  --grad-violet:  linear-gradient(110deg, #2E6BFF, #0046FF);
  --grad-head:    linear-gradient(180deg, #ffffff 0%, #C6D4FF 100%); /* on dark heroes */
  --grad-deep:    linear-gradient(160deg, #0A2A8F 0%, #05135A 100%); /* dark blue base */

  --on-accent: #ffffff;  /* text on blue */

  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px rgba(12, 21, 38, 0.14);
  --glow: 0 0 40px rgba(0, 70, 255, 0.20);
  --maxw: 1200px;

  --font-body: 'Sora', system-ui, sans-serif;
  --font-head: 'Sora', sans-serif;

  /* >>> LOGO SIZES — change these two numbers to resize the logo <<< */
  --nav-logo: 82px;     /* logo size in the top navbar */
  --footer-logo: 86px;  /* logo size in the footer */
}

/* ------------------------------------------------------------
   DARK CONTEXT SCOPE
   Video heroes, banners, the CTA block and footer stay dark
   (imagery-driven) — we re-point the theme variables to light
   values here so all descendant text/surfaces flip automatically.
   ------------------------------------------------------------ */
.hero, .page-hero, .contact, .cta-strip, .footer, .sec-dark,
.section:has(> .sec-video) {
  --text:      #ffffff;
  --text-soft: rgba(255, 255, 255, 0.82);
  --text-dim:  rgba(255, 255, 255, 0.60);
  --line:      rgba(255, 255, 255, 0.14);
  --line-2:    rgba(255, 255, 255, 0.24);
  --surface:   rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.10);
  --mint:   #9DB8FF;
  --green:  #9DB8FF;
  --cyan:   #2E6BFF;
  --on-accent: #0C1526;
  --grad-primary: linear-gradient(105deg, #2E6BFF, #9DB8FF);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  min-height: 100vh;
  width: 100%;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* punchy geometric headings */
h1, h2, h3, h4,
.section-head h2, .hero h1, .page-hero h1, .cta-strip h2,
.split h2, .stat .num, .step-num, .plan .price, .brand-name {
  font-family: var(--font-head);
  letter-spacing: -0.02em;
}
/* big display headings on dark heroes get the light gradient */
.page-hero h1, .cta-strip h2 {
  background: var(--grad-head);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* soft brand ambient wash on the light canvas */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(0,70,255,0.10), transparent 62%),
    radial-gradient(1000px 560px at 50% 108%, rgba(46,107,255,0.10), transparent 62%);
}
a { color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: rgba(0,70,255,0.20); color: #0C1526; }

/* scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #E9E9E9; }
::-webkit-scrollbar-thumb { background: #C3C8D2; border-radius: 10px; border: 3px solid #E9E9E9; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ---------- helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; }
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.gradient-text.violet { background: var(--grad-violet); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: 2.6px;
  text-transform: uppercase; color: var(--mint); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--mint), transparent); }
.eyebrow.center { justify-content: center; }
.section { position: relative; padding: clamp(38px, 4.4vw, 64px) clamp(24px, 7vw, 96px); overflow-x: clip; }
.section-head { max-width: 740px; margin: 0 auto 38px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 50px); font-weight: 700; line-height: 1.1; letter-spacing: -.5px; color: var(--text); }
.section-head p { margin-top: 18px; color: var(--text-soft); font-size: 16.5px; line-height: 1.65; }

/* ---------- scroll progress bar ---------- */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 60;
  background: var(--grad-primary); box-shadow: 0 0 12px rgba(0,70,255,0.5);
}

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; font-family: inherit; font-size: 15px; font-weight: 600;
  border-radius: 999px; text-decoration: none; cursor: pointer; border: none; overflow: hidden;
  transition: transform .2s ease, box-shadow .25s ease, filter .25s ease, background .25s ease;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { color: #fff; background: var(--blue); box-shadow: 0 12px 30px rgba(0,70,255,0.32); }
.btn-primary::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: translateX(-120%); transition: transform .6s ease;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--blue-deep); box-shadow: 0 18px 40px rgba(0,70,255,0.42); }
.btn-primary:hover::after { transform: translateX(120%); }
.btn-ghost { color: var(--text); background: transparent; border: 1px solid var(--line-2); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--blue); background: rgba(0,70,255,0.06); }
.btn-light { color: #0A2A8F; background: #ffffff; box-shadow: 0 12px 26px rgba(12,21,38,0.22); }
.btn-light:hover { transform: translateY(-2px); filter: brightness(1.02); }

/* ============================================================
   NAVBAR + TOP UTILITY BAR
   ============================================================ */
.nav-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }

/* ---- top utility bar (contact + socials) ---- */
.topbar { background: var(--blue); color: rgba(255,255,255,0.85); font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.16); overflow: hidden; }
.topbar-inner { max-width: 1500px; margin: 0 auto; height: 40px; padding: 0 clamp(18px, 4vw, 60px);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; min-width: 0; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; min-width: 0; }
.tb-badge { flex: 0 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tb-item { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.72); text-decoration: none; transition: color .2s ease; white-space: nowrap; }
.tb-item svg { width: 15px; height: 15px; color: #fff; }
.tb-item:hover { color: #fff; }
.tb-badge { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .3px; color: rgba(255,255,255,0.72); }
.tb-badge b { color: #fff; font-weight: 600; }
.tb-sep { width: 1px; height: 15px; background: rgba(255,255,255,0.28); }
.tb-flag { width: 26px; height: 18px; object-fit: cover; border-radius: 3px; }
.tb-soc { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; color: #fff; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); transition: background .2s ease, color .2s ease, transform .2s ease; }
.tb-soc:hover { background: #fff; color: var(--blue); border-color: transparent; transform: translateY(-2px); }
.tb-soc svg { width: 15px; height: 15px; }

/* ---- minimal full-width dark navbar (fixed, no scroll shift) ---- */
.nav-shell { padding: 0; }
.navbar {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  /* small vertical padding + a base height: the logo grows INSIDE the bar and
     only makes the navbar taller once it exceeds this height. */
  padding: 4px clamp(18px, 4vw, 60px); min-height: 62px; border-radius: 0;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.brand { display: flex; align-items: center; gap: 11px; padding: 0; border-radius: 11px; text-decoration: none; white-space: nowrap; transition: opacity .25s ease; }
.brand:hover { opacity: .85; }
.brand-badge { position: relative; display: grid; place-items: center; width: var(--nav-logo, 56px); height: var(--nav-logo, 56px); background: none; border: none; flex: 0 0 auto; }
.brand-badge svg { width: 30px; height: 30px; }
.brand-badge img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; font-size: 20px; font-weight: 700; letter-spacing: .2px; color: #fff; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(46,107,255,0.6); } 70% { box-shadow: 0 0 0 8px rgba(46,107,255,0); } 100% { box-shadow: 0 0 0 0 rgba(46,107,255,0); } }
.brand-name b { font-weight: 700; color: #5b8cff; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a { position: relative; display: inline-flex; align-items: center; gap: 5px; padding: 9px 15px; font-size: 14.5px; font-weight: 500; letter-spacing: .1px; text-decoration: none; color: rgba(255,255,255,0.70); border-radius: 9px; transition: color .22s ease; }
.nav-links > li > a:hover { color: #fff; }
.nav-links > li > a.active { color: #fff; }
.nav-links > li > a.active::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 1px; height: 2px; border-radius: 2px; background: var(--blue); }
.nav-links .chev { width: 13px; height: 13px; transition: transform .28s ease; opacity: .6; }
.has-dd.open .chev { transform: rotate(180deg); }

/* Mobile-only accordion toggle. The parent <a> always navigates, so the
   dropdown needs its own control — see assets/js/main.js. */
.dd-toggle { display: none; }

/* Hover bridge: the panel sits 14px below the trigger, and without this the
   pointer crosses dead space on the way down and the menu snaps shut.
   Excluded for the mega item — that <li> is position:static, so its ::after
   would stretch the full nav width and pop the mega open from anywhere
   under the bar. The mega closes its own gap via `top: 100%` below. */
.has-dd:not(:has(.dd-mega))::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 16px; display: block; }

/* ---- dropdown panel (dark) ---- */
.dd-panel { position: absolute; top: calc(100% + 14px); left: 50%; width: 340px;
  transform: translateX(-50%) translateY(10px);
  background: linear-gradient(160deg, rgba(16,20,34,0.78), rgba(9,11,20,0.68));
  -webkit-backdrop-filter: blur(24px) saturate(150%); backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px; box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 44px 90px -24px rgba(0,0,0,0.7); padding: 20px 18px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .26s ease, transform .34s cubic-bezier(.22,.9,.24,1), visibility 0s linear .34s;
  z-index: 70; }
.has-dd.open .dd-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }

/* Wider panel used by Locations + Industries so they match the Services mega.
   .dd-grid is declared further down, so this needs the doubled class to win. */
.dd-wide { width: 720px; }
.dd-grid.dd-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2px 14px; }
.dd-grid.dd-grid-3 .dd-item b { white-space: nowrap; }
/* clean column heading with underline */
.dd-title, .dd-mega-title { display: block; font-size: 14.5px; font-weight: 700; color: #fff; letter-spacing: -.01em; text-transform: none; padding: 0 12px 12px; margin: 0 0 8px; border-bottom: 1px solid rgba(255,255,255,0.12); }
/* clean list link (shared by every dropdown) */
.dd-item { display: flex; align-items: center; gap: 13px; padding: 12px; border-radius: 10px; text-decoration: none; transition: background .18s ease; }
.dd-item:hover { background: rgba(255,255,255,0.05); }
.dd-ico { flex: 0 0 auto; display: grid; place-items: center; width: 22px; height: 22px; color: rgba(255,255,255,0.5); transition: color .18s ease; }
.dd-item:hover .dd-ico { color: var(--orange); }
.dd-ico svg { width: 20px; height: 20px; }
.dd-item b { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.82); letter-spacing: -.01em; transition: color .18s ease; }
.dd-item:hover b { color: #fff; }
.dd-item small { display: none; }
.dd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 26px; }
.dd-foot { margin: 12px 6px 0; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dd-foot span { font-size: 12.5px; color: rgba(255,255,255,0.5); }
.dd-foot a { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: #7db4ff; text-decoration: none; }
.dd-foot a svg { width: 14px; height: 14px; }

/* Services mega (full-width, two clean columns) */
.nav-shell { position: relative; }
.has-dd:has(.dd-mega) { position: static; }
.dd-mega { top: 100%; left: 0; right: 0; width: auto; padding: 0; border-radius: 0 0 24px 24px; transform: translateY(10px); overflow: hidden;
  background: linear-gradient(180deg, rgba(16,20,34,0.86), rgba(9,11,20,0.78));
  -webkit-backdrop-filter: blur(26px) saturate(150%); backdrop-filter: blur(26px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.1); border-top: none; box-shadow: 0 50px 90px -28px rgba(0,0,0,0.7); }
.has-dd.open .dd-mega { transform: translateY(0); }
.dd-mega-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.7fr; padding: 30px clamp(20px, 4vw, 56px) 34px; gap: clamp(30px,4vw,60px); align-items: start; }
/* Hover-to-open on desktop. The trigger <a> is never intercepted by JS, so
   Services / Locations / Industries stay clickable and go to their own page.
   Breakpoint matches the 980px mobile layout switch below — they must agree,
   or there is a band where the menu is stacked but still hover-only. */
@media (min-width: 981px) {
  .has-dd:hover > .dd-panel, .has-dd:focus-within > .dd-panel {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0); transition-delay: 0s; }
  .has-dd:hover > .dd-mega, .has-dd:focus-within > .dd-mega {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateY(0); transition-delay: 0s; }
  .has-dd:hover > a > .chev, .has-dd:focus-within > a > .chev { transform: rotate(180deg); }
  .has-dd:hover > a, .has-dd:focus-within > a { color: #fff; }
}
.dd-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 24px; }

.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; font-size: 14px; font-weight: 600; color: #fff; text-decoration: none; border-radius: 999px; background: var(--blue); border: 1px solid transparent; transition: transform .2s ease, background .25s ease, box-shadow .25s ease; box-shadow: 0 8px 20px rgba(0,70,255,0.28); }
.nav-cta:hover { transform: translateY(-2px); background: var(--blue-deep); box-shadow: 0 12px 26px rgba(0,70,255,0.36); }
.nav-cta svg { width: 15px; height: 15px; }
.menu-btn { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.18); cursor: pointer; border-radius: 10px; background: rgba(255,255,255,0.06); color: #fff; }

@media (max-width: 1180px) { .tb-badge { display: none; } }
@media (max-width: 720px) {
  .topbar-inner { justify-content: center; gap: 14px; }
  .tb-item span.tb-text { display: none; }
  .topbar-left { gap: 14px; }
}
@media (max-width: 980px) {
  .navbar { flex-wrap: wrap; padding: 10px clamp(14px, 4vw, 40px); }
  .menu-btn { display: grid; place-items: center; order: 2; }
  .nav-right { order: 3; flex-basis: 100%; flex-direction: column; align-items: stretch; gap: 6px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s ease, opacity .3s ease, margin-top .3s ease; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 4px; }

  /* Row = navigable link + its own toggle button, so tapping "Services"
     still opens services.html and the chevron opens the submenu. */
  .nav-links > li.has-dd { display: flex; flex-wrap: wrap; align-items: center; }
  .nav-links > li > a { flex: 1; justify-content: flex-start; padding: 12px; color: rgba(255,255,255,0.82); }
  .nav-links > li:not(.has-dd) > a { justify-content: center; }
  .nav-links > li > a.active { background: rgba(255,255,255,0.08); border-radius: 9px; }
  .nav-links > li > a.active::after { display: none; }
  .nav-links .chev { display: none; }
  .has-dd::after { display: none; }

  .dd-toggle {
    display: grid; place-items: center; flex: 0 0 auto;
    width: 40px; height: 40px; padding: 0; cursor: pointer;
    background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.24);
    border-radius: 9px; color: #fff;
    transition: background .2s ease, transform .28s ease;
  }
  .dd-toggle svg { width: 15px; height: 15px; transition: transform .3s ease; }
  .dd-toggle:hover { background: rgba(255,255,255,0.12); }
  .has-dd.open > .dd-toggle svg { transform: rotate(180deg); }

  /* Collapsed by default; .open (set by main.js) expands it. */
  .dd-panel {
    position: static; width: auto; flex-basis: 100%; transform: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: 0; border-radius: 12px; padding: 0 10px;
    margin-top: 0; background: rgba(255,255,255,0.03);
    max-height: 0; overflow: hidden;
    transition: max-height .38s cubic-bezier(.2,.8,.2,1), padding .3s ease, margin-top .3s ease;
  }
  /* `transform: none` is required here, not on .dd-panel above: the desktop
     rule `.has-dd.open .dd-panel` is more specific and would otherwise keep
     translateX(-50%), throwing the open panel off the left edge. */
  .has-dd.open > .dd-panel {
    transform: none;
    max-height: 1200px; padding: 10px; margin-top: 6px;
    border: 1px solid rgba(255,255,255,0.12);
  }
  .dd-title, .dd-mega-title { padding-left: 8px; }
  /* doubled class to outrank the desktop `.dd-grid.dd-grid-3` rule */
  .dd-grid, .dd-grid.dd-grid-3 { grid-template-columns: 1fr; gap: 0; }
  .dd-grid.dd-grid-3 .dd-item b { white-space: normal; }
  .dd-wide { width: auto; }
  .dd-ico { color: #9DB8FF; }
  .dd-foot { display: none; }
  .dd-mega { border: 0; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .dd-mega-inner { grid-template-columns: 1fr; padding: 8px; gap: 16px; }
  .nav-cta { justify-content: center; margin-top: 4px; }
  .navbar.open .nav-right { max-height: 1400px; opacity: 1; margin-top: 12px; }
}

/* ============================================================
   MEDIA PLACEHOLDERS
   ============================================================ */
.media-ph {
  position: relative; display: grid; place-items: center; width: 100%; border-radius: var(--radius-lg);
  background: repeating-linear-gradient(45deg, rgba(128,128,128,0.05) 0 14px, rgba(128,128,128,0.10) 14px 28px);
  border: 2px dashed var(--line-2); color: var(--blue); overflow: hidden; min-height: 220px;
}
.media-ph .ph-inner { text-align: center; padding: 24px; }
.media-ph .ph-icon { width: 46px; height: 46px; margin: 0 auto 10px; display: grid; place-items: center; border-radius: 12px; background: rgba(0,70,255,0.12); }
.media-ph .ph-icon svg { width: 24px; height: 24px; }
.media-ph .ph-label { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.media-ph .ph-sub { font-size: 11.5px; margin-top: 3px; opacity: .7; letter-spacing: .3px; }
.ratio-16-9 { aspect-ratio: 16/9; } .ratio-4-3 { aspect-ratio: 4/3; } .ratio-1-1 { aspect-ratio: 1/1; } .ratio-3-4 { aspect-ratio: 3/4; }
/* real image filling a media slot */
.split-img { width: 100%; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.left { transform: translateX(-44px); }
.reveal.right { transform: translateX(44px); }
.reveal.zoom { transform: scale(.92); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal[data-delay="6"] { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ============================================================
   CARDS + GRIDS
   ============================================================ */
.grid { display: grid; gap: clamp(18px, 2.4vw, 26px); max-width: var(--maxw); margin: 0 auto; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; padding: 30px 26px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); overflow: hidden;
  box-shadow: 0 1px 2px rgba(12,21,38,0.04);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
/* CCTV / monitoring feed pattern — fades in on hover */
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s ease; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 5px);
  background-size: 28px 28px, 28px 28px, 100% 5px;
}
/* corner focus brackets (camera viewfinder) on hover */
.card::after {
  content: ""; position: absolute; inset: 14px; opacity: 0; transition: opacity .4s ease; pointer-events: none; z-index: 0; border-radius: 4px;
  background:
    linear-gradient(#fff,#fff) left top, linear-gradient(#fff,#fff) left top,
    linear-gradient(#fff,#fff) right top, linear-gradient(#fff,#fff) right top,
    linear-gradient(#fff,#fff) left bottom, linear-gradient(#fff,#fff) left bottom,
    linear-gradient(#fff,#fff) right bottom, linear-gradient(#fff,#fff) right bottom;
  background-repeat: no-repeat;
  background-size: 14px 2px, 2px 14px, 14px 2px, 2px 14px, 14px 2px, 2px 14px, 14px 2px, 2px 14px;
}
/* hover -> whole card turns brand blue with light text + monitoring overlay */
.card:hover { transform: translateY(-6px); background: var(--blue); border-color: var(--blue); box-shadow: 0 22px 50px rgba(0,70,255,0.35); }
.card:hover::before { opacity: 1; }
.card:hover::after { opacity: .85; }
.card > * { position: relative; z-index: 1; }
.card:hover h3, .card:hover .blog-body h3 { color: #fff; }
.card:hover p, .card:hover .blog-body p { color: rgba(255,255,255,0.90); }
.card:hover .blog-meta, .card:hover .blog-link, .card:hover .blog-link svg { color: #fff; }
.card:hover .blog-tag { color: #fff; background: rgba(255,255,255,0.20); }
.card-icon { position: relative; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; margin-bottom: 22px; color: var(--blue); background: linear-gradient(160deg, rgba(0,70,255,0.12), rgba(0,70,255,0.04)); border: 1px solid var(--line-2); transition: background .3s ease, color .3s ease, border-color .3s ease; }
.card-icon svg { width: 26px; height: 26px; }
.card:hover .card-icon { color: #fff; border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.16); }
.card h3 { font-size: 19px; font-weight: 600; color: var(--text); margin-bottom: 9px; }
.card p { color: var(--text-soft); font-size: 14.5px; line-height: 1.65; }

/* gradient-border featured card */
.card.glow-border { background: var(--surface); }
.card.glow-border:hover { background: var(--blue); }
.card.glow-border:hover::after { opacity: 0; }
.card.glow-border::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: var(--grad-primary); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .7;
}

/* bento layout */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 18px; max-width: var(--maxw); margin: 0 auto; }
.bento .card { padding: 28px; display: flex; flex-direction: column; }
.bento .span-2 { grid-column: span 2; }
.bento .row-2 { grid-row: span 2; }
.bento .card p { margin-top: auto; }
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } .bento .row-2 { grid-row: span 1; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .bento .span-2 { grid-column: span 1; } }

/* numbered step */
.step-num { font-family: var(--font-head); letter-spacing: -0.02em; font-size: 42px; font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--blue); margin-bottom: 16px; }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: var(--maxw); margin: 0 auto; }
.stat { text-align: center; padding: 26px 14px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(12,21,38,0.04); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.stat:hover { transform: translateY(-4px); border-color: rgba(0,70,255,0.30); box-shadow: var(--shadow); }
.stat .num { font-family: var(--font-head); letter-spacing: -0.02em; font-size: clamp(30px, 4vw, 48px); font-weight: 800; line-height: 1; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { margin-top: 12px; font-size: 13.5px; color: var(--text-soft); letter-spacing: .3px; }

/* ============================================================
   DECOR — orbs, grid, aurora
   ============================================================ */
.orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; opacity: .5; z-index: 0; }
.orb-a { width: 360px; height: 360px; background: rgba(0,70,255,0.45); top: -90px; left: -60px; animation: floatY 12s ease-in-out infinite alternate; }
.orb-b { width: 320px; height: 320px; background: rgba(46,107,255,0.42); bottom: -100px; right: -60px; animation: floatY 15s ease-in-out infinite alternate-reverse; }
.orb-c { width: 300px; height: 300px; background: rgba(0,70,255,0.36); top: 40%; left: 55%; animation: floatY 18s ease-in-out infinite alternate; }
@keyframes floatY { from { transform: translateY(0); } to { transform: translateY(34px); } }
.grid-overlay { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .6;
  background-image: linear-gradient(rgba(12,21,38,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(12,21,38,0.045) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%); -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%); }
.section > .container, .section > .grid, .section > .stats, .section > .split, .section > .section-head, .section > .acc, .section > .bento, .section > .cta-strip, .section > .timeline, .section > .frow, .section > .tabs-bar, .section > .tab-panel, .section > .cmp, .section > .about-lead { position: relative; z-index: 1; }

/* ============================================================
   SPLIT feature rows
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 66px); align-items: center; max-width: var(--maxw); margin: 0 auto; }
.split h2 { font-size: clamp(24px, 3.4vw, 40px); font-weight: 700; line-height: 1.15; color: var(--text); }
.split p { margin-top: 16px; color: var(--text-soft); font-size: 15.5px; line-height: 1.7; }
.check-list { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text); }
.check-list li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--blue); margin-top: 1px; }
@media (max-width: 840px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: -1; } }

/* ============================================================
   TIMELINE (steps)
   ============================================================ */
.timeline { max-width: 900px; margin: 0 auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--blue), var(--orange), transparent); }
.tl-item { position: relative; padding: 0 0 40px 74px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: 14px; top: 0; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #fff; background: var(--blue); box-shadow: 0 0 0 6px rgba(0,70,255,0.16); }
.tl-item h3 { font-size: 19px; color: var(--text); margin-bottom: 6px; }
.tl-item p { color: var(--text-soft); font-size: 14.5px; line-height: 1.65; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { overflow: hidden; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scrollX 28s linear infinite; }
.marquee.rev .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-size: 15px; font-weight: 600; letter-spacing: .5px; color: var(--text-dim); white-space: nowrap; display: inline-flex; align-items: center; gap: 10px; }
.marquee span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SERVICE LOGO WALL (animated marquee of services)
   ============================================================ */
.logo-wall { position: relative; }
.lw-viewport { position: relative; overflow: hidden; max-width: 1360px; margin: 0 auto;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%); }
.lw-track { display: flex; width: max-content; animation: scrollX 45s linear infinite; will-change: transform; }
.lw-track.rev { animation-direction: reverse; }
.lw-track + .lw-track { margin-top: 20px; }
/* pause only the row whose card is hovered — the other row keeps moving */
.lw-track:hover { animation-play-state: paused; }
.lw-card { position: relative; flex: 0 0 auto; display: flex; align-items: center; gap: 16px; margin-right: 20px;
  padding: 22px 34px 22px 22px; min-width: 236px; border-radius: 18px;
  background: var(--surface); border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(12,21,38,0.04);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease; }
.lw-card:hover { transform: translateY(-4px); border-color: rgba(0,70,255,0.35); box-shadow: var(--shadow); }
.lw-ico { flex: 0 0 auto; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  color: var(--blue); background: linear-gradient(160deg, rgba(0,70,255,0.12), rgba(0,70,255,0.04));
  border: 1px solid var(--line-2); transition: background .3s ease, transform .3s ease; }
.lw-card:hover .lw-ico { background: linear-gradient(160deg, rgba(0,70,255,0.20), rgba(46,107,255,0.14)); transform: scale(1.05); }
.lw-ico svg { width: 24px; height: 24px; }
.lw-name { font-family: var(--font-head); font-weight: 600; font-size: 16px; letter-spacing: -.01em; color: var(--text); white-space: nowrap; }
.lw-ext { position: absolute; top: 12px; right: 12px; width: 15px; height: 15px; color: var(--text-dim); opacity: .5; transition: color .3s ease, opacity .3s ease; }
.lw-card:hover .lw-ext { color: var(--orange); opacity: 1; }
.lw-ext svg { width: 100%; height: 100%; }
@media (prefers-reduced-motion: reduce) { .lw-track { animation: none; } .lw-viewport { overflow-x: auto; } }

/* ============================================================
   CTA STRIP — premium electric-blue block
   ============================================================ */
.cta-strip { position: relative; overflow: hidden; max-width: var(--maxw); margin: 0 auto; border-radius: 30px; padding: clamp(44px, 6vw, 80px) clamp(28px, 6vw, 76px); text-align: center;
  background:
    radial-gradient(680px 380px at 18% 0%, rgba(46,107,255,0.35), transparent 60%),
    radial-gradient(600px 400px at 92% 100%, rgba(0,20,90,0.55), transparent 60%),
    linear-gradient(150deg, #0046FF 0%, #0A2FB0 100%);
  border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 30px 70px rgba(0,40,160,0.35); }
.cta-strip h2 { font-size: clamp(28px, 4.4vw, 48px); font-weight: 700; color: #fff; line-height: 1.12; letter-spacing: -.5px; }
.cta-strip h2 span { background: linear-gradient(105deg, #FFB088, #2E6BFF); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-strip p { margin: 18px auto 32px; max-width: 580px; color: rgba(255,255,255,0.85); font-size: 16.5px; line-height: 1.6; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* video background inside a CTA strip */
.cta-strip .cta-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .35; mix-blend-mode: luminosity; }
.cta-strip .cta-veil { position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(4,20,90,0.55), rgba(4,20,90,0.42) 50%, rgba(4,20,90,0.62)); }
.cta-strip h2, .cta-strip p, .cta-strip .cta-actions { position: relative; z-index: 1; }

/* ============================================================
   SECTION VIDEO BACKGROUND (dark imagery bands)
   ============================================================ */
.sec-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .5; }
.sec-veil { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(6,12,30,0.45), rgba(2,4,12,0.92) 78%),
    linear-gradient(180deg, rgba(2,4,12,0.90) 0%, rgba(3,7,20,0.70) 50%, rgba(2,4,12,0.94) 100%); }

/* glassmorphism cards inside dark video / dark sections */
.section:has(> .sec-video) .card, .sec-dark .card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 22px 55px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.14);
}
.section:has(> .sec-video) .card:hover, .sec-dark .card:hover {
  background: var(--blue); border-color: var(--blue); box-shadow: 0 26px 55px rgba(0,70,255,0.40);
}

/* ============================================================
   FOOTER — deep navy anchor
   ============================================================ */
.footer { position: relative; isolation: isolate; background: radial-gradient(720px 300px at 8% -18%, rgba(0,70,255,0.20), transparent 64%), linear-gradient(135deg, #07132c, #080c16 62%); color: var(--text-soft); padding:clamp(40px,5vw,62px) clamp(24px,7vw,96px) 22px; border-top: 1px solid rgba(255,255,255,0.12); }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad-primary); opacity: .75; z-index: 3; }
/* footer video background */
.footer-video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; display: block; }
.footer-video-veil { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: rgba(6,6,18,0.80); }
.footer-grid, .footer-badges, .footer-bottom { position: relative; z-index: 2; }
.foot-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 8px; }
.foot-logo .brand-badge { width: 52px; height: 52px; flex: 0 0 auto; }
.foot-logo .brand-badge img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.8fr repeat(4, 1fr); gap: clamp(20px,3vw,40px); }
.footer-brand { padding-right: 10px; }
.footer-brand .brand-name { color: #fff; font-size: 22px; line-height: 1.05; }
.footer-brand p { margin-top: 10px; font-size: 13px; line-height: 1.6; max-width: 320px; color: var(--text-soft); }
.foot-socials { display: flex; gap: 8px; margin-top: 17px; }
.foot-socials a { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 8px; color: var(--text); background: rgba(255,255,255,0.06); border: 1px solid var(--line); transition: background .25s ease, color .25s ease, transform .2s ease; }
.foot-socials a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.foot-socials svg { width: 17px; height: 17px; }
.footer h4 { color: #9DB8FF; font-size: 11.5px; margin-bottom: 16px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { position: relative; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-size: 13.5px; color: rgba(255,255,255,0.66); transition: color .2s ease, transform .2s ease; }
.footer ul a::before { content: ""; width: 0; height: 1px; background: var(--blue); transition: width .25s ease; }
.footer ul a:hover { color: #fff; transform: translateX(2px); }
.footer ul a:hover::before { width: 12px; }
.footer .dd-panel { display: none; }

/* "View more industries" — quiet inline link under the 3 core industries */
.foot-more { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-size: 13px; font-weight: 600; text-decoration: none; color: #9DB8FF; transition: color .2s ease, gap .2s ease; }
.foot-more svg { width: 14px; height: 14px; }
.foot-more:hover { color: #fff; gap: 11px; }

/* "Book a Site Survey" — the one highlighted action in the footer */
.foot-cta { display: inline-flex; align-items: center; gap: 11px; margin-top: 18px; padding: 9px 9px 9px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 600; text-decoration: none; color: #fff; background: var(--blue); box-shadow: 0 12px 26px -8px rgba(0,70,255,0.6); transition: transform .28s cubic-bezier(.2,.8,.2,1), background .25s ease, box-shadow .25s ease; }
.foot-cta:hover { transform: translateY(-3px); background: var(--blue-deep); box-shadow: 0 18px 34px -8px rgba(0,70,255,0.7); }
.foot-cta .cc { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: #fff; color: var(--blue); transition: transform .32s cubic-bezier(.2,.8,.2,1); }
.foot-cta .cc svg { width: 14px; height: 14px; }
.foot-cta:hover .cc { transform: translateX(3px); }
.footer-bottom { max-width: var(--maxw); margin: 26px auto 0; padding-top: 17px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 12px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer h4 { margin-bottom: 10px; }
  .footer ul { gap: 7px; }
  .footer-badges { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { position: relative; overflow: hidden; padding: clamp(160px, 20vw, 220px) clamp(24px, 7vw, 96px) clamp(72px, 10vw, 116px); text-align: center; background: var(--grad-deep); }
/* cinematic video background for inner-page banners */
.page-hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .6; }
.page-hero-veil { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(5,14,48,0.7) 0%, rgba(6,18,58,0.45) 45%, rgba(5,14,48,0.85) 100%); }
.page-hero .eyebrow { position: relative; z-index: 1; }
.page-hero h1 { position: relative; z-index: 1; font-size: clamp(34px, 6.2vw, 68px); font-weight: 700; line-height: 1.05; letter-spacing: -1px; }
.page-hero h1 span { background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { position: relative; z-index: 1; margin: 22px auto 0; max-width: 650px; color: var(--text-soft); font-size: 17.5px; line-height: 1.6; }
.breadcrumb { position: relative; z-index: 1; margin-top: 24px; font-size: 13px; color: var(--text-dim); letter-spacing: .4px; }
.breadcrumb a { color: var(--mint); text-decoration: none; }

/* ============================================================
   ACCORDION
   ============================================================ */
.acc { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.acc-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; box-shadow: 0 1px 2px rgba(12,21,38,0.04); transition: border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.acc-item.open { border-color: rgba(0,70,255,0.35); background: var(--surface); box-shadow: var(--shadow); }
.acc-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--text); user-select: none; }
.acc-q .ic { flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; background: rgba(0,70,255,0.12); transition: transform .3s ease; }
.acc-q .ic svg { width: 15px; height: 15px; color: var(--blue); }
.acc-item.open .acc-q .ic { transform: rotate(45deg); background: rgba(46,107,255,0.16); }
.acc-item.open .acc-q .ic svg { color: var(--orange); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-a p { padding: 0 24px 22px; color: var(--text-soft); font-size: 15px; line-height: 1.7; }
.acc-item.open .acc-a { max-height: 320px; }

/* form note */
.form-note { font-size: 13.5px; color: var(--text-dim); margin-top: 4px; min-height: 18px; }
.form-note.ok { color: #7DE29A; }

/* ============================================================
   PRICING
   ============================================================ */
.plan { position: relative; display: flex; flex-direction: column; padding: 34px 30px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(12,21,38,0.04); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(0,70,255,0.30); }
.plan.featured { background: radial-gradient(520px 320px at 50% 0%, rgba(0,70,255,0.08), transparent 60%), var(--surface); border-color: rgba(0,70,255,0.40); box-shadow: var(--glow), var(--shadow); }
.plan-badge { position: absolute; top: 18px; right: 18px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #fff; background: var(--blue); padding: 5px 11px; border-radius: 999px; }
.plan h3 { font-size: 20px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.plan .plan-sub { font-size: 13.5px; color: var(--text-dim); margin-bottom: 20px; }
.plan .price { font-family: var(--font-head); letter-spacing: -0.02em; font-size: 36px; font-weight: 800; color: var(--text); }
.plan .price small { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 500; color: var(--text-dim); }
.plan-feat { list-style: none; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 12px; }
.plan-feat li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text-soft); }
.plan-feat li svg { flex: 0 0 auto; width: 19px; height: 19px; color: var(--blue); margin-top: 1px; }
.plan .btn { margin-top: auto; }

/* ============================================================
   COMPLIANCE CALLOUT + BADGE LINE
   ============================================================ */
.compliance { display: flex; gap: 22px; align-items: flex-start; max-width: 960px; margin: 0 auto; padding: 30px 32px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--blue); box-shadow: var(--shadow); }
.compliance-ic { flex: 0 0 auto; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 15px; color: var(--blue); background: linear-gradient(160deg, rgba(0,70,255,0.14), rgba(0,70,255,0.04)); border: 1px solid var(--line-2); }
.compliance-ic svg { width: 28px; height: 28px; }
.compliance-text { color: var(--text-soft); font-size: 15px; line-height: 1.72; }
.compliance-text b { color: var(--text); font-weight: 600; }
.badge-line { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--text); background: rgba(0,70,255,0.06); border: 1px solid var(--line-2); white-space: nowrap; }
.badge-chip svg { width: 14px; height: 14px; color: var(--blue); }
@media (max-width: 560px){ .compliance { flex-direction: column; gap: 16px; padding: 24px; } }

/* footer badge strip — attractive chips on the dark footer */
.footer-badges { max-width: var(--maxw); margin: 28px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.footer-badges .badge-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px; font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.92); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.13); transition: transform .2s ease, border-color .25s ease, background .25s ease; }
.footer-badges .badge-chip:hover { transform: translateY(-2px); border-color: rgba(0,70,255,0.5); background: rgba(0,70,255,0.12); }
.footer-badges .badge-chip svg { width: 15px; height: 15px; color: var(--orange); }

/* ============================================================
   TRUST BADGE PANEL (certified / trusted)
   ============================================================ */
.trust-badge { position: relative; max-width: var(--maxw); margin: 0 auto; border-radius: 24px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: 0 34px 80px rgba(12,21,38,0.18); }
.tb-top { position: relative; display: flex; align-items: center; min-height: 400px; background: #091324; overflow: hidden; }
.tb-photo { position: absolute; right: 0; top: 0; height: 100%; width: 64%; object-fit: cover; z-index: 0; }
.tb-photo-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, #091324 30%, rgba(9,19,36,0.86) 46%, rgba(9,19,36,0.25) 74%, rgba(9,19,36,0.05) 100%); }
.tb-copy { position: relative; z-index: 2; padding: clamp(30px, 5vw, 56px); max-width: 560px; color: #fff; }
.tb-logo { height: 42px; width: auto; margin-bottom: 22px; display: block; }
.tb-copy h2 { font-family: var(--font-head); font-size: clamp(30px, 4.2vw, 48px); font-weight: 700; line-height: 1.03; letter-spacing: -.02em; margin-bottom: 18px; }
.tb-copy h2 span { color: #4d84ff; }
.tb-copy p { font-size: 14px; line-height: 1.62; color: rgba(255,255,255,0.82); margin-bottom: 12px; max-width: 460px; }
.tb-copy p:last-child { margin-bottom: 0; }

/* credential strip */
.tb-strip { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 34px clamp(24px, 4vw, 44px); background: linear-gradient(180deg, #fff, var(--bg-2)); }
.tb-cred { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 11px; padding: 6px; }
.tb-cred-ic { display: grid; place-items: center; width: 54px; height: 54px; color: var(--blue); }
.tb-cred-ic svg { width: 40px; height: 40px; }
.tb-cred b { font-size: 14.5px; font-weight: 700; color: var(--text); line-height: 1.25; letter-spacing: -.01em; }

/* rotating certified seal */
.tb-seal { position: absolute; z-index: 4; right: clamp(18px, 4vw, 48px); bottom: -54px; width: clamp(118px, 15vw, 166px); height: clamp(118px, 15vw, 166px); filter: drop-shadow(0 14px 28px rgba(0,0,0,0.28)); }
.tb-seal svg { width: 100%; height: 100%; display: block; }
.seal-rot { transform-origin: 100px 100px; animation: sealSpin 26s linear infinite; }
.seal-txt { fill: #0b1a3a; font-family: var(--font-head), sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2.4px; }
@keyframes sealSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .seal-rot { animation: none; } }

.tb-cred.reveal { transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1); }

@media (max-width: 860px) {
  .tb-top { flex-direction: column; align-items: stretch; min-height: 0; }
  .tb-photo { position: relative; width: 100%; height: 200px; }
  .tb-photo-veil { background: linear-gradient(180deg, transparent 40%, rgba(9,19,36,0.85) 100%); }
  .tb-copy { max-width: none; }
  .tb-seal { right: 50%; bottom: auto; top: 168px; transform: translateX(50%); width: 104px; height: 104px; }
}
@media (max-width: 560px) { .tb-strip { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; padding-top: 44px; } }

/* ============================================================
   RESPONSIVE COLLAPSES
   ============================================================ */
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; max-width: 460px; } .stats { grid-template-columns: repeat(2, 1fr); } }


/* ============================================================
   APPLE × LINEAR THEME LAYER (site-wide, v28)
   Light · airy · glass · restrained. Overrides the rules above.
   Dark sections (.sec-dark / .sec-video / .prob-section) are kept
   as intentional accents.
   ============================================================ */
:root {
  --bg:      #F6F8FC;   /* soft cool-white canvas */
  --bg-2:    #EDF1F8;   /* alternating band */
  --line:    rgba(12,21,38,0.08);
  --line-2:  rgba(12,21,38,0.14);
  --radius-lg: 24px;
  --shadow: 0 30px 66px -30px rgba(12,21,38,0.28);
  --ax-sh-sm: 0 1px 2px rgba(12,21,38,0.04);
  --ax-sh:    0 1px 2px rgba(12,21,38,0.04), 0 24px 48px -28px rgba(12,21,38,0.24);
}
body { background: var(--bg); -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body::before {
  background:
    radial-gradient(1000px 560px at 50% -12%, rgba(0,70,255,0.075), transparent 60%),
    radial-gradient(900px 520px at 100% 6%, rgba(120,150,255,0.06), transparent 60%); }

/* generous, spacious rhythm */
.section { padding: clamp(58px, 6.5vw, 106px) clamp(24px, 7vw, 96px); }
.section-head { margin: 0 auto 46px; }
.section-head h2, .split h2, .page-hero h1, .cta-strip h2, .hero h1 { letter-spacing: -0.03em; }
.section-head p { color: var(--text-soft); }
.eyebrow { letter-spacing: 2.4px; font-weight: 700; color: var(--blue); }

/* refined buttons */
.btn { border-radius: 12px; font-weight: 600; letter-spacing: -0.01em; }
.btn-primary { box-shadow: 0 10px 26px -8px rgba(0,70,255,0.5); }
.btn-primary:hover { box-shadow: 0 16px 34px -8px rgba(0,70,255,0.55); }

/* Apple × Linear cards: hairline border, layered soft shadow, calm lift */
.card { border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--ax-sh); }
.card:hover {
  transform: translateY(-6px);
  background: var(--surface);
  border-color: rgba(0,70,255,0.22);
  box-shadow: var(--ax-sh-sm), 0 40px 72px -34px rgba(0,70,255,0.34);
}
/* drop the CCTV grid + viewfinder-bracket hover gimmick on light cards */
.card:hover::before, .card:hover::after { opacity: 0 !important; }
.card:hover h3, .card:hover .blog-body h3 { color: var(--text); }
.card:hover p, .card:hover .blog-body p { color: var(--text-soft); }
.card:hover .blog-meta { color: var(--text-dim); }
.card:hover .blog-link, .card:hover .blog-link svg { color: var(--blue); }
.card:hover .blog-tag { color: var(--blue); background: rgba(0,70,255,0.08); }
.card:hover .card-icon { color: var(--blue); border-color: rgba(0,70,255,0.22);
  background: linear-gradient(160deg, rgba(0,70,255,0.14), rgba(0,70,255,0.05)); }
.card-icon { border-radius: 14px; }

/* keep dark-context cards (video / dark accent sections) legible + their accent hover */
.section:has(> .sec-video) .card h3, .sec-dark .card h3 { color: #fff; }
.section:has(> .sec-video) .card p, .sec-dark .card p { color: rgba(255,255,255,0.82); }
.section:has(> .sec-video) .card:hover h3, .sec-dark .card:hover h3 { color: #fff; }
.section:has(> .sec-video) .card:hover p, .sec-dark .card:hover p { color: rgba(255,255,255,0.92); }
.section:has(> .sec-video) .card:hover .card-icon, .sec-dark .card:hover .card-icon {
  color: #fff; border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.16); }

/* refined stat tiles */
.stat { border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--ax-sh); }
.stat:hover { transform: translateY(-5px); border-color: rgba(0,70,255,0.22);
  box-shadow: var(--ax-sh-sm), 0 36px 64px -34px rgba(0,70,255,0.32); }

/* softer scrollbar to match the canvas */
::-webkit-scrollbar-track { background: #EDF1F8; }
::-webkit-scrollbar-thumb { background: #C7D0DE; border: 3px solid #EDF1F8; }

/* featured "glow-border" card: no blue fill on hover (keep it a clean light card) */
.card.glow-border:hover { background: var(--surface); }
.card.glow-border:hover h3 { color: var(--text); }
.card.glow-border:hover p { color: var(--text-soft); }
.card.glow-border:hover .card-icon { color: var(--blue); border-color: rgba(0,70,255,0.22);
  background: linear-gradient(160deg, rgba(0,70,255,0.14), rgba(0,70,255,0.05)); }
/* keep its gradient hairline visible on hover as the subtle "featured" tell */
.card.glow-border:hover::after { opacity: .55 !important; }

/* ============================================================
   AROOTH LIGHT DIRECTION (site-wide) — blue / white / black, Sora
   No orange anywhere; pill buttons; light page heroes.
   ============================================================ */
:root {
  --orange:      #2E6BFF;
  --orange-deep: #0033CC;
  --cyan:   #0046FF; --violet: #0046FF; --amber: #0046FF; --mint: #0046FF;
  --grad-primary: linear-gradient(105deg, #2E6BFF, #0046FF 52%, #5A8CFF);
  --grad-violet:  linear-gradient(110deg, #5A8CFF, #0046FF);
}
/* neutralise any remaining hard-coded orange blobs */
.orb-b { background: rgba(90,140,255,0.34) !important; }
.feat-alarm { --acc: #2E6BFF !important; --acc2: #5A8CFF !important; }
.prob-card.c4 { --acc: #2E6BFF !important; --acc2: #5A8CFF !important; }

/* Arooth pill buttons */
.btn { border-radius: 999px; font-weight: 600; }

/* ---- light page heroes (about / locations / industries / contact / blogs) ---- */
.page-hero {
  --text: #0A1220; --text-soft: #4C566B; --text-dim: #7A8398;
  --line: rgba(12,21,38,0.09); --line-2: rgba(12,21,38,0.14);
  --surface: #ffffff; --surface-2: #F1F2F5;
  background: radial-gradient(120% 110% at 80% -12%, #e8efff 0%, #f3f8ff 44%, #ffffff 78%);
  padding: clamp(150px, 18vw, 210px) clamp(24px, 7vw, 96px) clamp(64px, 9vw, 100px);
}
.page-hero-video, .page-hero-veil { display: none !important; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: 0; opacity: .55; pointer-events: none;
  background-image: linear-gradient(rgba(0,70,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0,70,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px; -webkit-mask-image: radial-gradient(120% 92% at 70% 8%, #000, transparent 78%); mask-image: radial-gradient(120% 92% at 70% 8%, #000, transparent 78%); }
.page-hero .eyebrow { color: #0046FF; }
.page-hero h1 { font-family: 'Sora', sans-serif; font-weight: 800; letter-spacing: -2px;
  background: none !important; -webkit-text-fill-color: #0A1220; color: #0A1220 !important; }
.page-hero h1 span { background: linear-gradient(100deg, #2E6BFF, #0046FF 55%, #5A8CFF); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.page-hero p { color: #4C566B; }
.breadcrumb { color: #7A8398; }
.breadcrumb a { color: #0046FF; }
/* dim the ambient orbs on light heroes so they read as soft glow */
.page-hero .orb { opacity: .28; }

/* ============================================================
   SVX VIDEO HERO — Full-viewport cinematic video (inner pages)
   Used by: services, about, blogs, locations, industries
   ============================================================ */
.svx-hero-wrap { position:relative; min-height:100vh; display:flex; flex-direction:column; align-items:stretch; justify-content:center; overflow:hidden; isolation:isolate; }
.svx-hero-vbg { position:absolute; inset:0; z-index:0; }
.svx-hero-vid { width:100%; height:100%; object-fit:cover; display:block; animation:svxVidIn 2.2s cubic-bezier(.2,.8,.2,1) forwards; transform-origin:center; }
@keyframes svxVidIn { from{transform:scale(1.14);opacity:0;} 40%{opacity:1;} to{transform:scale(1);opacity:1;} }
.svx-hero-overlay { position:absolute; inset:0; background:linear-gradient(160deg,rgba(3,9,40,0.84) 0%,rgba(0,26,90,0.56) 48%,rgba(2,7,30,0.80) 100%); }
.svx-hero-particles { position:absolute; inset:0; pointer-events:none; }
.svx-hero-particles span { position:absolute; border-radius:50%; background:rgba(90,150,255,0.38); animation:svxPFloat 12s ease-in-out infinite; }
.svx-hero-particles span:nth-child(1){width:6px;height:6px;top:18%;left:12%;animation-duration:14s;}
.svx-hero-particles span:nth-child(2){width:4px;height:4px;top:72%;left:22%;animation-delay:2s;animation-duration:18s;}
.svx-hero-particles span:nth-child(3){width:8px;height:8px;top:38%;left:78%;animation-delay:4s;animation-duration:16s;}
.svx-hero-particles span:nth-child(4){width:5px;height:5px;top:82%;left:68%;animation-delay:1s;animation-duration:20s;}
.svx-hero-particles span:nth-child(5){width:7px;height:7px;top:24%;left:54%;animation-delay:3s;animation-duration:15s;}
.svx-hero-particles span:nth-child(6){width:4px;height:4px;top:58%;left:90%;animation-delay:5s;animation-duration:13s;}
.svx-hero-particles span:nth-child(7){width:6px;height:6px;top:8%;left:88%;animation-delay:7s;animation-duration:17s;}
.svx-hero-particles span:nth-child(8){width:5px;height:5px;top:90%;left:44%;animation-delay:2.5s;animation-duration:19s;}
@keyframes svxPFloat{0%,100%{transform:translateY(0) scale(1);opacity:.3;}50%{transform:translateY(-22px) scale(1.4);opacity:.72;}}
/* hero inner content */
.svx-hero-inner { position:relative; z-index:1; max-width:1200px; margin:0 auto; padding:clamp(130px,16vh,190px) clamp(24px,7vw,96px) clamp(70px,8vw,110px); text-align:center; }
.svx-hero-inner .svx-eyebrow-pill { display:inline-flex; align-items:center; gap:9px; margin-bottom:0; color:rgba(255,255,255,0.92); background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.22); border-radius:999px; backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); padding:7px 15px; font-size:12px; font-weight:700; letter-spacing:2.4px; text-transform:uppercase; }
.svx-hero-inner .svx-eyebrow-pill i { width:6px; height:6px; border-radius:50%; background:#fff; box-shadow:0 0 0 4px rgba(255,255,255,0.2); flex-shrink:0; }
.svx-hero-inner h1 { font-family:var(--font-head); font-weight:700; font-size:clamp(38px,6vw,74px); line-height:1.02; letter-spacing:-2.6px; color:#fff; margin:22px auto 0; max-width:16ch; background:none !important; -webkit-text-fill-color:#fff !important; }
.svx-hero-inner h1 em { font-style:normal; color:#7AADFF; -webkit-text-fill-color:#7AADFF !important; }
.svx-hero-inner p.svx-hero-sub { margin:22px auto 0; font-size:17.5px; line-height:1.6; color:rgba(255,255,255,0.78); max-width:620px; }
.svx-hero-inner .svx-hero-ctas { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:32px; }
.svx-hero-inner .svx-hero-bread { margin-top:26px; font-size:13px; color:rgba(255,255,255,0.46); letter-spacing:.4px; }
.svx-hero-inner .svx-hero-bread a { color:rgba(120,175,255,0.8); text-decoration:none; transition:color .2s ease; }
.svx-hero-inner .svx-hero-bread a:hover { color:#fff; }
/* stagger animations (shared) */
.svx-he-1 { animation:svxHeroUp 0.85s 0.55s cubic-bezier(.2,.8,.2,1) both; }
.svx-he-2 { animation:svxHeroUp 0.9s 0.75s cubic-bezier(.2,.8,.2,1) both; }
.svx-he-3 { animation:svxHeroUp 0.9s 0.95s cubic-bezier(.2,.8,.2,1) both; }
.svx-he-4 { animation:svxHeroUp 0.9s 1.15s cubic-bezier(.2,.8,.2,1) both; }
.svx-he-5 { animation:svxHeroUp 1s 1.5s cubic-bezier(.2,.8,.2,1) both; }
@keyframes svxHeroUp { from{opacity:0;transform:translateY(32px);} to{opacity:1;transform:translateY(0);} }
/* scroll indicator */
.svx-hero-scroll { position:absolute; bottom:36px; left:50%; transform:translateX(-50%); z-index:2; display:flex; flex-direction:column; align-items:center; gap:10px; }
.svx-hero-scroll span { font-family:var(--font-head); font-size:10px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,0.44); }
.svx-hero-scroll-line { width:1px; height:44px; background:linear-gradient(to bottom,rgba(255,255,255,0.55),transparent); animation:svxScrollPulse 2.2s ease-in-out 2s infinite; transform-origin:top; }
@keyframes svxScrollPulse { 0%,100%{opacity:.4;transform:scaleY(1);} 50%{opacity:1;transform:scaleY(.55);} }
/* glass button variant for dark heroes */
.btn-glass { color:#fff !important; background:rgba(255,255,255,0.1) !important; border:1px solid rgba(255,255,255,0.32) !important; backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); }
.btn-glass:hover { transform:translateY(-3px) !important; background:rgba(255,255,255,0.2) !important; border-color:rgba(255,255,255,0.55) !important; }

/* ============================================================
   SERVICES MEGA — hover-gap fix
   Measured: the mega panel sits 25px below its trigger with no
   bridge, so moving the cursor down to an item dropped :hover
   and the panel closed. The generic li::after bridge is excluded
   for the mega (it would span the full nav width and open the
   mega from anywhere). This bridge lives on the trigger <a>
   instead, so it only spans the trigger's own width — exactly
   the 25px column the cursor travels through.
   ============================================================ */
@media (min-width: 981px) {
  .has-dd:has(.dd-mega) > a { position: relative; }
  .has-dd:has(.dd-mega) > a::before {
    content: ""; position: absolute; top: 100%; left: 0; right: 0;
    height: 30px; display: block;
  }
}
