@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg:          #03091a;
  --surface:     #060e20;
  --surface-2:   #091628;
  --blue:        #1555a8;
  --blue-2:      #2070c8;
  --cyan:        #2e90d8;
  --green:       #00e87a;
  --text:        #dde9ff;
  --text-2:      #6b80a0;
  --border:      rgba(21, 85, 168, 0.18);
  --border-2:    rgba(46, 144, 216, 0.28);
  --glow-blue:   0 0 40px rgba(21, 85, 168, 0.4);
  --glow-cyan:   0 0 40px rgba(46, 144, 216, 0.3);
  --font-h:      'Space Grotesk', system-ui, sans-serif;
  --font-b:      'Inter', system-ui, sans-serif;
  --font-m:      'JetBrains Mono', 'Courier New', monospace;
  --r:           12px;
  --r-lg:        20px;
  --max:         1200px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --glass-bg:    rgba(6, 14, 34, 0.72);
  --glass-border: rgba(46, 144, 216, 0.12);
  --shadow-card: 0 8px 32px rgba(3, 9, 26, 0.5), 0 1px 0 rgba(46, 144, 216, 0.08) inset;
  --shadow-hover: 0 24px 64px rgba(3, 9, 26, 0.6), 0 0 0 1px rgba(46, 144, 216, 0.2), 0 0 40px rgba(21, 85, 168, 0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background-image:
    linear-gradient(rgba(21, 85, 168, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 85, 168, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

h1, h2, h3, h4 { font-family: var(--font-h); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.4rem); }
p  { max-width: 66ch; }
a  { color: inherit; }
img, svg { display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
section    { padding: 80px 0; }

.gradient-text {
  background: linear-gradient(135deg, var(--blue-2) 0%, var(--cyan) 50%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAV ───────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 28px;
  background: rgba(3, 9, 26, 0.75);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(46, 144, 216, 0.1);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}
nav.scrolled {
  background: rgba(3, 9, 26, 0.95);
  border-bottom-color: rgba(46, 144, 216, 0.15);
  box-shadow: 0 1px 40px rgba(3, 9, 26, 0.6);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.nav-logo {
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 300;
  text-decoration: none; color: var(--text);
  display: flex; align-items: center; gap: 10px; letter-spacing: 0.22em;
  flex-shrink: 0;
}
.nav-logo .logo-text { color: inherit; }
.nav-logo .logo-accent {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-2);
  text-decoration: none; padding: 8px 13px; border-radius: 8px;
  transition: all 0.25s var(--ease); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(21, 85, 168, 0.1); }
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
  color: #fff !important; padding: 9px 20px !important; border-radius: 9px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(21, 85, 168, 0.4) !important; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s var(--ease);
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: all 0.3s var(--ease);
  cursor: pointer; border: none; font-family: var(--font-b);
  white-space: nowrap; position: relative; overflow: hidden;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, #1a65c8 0%, #2e90d8 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(21, 85, 168, 0.45), 0 1px 0 rgba(255,255,255,0.12) inset;
}
.btn-primary::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-18deg);
  animation: btn-shimmer 3.5s 1.5s infinite;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(21, 85, 168, 0.55), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.btn-secondary {
  background: rgba(46, 144, 216, 0.08);
  color: var(--cyan);
  border: 1px solid rgba(46, 144, 216, 0.3);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(46, 144, 216, 0.14);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 144, 216, 0.2);
}
.btn-outline {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border: 1px solid rgba(221, 233, 255, 0.15);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: rgba(221, 233, 255, 0.3);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

/* ── SECTION LABELS ────────────────────────── */
.section-label {
  font-family: var(--font-m); font-size: 0.7rem; font-weight: 500;
  color: var(--cyan); letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 18px; display: inline-flex; align-items: center; gap: 12px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(46, 144, 216, 0.08);
  border: 1px solid rgba(46, 144, 216, 0.18);
}
.section-label::before {
  content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--cyan); flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
.section-title { margin-bottom: 16px; }
.section-desc { color: var(--text-2); font-size: 1.05rem; margin-bottom: 60px; line-height: 1.75; }

/* ── SERVICE TICKER ────────────────────────── */
.ticker-bar {
  background: var(--surface);
  border-top: 1px solid rgba(46, 144, 216, 0.15);
  border-bottom: 1px solid rgba(46, 144, 216, 0.15);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
  position: relative;
}
.ticker-bar::before,
.ticker-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ticker-bar::before { left: 0; background: linear-gradient(90deg, var(--bg) 0%, transparent 100%); }
.ticker-bar::after  { right: 0; background: linear-gradient(-90deg, var(--bg) 0%, transparent 100%); }
.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker 36s linear infinite;
  will-change: transform;
}
.ticker-item {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 0 28px;
  white-space: nowrap;
  transition: color 0.25s;
}
.ticker-item:hover { color: var(--cyan); }
.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.45;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HERO ──────────────────────────────────── */
#hero {
  padding-top: 72px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 68% 28%, rgba(21,85,168,0.5) 0%, rgba(3,9,26,0) 62%), var(--bg);
}
#hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(170deg, rgba(3,9,26,0.55) 0%, rgba(3,9,26,0.2) 45%, rgba(3,9,26,0.55) 100%);
}
.hero-bg { display: none; }
#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  z-index: 0; display: block; pointer-events: none;
}
.hero-left {
  position: relative; z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 175px 28px 0;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(46, 144, 216, 0.08);
  border: 1px solid rgba(46, 144, 216, 0.25);
  color: var(--cyan); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 36px;
  backdrop-filter: blur(8px);
}
.hero-badge::before {
  content: ''; display: block; width: 7px; height: 7px;
  background: var(--cyan); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-sub {
  font-size: 1.2rem; color: var(--text-2); margin: 22px auto 48px;
  line-height: 1.82; max-width: 620px; font-weight: 400;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-top: 64px; flex-wrap: wrap;
  border: 1px solid rgba(46, 144, 216, 0.12);
  border-radius: 16px;
  background: rgba(6, 14, 34, 0.6);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.hero-stat {
  flex: 1; min-width: 130px;
  padding: 24px 28px; text-align: center;
  border-right: 1px solid rgba(46, 144, 216, 0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-n {
  font-family: var(--font-h); font-size: 1.9rem; font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.1; display: block;
}
.hero-stat-l {
  font-size: 0.75rem; color: var(--text-2);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-top: 5px; display: block; font-weight: 500;
}
.hero-right { display: none; }
.hero-bg-glow { display: none; }

/* ── SERVICES ──────────────────────────────── */
#services { background: var(--surface); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: var(--shadow-card);
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 20px; padding: 1px;
  background: linear-gradient(135deg, rgba(46,144,216,0.0) 0%, rgba(46,144,216,0.45) 50%, rgba(0,232,122,0.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46,144,216,0.6), transparent);
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.service-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: rgba(21, 85, 168, 0.1); border: 1px solid rgba(21, 85, 168, 0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--cyan); flex-shrink: 0;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-2); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
.service-link {
  color: var(--blue-2); text-decoration: none; font-weight: 600;
  font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.25s var(--ease);
}
.service-link:hover { gap: 10px; color: var(--cyan); }

/* ── TECH STACK ────────────────────────────── */
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tech-column {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg); padding: 32px;
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.tech-column:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(46, 144, 216, 0.2);
}
.tech-col-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.tech-col-header h4 {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--cyan);
}
.tech-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.tech-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-2); transition: color 0.2s;
}
.tech-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 2px;
  background: var(--blue); flex-shrink: 0;
}
.tech-list li:hover { color: var(--text); }

