@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');
:root {
  --bg-void:        #050810;
  --bg-base:         #080c16;
  --bg-elevated:     #0d1322;
  --bg-panel:        rgba(18, 27, 46, 0.55);
  --bg-panel-light:  rgba(255, 255, 255, 0.04);
  --blue-core:       #007bff;
  --blue-bright:     #2e8fff;
  --blue-glow:       #5eb8ff;
  --blue-deep:       #0b3f8a;
  --blue-ambient:    #3b6fd9;
  --text-primary:    #eef3fb;
  --text-secondary:  #aab8d1;
  --text-muted:      #6e7d99;
  --glass-border:    rgba(120, 165, 255, 0.16);
  --glass-border-hi: rgba(150, 190, 255, 0.35);
  --glass-shadow:    0 8px 32px rgba(0, 8, 24, 0.6);
  --glass-blur:      16px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --maxw: 1280px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}
a { color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(94, 184, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 184, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 90%);
}
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(700px 500px at 12% -5%, rgba(46, 143, 255, 0.22), transparent 60%),
    radial-gradient(800px 600px at 110% 20%, rgba(59, 111, 217, 0.16), transparent 60%),
    radial-gradient(900px 700px at 50% 110%, rgba(11, 63, 138, 0.25), transparent 60%);
}
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
#network-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.glass {
  background: var(--bg-panel);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}
