/* =============================================================
   SECURITY SMART — navy / cyan / orange design system
   Inter (body) + Manrope (display) on a clean white canvas
   ============================================================= */

:root {
  --navy-950: #061226;
  --navy-900: #0a1830;
  --navy-800: #10213f;
  --navy-700: #112a63;
  --blue-700:  #1d4ed8;
  --blue-600:  #2563eb;
  --blue-500:  #3b82f6;
  --blue-50:   #eef4ff;
  --cyan-400:  #22d3ee;
  --cyan-300:  #67e8f9;
  --cyan-50:   #ecfeff;
  --orange-500:#f97316;
  --orange-400:#fb923c;
  --green-400: #34d399;
  --green-100: #bbf7d0;
  --ink:       #111827;
  --ink-2:     #1f2937;
  --muted:     #667085;
  --muted-2:   #93a4c7;
  --line:      #e6eaf0;
  --line-soft: #eef0f5;
  --surface:   #ffffff;
  --surface-2: #f6f8fb;
  --shadow:     0 24px 70px rgba(6, 18, 38, .16);
  --shadow-sm:  0 10px 35px rgba(17, 24, 39, .04);
  --shadow-md:  0 22px 70px rgba(17, 24, 39, .10);
  --shadow-blue:0 14px 28px rgba(37, 99, 235, .24);
  --shadow-orange:0 14px 28px rgba(249, 115, 22, .24);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1200px;
  --ease: cubic-bezier(.2, .65, .2, 1);

  --font-display: "Manrope", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:    "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* -------------------------------------------------------------
   Reset / base
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--navy-950);
  letter-spacing: -.035em;
  line-height: 1.08;
}
h1 {
  font-size: clamp(2.55rem, 5.2vw, 5.4rem);
  letter-spacing: -.055em;
  line-height: .98;
  font-weight: 800;
}
h2 {
  font-size: clamp(2rem, 3.3vw, 3.3rem);
  letter-spacing: -.045em;
  font-weight: 800;
}
h3 {
  font-size: 1.17rem;
  letter-spacing: -.025em;
  font-weight: 700;
}
p { margin: 0 0 1em; }
.lede {
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  color: var(--muted);
  max-width: 60ch;
}

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

/* -------------------------------------------------------------
   Topbar / nav
   ------------------------------------------------------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(230, 234, 240, .8);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--navy-950);
  font-size: 1.1rem;
  white-space: nowrap;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #39445b;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links a { position: relative; padding: 6px 0; transition: color .18s ease; }
.nav-links a:hover { color: var(--blue-700); }
.nav-links a.is-active { color: var(--navy-950); }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-link {
  font-weight: 700;
  color: var(--navy-950);
  font-size: .93rem;
  white-space: nowrap;
}
.phone-link:hover { color: var(--blue-700); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.nav-toggle svg { width: 20px; height: 20px; color: var(--navy-950); }

@media (max-width: 980px) {
  .nav-links, .phone-link { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn-cta { display: none; }
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-950);
  color: #fff;
  z-index: 40;
  flex-direction: column;
  padding: 5rem 28px 2rem;
  gap: .6rem;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: -.03em;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: #fff;
}
.mobile-nav .meta {
  margin-top: 1.4rem;
  display: flex; flex-direction: column; gap: .4rem;
  font-size: .95rem;
  color: #c7d2fe;
}

/* -------------------------------------------------------------
   Buttons
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .93rem;
  letter-spacing: -.005em;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { box-shadow: 0 18px 38px rgba(249, 115, 22, .32); }

.btn-blue {
  background: var(--blue-600);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover { background: var(--blue-700); box-shadow: 0 18px 38px rgba(37, 99, 235, .32); }

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); }

.btn-outline {
  background: #fff;
  color: var(--navy-950);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--navy-950); }

.btn .icon { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover .icon { transform: translateX(3px); }

/* -------------------------------------------------------------
   Hero
   ------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(34, 211, 238, .22), transparent 28%),
    radial-gradient(circle at 22% 16%, rgba(59, 130, 246, .34), transparent 34%),
    linear-gradient(135deg, rgba(6, 18, 38, .9), rgba(11, 33, 70, .9) 55%, rgba(6, 18, 38, .9)),
    url('https://images.pexels.com/photos/7364948/pexels-photo-7364948.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 70% 35%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 70% 35%, #000, transparent 70%);
  opacity: .75;
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  grid-template-areas:
    "text  visual"
    "proof visual";
  column-gap: 54px;
  row-gap: 22px;
  padding: 42px 0 36px;
}
.hero-text    { grid-area: text;   align-self: end; }
.visual-shell { grid-area: visual; align-self: center; }
.hero-proof   { grid-area: proof;  align-self: start; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #dbeafe;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 5px rgba(34,211,238,.16);
  animation: livepulse 2s ease-in-out infinite;
}
@keyframes livepulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(34,211,238,.16); }
  50%      { box-shadow: 0 0 0 10px rgba(34,211,238,.0); }
}

.hero h1 { color: #fff; margin: 14px 0 12px; max-width: 780px; font-size: clamp(2.3rem, 4.6vw, 4.7rem); }
.hero h1 .accent { color: var(--cyan-300); }
.hero-copy {
  margin: 0;
  color: #c7d2fe;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  max-width: 620px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.proof-card {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  padding: 16px;
  backdrop-filter: blur(8px);
}
.proof-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -.03em;
  font-weight: 800;
}
.proof-card span {
  display: block;
  color: #c7d2fe;
  font-size: .86rem;
  margin-top: 3px;
}

/* Hero visual — monitoring dashboard + camera card */
.visual-shell {
  position: relative;
  min-height: 360px;
}
.dashboard {
  position: absolute;
  inset: 24px 0 auto 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(16px);
}
.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.dash-top strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, .14);
  color: var(--green-100);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.status-pill i {
  width: 7px; height: 7px;
  border-radius: 99px;
  background: var(--green-400);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, .25);
  animation: livepulse 2s ease-in-out infinite;
}