/* ── SECURITY ──────────────────────────────── */
#security { background: var(--surface); }
.security-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.security-text .section-desc { margin-bottom: 28px; }
.security-platforms { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.platform-badge {
  padding: 8px 16px; border-radius: 8px;
  background: rgba(21, 85, 168, 0.07); border: 1px solid rgba(21, 85, 168, 0.16);
  font-size: 0.85rem; font-weight: 600; color: var(--text-2);
  transition: all 0.25s var(--ease); cursor: default;
}
.platform-badge:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(46, 144, 216, 0.07); }
.security-visual {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 52px 40px;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
.security-visual::before {
  content: ''; position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(21,85,168,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.shield-wrap {
  width: 88px; height: 88px; margin: 0 auto 32px;
  background: rgba(21, 85, 168, 0.1); border-radius: 50%;
  border: 1px solid rgba(21, 85, 168, 0.28);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--glow-blue), inset 0 0 20px rgba(21, 85, 168, 0.05);
  animation: shield-pulse 3s ease-in-out infinite;
}
.security-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-item {
  background: rgba(21, 85, 168, 0.05); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 14px; text-align: center;
}
.stat-number {
  font-family: var(--font-h); font-size: 1.7rem; font-weight: 700;
  background: linear-gradient(135deg, var(--blue-2), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.78rem; color: var(--text-2); margin-top: 4px; line-height: 1.4; }

/* ── PROCESS ───────────────────────────────── */
.process-steps { position: relative; display: flex; flex-direction: column; }
.process-steps::before {
  content: ''; position: absolute; left: 27px; top: 56px; bottom: 56px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(21,85,168,0.15) 0%, var(--blue) 20%, var(--cyan) 60%, var(--green) 85%, rgba(0,232,122,0.1) 100%);
  opacity: 0.6;
}
.process-step { display: flex; gap: 28px; padding: 28px 0; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--glass-bg);
  border: 1px solid rgba(46,144,216,0.25);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-m); font-size: 0.8rem; font-weight: 600;
  color: var(--cyan); position: relative; z-index: 1;
  transition: all 0.3s var(--ease);
  box-shadow: 0 0 0 6px rgba(3, 9, 26, 0.8);
}
.process-step:hover .step-num {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan), 0 0 0 6px rgba(3, 9, 26, 0.8);
  background: rgba(46, 144, 216, 0.12);
}
.step-body { padding-top: 12px; }
.step-body h3 { margin-bottom: 8px; }
.step-body p { color: var(--text-2); font-size: 0.95rem; }