.glass-pane {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.06);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 5%;
  background: rgba(5, 8, 16, 0.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--glass-border);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.logo-chip {
  height: 60px;
  width: 60px;
  border-radius: 14px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: none;
  flex-shrink: 0;
}
.logo-chip img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: none;
}
.logo .logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1.1;
}
.logo .logo-text span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--blue-glow);
  font-weight: 400;
  margin-top: 2px;
}
.menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.menu a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: all 0.25s ease;
  position: relative;
}
.menu a:hover {
  color: var(--text-primary);
  background: var(--bg-panel-light);
}
.menu a.active {
  color: var(--blue-glow);
  background: rgba(46, 143, 255, 0.1);
  border: 1px solid var(--glass-border);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-deep));
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid rgba(150, 190, 255, 0.3);
  box-shadow: 0 4px 24px rgba(0, 123, 255, 0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(46, 143, 255, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-panel-light);
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--glass-border);
  transition: all 0.25s ease;
}
.btn-ghost:hover {
  border-color: var(--glass-border-hi);
  background: rgba(255,255,255,0.07);
}
.section {
  padding: 7rem 5%;
  position: relative;
}
.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-glow);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-glow);
  box-shadow: 0 0 12px var(--blue-glow);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 620px;
  margin-top: 1rem;
}
hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: 0;
}
.footer {
  position: relative;
  padding: 3.5rem 5% 2.5rem;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  background: linear-gradient(180deg, transparent, rgba(11, 63, 138, 0.08));
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-brand .logo-chip {
  height: 40px;
  width: 40px;
  border-radius: 10px;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-glow);
  margin-bottom: 0.9rem;
}
.footer-col p, .footer-col a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--blue-glow); }
.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.8rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-panel-light);
  border: 1px solid var(--glass-border);
  transition: all 0.25s ease;
}
.footer-social a:hover {
  background: rgba(46,143,255,0.18);
  border-color: var(--glass-border-hi);
  transform: translateY(-2px);
}
.footer-bottom {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (max-width: 900px) {
  .menu { display: none; }
  .nav-toggle { display: flex; }
  .menu.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(8, 12, 22, 0.97);
    backdrop-filter: blur(20px);
    padding: 1rem 5% 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    gap: 0.2rem;
  }
  .menu.open a {
    width: 100%;
    padding: 0.85rem 1rem;
  }
  .footer-grid { flex-direction: column; }
}
@media (max-width: 600px) {
  .section { padding: 4.5rem 6%; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 6rem 5% 4rem;
  overflow: hidden;
}
.hero-content {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
.hero-text h1 .grad {
  color: var(--blue-glow);
  background: linear-gradient(120deg, var(--blue-glow), var(--blue-bright) 60%, var(--blue-ambient));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@supports not (background-clip: text) {
  .hero-text h1 .grad { color: var(--blue-glow); -webkit-text-fill-color: unset; }
}
.hero-text p {
  margin-top: 1.4rem;
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 540px;
}
.hero-cta {
  margin-top: 2.4rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  margin-top: 3rem;
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-primary);
  display: block;
}
.hero-stats .stat span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-visual {
  position: relative;
  height: 460px;
  isolation: isolate;
  overflow: visible;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 8% 10% 10%;
  border-radius: 40px;
  background: radial-gradient(circle at 50% 45%, rgba(94,184,255,0.32), rgba(46,143,255,0.12) 50%, transparent 75%);
  filter: blur(32px);
  z-index: 0;
  animation: pulseGlow 4s ease-in-out infinite;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(94,184,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,184,255,0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 50%, #000 34%, transparent 82%);
  opacity: 0.35;
  z-index: 0;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.02); }
}
.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: visible;
}
.hero-scene-glow {
  position: absolute;
  inset: 14% 16% 18%;
  background: radial-gradient(circle, rgba(46,143,255,0.24), rgba(11,63,138,0.08) 35%, transparent 70%);
  filter: blur(18px);
}
.hero-scene-grid {
  position: absolute;
  inset: 10% 8%;
  border-radius: 32px;
  border: 1px solid rgba(94,184,255,0.1);
  background-image:
    linear-gradient(rgba(94,184,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,184,255,0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(900px) rotateX(64deg) translateY(78px) scale(1.02);
  transform-origin: center;
  opacity: 0.35;
}
.tech-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.tech-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-glow);
  box-shadow: 0 0 12px var(--blue-glow), 0 0 24px rgba(94,184,255,0.3);
  opacity: 0.7;
  animation: particleFloat 8s ease-in-out infinite;
}
.tech-particle:nth-child(1) { left: 12%; top: 18%; animation-delay: 0s; width: 5px; height: 5px; }
.tech-particle:nth-child(2) { left: 78%; top: 32%; animation-delay: 1.5s; }
.tech-particle:nth-child(3) { left: 22%; bottom: 28%; animation-delay: 3s; width: 3px; height: 3px; }
.tech-particle:nth-child(4) { right: 18%; top: 58%; animation-delay: 4.5s; }
.tech-particle:nth-child(5) { left: 48%; top: 12%; animation-delay: 2s; width: 6px; height: 6px; }
.tech-particle:nth-child(6) { right: 32%; bottom: 35%; animation-delay: 5s; }
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  25% { transform: translateY(-15px) scale(1.1); opacity: 0.9; }
  50% { transform: translateY(-25px) scale(1.3); opacity: 1; }
  75% { transform: translateY(-10px) scale(1.15); opacity: 0.85; }
}
.holographic-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(94,184,255,0.18);
  box-shadow: 
    inset 0 0 30px rgba(94,184,255,0.06),
    0 0 20px rgba(94,184,255,0.04);
  pointer-events: none;
  animation: rotateHolo 20s linear infinite;
}
.holographic-circle:nth-child(1) {
  width: 220px;
  height: 220px;
  left: 8%;
  top: 12%;
  animation-duration: 28s;
  border-width: 1.5px;
}
.holographic-circle:nth-child(2) {
  width: 160px;
  height: 160px;
  right: 12%;
  bottom: 18%;
  animation-duration: 32s;
  animation-direction: reverse;
}
.holographic-circle:nth-child(3) {
  width: 110px;
  height: 110px;
  left: 58%;
  top: 38%;
  animation-duration: 38s;
  border-color: rgba(94,184,255,0.12);
}
@keyframes rotateHolo {
  from { transform: rotate(0deg) scale(1); opacity: 1; }
  50% { transform: rotate(180deg) scale(1.05); opacity: 0.8; }
  to { transform: rotate(360deg) scale(1); opacity: 1; }
}
.hero-scene::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  left: 85%;
  top: 45%;
  background: 
    linear-gradient(30deg, rgba(94,184,255,0.15) 2px, transparent 2px),
    linear-gradient(150deg, rgba(94,184,255,0.15) 2px, transparent 2px),
    linear-gradient(270deg, rgba(94,184,255,0.15) 2px, transparent 2px);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexRotate 15s linear infinite;
  z-index: 1;
}
.hero-scene::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  left: 10%;
  bottom: 15%;
  background: 
    linear-gradient(30deg, rgba(94,184,255,0.12) 1px, transparent 1px),
    linear-gradient(150deg, rgba(94,184,255,0.12) 1px, transparent 1px);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexRotate 20s linear infinite reverse;
  z-index: 1;
}
@keyframes hexRotate {
  from { transform: rotate(0deg); opacity: 0.5; }
  50% { opacity: 0.8; }
  to { transform: rotate(360deg); opacity: 0.5; }
}
.hero-network-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.85;
}
.hero-network-lines svg {
  width: 100%;
  height: 100%;
}
.server-scene {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-40px);
}
.server-stack {
  width: min(280px, 54vw);
  position: relative;
  display: grid;
  gap: 0.9rem;
  transform: perspective(1100px) rotateX(50deg) rotateZ(-12deg);
  transform-style: preserve-3d;
  animation: serverFloat 6s ease-in-out infinite;
}
@keyframes serverFloat {
  0%, 100% { transform: perspective(1100px) rotateX(50deg) rotateZ(-12deg) translateY(0); }
  50% { transform: perspective(1100px) rotateX(50deg) rotateZ(-12deg) translateY(-8px); }
}
.server-tower-halo {
  position: absolute;
  inset: -18% -22% -18%;
  border-radius: 40px;
  background: radial-gradient(circle at 50% 50%, rgba(94,184,255,0.42), rgba(46,143,255,0.22) 35%, rgba(11,63,138,0.08) 60%, transparent 75%);
  filter: blur(36px);
  z-index: -1;
  animation: haloBreath 3.5s ease-in-out infinite;
}
@keyframes haloBreath {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}
.server-unit {
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(94,184,255,0.55);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(6,12,22,0.98), rgba(13,24,44,0.96));
  box-shadow:
    0 0 0 1px rgba(94,184,255,0.15),
    0 0 32px rgba(46,143,255,0.28),
    0 10px 20px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(94,184,255,0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.server-unit::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: #5eb8ff;
  box-shadow:
    0 0 0 3px rgba(94,184,255,0.18),
    0 0 20px rgba(94,184,255,1),
    0 0 40px rgba(94,184,255,0.5);
  animation: ledpulse 2.4s ease-in-out infinite;
}
.server-stack:hover .server-unit {
  border-color: rgba(94,184,255,0.65);
  box-shadow:
    0 0 0 1px rgba(94,184,255,0.22),
    0 0 40px rgba(46,143,255,0.4),
    0 12px 24px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(94,184,255,0.12);
}
.server-unit::before {
  content: '';
  position: absolute;
  inset: 8px 12px 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(94,184,255,0.18);
  background: 
    linear-gradient(90deg, rgba(94,184,255,0.12), transparent 28%, transparent 72%, rgba(94,184,255,0.08)),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}