.feed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feed {
  min-height: 142px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  position: relative;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .38), rgba(6, 18, 38, .65)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.055) 0 1px, transparent 1px 12px);
}
.feed:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .85), rgba(34, 211, 238, .26)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 13px);
}
.feed:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .75), rgba(249, 115, 22, .28)),
    repeating-linear-gradient(-35deg, rgba(255,255,255,.04) 0 1px, transparent 1px 14px);
}
.feed:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .85), rgba(37, 99, 235, .26)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 18px);
}
.feed .label {
  position: absolute;
  left: 12px; top: 10px;
  font-family: var(--font-display);
  font-size: .68rem;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.feed .rec {
  position: absolute;
  right: 12px; top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .62rem;
  letter-spacing: .14em;
  color: #fecaca;
  text-transform: uppercase;
  font-weight: 800;
}
.feed .rec::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .35);
  animation: livepulse 1.6s ease-in-out infinite;
}
.feed .ts {
  position: absolute;
  left: 12px; bottom: 8px;
  font-size: .62rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.7);
  font-variant-numeric: tabular-nums;
}
.feed svg.scene {
  position: absolute;
  inset: 26px 10px 22px;
  width: calc(100% - 20px);
  height: calc(100% - 48px);
  color: rgba(255,255,255,.55);
}

.camera-card {
  position: absolute;
  right: 0;
  bottom: 22px;
  width: min(390px, 76%);
  border-radius: var(--radius-xl);
  background: #fff;
  color: var(--navy-950);
  box-shadow: 0 28px 80px rgba(0,0,0,.30);
  padding: 26px;
  overflow: hidden;
}
.camera-card::before {
  content: "";
  position: absolute;
  inset: -50px -80px auto auto;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(34, 211, 238, .20);
}
.camera-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  margin-bottom: 16px;
}
.camera-title b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}
.camera-title span { color: var(--muted); font-size: .85rem; }
.camera-svg {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.camera-svg > img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.camera-svg::after {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border: 1px dashed rgba(37, 99, 235, .22);
  border-radius: 50%;
  right: -80px; top: -70px;
}
.spec-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.spec {
  padding: 12px;
  border-radius: 14px;
  background: var(--surface-2);
}
.spec b {
  display: block;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
}
.spec span { color: var(--muted); font-size: .72rem; }

/* -------------------------------------------------------------
   Sections
   ------------------------------------------------------------- */
section { padding: 92px 0; }
.section-tight { padding: 50px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
.section-head p {
  color: var(--muted);
  max-width: 520px;
  margin: 0;
  font-size: 1.02rem;
}
.kicker {
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.kicker.cyan { color: var(--cyan-300); }

/* Trust band */
.trust-band {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .94rem;
}
.trust-icon {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-700);
  flex: 0 0 auto;
}
.trust-icon svg { width: 18px; height: 18px; }

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cdd6e4;
}
.icon-box {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--blue-50);
  color: var(--blue-700);
  margin-bottom: 22px;
  transition: background .25s ease;
}
.icon-box svg { width: 24px; height: 24px; }
.card:hover .icon-box { background: var(--blue-600); color: #fff; }

.card-copy { margin: 0; color: var(--muted); font-size: .95rem; }

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--blue-700);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .88rem;
  transition: gap .25s var(--ease);
}
.feature-link:hover { gap: 12px; }
.feature-link svg { width: 14px; height: 14px; }