/* ── MANAGED SERVICES ──────────────────────── */
#managed { background: var(--surface); }
.managed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.managed-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 22px 24px;
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}
.managed-item:hover {
  border-color: rgba(46, 144, 216, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(3, 9, 26, 0.4), 0 0 0 1px rgba(46, 144, 216, 0.14);
}
.managed-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(21, 85, 168, 0.1); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--cyan);
}
.managed-item h3 { font-size: 0.9rem; margin-bottom: 3px; font-weight: 600; }
.managed-item p  { font-size: 0.82rem; color: var(--text-2); }

/* ── ABOUT ─────────────────────────────────── */
.about-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.about-text p { color: var(--text-2); font-size: 1.05rem; line-height: 1.85; margin-bottom: 20px; }
.about-pillars { display: flex; flex-direction: column; gap: 14px; }
.pillar {
  display: flex; gap: 18px; padding: 24px; align-items: flex-start;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}
.pillar:hover {
  border-color: rgba(46, 144, 216, 0.22);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.pillar-icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  background: rgba(21, 85, 168, 0.1); border: 1px solid rgba(21, 85, 168, 0.2);
  display: flex; align-items: center; justify-content: center; color: var(--cyan);
}
.pillar-info h3 { font-size: 0.95rem; margin-bottom: 4px; font-weight: 600; }
.pillar-info p  { font-size: 0.85rem; color: var(--text-2); }

