/* ─────────────────────────────────────────────
   DEVOLAR — Global Stylesheet
   Dark Industrial-Tech / Cyan Accent Theme
   ───────────────────────────────────────────── */

:root {
  --bg: #080c10;
  --bg2: #0d1219;
  --bg3: #111820;
  --surface: #141c26;
  --surface2: #1a2333;
  --border: #1e2d3d;
  --border2: #243347;
  --text: #e8edf3;
  --text2: #8fa4bc;
  --text3: #4f6880;
  --cyan: #00e5ff;
  --cyan-dim: #00b8cc;
  --cyan-glow: rgba(0, 229, 255, 0.12);
  --green: #00e676;
  --orange: #ff9100;
  --red: #ff3d57;
  --iot: #00e5ff;
  --voip: #8b5cf6;
  --alpr: #ff9100;
  --cctv: #00e676;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --glow: 0 0 40px rgba(0, 229, 255, 0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 999px; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 12, 16, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 0 30px rgba(0,229,255,0.06); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--cyan);
  color: var(--bg);
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.15em;
  color: var(--text);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin-left: 1.5rem;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text2);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: var(--surface);
}
.nav-links a.active { color: var(--cyan); }

.nav-cta {
  margin-left: auto;
  padding: 8px 20px;
  background: var(--cyan);
  color: var(--bg);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 120px 2rem 80px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.hero-grid-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--cyan);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.pulse-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan), #0090ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--text2);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cyan);
}
.stat-label { font-size: 11px; color: var(--text3); letter-spacing: 0.08em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--cyan);
  color: var(--bg);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,229,255,0.3);
}

.btn-ghost {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--border2);
  color: var(--text2);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-glow);
}

/* ── HERO VISUAL / DASHBOARD MOCKUP ── */
.hero-visual {
  position: relative;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 300px; height: 300px;
  background: rgba(0,229,255,0.08);
  top: -60px; right: -60px;
}
.orb-2 {
  width: 200px; height: 200px;
  background: rgba(0,144,255,0.06);
  bottom: 0; left: 0;
}

.dashboard-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), var(--glow);
  animation: floatUp 0.8s ease both;
}
@keyframes floatUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.mock-bar {
  background: var(--bg2);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red { background: #ff5f57; }
.mock-dot.yellow { background: #febc2e; }
.mock-dot.green { background: #28c840; }
.mock-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  margin-left: 6px;
}

.mock-body {
  display: flex;
  height: 320px;
}

.mock-sidebar {
  width: 130px;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  padding: 12px 0;
  flex-shrink: 0;
  font-size: 10px;
  font-family: var(--font-mono);
}
.mock-nav-item {
  padding: 7px 14px;
  color: var(--text3);
  cursor: default;
  letter-spacing: 0.04em;
}
.mock-nav-item.active-item {
  color: var(--cyan);
  background: var(--cyan-glow);
  border-right: 2px solid var(--cyan);
}

.mock-main {
  flex: 1;
  padding: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-kpi-row { display: flex; gap: 8px; }
.mock-kpi {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
}
.mock-kpi-val {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 3px;
}
.mock-kpi-val.cyan { color: var(--cyan); }
.mock-kpi-val.green { color: var(--green); }
.mock-kpi-val.orange { color: var(--orange); }
.mock-kpi-lab { font-size: 9px; color: var(--text3); }

.mock-chart {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: flex-end;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  width: 100%;
  height: 70px;
}
.bar {
  flex: 1;
  background: rgba(0,229,255,0.15);
  border-radius: 2px 2px 0 0;
  transition: background 0.3s;
}
.bar.active-bar { background: var(--cyan); }

.mock-event-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-event {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  padding: 5px 8px;
  background: var(--bg2);
  border-radius: 5px;
  border: 1px solid var(--border);
}
.ev-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ev-dot.cyan { background: var(--cyan); }
.ev-dot.green { background: var(--green); }
.ev-dot.orange { background: var(--orange); }
.ev-text { flex: 1; color: var(--text2); }
.ev-time { color: var(--text3); }

/* ── PILLARS STRIP ── */
.pillars-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.pillar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--text2);
}
.pillar-icon { color: var(--cyan); font-size: 10px; }
.pillar-sep { color: var(--border2); font-size: 20px; }

/* ── SECTION SHARED ── */
.section-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 3.5rem;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ── SERVICES ── */
.services {
  padding: 100px 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  animation: fadeUp 0.6s ease both;
}
.service-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.card-accent.iot { background: var(--iot); }
.card-accent.voip { background: var(--voip); }
.card-accent.alpr { background: var(--alpr); }
.card-accent.cctv { background: var(--cctv); }

.card-icon {
  width: 48px; height: 48px;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--text2);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.card-features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.card-features li {
  font-size: 13px;
  color: var(--text2);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.card-features li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--cyan);
}
.card-link {
  font-size: 13px;
  color: var(--cyan);
  font-family: var(--font-mono);
  transition: opacity 0.2s;
}
.card-link:hover { opacity: 0.7; }

/* ── WHY SECTION ── */
.why-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 2rem;
}
.why-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-body {
  color: var(--text2);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  padding-top: 3px;
  flex-shrink: 0;
}
.why-item strong { display: block; margin-bottom: 3px; font-size: 15px; }
.why-item p { font-size: 13px; color: var(--text2); }

