/* ============================================================
   SECHPOINT TECHNOLOGIES — High-Energy Stylesheet
   ============================================================ */

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

:root {
  --bg-deep:        #FFFFFF;
  --bg-primary:     #F5F8FB;
  --bg-secondary:   #EBF0F6;
  --bg-card:        rgba(255, 255, 255, 0.88);
  --bg-card-hover:  rgba(255, 255, 255, 0.98);
  --cyan:           #0099BB;
  --cyan-dim:       rgba(0, 153, 187, 0.08);
  --cyan-glow:      rgba(0, 153, 187, 0.35);
  --violet:         #7C3AED;
  --violet-dim:     rgba(124, 58, 237, 0.08);
  --magenta:        #E91E8C;
  --blue:           #0057B8;
  --blue-light:     #3B82F6;
  --emerald:        #059669;
  --text-primary:   #0F172A;
  --text-secondary: #334E68;
  --text-muted:     #64748B;
  --border:         rgba(0, 153, 187, 0.15);
  --border-hover:   rgba(0, 153, 187, 0.45);
  --gradient-cyan:  linear-gradient(135deg, #00AADD, #0057B8);
  --gradient-hero:  linear-gradient(135deg, #00AADD 0%, #7C3AED 55%, #E91E8C 100%);
  --shadow-card:    0 8px 48px rgba(0, 0, 0, 0.08);
  --shadow-glow:    0 0 60px rgba(0, 153, 187, 0.18);
  --shadow-neon:    0 0 20px rgba(0,153,187,0.2), 0 0 50px rgba(124,58,237,0.1), 0 0 80px rgba(233,30,140,0.06);
  --blur-glass:     blur(18px);
  --radius:         12px;
  --radius-lg:      20px;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gradient-cyan); border-radius: 3px; }

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

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan); background: var(--cyan-dim);
  border: 1px solid rgba(0,153,187,0.2); border-radius: 100px;
  padding: 6px 16px; margin-bottom: 16px;
}
.section-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan), 0 0 16px rgba(0,153,187,0.6);
  animation: livePulse 2s infinite;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800; line-height: 1.12; color: var(--text-primary);
}

.gradient-text {
  background: var(--gradient-hero);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

.section-sub {
  font-size: 17px; color: var(--text-secondary);
  line-height: 1.78; max-width: 560px; margin-top: 14px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 14px auto 0; }

/* ── Buttons ── */
.btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; padding: 14px 28px; border-radius: var(--radius);
  border: none; cursor: pointer; transition: var(--transition);
}
.btn-primary {
  background: var(--gradient-cyan); color: #fff;
  box-shadow: 0 4px 24px rgba(0,153,187,0.35), 0 0 0 1px rgba(0,153,187,0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,153,187,0.5), 0 0 80px rgba(0,153,187,0.15);
}
.btn-secondary {
  background: rgba(0,153,187,0.07); color: var(--cyan);
  border: 1.5px solid rgba(0,153,187,0.35);
  backdrop-filter: var(--blur-glass);
}
.btn-secondary:hover {
  background: rgba(0,153,187,0.14); transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0,153,187,0.2);
}
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--border); font-size: 14px; padding: 12px 24px;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 20px rgba(0,153,187,0.12); }


/* ================================================================
   NAVBAR
================================================================ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0; transition: var(--transition); }
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,153,187,0.12);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 20px 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img {
  height: 58px;
  width: auto;
  display: block;
  filter: brightness(1.0) drop-shadow(0 0 6px rgba(0,153,187,0.15));
  transition: filter 0.3s ease;
}
.nav-logo:hover .logo-img {
  filter: brightness(1.1) drop-shadow(0 0 12px rgba(0,153,187,0.3));
}

.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  text-decoration: none; padding: 8px 14px; border-radius: 8px; transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text-primary); background: rgba(15,23,42,0.05); }
.nav-links a.active { color: var(--cyan); background: rgba(0,153,187,0.10); font-weight: 600; }
.nav-cta { font-size: 14px !important; padding: 10px 22px !important; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--text-primary); padding: 8px 12px; border-radius: 8px;
  cursor: pointer; font-size: 18px; transition: var(--transition);
}
.nav-toggle:hover { border-color: var(--cyan); color: var(--cyan); }


/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--bg-deep); overflow: hidden;
}

/* Animated aurora orbs */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: orbFloat 14s ease-in-out infinite;
}
.orb-1 {
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(0,170,220,0.22) 0%, transparent 65%);
  top: -200px; left: -180px; animation-delay: 0s;
}
.orb-2 {
  width: 850px; height: 850px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 65%);
  top: 0; right: -280px; animation-delay: -5s;
}
.orb-3 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(233,30,140,0.14) 0%, transparent 65%);
  bottom: -120px; left: 28%; animation-delay: -10s;
}