/* Catalog brand partners — scrolling marquee strip */
.brand-marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  margin-top: 8px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.brand-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: brand-scroll 38s linear infinite;
  will-change: transform;
}
.brand-marquee:hover .brand-marquee-track { animation-play-state: paused; }
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.02em;
  color: var(--navy-950);
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.brand-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cdd6e4;
}
.brand-chip .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.brand-chip:nth-child(3n)   .dot { background: var(--cyan-400); }
.brand-chip:nth-child(3n+1) .dot { background: var(--orange-500); }
.brand-chip:nth-child(3n+2) .dot { background: var(--blue-600); }

.brand-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
}
.brand-meta i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, .24);
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track { animation: none; }
}

/* Catalog spotlight panel — full-width navy panel, 2-col inner */
.spotlight-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  padding: clamp(32px, 4vw, 48px);
}
.spotlight-panel .spotlight-text { position: relative; z-index: 1; }
.spotlight-panel .spotlight-checks {
  margin-top: 0;
  position: relative;
  z-index: 1;
}

/* ============================================================
   SERVICES PAGE — typographic hero + alternating service rows
   ============================================================ */
.services-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 211, 238, .18), transparent 50%),
    linear-gradient(135deg, var(--navy-950), #0b2146 55%, var(--navy-950));
  padding: 58px 0 52px;
  text-align: center;
}
.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 70%);
  opacity: .55;
  pointer-events: none;
}
.services-hero > .container { position: relative; z-index: 1; }
.services-hero .kicker {
  margin: 0 auto 10px;
  color: var(--cyan-300);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  letter-spacing: .14em;
}
.services-hero .kicker .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan-300);
  box-shadow: 0 0 0 4px rgba(34,211,238,.15);
}
.services-hero h1 {
  color: #fff;
  margin: 0 auto 14px;
  font-size: clamp(2.05rem, 4vw, 3.4rem);
  letter-spacing: -.04em;
  line-height: 1.05;
  max-width: 20ch;
}
.services-hero h1 .accent { color: var(--cyan-300); }
.services-hero p {
  color: #c7d2fe;
  max-width: 56ch;
  margin: 0 auto 20px;
  font-size: clamp(.96rem, 1.15vw, 1.06rem);
}
.services-hero .hero-actions { justify-content: center; }

.service-pills {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 24px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}
.service-pills span {
  padding: 8px 14px;
  border-radius: 999px;
  color: #c7d2fe;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-pills span svg { width: 14px; height: 14px; color: var(--cyan-300); }
.service-pills span.is-active {
  background: rgba(34, 211, 238, .14);
  color: #fff;
}

/* Alternating service rows */
.service-row { padding: 44px 0; border-bottom: 1px solid var(--line); }
.service-row.is-alt { background: var(--surface-2); }
.service-row:last-of-type { border-bottom: 0; }
.service-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.service-row.is-flipped .service-visual { order: 2; }

.service-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  background: var(--navy-950);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.service-row:hover .service-visual > img { transform: scale(1.03); }
.service-visual::after {
  /* subtle bottom gradient so the icon badge has contrast */
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(6, 18, 38, .55), transparent);
  pointer-events: none;
  z-index: 1;
}
.service-visual .visual-tag {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(6px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy-900);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
  z-index: 3;
}
.service-visual .visual-tag i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange-500);
}
.service-visual .visual-disc {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 36px rgba(37, 99, 235, .42);
  z-index: 2;
}
.service-visual .visual-disc svg { width: 28px; height: 28px; stroke-width: 1.7; }

.service-row-body .service-number {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--orange-500);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.service-row-body .service-number::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--orange-500);
}
.service-row-body h2 {
  font-size: clamp(1.45rem, 2.1vw, 1.8rem);
  margin-bottom: 10px;
  letter-spacing: -.025em;
}
.service-row-body > p {
  font-size: clamp(.9rem, 1vw, .98rem);
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 16px;
  line-height: 1.55;
}
.service-row-body .row-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 7px;
}
.service-row-body .row-includes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-2);
  font-size: .9rem;
  line-height: 1.45;
}
.service-row-body .row-includes .tick {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-700);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 1px;
}
.service-row-body .row-includes .tick svg { width: 11px; height: 11px; }

