/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0A1628;
  --blue:    #1657C5;
  --blue-l:  #2574E8;
  --cyan:    #00C2FF;
  --glow:    rgba(22, 87, 197, 0.4);
  --card-bg: #0F1F3D;
  --line:    rgba(255,255,255,0.08);
  --text:    #E2E8F4;
  --muted:   #8A9FC0;
  --white:   #FFFFFF;
  --accent:  #00C2FF;
  --orange:  #FF7A30;
  --green:   #22C55E;
  --radius:  12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--accent); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}

#navbar.scrolled { background: rgba(10, 22, 40, 0.98); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.logo-icon { font-size: 24px; }
.logo-text { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: 0.5px; color: var(--white); }
.logo-text strong { color: var(--accent); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.btn-nav {
  padding: 9px 22px;
  background: var(--blue);
  color: var(--white) !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.btn-nav:hover { background: var(--blue-l) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 13px 30px;
  background: linear-gradient(135deg, var(--blue), var(--blue-l));
  color: var(--white);
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(22,87,197,0.4);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22,87,197,0.5);
}

.btn-primary.full-width { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  padding: 13px 30px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(0,194,255,0.08);
}

/* ===== SECTION HELPERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-label.center { display: block; text-align: center; }
.section-header h2 { font-family: 'Rajdhani', sans-serif; font-size: 42px; font-weight: 700; margin-bottom: 12px; }
.section-sub { color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(22,87,197,0.18) 0%, transparent 60%),
              linear-gradient(180deg, #0A1628 0%, #091322 100%);
  max-width: 1400px;
  margin: 0 auto;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-content { max-width: 580px; position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-accent {
  background: linear-gradient(135deg, var(--accent), var(--blue-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.dot.green  { background: var(--green); box-shadow: 0 0 6px var(--green); }
.dot.blue   { background: var(--blue-l); box-shadow: 0 0 6px var(--blue-l); }
.dot.cyan   { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.dot.orange { background: var(--orange); box-shadow: 0 0 6px var(--orange); }

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 360px;
  height: 360px;
  flex-shrink: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.orb1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(22,87,197,0.25) 0%, transparent 70%);
  animation-delay: 0s;
}

.orb2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,194,255,0.2) 0%, transparent 70%);
  animation-delay: 1s;
}

.shield-icon {
  width: 160px;
  height: 160px;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(22,87,197,0.6));
  animation: float 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== PILLARS ===== */
.pillars {
  background: var(--card-bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  transition: background 0.2s;
}

.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(22,87,197,0.08); }

.pillar-icon { font-size: 32px; margin-bottom: 12px; }
.pillar h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.pillar p { font-size: 13px; color: var(--muted); }

/* ===== SOLUTIONS ===== */
.solutions { padding: 100px 0; }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sol-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.sol-card:hover {
  border-color: rgba(22,87,197,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.sol-card.featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(22,87,197,0.15), var(--card-bg));
}

.sol-icon { font-size: 36px; margin-bottom: 14px; }
.sol-card h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.sol-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===== SERVICES DETAIL ===== */
.services-detail {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(22,87,197,0.04), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.svc-card:hover {
  border-color: rgba(0,194,255,0.3);
  transform: translateY(-3px);
}

.svc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.svc-icon { font-size: 28px; }
.svc-header h3 { font-size: 16px; font-weight: 700; color: var(--white); }

.svc-card li {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.svc-card li:last-child { border-bottom: none; }

.svc-card li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===== AMC ===== */
.amc-section {
  padding: 100px 0;
  background: var(--card-bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.amc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.amc-left h2 { font-family: 'Rajdhani', sans-serif; font-size: 40px; font-weight: 700; margin: 10px 0 16px; }
.amc-left p { color: var(--muted); line-height: 1.7; margin-bottom: 32px; }

.amc-items { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.amc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(22,87,197,0.1);
  border: 1px solid rgba(22,87,197,0.25);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s;
}

.amc-item:hover { border-color: var(--accent); }

.amc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===== WHY US ===== */
.why-us { padding: 100px 0; }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.why-left h2 { font-family: 'Rajdhani', sans-serif; font-size: 40px; font-weight: 700; margin: 10px 0 16px; }
.why-left p { color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}

.why-items { display: flex; flex-direction: column; gap: 12px; }
.why-item {
  padding: 14px 20px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s;
}
.why-item:hover { border-color: var(--green); }

/* Industries */
.industries { text-align: center; }
.industry-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.ind-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 28px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 140px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}

.ind-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
}

.ind-card span { font-size: 32px; }
.ind-card p { font-size: 13px; font-weight: 500; text-align: center; color: var(--muted); }

/* ===== PARTNERS ===== */
.partners {
  padding: 60px 0;
  background: var(--card-bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
}

.partner-badge {
  padding: 12px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}

.partner-badge:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.ci-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-item a, .contact-item p { font-size: 14px; color: var(--text); line-height: 1.7; }
.contact-item a:hover { color: var(--accent); }

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form select option { background: var(--navy); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

.contact-form textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
footer {
  background: #060E1C;
  border-top: 1px solid var(--line);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 260px; }

.footer-links h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 0; }
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-contact-mini h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-contact-mini p { font-size: 13px; color: var(--muted); padding: 4px 0; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { padding: 120px 32px 80px; gap: 40px; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-bottom: 1px solid var(--line); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(3), .pillar:nth-child(4) { border-bottom: none; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .amc-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 16px; position: absolute; top: 68px; left: 0; right: 0; background: rgba(10,22,40,0.98); padding: 24px; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 60px;
    min-height: auto;
  }
  .hero-ctas { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { width: 240px; height: 240px; }
  .shield-icon { width: 110px; height: 110px; }
  .orb1 { width: 220px; height: 220px; }
  .orb2 { width: 150px; height: 150px; }

  .section-header h2 { font-size: 32px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .amc-items { grid-template-columns: 1fr; }
  .industry-grid { gap: 12px; }
  .ind-card { min-width: 120px; padding: 18px 20px; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { text-align: center; }
  .footer-brand .logo { justify-content: center; }
  .footer-links { align-items: center; }
  .footer-contact-mini { text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 40px; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .pillar { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .pillar:last-child { border-bottom: none !important; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== COMMITTED TO ===== */
.committed-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(22,87,197,0.05), transparent);
}

.committed-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.committed-left h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin: 10px 0 32px;
}

.committed-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.committed-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}

.committed-item:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.comm-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.committed-item h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.committed-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }

.committed-shield {
  display: flex;
  justify-content: center;
  align-items: center;
}

.committed-shield svg {
  width: 220px;
  height: 260px;
  filter: drop-shadow(0 0 40px rgba(22,87,197,0.5));
  animation: float 3s ease-in-out infinite;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  padding: 60px 0;
  background: var(--card-bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  transition: background 0.2s;
}

.trust-badge:last-child { border-right: none; }
.trust-badge:hover { background: rgba(22,87,197,0.08); }

.tb-icon { font-size: 36px; margin-bottom: 14px; }
.trust-badge h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.trust-badge p { font-size: 13px; color: var(--muted); }

@media (max-width: 1024px) {
  .committed-inner { grid-template-columns: 1fr; gap: 48px; }
  .committed-shield { display: none; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badge:nth-child(2) { border-right: none; }
  .trust-badge { border-bottom: 1px solid var(--line); }
  .trust-badge:nth-child(3), .trust-badge:nth-child(4) { border-bottom: none; }
}

@media (max-width: 768px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== HERO SLIDESHOW ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  overflow: hidden;
}

.hero-bg-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideShow 12s infinite;
}

.slide1 {
  background-image: url('server.jpg');
  animation-delay: 0s;
}

.slide2 {
  background-image: url('cctv.jpg');
  animation-delay: 6s;
}

@keyframes slideShow {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  45%  { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(8, 15, 35, 0.92) 0%,
    rgba(10, 22, 60, 0.85) 50%,
    rgba(8, 15, 35, 0.75) 100%);
  z-index: 1;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, #1657C5, #0D3B8C);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}