/* Dot-grid overlay */
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,153,187,0.25) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  opacity: 0.45;
}

/* Scan line */
.hero-scan {
  position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, transparent 0%, rgba(0,153,187,0.9) 35%, rgba(124,58,237,0.7) 65%, transparent 100%);
  animation: scanDown 8s linear infinite; pointer-events: none;
}

#heroCanvas {
  position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; opacity: 0.7;
}
.hero-bg-gradient {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 50% 65%, rgba(255,255,255,0.55) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 4;
  max-width: 840px; padding: 120px 24px 80px;
  margin: 0 auto; text-align: center;
  transition: transform 0.12s ease-out;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan); background: rgba(0,153,187,0.08);
  border: 1px solid rgba(0,153,187,0.3); border-radius: 100px;
  padding: 8px 22px; margin-bottom: 32px;
  box-shadow: 0 0 30px rgba(0,153,187,0.1), inset 0 1px 0 rgba(255,255,255,0.6);
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan), 0 0 24px rgba(0,153,187,0.8);
  animation: livePulse 2s infinite;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 900; line-height: 1.04;
  color: var(--text-primary); margin-bottom: 28px;
  letter-spacing: -2px;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px); color: var(--text-secondary);
  line-height: 1.82; max-width: 640px; margin: 0 auto 48px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; animation: bounce 2.5s infinite; text-decoration: none;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--cyan), transparent); }


/* ================================================================
   STATS BAR
================================================================ */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0,153,187,0.1);
  border-bottom: 1px solid rgba(0,153,187,0.1);
  padding: 44px 0; position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0,153,187,0.03) 50%, transparent);
}
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; z-index: 1; }
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 24px; text-align: center;
  border-right: 1px solid rgba(0,153,187,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 5vw, 62px); font-weight: 800;
  background: var(--gradient-hero); background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 12px rgba(0,153,187,0.3));
  animation: shimmer 5s linear infinite;
}
.stat-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-muted); margin-top: 6px;
}


/* ================================================================
   ABOUT
================================================================ */
.about { padding: 110px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-card-main {
  background: var(--bg-card); backdrop-filter: var(--blur-glass); -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(0,153,187,0.12); border-radius: var(--radius-lg);
  padding: 40px; position: relative; overflow: hidden; box-shadow: var(--shadow-card);
}
.about-card-main::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-hero);
}
.about-card-icon {
  width: 56px; height: 56px; background: rgba(0,153,187,0.08);
  border: 1px solid rgba(0,153,187,0.2); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; box-shadow: 0 0 20px rgba(0,153,187,0.08);
}
.about-card-main h3 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.about-card-main p { color: var(--text-secondary); font-size: 14px; line-height: 1.78; }
.about-badge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.about-badge {
  background: rgba(0,153,187,0.05); border: 1px solid rgba(0,153,187,0.12);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--text-secondary); transition: var(--transition);
}
.about-badge:hover { border-color: rgba(0,153,187,0.35); color: var(--text-primary); box-shadow: 0 0 20px rgba(0,153,187,0.06); }
.about-badge svg { color: var(--cyan); flex-shrink: 0; }
.about-text p { color: var(--text-secondary); font-size: 16px; line-height: 1.85; margin-bottom: 18px; }
.about-text p:last-of-type { margin-bottom: 32px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.highlight-item { display: flex; align-items: flex-start; gap: 12px; }
.highlight-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
  margin-top: 7px; flex-shrink: 0;
  box-shadow: 0 0 8px var(--cyan), 0 0 20px rgba(0,153,187,0.4);
}
.highlight-item span { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }


/* ================================================================
   SOLUTIONS
================================================================ */
.solutions { padding: 110px 0; background: var(--bg-primary); }
.solutions-header { text-align: center; margin-bottom: 60px; }
.solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.solution-card {
  background: var(--bg-card); backdrop-filter: var(--blur-glass); -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(0,153,187,0.1); border-radius: var(--radius-lg);
  padding: 28px 24px; transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden; cursor: pointer; text-decoration: none; display: block;
}
.solution-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-hero); background-size: 200% auto;
  opacity: 0; transition: opacity 0.4s ease;
}
.solution-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,153,187,0.05), rgba(124,58,237,0.03));
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.solution-card:hover {
  border-color: rgba(0,153,187,0.45); transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(0,153,187,0.25), 0 20px 60px rgba(0,0,0,0.1), 0 0 50px rgba(0,153,187,0.08), 0 0 30px rgba(124,58,237,0.05);
}
.solution-card:hover::before { opacity: 1; }
.solution-card:hover::after  { opacity: 1; }
.solution-icon {
  width: 50px; height: 50px; background: rgba(0,153,187,0.08);
  border: 1px solid rgba(0,153,187,0.15); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: var(--transition); color: var(--cyan); position: relative; z-index: 1;
}
.solution-card:hover .solution-icon {
  background: rgba(0,153,187,0.15); border-color: rgba(0,153,187,0.45);
  box-shadow: 0 0 20px rgba(0,153,187,0.2), inset 0 0 12px rgba(0,153,187,0.08);
}
.solution-card h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 10px; line-height: 1.3; position: relative; z-index: 1;
}
.solution-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; position: relative; z-index: 1; }
.solution-arrow {
  position: absolute; bottom: 20px; right: 20px; color: var(--text-muted);
  transition: var(--transition); opacity: 0; transform: translateX(-6px); z-index: 1;
}
.solution-card:hover .solution-arrow { opacity: 1; transform: translateX(0); color: var(--cyan); }
.solution-tags {
  display: flex; flex-wrap: wrap; gap: 6px; list-style: none;
  margin-top: 14px; padding-bottom: 8px; position: relative; z-index: 1;
}
.solution-tags li {
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--cyan); background: rgba(0,153,187,0.08);
  border: 1px solid rgba(0,153,187,0.2); border-radius: 100px; padding: 3px 10px;
}


/* ================================================================
   WHY SECHPOINT
================================================================ */
.why-us { padding: 110px 0; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 60px; }
.why-card {
  background: var(--bg-card); backdrop-filter: var(--blur-glass); -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(0,153,187,0.1); border-left: 3px solid var(--cyan);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: all 0.4s ease; display: flex; gap: 24px;
}
.why-card:hover {
  border-color: rgba(0,153,187,0.35); border-left-color: var(--magenta);
  box-shadow: var(--shadow-neon), var(--shadow-card); transform: translateY(-4px);
}
.why-icon-wrap {
  width: 58px; height: 58px; flex-shrink: 0;
  background: rgba(0,153,187,0.08); border: 1px solid rgba(0,153,187,0.2);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  color: var(--cyan); transition: var(--transition);
}
.why-card:hover .why-icon-wrap { background: rgba(0,153,187,0.14); box-shadow: 0 0 20px rgba(0,153,187,0.15); }
.why-body h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.why-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.78; }