.server-unit:nth-child(2n)::after {
  background: #4ade80;
  box-shadow:
    0 0 0 3px rgba(74,222,128,0.12),
    0 0 16px rgba(74,222,128,0.95);
  animation-delay: 0.5s;
}
.server-unit:nth-child(3n)::after {
  animation-delay: 1s;
}
.server-unit .status-bars {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 42px;
  height: 14px;
  margin-top: -7px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}
.server-unit .status-bars span {
  width: 5px;
  border-radius: 3px;
  background: rgba(94,184,255,0.36);
}
.server-unit .status-bars span:nth-child(1) { height: 8px; }
.server-unit .status-bars span:nth-child(2) { height: 12px; }
.server-unit .status-bars span:nth-child(3) { height: 6px; background: var(--blue-glow); }
.server-base {
  width: 72%;
  height: 20px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(46,143,255,0.15), rgba(94,184,255,0.45), rgba(46,143,255,0.15));
  box-shadow: 
    0 0 40px rgba(46,143,255,0.45),
    0 0 60px rgba(94,184,255,0.25),
    inset 0 2px 8px rgba(94,184,255,0.2);
}
.pulse-node {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(94,184,255,0.85);
  background: radial-gradient(circle, rgba(94,184,255,0.4), rgba(94,184,255,0.15));
  box-shadow: 
    0 0 28px rgba(94,184,255,0.7),
    0 0 48px rgba(94,184,255,0.35),
    inset 0 0 12px rgba(94,184,255,0.3);
  animation: nodePulse 2.8s ease-in-out infinite;
}
.pulse-node::before,
.pulse-node::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(94,184,255,0.4);
  animation: pulse-ring 2.8s ease-out infinite;
}
.pulse-node::after {
  inset: -20px;
  border-width: 1px;
  animation-delay: 0.9s;
}
@keyframes nodePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 28px rgba(94,184,255,0.7), 0 0 48px rgba(94,184,255,0.35); }
  50% { transform: scale(1.15); box-shadow: 0 0 36px rgba(94,184,255,0.9), 0 0 60px rgba(94,184,255,0.5); }
}
.pulse-node.left { left: 15%; top: 42%; animation-delay: 0.3s; }
.pulse-node.right { right: 15%; top: 30%; animation-delay: 0.8s; }
.pulse-node.bottom { bottom: 16%; left: 50%; margin-left: -10px; animation-delay: 1.2s; }
.hero-orb {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(94,184,255,0.12);
  box-shadow: inset 0 0 40px rgba(94,184,255,0.08);
  animation: floaty 7s ease-in-out infinite;
  pointer-events: none;
}
.hero-orb-a {
  left: 4%;
  top: 12%;
}
.hero-orb-b {
  right: 2%;
  bottom: 6%;
  width: 130px;
  height: 130px;
  animation-delay: 1.5s;
}
.float-chip {
  position: absolute;
  z-index: 4;
  min-width: 165px;
  padding: 1.1rem 1.25rem;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05));
  border: 1px solid rgba(94,184,255,0.35);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 
    0 16px 42px rgba(0, 8, 24, 0.55), 
    0 0 0 1px rgba(94,184,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 32px rgba(46,143,255,0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.float-chip:hover {
  transform: translateY(-8px) scale(1.02) rotate(0deg) !important;
  box-shadow: 
    0 28px 64px rgba(0, 8, 24, 0.7), 
    0 0 0 1px rgba(94,184,255,0.35),
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 0 56px rgba(46,143,255,0.45);
  border-color: rgba(94,184,255,0.65);
  z-index: 5;
}
.float-chip .num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blue-glow);
  text-shadow: 0 0 20px rgba(94,184,255,0.5);
}
.float-chip .lbl {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}
.chip-uptime { 
  top: 12%; 
  left: 8%; 
  animation: cardFloat1 5s ease-in-out infinite;
}
.chip-response { 
  right: 2%; 
  top: 22%; 
  animation: cardFloat2 6s ease-in-out infinite;
}
.chip-encryption { 
  bottom: 18%; 
  left: 6%; 
  animation: cardFloat3 5.5s ease-in-out infinite;
}
.chip-monitoring {
  right: 8%;
  bottom: 14%;
  animation: cardFloat4 6.5s ease-in-out infinite;
}
.chip-zero-downtime {
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  animation: cardFloat5 5.8s ease-in-out infinite;
}
@keyframes cardFloat1 {
  0%, 100% { transform: translateY(0) rotate(-8deg) translateX(0); }
  33% { transform: translateY(-12px) rotate(-8deg) translateX(-3px); }
  66% { transform: translateY(-6px) rotate(-8deg) translateX(2px); }
}
@keyframes cardFloat2 {
  0%, 100% { transform: translateY(0) rotate(6deg) translateX(0); }
  40% { transform: translateY(-15px) rotate(6deg) translateX(3px); }
  80% { transform: translateY(-8px) rotate(6deg) translateX(-2px); }
}
@keyframes cardFloat3 {
  0%, 100% { transform: translateY(0) rotate(-4deg) translateX(0); }
  50% { transform: translateY(-14px) rotate(-4deg) translateX(4px); }
}
@keyframes cardFloat4 {
  0%, 100% { transform: translateY(0) rotate(10deg) translateX(0); }
  35% { transform: translateY(-10px) rotate(10deg) translateX(-3px); }
  70% { transform: translateY(-18px) rotate(10deg) translateX(2px); }
}
@keyframes cardFloat5 {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-6deg); }
  45% { transform: translateX(-50%) translateY(-14px) rotate(-6deg); }
  90% { transform: translateX(-50%) translateY(-6px) rotate(-6deg); }
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.75);
    opacity: 0.75;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes ledpulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.partners-strip {
  padding: 5rem 5%;
  position: relative;
  overflow: hidden;
}
.partners-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(94,184,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,184,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  pointer-events: none;
}
.partners-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(46,143,255,0.08), transparent 60%);
  pointer-events: none;
}
.partners-strip .strip-head {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.partners-strip .eyebrow {
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.partners-strip .section-title {
  margin: 0 auto 0.8rem;
}
.partners-strip .section-sub {
  margin: 0 auto;
  max-width: 580px;
  text-align: center;
}
.partners-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  align-items: stretch; 
}
.partner-card {
  aspect-ratio: 1.4 / 1;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 8, 24, 0.3);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.partner-card:nth-child(1) { animation-delay: 0.1s; }
.partner-card:nth-child(2) { animation-delay: 0.15s; }
.partner-card:nth-child(3) { animation-delay: 0.2s; }
.partner-card:nth-child(4) { animation-delay: 0.25s; }
.partner-card:nth-child(5) { animation-delay: 0.3s; }
.partner-card:nth-child(6) { animation-delay: 0.35s; }
.partner-card:nth-child(7) { animation-delay: 0.4s; }
.partner-card:nth-child(8) { animation-delay: 0.45s; }
.partner-card:nth-child(9) { animation-delay: 0.5s; }
.partner-card:nth-child(10) { animation-delay: 0.55s; }
.partner-card:nth-child(11) { animation-delay: 0.6s; }
.partner-card:nth-child(12) { animation-delay: 0.65s; }
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94,184,255,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94,184,255,0.4);
  box-shadow: 
    0 12px 32px rgba(0, 8, 24, 0.45),
    0 0 0 1px rgba(94,184,255,0.15),
    0 0 28px rgba(46,143,255,0.25);
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}
.partner-card:hover::before {
  opacity: 1;
}
.partner-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0.95) contrast(1.05);
  transition: all 0.3s ease;
}
.partner-card img[alt="TVS"],
.partner-card img[alt="Wipro"],
.partner-card img[alt="HP"] {
  max-width: 85%;
  max-height: 85%;
  transform: scale(1.4);
}
.partner-card:hover img[alt="TVS"],
.partner-card:hover img[alt="Wipro"],
.partner-card:hover img[alt="HP"] {
  transform: scale(1.45);
}
.partner-card:hover img {
  filter: brightness(1.05) contrast(1.1);
}
.partner-decoration {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-glow);
  box-shadow: 0 0 16px var(--blue-glow);
  opacity: 0.4;
  pointer-events: none;
  animation: decorPulse 3s ease-in-out infinite;
}
.partner-decoration:nth-child(1) {
  left: 15%;
  top: 20%;
  animation-delay: 0s;
}
.partner-decoration:nth-child(2) {
  right: 20%;
  top: 30%;
  animation-delay: 1s;
}
.partner-decoration:nth-child(3) {
  left: 25%;
  bottom: 25%;
  animation-delay: 2s;
}
@keyframes decorPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.3); }
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3.2rem;
  align-items: stretch; 
}
.glass-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s ease forwards;
  display: flex;
  flex-direction: column;
  height: 100%; 
}
.glass-card:nth-child(1) { animation-delay: 0.1s; }
.glass-card:nth-child(2) { animation-delay: 0.15s; }
.glass-card:nth-child(3) { animation-delay: 0.2s; }
.glass-card:nth-child(4) { animation-delay: 0.25s; }
.glass-card:nth-child(5) { animation-delay: 0.3s; }
.glass-card:nth-child(6) { animation-delay: 0.35s; }
.glass-card:nth-child(7) { animation-delay: 0.4s; }
.glass-card:nth-child(8) { animation-delay: 0.45s; }
.glass-card:nth-child(9) { animation-delay: 0.5s; }
.glass-card:nth-child(10) { animation-delay: 0.55s; }
.glass-card:nth-child(11) { animation-delay: 0.6s; }
.glass-card:nth-child(12) { animation-delay: 0.65s; }
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(94,184,255,0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.glass-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(150,190,255,0.5), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.glass-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(94,184,255,0.5);
  box-shadow: 
    0 24px 56px rgba(0, 8, 24, 0.7), 
    0 0 0 1px rgba(94,184,255,0.25),
    0 0 48px rgba(46,143,255,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
}
.glass-card:hover::before { 
  opacity: 1; 
}
.glass-card:hover::after { 
  opacity: 1; 
}
.glass-card:hover .card-icon {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 0 32px rgba(46,143,255,0.4);
  background: linear-gradient(140deg, rgba(46,143,255,0.32), rgba(11,63,138,0.18));
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(140deg, rgba(46,143,255,0.22), rgba(11,63,138,0.12));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--blue-glow);
  margin-bottom: 1.4rem;
  transition: all 0.3s ease;
}
.glass-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--text-primary);
}
.glass-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1; 
}
.service-group + .service-group {
  margin-top: 4rem;
}
.service-group .section-sub {
  max-width: 760px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
  align-items: stretch; 
}
.service-card {
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card h3 {
  margin-bottom: 0.8rem;
  flex-shrink: 0;
}
.service-card p {
  flex-grow: 1; 
  line-height: 1.6;
}
.service-points {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}
.service-points li {
  display: flex;
  gap: 0.65rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}
.service-points li::before {
  content: '\2022';
  color: var(--blue-glow);
  flex-shrink: 0;
}
.service-eyebrow {
  margin-bottom: 0.8rem;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split-media {
  position: relative;
}
.split-media .glass-pane {
  padding: 1rem;
}
.split-media img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 6px);
  filter: saturate(0.9) contrast(1.05);
}
.rack-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius-lg) - 6px);
  background: 
    linear-gradient(165deg, rgba(13,22,38,0.95), rgba(6,10,20,0.98)),
    linear-gradient(225deg, rgba(46,143,255,0.08), transparent 60%);
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.5);
}
.rack-visual::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(94,184,255,0.28), transparent 60%);
  filter: blur(40px);
  animation: ambientPulse 4s ease-in-out infinite;
}
@keyframes ambientPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}
.rack-unit {
  flex: 1;
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    rgba(13,20,35,0.8);
  border: 1px solid rgba(94,184,255,0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.9rem;
  position: relative;
  z-index: 1;
  box-shadow: 
    0 2px 8px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}
.rack-unit:hover {
  border-color: rgba(94,184,255,0.45);
  box-shadow: 
    0 4px 16px rgba(46,143,255,0.2),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.rack-unit .led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 
    0 0 12px #4ade80,
    0 0 24px rgba(74,222,128,0.5),
    inset 0 0 4px rgba(255,255,255,0.8);
  animation: ledpulse 2.4s ease-in-out infinite;
}
.rack-unit:nth-child(3) .led { 
  background: var(--blue-glow); 
  box-shadow: 
    0 0 12px var(--blue-glow),
    0 0 24px rgba(94,184,255,0.5),
    inset 0 0 4px rgba(255,255,255,0.8); 
  animation-delay: 0.4s; 
}
.rack-unit:nth-child(4) .led { animation-delay: 0.8s; }
.rack-unit .bars {
  display: flex;
  gap: 3px;
  margin-left: auto;
}
.rack-unit .bars span {
  width: 3px;
  height: 14px;
  background: rgba(94,184,255,0.4);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(94,184,255,0.3);
  transition: all 0.3s ease;
}
.rack-unit:hover .bars span {
  background: rgba(94,184,255,0.6);
  box-shadow: 0 0 10px rgba(94,184,255,0.5);
}
.rack-unit .bars span:nth-child(2) { height: 9px; background: rgba(94,184,255,0.3); }
.rack-unit .bars span:nth-child(3) { height: 18px; background: var(--blue-glow); box-shadow: 0 0 8px var(--blue-glow); }
@keyframes ledpulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.split-media .float-chip {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  padding: 1rem 1.3rem;
}
.float-chip .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--blue-glow);
}
.float-chip .lbl {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
}
.contact-info-card {
  padding: 2.4rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.6rem;
  align-items: flex-start;
}
.contact-row .ic {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(46,143,255,0.14);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-glow);
  flex-shrink: 0;
}
.contact-row h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.contact-row p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.form-card {
  padding: 2.4rem;
}
.form-group {
  margin-bottom: 1.3rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}