/* Compact button used inside service rows */
.service-row-body .btn {
  min-height: 40px;
  padding: 0 16px;
  font-size: .82rem;
}

/* Bottom CTA strip — simpler than the multi-section .cta-card */
.services-end {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
  padding: 56px 0;
}
.services-end::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(34, 211, 238, .18), transparent 50%),
    radial-gradient(circle at 20% 100%, rgba(249, 115, 22, .14), transparent 50%);
  pointer-events: none;
}
.services-end .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.services-end h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 0;
  max-width: 24ch;
}
.services-end h2 .accent { color: var(--cyan-300); }
.services-end .end-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .service-row { padding: 60px 0; }
  .service-row-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-row.is-flipped .service-visual { order: 0; }
  .services-end .container { flex-direction: column; align-items: flex-start; }
}

/* Tag chip */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tag.orange { background: #fff1e7; color: var(--orange-500); }
.tag.cyan   { background: var(--cyan-50);  color: #0e7490; }

/* Split section */
.split { background: var(--surface-2); }
.split-wrap {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 44px;
  align-items: center;
}
.panel {
  border-radius: var(--radius-xl);
  background: var(--navy-950);
  color: #fff;
  padding: 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.panel::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto auto;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(34, 211, 238, .24), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.panel h2 { color: #fff; }
.panel p { color: #c7d2fe; margin: 16px 0 0; }
.check-list {
  display: grid;
  gap: 13px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #e5edff;
  font-size: .98rem;
}
.check-list li .check {
  width: 24px; height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(34, 211, 238, .16);
  color: var(--cyan-400);
  flex: 0 0 auto;
}
.check-list li .check svg { width: 14px; height: 14px; }
.panel .hero-actions { margin-top: 28px; }

/* Product grid (used on home + catalog) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 10px;
}
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.product-card .product-art {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  border: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.product-card .product-art svg { width: 70%; height: 70%; color: var(--navy-800); }
.product-card .product-art::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border: 1px dashed rgba(37, 99, 235, .22);
  border-radius: 50%;
  right: -70px; top: -60px;
}
.product-card .product-specs {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  color: var(--muted);
  font-size: .82rem;
}
.product-card .product-specs li {
  display: flex; align-items: center; gap: 6px;
}
.product-card .product-specs li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--blue-500);
  border-radius: 50%;
  flex: 0 0 auto;
}
.product-card .product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.product-card .product-id {
  font-family: ui-monospace, "SFMono-Regular", monospace;
  font-size: .76rem;
  color: var(--muted-2);
  letter-spacing: .04em;
}

/* Filter row */
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-row button {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy-900);
  transition: all .2s ease;
}
.filter-row button:hover {
  border-color: var(--navy-950);
}
.filter-row button.is-active {
  background: var(--navy-950);
  color: #fff;
  border-color: var(--navy-950);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.process-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  min-height: 210px;
}
.process-card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy-950);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 22px;
}
.process-card:hover::before { background: var(--blue-600); }

/* Industries */
.industries { padding: 0; background: #fff; }
.industry-wrap {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--blue-50), #f8fafc);
  padding: 48px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: center;
  border: 1px solid var(--line);
}
.industry-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(17, 24, 39, .04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.industry-tags span:hover { transform: translateY(-1px); box-shadow: 0 16px 32px rgba(17, 24, 39, .08); }
.industry-tags svg { width: 16px; height: 16px; color: var(--blue-700); }

/* CTA */
.cta { padding: 0 0 92px; }
.cta-card {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 20%, rgba(34, 211, 238, .22), transparent 30%),
    linear-gradient(135deg, var(--blue-700), var(--navy-700) 62%, var(--navy-950));
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: 26px;
  padding: 48px;
  align-items: center;
}
.cta-card h2 { color: #fff; }
.cta-card p { color: #dbeafe; max-width: 560px; }
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 22px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}
.contact-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}
.contact-info svg { width: 14px; height: 14px; }

/* Inline form on CTA card */
.contact-box {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  padding: 24px;
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-box .field {
  min-height: 48px;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: .92rem;
  font-family: var(--font-body);
  width: 100%;
  resize: vertical;
}
.contact-box .field:focus {
  outline: 2px solid rgba(34, 211, 238, .55);
  outline-offset: 1px;
  background: rgba(255,255,255,.12);
}
.contact-box .field::placeholder { color: rgba(199, 210, 254, .7); }
.contact-box .field.full { grid-column: 1 / -1; min-height: 96px; }
.contact-box .form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-box .form-note {
  font-size: .78rem;
  color: rgba(199, 210, 254, .8);
}

/* Standalone contact form (Contact page) */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: start;
}
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-card label {
  display: block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy-900);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form-card input,
.form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  font: inherit;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border-color .2s ease, background .2s ease;
}
.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: #fff;
}
.form-card textarea { min-height: 150px; resize: vertical; }
.form-card .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-error {
  display: block;
  margin: -10px 0 12px;
  color: #b91c1c;
  font-size: .85rem;
}