/* ================================================================
   VENDORS
================================================================ */
.vendors { padding: 110px 0; background: var(--bg-primary); }
.vendors-header { text-align: center; margin-bottom: 60px; }
.vendors-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.vendor-card {
  background: var(--bg-card); backdrop-filter: var(--blur-glass); -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(0,153,187,0.08); border-radius: var(--radius);
  padding: 20px 14px 16px; text-align: center; transition: all 0.35s ease;
  cursor: pointer; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; min-height: 110px;
}
.vendor-card:hover {
  border-color: rgba(0,153,187,0.4); background: rgba(0,153,187,0.04);
  transform: translateY(-5px);
  box-shadow: 0 0 24px rgba(0,153,187,0.15), 0 12px 36px rgba(0,0,0,0.08);
}
.vendor-logo-wrap {
  flex: 1; display: flex; align-items: center; justify-content: center;
  width: 100%; margin-bottom: 10px; min-height: 38px;
}
.vendor-logo {
  max-height: 38px; max-width: 88%; width: auto; object-fit: contain;
  filter: none;
  opacity: 1; transition: all 0.35s ease;
  display: block;
}
.vendor-card:hover .vendor-logo {
  filter: none;
  opacity: 1;
}
.vendor-name {
  font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700;
  color: var(--text-muted); line-height: 1.3; transition: var(--transition);
  letter-spacing: 0.3px; text-transform: uppercase;
}
.vendor-card:hover .vendor-name { color: var(--cyan); }
.vendor-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(0,153,187,0.2); margin: 8px auto 0; transition: var(--transition); flex-shrink: 0;
}
.vendor-card:hover .vendor-dot { background: var(--cyan); box-shadow: 0 0 8px var(--cyan), 0 0 18px rgba(0,153,187,0.5); }


/* ================================================================
   GEOGRAPHY
================================================================ */
.geography { padding: 110px 0; }
.geo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.geo-text .section-sub { max-width: 480px; }
.geo-features { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.geo-feature {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--bg-card); backdrop-filter: var(--blur-glass); -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(0,153,187,0.08); border-radius: var(--radius);
  padding: 18px 20px; transition: var(--transition);
}
.geo-feature:hover { border-color: rgba(0,153,187,0.3); box-shadow: 0 0 20px rgba(0,153,187,0.06); }
.geo-feature-icon {
  width: 42px; height: 42px; flex-shrink: 0; background: rgba(0,153,187,0.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--cyan);
}
.geo-feature h4 { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.geo-feature p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.geo-visual {
  background: var(--bg-card); backdrop-filter: var(--blur-glass); -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(0,153,187,0.1); border-radius: var(--radius-lg);
  padding: 48px; position: relative; text-align: center; box-shadow: var(--shadow-card);
}
.geo-visual::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-hero); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.africa-svg { width: 100%; max-width: 300px; opacity: 0.8; }
.geo-hq-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,153,187,0.08); border: 1px solid rgba(0,153,187,0.25);
  border-radius: 100px; padding: 10px 20px; margin-top: 24px;
  font-size: 13px; font-weight: 600; color: var(--cyan); box-shadow: 0 0 20px rgba(0,153,187,0.08);
}


/* ================================================================
   CONTACT
================================================================ */
.contact { padding: 110px 0; background: var(--bg-primary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; margin-top: 60px; }
.contact-info h3 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--text-secondary); line-height: 1.78; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-card); backdrop-filter: var(--blur-glass); -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(0,153,187,0.08); border-radius: var(--radius); padding: 16px 18px; transition: var(--transition);
}
.contact-item:hover { border-color: rgba(0,153,187,0.25); }
.contact-item-icon {
  width: 40px; height: 40px; flex-shrink: 0; background: rgba(0,153,187,0.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--cyan);
}
.contact-item-text span { display: block; font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.contact-item-text a, .contact-item-text p { font-size: 14px; color: var(--text-secondary); text-decoration: none; line-height: 1.6; transition: var(--transition); }
.contact-item-text a:hover { color: var(--cyan); }
.contact-form-wrap {
  background: var(--bg-card); backdrop-filter: var(--blur-glass); -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(0,153,187,0.12); border-radius: var(--radius-lg); padding: 44px;
  box-shadow: var(--shadow-card); position: relative; overflow: hidden;
}
.contact-form-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-hero);
}
.contact-form-wrap h3 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(248, 250, 252, 0.95); border: 1.5px solid rgba(0,153,187,0.15);
  border-radius: var(--radius); color: var(--text-primary); font-family: 'Inter', sans-serif;
  font-size: 14px; padding: 13px 16px; transition: var(--transition); outline: none;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,153,187,0.08), 0 0 20px rgba(0,153,187,0.08);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--bg-secondary); color: var(--text-primary); }