.form-group label span {
  color: var(--text-muted);
  font-weight: 400;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--glass-border-hi);
  background: rgba(46,143,255,0.06);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  filter: grayscale(0.3) brightness(0.85) contrast(1.1);
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}
.values-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1rem;
}
.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
  align-items: stretch; 
}
.process-step {
  padding: 1.6rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.process-step .step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--blue-glow);
  margin-bottom: 0.6rem;
  display: block;
  flex-shrink: 0; 
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
  flex-shrink: 0; 
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1; 
}
.cta-banner {
  padding: 3.4rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(46,143,255,0.14), rgba(11,63,138,0.18));
  position: relative;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.8rem;
}
.cta-banner p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 1.8rem;
}
@media (max-width: 980px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { height: 420px; order: -1; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-strip { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .server-scene {
    transform: translateX(0);
  }
  .chip-zero-downtime,
  .chip-monitoring {
    display: none;
  }
  .chip-uptime {
    left: 4%;
    top: 12%;
  }
  .chip-response {
    right: 4%;
    top: 20%;
  }
  .chip-encryption {
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
  }
}
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .process-strip { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.4rem; }
  .split-media .float-chip { position: static; margin-top: 1rem; display: inline-block; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .server-scene {
    transform: translateX(0);
  }
  .float-chip {
    min-width: 130px;
    padding: 0.85rem 1rem;
  }
  .float-chip .num {
    font-size: 0.95rem;
  }
  .float-chip .lbl {
    font-size: 0.6rem;
  }
  .chip-monitoring,
  .chip-zero-downtime {
    display: none;
  }
  .chip-uptime { 
    top: 8%; 
    left: 2%;
  }
  .chip-response { 
    right: 2%; 
    top: 18%;
  }
  .chip-encryption { 
    bottom: 10%; 
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
  }
  .hero-visual {
    height: 380px;
  }
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass, .glass-pane, .glass-card, .site-header, .partner-chip {
    background: var(--bg-elevated);
  }
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(30%) brightness(0.4);
  mix-blend-mode: soft-light;
}
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,8,16,0.7), rgba(13,19,34,0.6));
}
.about-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
}
.about-enterprise-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1) saturate(0.9);
  transition: transform 0.6s ease;
}
.about-image-container:hover .about-enterprise-image {
  transform: scale(1.05);
}
.about-image-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(5,8,16,0.5), rgba(11,63,138,0.35)),
    linear-gradient(180deg, transparent 50%, rgba(5,8,16,0.6));
  pointer-events: none;
}
.about-float-card {
  animation: aboutCardFloat 4s ease-in-out infinite;
}
.about-float-card:nth-child(4) { animation-delay: 0s; }
.about-float-card:nth-child(5) { animation-delay: 1s; }
.about-float-card:nth-child(6) { animation-delay: 2s; }
@keyframes aboutCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.about-image-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: 
    inset 0 0 60px rgba(46,143,255,0.15),
    0 0 40px rgba(46,143,255,0.1);
  pointer-events: none;
}
.glass-card.service-card {
  position: relative;
  overflow: hidden;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  background-size: cover;
  background-position: center;
  filter: grayscale(40%) brightness(0.5);
  transition: all 0.5s ease;
}
.glass-card.service-card:hover .service-card-bg {
  opacity: 0.25;
  transform: scale(1.08);
  filter: grayscale(20%) brightness(0.6);
}
.service-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,8,16,0.7), rgba(11,63,138,0.5));
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.process-step-visual {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  position: relative;
}
.process-step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.8);
  transition: transform 0.4s ease;
}
.process-step:hover .process-step-img {
  transform: scale(1.1);
  filter: brightness(0.75) saturate(1);
}
.process-step-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,143,255,0.3), rgba(11,63,138,0.4));
  mix-blend-mode: overlay;
}
.trust-image-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.trust-enterprise-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.15) saturate(0.85);
  transition: transform 0.6s ease;
}
.trust-image-container:hover .trust-enterprise-image {
  transform: scale(1.04);
}
.trust-image-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(5,8,16,0.7), rgba(11,63,138,0.5)),
    radial-gradient(circle at 30% 50%, rgba(46,143,255,0.15), transparent 60%);
}
.trust-image-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(94,184,255,0.25);
  border-radius: var(--radius-lg);
  box-shadow: 
    inset 0 0 40px rgba(46,143,255,0.1),
    0 8px 32px rgba(0,8,24,0.6);
}
.contact-bg-wrapper {
  position: relative;
}
.contact-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) grayscale(50%);
  opacity: 0.4;
}
.contact-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(5,8,16,0.85), rgba(13,19,34,0.75)),
    radial-gradient(circle at 50% 50%, rgba(46,143,255,0.08), transparent 70%);
}
.contact-grid {
  position: relative;
  z-index: 1;
}
.img-loading {
  background: linear-gradient(90deg, rgba(94,184,255,0.05), rgba(94,184,255,0.1), rgba(94,184,255,0.05));
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.fade-in-image {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-in-image.loaded {
  opacity: 1;
}
.industry-card-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(140deg, rgba(46,143,255,0.15), rgba(11,63,138,0.08));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--blue-glow);
  overflow: hidden;
}
.industry-card-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(94,184,255,0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.glass-card:hover .industry-card-icon::before {
  opacity: 1;
}
.tech-logo-card {
  position: relative;
  overflow: hidden;
}
.tech-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0.9) saturate(0.8);
  transition: all 0.3s ease;
}
.tech-logo-card:hover .tech-logo-img {
  filter: brightness(1.1) saturate(1.1);
  transform: scale(1.1);
}
.stats-section-bg {
  position: relative;
  overflow: hidden;
}
.stats-section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(94,184,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 0;
}
.stats-section-bg > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .trust-image-container {
    height: 320px;
  }
  .about-image-container {
    margin-bottom: 2rem;
  }
}
@media (max-width: 600px) {
  .trust-image-container {
    height: 260px;
  }
  .process-step-visual {
    width: 40px;
    height: 40px;
  }
  .hero-bg-image {
    opacity: 0.1;
  }
}
.faq-accordion {
  max-width: 900px;
  margin: 3rem auto 0;
  display: grid;
  gap: 1rem;
}
.faq-item {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover {
  border-color: rgba(94,184,255,0.35);
  box-shadow: 0 8px 24px rgba(0, 8, 24, 0.5), 0 0 0 1px rgba(94,184,255,0.1);
}
.faq-item.active {
  border-color: rgba(94,184,255,0.5);
  box-shadow: 0 12px 32px rgba(0, 8, 24, 0.6), 0 0 0 1px rgba(94,184,255,0.2);
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
}
.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}
.faq-question::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94,184,255,0.4), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.faq-item.active .faq-question::before {
  opacity: 1;
}
.faq-question:hover {
  color: var(--blue-glow);
}
.faq-question-text {
  flex: 1;
  color: inherit;
}
.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-glow);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.1rem;
}
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 2rem;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}
.faq-answer-content {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.98rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(94,184,255,0.1);
}
@media (max-width: 600px) {
  .faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 0.98rem;
    gap: 1rem;
  }
  .faq-answer {
    padding: 0 1.5rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
  }
  .faq-chevron {
    width: 20px;
    height: 20px;
    font-size: 1rem;
  }
}