/* INTEGRATION MAP */
.integration-map {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}
.int-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
}
.int-logo {
  width: 56px; height: 56px;
  background: var(--cyan);
  color: var(--bg);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  box-shadow: 0 0 40px rgba(0,229,255,0.4);
}
.int-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 0.08em;
}
.int-lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.int-node {
  position: absolute;
  width: 52px; height: 52px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text2);
  animation: orbitalPulse 3s ease-in-out infinite;
}
.int-node.n1 { top: 20px; left: 55px; }
.int-node.n2 { top: 20px; right: 15px; }
.int-node.n3 { top: 120px; left: 0; }
.int-node.n4 { top: 120px; right: 0; }
.int-node.n5 { bottom: 30px; left: 55px; }
.int-node.n6 { bottom: 30px; right: 55px; }

@keyframes orbitalPulse {
  0%, 100% { border-color: var(--border2); }
  50% { border-color: rgba(0,229,255,0.3); }
}

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, rgba(0,229,255,0.06) 0%, rgba(0,144,255,0.04) 100%);
  border-top: 1px solid rgba(0,229,255,0.1);
  border-bottom: 1px solid rgba(0,229,255,0.1);
  padding: 80px 2rem;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-inner p { color: var(--text2); margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 2rem 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  padding-bottom: 3rem;
  flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand p { color: var(--text2); font-size: 13px; margin-top: 1rem; max-width: 260px; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.footer-col a { font-size: 14px; color: var(--text2); transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text3);
  font-family: var(--font-mono);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 140px 2rem 80px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.page-hero-content {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
.page-sub { color: var(--text2); max-width: 500px; font-size: 1.05rem; }

/* ── PLATFORM TABS ── */
.platform-tabs {
  display: flex;
  gap: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  max-width: none;
  overflow-x: auto;
  position: sticky;
  top: 64px;
  z-index: 90;
}
.ptab {
  padding: 14px 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text2);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.ptab:hover { color: var(--text); }
.ptab.active-tab { color: var(--cyan); border-bottom-color: var(--cyan); }

/* ── PLATFORM SECTIONS ── */
.platform-section { padding: 100px 2rem; }
.platform-section.alt-bg { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.ps-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ps-inner.reverse { direction: rtl; }
.ps-inner.reverse > * { direction: ltr; }

.ps-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  border: 1px solid;
}
.iot-badge { color: var(--iot); border-color: rgba(0,229,255,0.3); background: rgba(0,229,255,0.06); }
.voip-badge { color: var(--voip); border-color: rgba(139,92,246,0.3); background: rgba(139,92,246,0.06); }
.alpr-badge { color: var(--alpr); border-color: rgba(255,145,0,0.3); background: rgba(255,145,0,0.06); }
.cctv-badge { color: var(--cctv); border-color: rgba(0,230,118,0.3); background: rgba(0,230,118,0.06); }

.ps-text h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.ps-text p { color: var(--text2); margin-bottom: 2rem; }

.spec-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 2rem; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.spec-item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.spec-item:last-child { border-bottom: none; }
.spec-key {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  width: 130px;
  flex-shrink: 0;
  letter-spacing: 0.06em;
}
.spec-val { font-size: 13px; color: var(--text2); }

.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ftag {
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text2);
}

/* IoT Diagram */
.iot-diagram {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow);
}
.iot-layer {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  position: relative;
}
.layer-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.cloud-layer { border-color: rgba(0,229,255,0.2); }
.edge-layer { border-color: rgba(139,92,246,0.2); }
.device-layer { border-color: rgba(0,230,118,0.2); }
.iot-service {
  display: inline-block;
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 11px;
  color: var(--text2);
  margin: 3px;
}
.iot-arrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  text-align: center;
  padding: 6px 0;
  opacity: 0.7;
}
.iot-device-row { display: flex; flex-wrap: wrap; gap: 6px; }
.iot-device-chip {
  padding: 4px 10px;
  background: rgba(0,230,118,0.07);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 5px;
  font-size: 11px;
  color: var(--cctv);
}