.form-submit { width: 100%; justify-content: center; font-size: 15px; font-weight: 700; padding: 16px; }
.form-note { text-align: center; margin-top: 12px; font-size: 12px; color: var(--text-muted); }


/* ================================================================
   FOOTER
================================================================ */
.footer { background: var(--bg-secondary); border-top: 1px solid rgba(0,153,187,0.08); padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--text-secondary); line-height: 1.78; margin: 18px 0 28px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px; background: rgba(0,153,187,0.06);
  border: 1px solid rgba(0,153,187,0.12); display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none; transition: var(--transition); font-size: 15px;
}
.social-link:hover { border-color: rgba(0,153,187,0.4); color: var(--cyan); background: rgba(0,153,187,0.1); box-shadow: 0 0 16px rgba(0,153,187,0.12); }
.footer-col h4 { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; color: var(--text-primary); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-secondary); text-decoration: none; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--cyan); padding-left: 6px; }
.footer-cert { display: flex; flex-direction: column; gap: 8px; }
.cert-badge {
  display: flex; align-items: center; gap: 10px; background: rgba(0,153,187,0.04);
  border: 1px solid rgba(0,153,187,0.1); border-radius: 8px; padding: 10px 14px;
  font-size: 12px; font-weight: 600; color: var(--text-secondary); transition: var(--transition);
}
.cert-badge:hover { border-color: rgba(0,153,187,0.25); color: var(--text-primary); }
.cert-badge svg { color: var(--cyan); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(0,153,187,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom a { color: var(--cyan); text-decoration: none; }


/* ================================================================
   KEYFRAMES
================================================================ */
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--cyan), 0 0 22px rgba(0,153,187,0.7); }
  50%       { opacity: 0.4; transform: scale(1.6); box-shadow: 0 0 4px var(--cyan), 0 0 10px rgba(0,153,187,0.3); }
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  25%       { transform: translate(50px,-60px) scale(1.06); }
  50%       { transform: translate(-30px,35px) scale(0.96); }
  75%       { transform: translate(28px,-22px) scale(1.03); }
}
@keyframes scanDown {
  0%   { top: -2px; opacity: 0; }
  4%   { opacity: 1; }
  92%  { opacity: 0.5; }
  100% { top: 100%; opacity: 0; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}


/* ================================================================
   REVEAL ANIMATIONS
================================================================ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }


/* ================================================================
   MOBILE NAV
================================================================ */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 800;
  color: var(--text-primary); text-decoration: none; transition: var(--transition);
}
.mobile-menu a:hover { color: var(--cyan); text-shadow: 0 0 20px rgba(0,153,187,0.3); }
.mobile-close {
  position: absolute; top: 24px; right: 24px; background: none;
  border: 1px solid var(--border); color: var(--text-primary); padding: 8px 14px;
  border-radius: 8px; cursor: pointer; font-size: 18px; transition: var(--transition);
}
.mobile-close:hover { border-color: var(--cyan); color: var(--cyan); }


/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .vendors-grid   { grid-template-columns: repeat(4, 1fr); }
  .vendor-card    { min-height: 100px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid       { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .about-grid, .geo-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
  .solutions-grid { grid-template-columns: 1fr; }
  .vendors-grid { grid-template-columns: repeat(3, 1fr); }
  .about-highlights, .about-badge-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero h1 { font-size: 40px; letter-spacing: -1px; }
  .orb-1, .orb-2, .orb-3 { opacity: 0.7; }
}
@media (max-width: 480px) {
  .vendors-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(4) { border-right: none; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 28px 20px; }
}


/* ================================================================
   BLOG — LISTING PAGE
================================================================ */
.blog-hero {
  background: var(--bg-deep); padding: 140px 0 72px; position: relative; overflow: hidden;
}
.blog-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(0,153,187,0.1) 0%, transparent 70%);
}
.blog-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.blog-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5.5vw, 64px); font-weight: 800; line-height: 1.08;
  color: var(--text-primary); margin-bottom: 18px; letter-spacing: -1.5px;
}
.blog-hero p {
  font-size: 18px; color: var(--text-secondary); line-height: 1.75; max-width: 600px;
}