/* ── CONTACT CTA STRIP ─────────────────────── */
#contact-cta {
  position: relative; overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center; padding: 140px 28px;
}
#contact-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(21,85,168,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 50%, rgba(46,144,216,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 50% -10%, rgba(21,85,168,0.18) 0%, transparent 50%);
}
#contact-cta .container { position: relative; z-index: 1; }
#contact-cta h2 { margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto; }
#contact-cta .desc { color: var(--text-2); font-size: 1.1rem; margin: 0 auto 52px; max-width: 500px; line-height: 1.75; }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT FORM PAGE ─────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.contact-info-side { position: sticky; top: 100px; }
.contact-info-side h2 { margin-bottom: 18px; }
.contact-info-side p { color: var(--text-2); line-height: 1.8; margin-bottom: 36px; }
.contact-detail-list { display: flex; flex-direction: column; gap: 14px; }
.contact-detail {
  display: flex; gap: 14px; align-items: center;
  color: var(--text-2); font-size: 0.92rem;
}
.cd-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(21, 85, 168, 0.09); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--cyan);
}
.contact-form-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 52px;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.fg label { font-size: 0.85rem; font-weight: 500; color: var(--text-2); }
.fg input, .fg select, .fg textarea {
  background: rgba(21, 85, 168, 0.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px; color: var(--text);
  font-family: var(--font-b); font-size: 0.92rem;
  transition: all 0.25s var(--ease); outline: none; width: 100%;
  appearance: none; -webkit-appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-2); opacity: 0.55; }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--blue); background: rgba(21, 85, 168, 0.09);
  box-shadow: 0 0 0 3px rgba(21, 85, 168, 0.12);
}
.fg select { cursor: pointer; }
.fg select option { background: #0a1830; color: var(--text); }
.fg textarea { resize: vertical; min-height: 130px; }
.form-success {
  text-align: center; padding: 60px 20px; display: flex;
  flex-direction: column; align-items: center; gap: 16px;
}
.form-success h3 { font-size: 1.5rem; }
.form-success p { color: var(--text-2); }

/* ── PAGE HERO (inner pages) ───────────────── */
.page-hero {
  padding: 160px 0 96px; text-align: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse at 50% 0%, rgba(21,85,168,0.2) 0%, transparent 60%), var(--surface);
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(46,144,216,0.4) 50%, transparent 100%);
}
.page-hero .section-label { justify-content: center; margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero p { color: var(--text-2); font-size: 1.15rem; margin: 0 auto; max-width: 580px; line-height: 1.8; }

/* ── FEATURE GRID ──────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 36px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
.feature-item::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46,144,216,0.5), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-item:hover {
  border-color: rgba(46, 144, 216, 0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.feature-item:hover::after { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 13px; margin-bottom: 20px;
  background: rgba(21, 85, 168, 0.1); border: 1px solid rgba(21, 85, 168, 0.2);
  display: flex; align-items: center; justify-content: center; color: var(--cyan);
}
.feature-item h3 { margin-bottom: 10px; font-size: 1.05rem; }
.feature-item p  { color: var(--text-2); font-size: 0.9rem; line-height: 1.7; }

/* ── FOOTER ────────────────────────────────── */
footer {
  background: #020713;
  border-top: 1px solid rgba(46,144,216,0.12);
  padding: 80px 0 40px;
  position: relative;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(46,144,216,0.5) 50%, transparent 100%);
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(46,144,216,0.08); margin-bottom: 36px;
}
.footer-brand-desc { color: var(--text-2); font-size: 0.88rem; margin-top: 16px; max-width: 270px; line-height: 1.75; }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--text); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: var(--text-2); text-decoration: none; font-size: 0.88rem;
  transition: all 0.2s var(--ease);
  display: inline-flex; align-items: center;
}
.footer-col a:hover { color: var(--text); transform: translateX(3px); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 0.82rem; color: var(--text-2); }
.footer-tag { font-family: var(--font-m); font-size: 0.72rem; color: var(--text-2); display: flex; align-items: center; gap: 6px; }
.footer-tag span { color: var(--cyan); }

/* ── ANIMATIONS ────────────────────────────── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}
@keyframes shield-pulse {
  0%, 100% { box-shadow: var(--glow-blue), inset 0 0 20px rgba(21, 85, 168, 0.05); }
  50%       { box-shadow: 0 0 60px rgba(21, 85, 168, 0.45), inset 0 0 30px rgba(21, 85, 168, 0.08); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes btn-shimmer {
  0% { left: -100%; }
  55%, 100% { left: 150%; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.fade-up { opacity: 0; }
.fade-up.visible { animation: fade-up 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1060px) {
  .hero-left     { padding: 130px 28px 0; }
  .hero-ctas     { justify-content: center; }
  .hero-sub      { margin-left: auto; margin-right: auto; }
  .hero-bg-glow  { display: none; }
  .tech-grid     { grid-template-columns: 1fr 1fr; }
  .security-inner, .about-inner, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-info-side { position: static; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section        { padding: 80px 0; }
  .services-grid, .managed-grid, .feature-grid { grid-template-columns: 1fr; }
  .tech-grid     { grid-template-columns: 1fr 1fr; }
  .hero-stats    { flex-direction: column; }
  .hero-stat     { border-right: none; border-bottom: 1px solid rgba(46,144,216,0.1); width: 100%; }
  .hero-stat:last-child { border-bottom: none; }
  .nav-links     { display: none; }
  .nav-toggle    { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(3, 12, 26, 0.98); border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px; gap: 2px;
  }
  .process-steps::before { display: none; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) {
  h1          { font-size: 2.4rem; }
  .hero-left  { padding: 110px 20px 0; }
  .tech-grid  { grid-template-columns: 1fr; }
  .security-stats { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
}