/* VoIP Diagram */
.voip-diagram {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.voip-call-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.vcf-node {
  text-align: center;
  padding: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.vcf-node.core {
  border-color: rgba(139,92,246,0.4);
  background: rgba(139,92,246,0.05);
}
.vcf-icon { font-size: 24px; margin-bottom: 6px; }
.vcf-label { font-size: 10px; font-family: var(--font-mono); color: var(--text3); }
.vcf-arrow { font-family: var(--font-mono); font-size: 14px; color: var(--voip); opacity: 0.6; flex-shrink: 0; }

.voip-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.vfg-item {
  padding: 10px 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vfg-icon { font-size: 14px; }

/* ALPR Visual */
.alpr-visual { }
.alpr-camera-view {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}
.alpr-scanline {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--alpr), transparent);
  margin-bottom: 1.5rem;
  animation: scan 2s ease-in-out infinite;
}
@keyframes scan {
  0%, 100% { opacity: 0.3; transform: scaleX(0.3); }
  50% { opacity: 1; transform: scaleX(1); }
}
.alpr-plate-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.alpr-plate-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.alpr-country {
  background: rgba(255,145,0,0.15);
  border: 1px solid var(--alpr);
  padding: 6px 10px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--alpr);
}
.alpr-number {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text);
}
.conf-label { font-size: 10px; color: var(--text3); margin-bottom: 5px; display: block; }
.conf-bar {
  height: 5px;
  background: var(--border);
  border-radius: 999px;
  margin-bottom: 4px;
}
.conf-fill {
  height: 100%;
  background: var(--alpr);
  border-radius: 999px;
}
.conf-pct { font-family: var(--font-mono); font-size: 11px; color: var(--alpr); }
.alpr-meta { display: flex; flex-direction: column; gap: 6px; }
.alpr-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text2);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.alpr-meta-row:last-child { border: none; }
.mono { font-family: var(--font-mono); }
.green-text { color: var(--green); }