/* Category filter pills */
.blog-filters {
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(0,153,187,0.08);
  padding: 20px 0; position: sticky; top: 0; z-index: 100;
}
.filter-inner { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.filter-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 100px;
  border: 1.5px solid rgba(0,153,187,0.18); background: transparent;
  color: var(--text-muted); cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.filter-pill:hover { border-color: var(--cyan); color: var(--cyan); }
.filter-pill.active {
  background: var(--cyan); border-color: var(--cyan); color: #fff;
  box-shadow: 0 4px 14px rgba(0,153,187,0.3);
}
.filter-pill[data-cat="vendor"].active    { background: var(--violet); border-color: var(--violet); box-shadow: 0 4px 14px rgba(124,58,237,0.3); }
.filter-pill[data-cat="company"].active   { background: var(--emerald); border-color: var(--emerald); box-shadow: 0 4px 14px rgba(5,150,105,0.3); }
.filter-pill[data-cat="technical"].active { background: var(--blue); border-color: var(--blue); box-shadow: 0 4px 14px rgba(0,87,184,0.3); }
.filter-pill[data-cat="threat"].active    { background: var(--magenta); border-color: var(--magenta); box-shadow: 0 4px 14px rgba(233,30,140,0.3); }

/* Blog grid */
.blog-section { padding: 60px 0 100px; }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.blog-card {
  background: var(--bg-card); border: 1px solid rgba(0,153,187,0.1);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: all 0.35s ease;
  text-decoration: none; color: inherit;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,153,187,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.09), 0 0 40px rgba(0,153,187,0.07);
}
.blog-card.hidden { display: none; }

.card-thumb {
  height: 5px; flex-shrink: 0;
}
.card-thumb.cat-security   { background: linear-gradient(90deg, var(--cyan), #0057B8); }
.card-thumb.cat-vendor     { background: linear-gradient(90deg, var(--violet), #A855F7); }
.card-thumb.cat-company    { background: linear-gradient(90deg, var(--emerald), #34D399); }
.card-thumb.cat-technical  { background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.card-thumb.cat-threat     { background: linear-gradient(90deg, var(--magenta), #F97316); }

.card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }

.card-cat {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; width: fit-content;
}
.card-cat.cat-security  { color: var(--cyan);    background: rgba(0,153,187,0.08);   border: 1px solid rgba(0,153,187,0.2); }
.card-cat.cat-vendor    { color: var(--violet);  background: rgba(124,58,237,0.08);  border: 1px solid rgba(124,58,237,0.2); }
.card-cat.cat-company   { color: var(--emerald); background: rgba(5,150,105,0.08);   border: 1px solid rgba(5,150,105,0.2); }
.card-cat.cat-technical { color: var(--blue);    background: rgba(0,87,184,0.08);    border: 1px solid rgba(0,87,184,0.2); }
.card-cat.cat-threat    { color: var(--magenta); background: rgba(233,30,140,0.08);  border: 1px solid rgba(233,30,140,0.2); }

.card-body h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--text-primary); line-height: 1.3; margin-bottom: 12px;
}
.card-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; flex: 1; }
.card-meta {
  display: flex; align-items: center; gap: 16px;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(0,153,187,0.08);
  font-size: 12px; color: var(--text-muted);
}
.card-meta span { display: flex; align-items: center; gap: 5px; }
.card-read-more {
  margin-top: 16px; font-size: 13px; font-weight: 700;
  color: var(--cyan); display: flex; align-items: center; gap: 6px; transition: var(--transition);
}
.blog-card:hover .card-read-more { gap: 10px; }


/* ================================================================
   BLOG — INDIVIDUAL POST
================================================================ */
.post-hero {
  padding: 140px 0 64px; position: relative; overflow: hidden;
  background: var(--bg-deep);
}
.post-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(0,153,187,0.08) 0%, transparent 70%);
}
.post-hero-inner { position: relative; z-index: 2; max-width: 800px; }

.post-cat-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.post-cat-badge.cat-security  { color: var(--cyan);    background: rgba(0,153,187,0.09);  border: 1px solid rgba(0,153,187,0.25); }
.post-cat-badge.cat-vendor    { color: var(--violet);  background: rgba(124,58,237,0.09); border: 1px solid rgba(124,58,237,0.25); }
.post-cat-badge.cat-company   { color: var(--emerald); background: rgba(5,150,105,0.09);  border: 1px solid rgba(5,150,105,0.25); }
.post-cat-badge.cat-technical { color: var(--blue);    background: rgba(0,87,184,0.09);   border: 1px solid rgba(0,87,184,0.25); }
.post-cat-badge.cat-threat    { color: var(--magenta); background: rgba(233,30,140,0.09); border: 1px solid rgba(233,30,140,0.25); }

.post-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4.5vw, 52px); font-weight: 800; line-height: 1.1;
  color: var(--text-primary); margin-bottom: 20px; letter-spacing: -1px;
}
.post-hero .post-intro {
  font-size: 18px; color: var(--text-secondary); line-height: 1.75; max-width: 680px;
}
.post-meta-bar {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(0,153,187,0.1);
  font-size: 13px; color: var(--text-muted);
}
.post-meta-bar span { display: flex; align-items: center; gap: 7px; }
.post-meta-bar strong { color: var(--text-secondary); font-weight: 600; }

/* Post body */
.post-body { padding: 72px 0 80px; }
.post-layout { display: grid; grid-template-columns: 1fr 280px; gap: 64px; align-items: start; }
.post-content { max-width: 720px; }
.post-content h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700;
  color: var(--text-primary); margin: 44px 0 16px; line-height: 1.25;
}
.post-content h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700;
  color: var(--text-primary); margin: 32px 0 12px;
}
.post-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 20px; }
.post-content ul, .post-content ol {
  margin: 0 0 20px 0; padding-left: 24px;
}
.post-content li { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 8px; }
.post-content strong { color: var(--text-primary); font-weight: 600; }
.post-content a { color: var(--cyan); text-decoration: none; border-bottom: 1px solid rgba(0,153,187,0.3); transition: var(--transition); }
.post-content a:hover { border-color: var(--cyan); }