.info-card {
  background: var(--navy-950);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 32px;
  display: grid;
  gap: 22px;
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: "";
  position: absolute;
  inset: -100px -60px auto auto;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(34, 211, 238, .24), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.info-card h3 { color: #fff; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 4px; }
.info-card .row { position: relative; }
.info-card .row a { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: #fff; }
.info-card .row a:hover { color: var(--cyan-300); }
.info-card .hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.info-card .hours li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  color: #c7d2fe;
  font-size: .92rem;
}

/* Flash banner */
.flash {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: var(--cyan-50);
  color: #0e7490;
  border: 1px solid #a5f3fc;
  font-family: var(--font-display);
  font-weight: 700;
}
.flash .check {
  width: 22px; height: 22px;
  background: var(--cyan-400);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.flash .check svg { width: 12px; height: 12px; }

/* Page hero (sub-pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(34, 211, 238, .22), transparent 28%),
    radial-gradient(circle at 22% 16%, rgba(59, 130, 246, .34), transparent 34%),
    linear-gradient(135deg, var(--navy-950), #0b2146 55%, var(--navy-950));
  padding: 70px 0 80px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 70% 35%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 70% 35%, #000, transparent 70%);
  opacity: .55;
  pointer-events: none;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  margin: 18px 0 14px;
  max-width: 20ch;
}
.page-hero .accent { color: var(--cyan-300); }
.page-hero p { color: #c7d2fe; max-width: 60ch; }
.page-hero .hero-actions { margin-top: 28px; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  position: relative;
}
.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #c7d2fe;
}
.crumbs a:hover { color: #fff; }
.crumbs .sep { color: rgba(199, 210, 254, .4); }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq details[open] {
  box-shadow: var(--shadow-sm);
  border-color: #cdd6e4;
}
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-950);
  font-size: 1.08rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-700);
  display: grid;
  place-items: center;
  font-weight: 800;
  transition: transform .3s var(--ease), background .25s ease;
}
.faq details[open] summary .plus {
  transform: rotate(45deg);
  background: var(--blue-600);
  color: #fff;
}
.faq .answer {
  margin-top: 12px;
  color: var(--muted);
  font-size: .98rem;
  max-width: 70ch;
}

/* About — story 2-col layout */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.story-grid .story-body {
  font-size: 1.06rem;
  line-height: 1.6;
}
.story-grid .story-body p { color: var(--muted); margin: 0 0 18px; }
.story-grid .story-body strong { color: var(--ink); font-weight: 700; }
@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* About — values grid with big numerals */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.value-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cdd6e4;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card .value-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -.05em;
  color: var(--orange-500);
  line-height: 1;
  margin-bottom: 14px;
}
.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.value-card p {
  color: var(--muted);
  margin: 0;
  font-size: .98rem;
  line-height: 1.55;
}

/* About — stat cards */
.stat-card {
  padding: 26px 28px;
}
.stat-card .stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  letter-spacing: -.045em;
  color: var(--navy-950);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-card .stat-num .accent { color: var(--orange-500); }
.stat-card p { font-size: .92rem; line-height: 1.5; }

/* Footer */
footer.site-footer {
  background: var(--navy-950);
  color: #c7d2fe;
  padding: 60px 0 28px;
  position: relative;
  overflow: hidden;
}
footer.site-footer::before {
  content: "";
  position: absolute;
  inset: -200px -100px auto auto;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(34, 211, 238, .12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr .9fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  position: relative;
}
footer.site-footer h4 {
  color: #fff;
  margin: 0 0 14px;
  font-size: .9rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 800;
}
footer.site-footer p, footer.site-footer a { color: #c7d2fe; margin: 0; font-size: .95rem; }
footer.site-footer a:not(.btn):not(.brand) { display: block; margin-top: 8px; transition: color .2s ease; }
footer.site-footer a:not(.btn):hover { color: var(--cyan-300); }
footer.site-footer .footer-brand p { margin-top: 14px; max-width: 38ch; }
footer.site-footer .footer-brand .brand { color: #fff; }
footer.site-footer .footer-cta { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  color: var(--muted-2);
  font-size: .9rem;
  position: relative;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .feed .rec::before, .status-pill i, .eyebrow .dot { animation: none !important; }
}

/* -------------------------------------------------------------
   Responsive
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .split-wrap, .industry-wrap, .cta-card, .page-hero-grid {
    grid-template-columns: 1fr;
  }
  /* Hero — stack as text → visual → proof (white kits card before 4K/NVR/24h) */
  .hero-wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "visual"
      "proof";
    row-gap: 24px;
  }
  /* Home hero — hide abstract dashboard, let camera card flow naturally */
  .visual-shell { min-height: auto; }
  .dashboard { display: none; }
  .camera-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }
  .trust-items { grid-template-columns: repeat(2, 1fr); }
  .section-head { flex-direction: column; align-items: start; }
  /* Centered hero on subpages */
  .services-hero { padding: 46px 0 42px; }
  .services-hero h1 { font-size: clamp(1.85rem, 5vw, 2.6rem); max-width: 22ch; }
  /* Service rows tighten */
  .service-row { padding: 38px 0; }
  .service-row-grid { gap: 26px; }
  /* Spotlight panel */
  .spotlight-panel { padding: 28px; gap: 24px; }
  /* End CTA */
  .services-end { padding: 40px 0; }
  .services-end h2 { font-size: 1.4rem; max-width: 100%; }
  .services-end .end-actions { width: auto; }
}
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .container { width: min(100% - 28px, var(--max)); }

  /* Home hero */
  .hero-wrap { gap: 20px; padding: 30px 0 32px; }
  .hero h1 { font-size: clamp(1.95rem, 7vw, 2.6rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-proof { grid-template-columns: 1fr; gap: 8px; }
  .camera-card { padding: 18px; }
  .camera-svg { padding: 14px; }
  .spec-row { grid-template-columns: 1fr; gap: 6px; }

  /* Centered hero (services / catalog / about / contact) */
  .services-hero { padding: 36px 0 36px; }
  .services-hero h1 { font-size: clamp(1.7rem, 8vw, 2.2rem); margin-bottom: 12px; }
  .services-hero p { font-size: .96rem; margin-bottom: 16px; }
  .services-hero .hero-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .services-hero .hero-actions .btn { flex: 0 1 auto; }
  .service-pills {
    margin-top: 18px;
    width: 100%;
    flex-direction: column;
    border-radius: 18px;
    gap: 6px;
  }
  .service-pills span { width: 100%; justify-content: center; padding: 10px 14px; }

  /* Service rows */
  .service-row { padding: 30px 0; }
  .service-row-grid { gap: 20px; }
  .service-row-body h2 { font-size: 1.5rem; }
  .service-row-body .btn { width: auto; }

  /* Grids collapse */
  .trust-items, .cards-grid, .cards-grid.cols-3, .product-grid, .product-grid.cols-3, .process-grid, .footer-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  .industry-wrap, .cta-card, .panel, .form-card, .info-card, .spotlight-panel { padding: 24px; }
  .contact-row, .form-card .field-row { grid-template-columns: 1fr; }
  .copyright { flex-direction: column; align-items: flex-start; }

  /* Section heads */
  .section-head { gap: 14px; margin-bottom: 24px; }
  h2 { font-size: clamp(1.6rem, 6vw, 2rem); }

  /* End CTA */
  .services-end { padding: 32px 0; text-align: left; }
  .services-end .container { flex-direction: column; align-items: stretch; gap: 18px; }
  .services-end h2 { font-size: 1.35rem; }
  .services-end .end-actions { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .services-end .end-actions .btn { flex: 1 1 auto; }

  /* Brand marquee chips smaller */
  .brand-chip { font-size: .95rem; padding: 11px 16px; }
  .brand-marquee-track { animation-duration: 28s; }

  /* Spotlight check-list slightly smaller */
  .spotlight-panel .check-list li { font-size: .94rem; }

  /* Value card text scales */
  .value-card { padding: 26px 22px; }
  .value-card .value-num { font-size: 2.4rem; }
  .value-card h3 { font-size: 1.3rem; }
}