/* CCTV Grid */
.cctv-grid-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cam-cell { }
.cam-feed {
  aspect-ratio: 16/10;
  border-radius: 10px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 8px;
}
.cam-feed-1 { background: linear-gradient(135deg, #0d1a2b 0%, #0a2540 100%); }
.cam-feed-2 { background: linear-gradient(135deg, #1a1000 0%, #261800 100%); }
.cam-feed-3 { background: linear-gradient(135deg, #0d1a10 0%, #0a2014 100%); }
.cam-feed-4 { background: #0d1219; }
.cam-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  flex: 1;
}
.cam-rec {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--red);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
.cam-scan-h {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(0,229,255,0.4);
  animation: scanV 3s linear infinite;
}
@keyframes scanV {
  0% { top: 0; }
  100% { top: 100%; }
}
.cam-alert-box {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,145,0,0.15);
  border: 1px solid var(--orange);
  padding: 4px 10px;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--orange);
  white-space: nowrap;
}
.cam-offline {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.1em;
}

/* ── SOLUTIONS GRID ── */
.solutions-grid-section {
  padding: 80px 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.sol-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.sol-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.sol-card.featured-sol { border-color: rgba(0,229,255,0.2); grid-column: span 2; }

.sol-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.sol-icon-wrap {
  width: 48px; height: 48px;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}
.sol-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.sol-card p { color: var(--text2); font-size: 0.9rem; margin-bottom: 1.25rem; }
.sol-modules {
  display: flex;
  gap: 6px;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.sol-modules span {
  padding: 3px 10px;
  background: rgba(0,229,255,0.07);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 5px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--cyan);
}
.sol-list { list-style: none; }
.sol-list li {
  font-size: 13px;
  color: var(--text2);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.sol-list li:last-child { border: none; }
.sol-list li::before { content: '→'; position: absolute; left: 0; color: var(--cyan); font-size: 11px; top: 6px; }

/* ── PLANS ── */
.comparison-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 100px 2rem;
}
.plans-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.featured-plan {
  border-color: rgba(0,229,255,0.3);
  background: linear-gradient(160deg, rgba(0,229,255,0.04) 0%, var(--surface) 100%);
}
.plan-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--bg);
  padding: 3px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.plan-sub { font-size: 12px; color: var(--text3); font-family: var(--font-mono); margin-bottom: 1rem; }
.plan-price {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.plan-desc { font-size: 13px; color: var(--text2); margin-bottom: 1.5rem; }
.plan-features { list-style: none; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 8px; }
.plan-features li { font-size: 13px; color: var(--text2); }

/* ── CONTACT ── */
.contact-section { padding: 80px 2rem; }
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.contact-intro { color: var(--text2); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon {
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.ci-icon svg { width: 20px; height: 20px; }
.ci-label { font-size: 11px; color: var(--text3); font-family: var(--font-mono); margin-bottom: 3px; letter-spacing: 0.06em; }
.ci-value { font-size: 14px; color: var(--text); }
a.ci-value:hover { color: var(--cyan); }

.contact-modules { }
.cm-label { font-size: 11px; color: var(--text3); font-family: var(--font-mono); letter-spacing: 0.1em; margin-bottom: 10px; }
.cm-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.cm-chip {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.cm-chip:hover, .cm-chip.selected {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-glow);
}

/* Form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; color: var(--text3); font-family: var(--font-mono); letter-spacing: 0.06em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.08);
}
.form-group select option { background: var(--bg2); }
.form-submit { width: 100%; justify-content: center; cursor: pointer; border: none; font-family: var(--font-body); }
.form-note { font-size: 11px; color: var(--text3); text-align: center; }
.form-success {
  display: none;
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--green);
  text-align: center;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-inner,
  .ps-inner,
  .ps-inner.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .plans-grid { grid-template-columns: 1fr; }
  .sol-card.featured-sol { grid-column: span 1; }
  .nav-cta { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .dashboard-mockup { display: none; }
  .hero-stats { gap: 1rem; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 1.25rem 60px; }
  .services, .why-section, .platform-section, .solutions-grid-section, .contact-section { padding: 60px 1.25rem; }
  .cctv-grid-view { grid-template-columns: 1fr; }
  .voip-call-flow { flex-direction: column; gap: 0.5rem; }
  .vcf-arrow { transform: rotate(90deg); }
}

/* ── MOBILE NAV ── */
.mobile-nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
}