.post-callout {
  background: rgba(0,153,187,0.05); border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 28px 0;
}
.post-callout p { margin: 0; color: var(--text-secondary); font-size: 15px; font-style: italic; }

.post-tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(0,153,187,0.1); }
.post-tag {
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  background: var(--bg-secondary); border: 1px solid rgba(0,153,187,0.12);
  border-radius: 100px; padding: 5px 14px; transition: var(--transition);
}
.post-tag:hover { color: var(--cyan); border-color: rgba(0,153,187,0.35); }

/* Sidebar */
.post-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--bg-card); border: 1px solid rgba(0,153,187,0.1);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px;
}
.sidebar-widget h4 {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 18px;
}
.sidebar-post { display: flex; flex-direction: column; gap: 14px; }
.sidebar-post-item {
  text-decoration: none; padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,153,187,0.07);
}
.sidebar-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post-item .sp-cat { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); margin-bottom: 4px; }
.sidebar-post-item .sp-title { font-size: 13px; font-weight: 600; color: var(--text-primary); line-height: 1.4; transition: var(--transition); }
.sidebar-post-item:hover .sp-title { color: var(--cyan); }
.sidebar-cta {
  background: linear-gradient(135deg, rgba(0,153,187,0.08), rgba(124,58,237,0.06));
  border: 1px solid rgba(0,153,187,0.15);
}
.sidebar-cta p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }

/* Back to blog bar */
.post-nav-bar {
  background: var(--bg-primary); border-bottom: 1px solid rgba(0,153,187,0.08);
  padding: 14px 0;
}
.post-nav-inner { display: flex; align-items: center; justify-content: space-between; }
.btn-back-blog {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  text-decoration: none; transition: var(--transition);
}
.btn-back-blog:hover { color: var(--cyan); }

/* Blog responsive */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .post-layout { grid-template-columns: 1fr; gap: 48px; }
  .post-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-sidebar { grid-template-columns: 1fr; }
  .post-hero { padding: 120px 0 48px; }
  .filter-inner { gap: 6px; }
  .filter-pill { font-size: 12px; padding: 6px 12px; }
}
