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

:root {
  --primary-color: #0066cc;
  --secondary-color: #00ccff;
  --accent-purple: #7c3aed;
  --neon-blue: #00a8ff;
  --neon-cyan: #00e5ff;
  --neon-purple: #a855f7;
  --dark-bg: #0d1525;
  --dark-surface: #131d2e;
  --dark-card: #192236;
  --dark-border: rgba(0,204,255,0.12);
  --text-primary: #f1f5f9;
  --text-secondary: rgba(255,255,255,0.8);
  --text-muted: rgba(255,255,255,0.6);
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-neon: linear-gradient(135deg, #00a8ff, #00e5ff, #a855f7);
  --glow-blue: 0 0 20px rgba(0,168,255,0.4), 0 0 40px rgba(0,168,255,0.15);
  --glow-cyan: 0 0 15px rgba(0,229,255,0.35), 0 0 30px rgba(0,229,255,0.1);
  --glow-purple: 0 0 15px rgba(168,85,247,0.35), 0 0 30px rgba(168,85,247,0.1);
  --neon-border: 1px solid rgba(0,229,255,0.25);
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

a { color: var(--secondary-color); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--neon-cyan); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* NEON GLOW KEYFRAMES */
@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(0,229,255,0.2), 0 0 20px rgba(0,229,255,0.1); }
  50% { box-shadow: 0 0 20px rgba(0,229,255,0.4), 0 0 40px rgba(0,229,255,0.2); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(0,229,255,0.2); }
  50% { border-color: rgba(0,229,255,0.5); }
}
@keyframes neonLine {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: all 0.4s ease;
  background: rgba(13,21,37,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar.scrolled {
  background: rgba(13,21,37,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,229,255,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 8px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0,229,255,0.3);
  display: inline-flex;
  align-items: center;
}
.navbar-brand span { color: var(--neon-cyan); }
.navbar-brand { gap: 12px; }
.navbar-logo-orbit {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.45));
  transition: height 0.3s ease;
}
.navbar-logo-wordmark {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: brightness(1.35) contrast(1.05) drop-shadow(0 0 14px rgba(0, 229, 255, 0.55)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
  transition: height 0.3s ease;
}
.navbar.scrolled .navbar-logo-orbit { height: 48px; }
.navbar.scrolled .navbar-logo-wordmark { height: 30px; }
@media (max-width: 640px) {
  .navbar-brand { gap: 8px; }
  .navbar-logo-orbit { height: 44px; }
  .navbar-logo-wordmark { height: 26px; }
  .navbar.scrolled .navbar-logo-orbit { height: 36px; }
  .navbar.scrolled .navbar-logo-wordmark { height: 22px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}
.nav-links li {
  white-space: nowrap;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.3s, text-shadow 0.3s;
}
.nav-links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0,229,255,0.4);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-neon);
  transition: width 0.3s;
  box-shadow: 0 0 8px rgba(0,229,255,0.5);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 9px 20px;
  background: var(--gradient-primary);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 15px rgba(0,102,204,0.3);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-blue);
}
.nav-cta::after { display: none; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(13,21,37,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(0,229,255,0.2);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13,21,37,0.1) 0%, rgba(13,21,37,0.2) 40%, rgba(13,21,37,0.7) 85%, var(--dark-bg) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 40px 48px;
  background: rgba(13,21,37,0.45);
  border-radius: 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0,168,255,0.15);
  border: 1px solid rgba(0,229,255,0.4);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(0,229,255,0.15), inset 0 0 20px rgba(0,229,255,0.05);
  animation: neonPulse 3s ease-in-out infinite;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 0 0 40px rgba(0,168,255,0.2);
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(0,102,204,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0,168,255,0.5), 0 8px 30px rgba(0,102,204,0.4);
  color: #fff;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: rgba(0,229,255,0.08);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0,229,255,0.2);
}
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--neon-cyan);
  text-shadow: 0 0 25px rgba(0,229,255,0.4);
}
.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* SECTIONS */
.section {
  padding: 100px 0;
  position: relative;
}
.section-dark { background: var(--dark-bg); }
.section-surface { background: var(--dark-surface); }
#ecosystem.section-surface {
  background: rgba(20,50,110,0.45) !important;
  position: relative;
  overflow: hidden;
}
#ecosystem.section-surface::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(4px 4px at 6% 12%, #00e5ff, transparent),
    radial-gradient(5px 5px at 18% 50%, #fff, transparent),
    radial-gradient(4px 4px at 28% 82%, #00a8ff, transparent),
    radial-gradient(5px 5px at 40% 18%, #a855f7, transparent),
    radial-gradient(4px 4px at 52% 65%, #00e5ff, transparent),
    radial-gradient(5px 5px at 62% 5%, #fff, transparent),
    radial-gradient(4px 4px at 72% 42%, #00a8ff, transparent),
    radial-gradient(5px 5px at 84% 78%, #a855f7, transparent),
    radial-gradient(4px 4px at 92% 28%, #00e5ff, transparent),
    radial-gradient(5px 5px at 14% 72%, #fff, transparent),
    radial-gradient(4px 4px at 36% 92%, #00e5ff, transparent),
    radial-gradient(5px 5px at 58% 38%, #a855f7, transparent),
    radial-gradient(4px 4px at 76% 88%, #fff, transparent),
    radial-gradient(5px 5px at 96% 55%, #00a8ff, transparent),
    radial-gradient(4px 4px at 46% 48%, #00e5ff, transparent),
    radial-gradient(5px 5px at 3% 35%, #a855f7, transparent),
    radial-gradient(4px 4px at 87% 15%, #fff, transparent),
    radial-gradient(5px 5px at 30% 58%, #00e5ff, transparent),
    radial-gradient(4px 4px at 68% 92%, #00a8ff, transparent),
    radial-gradient(5px 5px at 50% 8%, #a855f7, transparent),
    radial-gradient(4px 4px at 22% 28%, #00e5ff, transparent),
    radial-gradient(5px 5px at 75% 18%, #fff, transparent),
    radial-gradient(4px 4px at 10% 55%, #a855f7, transparent),
    radial-gradient(5px 5px at 95% 72%, #00e5ff, transparent),
    radial-gradient(4px 4px at 42% 85%, #fff, transparent),
    radial-gradient(5px 5px at 60% 25%, #00a8ff, transparent),
    radial-gradient(4px 4px at 33% 42%, #a855f7, transparent),
    radial-gradient(5px 5px at 80% 35%, #00e5ff, transparent),
    radial-gradient(4px 4px at 55% 95%, #fff, transparent),
    radial-gradient(5px 5px at 15% 88%, #00a8ff, transparent);
  animation: starsGlow 3s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}
#ecosystem .container { position: relative; z-index: 2; }
#solutions.section-surface {
  background: rgba(80,30,120,0.3) !important;
}
#why-us.section-dark {
  background: rgba(169,40,40,0.12) !important;
}
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(4px 4px at 5% 10%, #00e5ff, transparent),
    radial-gradient(5px 5px at 15% 45%, #fff, transparent),
    radial-gradient(4px 4px at 25% 80%, #a855f7, transparent),
    radial-gradient(5px 5px at 38% 20%, #00e5ff, transparent),
    radial-gradient(4px 4px at 48% 60%, #fff, transparent),
    radial-gradient(5px 5px at 58% 8%, #a855f7, transparent),
    radial-gradient(4px 4px at 68% 85%, #00e5ff, transparent),
    radial-gradient(5px 5px at 78% 35%, #fff, transparent),
    radial-gradient(4px 4px at 88% 70%, #a855f7, transparent),
    radial-gradient(5px 5px at 95% 15%, #00e5ff, transparent),
    radial-gradient(4px 4px at 10% 65%, #00a8ff, transparent),
    radial-gradient(5px 5px at 30% 92%, #fff, transparent),
    radial-gradient(4px 4px at 50% 42%, #00e5ff, transparent),
    radial-gradient(5px 5px at 72% 52%, #a855f7, transparent),
    radial-gradient(4px 4px at 82% 25%, #fff, transparent),
    radial-gradient(5px 5px at 42% 75%, #00a8ff, transparent),
    radial-gradient(4px 4px at 62% 30%, #a855f7, transparent),
    radial-gradient(5px 5px at 20% 55%, #00e5ff, transparent),
    radial-gradient(4px 4px at 92% 90%, #fff, transparent),
    radial-gradient(5px 5px at 3% 88%, #a855f7, transparent);
  animation: starsGlow 3s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
.cta-section .container { position: relative; z-index: 1; }
.whatwedo-video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%,-50%);
  z-index: 0;
  object-fit: cover;
}
.whatwedo-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,12,28,0.75);
  z-index: 0;
}
#what-we-do.section-dark {
  position: relative;
  overflow: hidden;
}
#what-we-do.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(2px 2px at 5% 10%, rgba(0,229,255,0.9), transparent),
    radial-gradient(2px 2px at 15% 40%, rgba(255,255,255,0.7), transparent),
    radial-gradient(3px 3px at 25% 75%, rgba(0,168,255,0.8), transparent),
    radial-gradient(2px 2px at 8% 90%, rgba(168,85,247,0.7), transparent),
    radial-gradient(2px 2px at 35% 20%, rgba(0,229,255,0.6), transparent),
    radial-gradient(3px 3px at 45% 55%, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 55% 8%, rgba(168,85,247,0.8), transparent),
    radial-gradient(2px 2px at 60% 85%, rgba(0,229,255,0.7), transparent),
    radial-gradient(3px 3px at 70% 35%, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 75% 60%, rgba(0,168,255,0.6), transparent),
    radial-gradient(2px 2px at 82% 12%, rgba(0,229,255,0.8), transparent),
    radial-gradient(3px 3px at 88% 45%, rgba(168,85,247,0.7), transparent),
    radial-gradient(2px 2px at 92% 80%, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 95% 25%, rgba(0,168,255,0.8), transparent),
    radial-gradient(3px 3px at 48% 95%, rgba(168,85,247,0.6), transparent),
    radial-gradient(2px 2px at 18% 62%, rgba(0,229,255,0.7), transparent),
    radial-gradient(2px 2px at 65% 48%, rgba(255,255,255,0.5), transparent),
    radial-gradient(3px 3px at 38% 88%, rgba(0,168,255,0.7), transparent),
    radial-gradient(2px 2px at 78% 92%, rgba(0,229,255,0.6), transparent),
    radial-gradient(2px 2px at 52% 32%, rgba(168,85,247,0.5), transparent);
  animation: starsGlow 3s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes starsGlow {
  0% { opacity: 0.4; filter: brightness(1); }
  25% { opacity: 1; filter: brightness(1.8); }
  50% { opacity: 0.5; filter: brightness(1); }
  75% { opacity: 1; filter: brightness(2); }
  100% { opacity: 0.6; filter: brightness(1.2); }
}
#what-we-do .container { position: relative; z-index: 1; }
#about.section-dark {
  background: rgba(240,244,250,0.06);
  position: relative;
  overflow: hidden;
}
#about.section-dark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(120px 120px at 10% 20%, rgba(0,229,255,0.15), transparent),
    radial-gradient(150px 150px at 80% 30%, rgba(168,85,247,0.12), transparent),
    radial-gradient(100px 100px at 50% 70%, rgba(0,168,255,0.12), transparent),
    radial-gradient(180px 180px at 25% 85%, rgba(0,229,255,0.1), transparent),
    radial-gradient(130px 130px at 90% 75%, rgba(168,85,247,0.1), transparent),
    radial-gradient(3px 3px at 12% 25%, rgba(0,229,255,0.8), transparent),
    radial-gradient(2px 2px at 35% 55%, rgba(0,168,255,0.7), transparent),
    radial-gradient(3px 3px at 55% 15%, rgba(168,85,247,0.7), transparent),
    radial-gradient(2px 2px at 72% 65%, rgba(0,229,255,0.7), transparent),
    radial-gradient(3px 3px at 88% 20%, rgba(168,85,247,0.8), transparent),
    radial-gradient(2px 2px at 22% 75%, rgba(0,168,255,0.6), transparent),
    radial-gradient(3px 3px at 65% 88%, rgba(0,229,255,0.7), transparent),
    radial-gradient(2px 2px at 42% 40%, rgba(168,85,247,0.6), transparent),
    radial-gradient(3px 3px at 95% 50%, rgba(0,229,255,0.8), transparent);
  animation: sparkleShift 3s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes sparkleShift {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}
#about .container { position: relative; z-index: 1; }
#about .about-content h2 { color: var(--text-primary); }
#about .about-content p { color: var(--text-secondary); }
#about .section-label { color: var(--neon-cyan); border-color: rgba(0,229,255,0.3); background: rgba(0,229,255,0.08); }
#about .about-stat-card {
  background: rgba(13,21,37,0.5);
  border: 1px solid rgba(0,229,255,0.25);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0,229,255,0.08), 0 0 40px rgba(168,85,247,0.05);
}
#about .about-stat-card:hover {
  box-shadow: 0 0 25px rgba(0,229,255,0.2), 0 0 50px rgba(168,85,247,0.1);
  border-color: rgba(0,229,255,0.5);
}
#about .about-stat-card .stat-number { color: var(--neon-cyan); text-shadow: 0 0 15px rgba(0,229,255,0.4); }
#about .about-stat-card .stat-label { color: var(--text-muted); }
#about .about-visual {
  border-color: rgba(0,229,255,0.3);
  box-shadow: 0 0 30px rgba(0,229,255,0.1), 0 0 60px rgba(168,85,247,0.05);
}
#about .about-visual:hover {
  border-color: rgba(0,229,255,0.6);
  box-shadow: 0 0 40px rgba(0,229,255,0.25), 0 0 80px rgba(168,85,247,0.1);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0,168,255,0.1);
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 16px;
  box-shadow: 0 0 15px rgba(0,229,255,0.1);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* CARDS GRID */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

/* GLASS CARD - NEON GLOW */
.glass-card {
  background: rgba(25,34,54,0.75);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-neon);
  opacity: 0.5;
  transition: opacity 0.4s;
}
.glass-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: var(--gradient-neon);
  opacity: 0;
  transition: all 0.4s;
}
.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,229,255,0.4);
  box-shadow: 0 0 30px rgba(0,168,255,0.15), 0 20px 60px rgba(0,0,0,0.3);
  background: rgba(25,34,54,0.9);
}
.glass-card:hover::before { opacity: 1; }
.glass-card:hover::after { opacity: 0.6; left: 0; right: 0; }
.glass-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0,168,255,0.1);
  border: 1px solid rgba(0,229,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--neon-cyan);
  transition: all 0.4s;
  box-shadow: 0 0 10px rgba(0,229,255,0.1);
}
.glass-card:hover .card-icon {
  background: rgba(0,168,255,0.2);
  box-shadow: var(--glow-cyan);
}
.glass-card .card-icon-image {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  padding: 0;
  background: rgba(0,168,255,0.06);
  overflow: hidden;
}
.glass-card .card-icon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 13px;
  transition: transform 0.4s ease;
}
.glass-card:hover .card-icon-image img {
  transform: scale(1.04);
}
.glass-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.glass-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.glass-card p {
  flex-grow: 1;
}
.glass-card .card-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neon-cyan);
  transition: gap 0.3s, text-shadow 0.3s;
}
.glass-card:hover .card-link {
  gap: 10px;
  text-shadow: 0 0 10px rgba(0,229,255,0.4);
}

/* ECOSYSTEM GRID */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ecosystem-grid { grid-template-columns: 1fr; }
}

/* ABOUT SPLIT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.about-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-visual {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,229,255,0.2);
  box-shadow: 0 0 30px rgba(0,168,255,0.1);
  cursor: pointer;
  transition: box-shadow 0.4s, border-color 0.4s;
}
.about-visual:hover {
  border-color: rgba(0,229,255,0.5);
  box-shadow: 0 0 40px rgba(0,168,255,0.25), 0 0 80px rgba(0,229,255,0.1);
}
.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s;
}
.about-visual .about-play-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,229,255,0.15);
  border: 2px solid rgba(0,229,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  box-shadow: 0 0 25px rgba(0,229,255,0.3);
  z-index: 2;
  pointer-events: none;
}
.about-visual:hover .about-play-hint {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.3);
}
.about-visual .about-play-hint svg {
  width: 28px;
  height: 28px;
  fill: var(--neon-cyan);
  margin-left: 4px;
}
.about-visual-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,168,255,0.15), rgba(0,229,255,0.1), rgba(168,85,247,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.about-stat-card {
  flex: 1;
  padding: 20px;
  background: rgba(0,168,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,229,255,0.05);
  transition: box-shadow 0.3s;
}
.about-stat-card:hover {
  box-shadow: var(--glow-cyan);
}
.about-stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px rgba(0,229,255,0.3);
}
.about-stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* WHAT WE DO - TIMELINE */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-neon);
  box-shadow: 0 0 10px rgba(0,229,255,0.3);
  animation: neonLine 3s ease-in-out infinite;
}
.timeline-item {
  position: relative;
  padding-left: 64px;
  margin-bottom: 40px;
}
.timeline-dot {
  position: absolute;
  left: 14px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--dark-bg);
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0,229,255,0.4), 0 0 30px rgba(0,229,255,0.15);
}
.timeline-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.timeline-item p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* INDUSTRY CARDS */
.industry-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s;
  border: 1px solid rgba(0,229,255,0.1);
}
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(0,168,255,0.2);
  border-color: rgba(0,229,255,0.3);
}
.industry-card-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s;
}
.industry-card:hover .industry-card-bg { transform: scale(1.1); }
.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13,21,37,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.industry-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.industry-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

.why-grid-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.reason-card {
  background: rgba(25,34,54,0.75);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-neon);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.reason-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,229,255,0.4);
  box-shadow: 0 0 30px rgba(0,168,255,0.15), 0 20px 60px rgba(0,0,0,0.3);
}
.reason-card:hover::before { opacity: 1; }
.reason-card-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.reason-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.reason-card:hover .reason-card-img img {
  transform: scale(1.04);
}
.reason-card-body {
  padding: 24px;
}
.reason-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}
.reason-card-body p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.reason-card-wide {
  grid-column: 1 / -1;
}
.reason-card-wide .reason-card-img img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .why-grid-img { grid-template-columns: 1fr; }
  .reason-card-wide { grid-column: auto; }
  .reason-card-img img { height: 180px; }
  .reason-card-wide .reason-card-img img { height: 200px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .why-grid-img { grid-template-columns: repeat(2, 1fr); }
}

/* HOW IT WORKS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gradient-neon);
  opacity: 0.4;
  box-shadow: 0 0 10px rgba(0,229,255,0.2);
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}
.step-card {
  text-align: center;
  position: relative;
}
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 25px rgba(0,168,255,0.5), 0 0 50px rgba(0,168,255,0.2);
}
.step-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* CAPABILITIES */
.capabilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.capability-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(25,34,54,0.6);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s;
}
.capability-pill:hover {
  border-color: var(--neon-cyan);
  background: rgba(0,168,255,0.1);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0,229,255,0.2);
}
.capability-pill .pill-icon {
  color: var(--neon-cyan);
  font-size: 1.1rem;
}

/* VISION */
.vision-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.vision-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.vision-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--dark-bg), rgba(13,21,37,0.15), var(--dark-bg));
}
.vision-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.vision-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 0 0 30px rgba(0,168,255,0.2);
}
.vision-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 16px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

/* CTA SECTION */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, rgba(0,168,255,0.08) 0%, rgba(0,229,255,0.05) 50%, rgba(168,85,247,0.05) 100%);
  border-top: 1px solid rgba(0,229,255,0.2);
  border-bottom: 1px solid rgba(0,229,255,0.2);
  box-shadow: inset 0 1px 0 rgba(0,229,255,0.1), inset 0 -1px 0 rgba(0,229,255,0.1);
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-selected-plan {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,168,255,0.12), rgba(124,58,237,0.12));
  border: 1px solid rgba(0,229,255,0.35);
  box-shadow: 0 0 18px rgba(0,229,255,0.12);
  color: var(--text-primary);
}
.contact-selected-plan[hidden] { display: none; }
.contact-selected-plan__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0,229,255,0.15);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-selected-plan__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.95rem;
  line-height: 1.3;
}
.contact-selected-plan__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}
.contact-selected-plan__text strong {
  font-weight: 600;
  color: var(--neon-cyan);
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(25,34,54,0.6);
  border: 1px solid rgba(0,229,255,0.12);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0,229,255,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0,168,255,0.1);
  border: 1px solid rgba(0,229,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0,229,255,0.1);
}
.contact-info-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* INNOVATION WIDGET */
.qualification-anchor {
  display: block;
  height: 1px;
  width: 100%;
  visibility: hidden;
  pointer-events: none;
}
.innovation-widget {
  position: fixed;
  top: 50%;
  right: 30px;
  bottom: auto;
  transform: translateY(-50%) translateX(40px) scale(0.95);
  z-index: 900;
  opacity: 0;
  transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.innovation-widget.visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
  pointer-events: all;
}
.innovation-widget.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
.widget-content {
  background: rgba(13,21,37,0.9);
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0,168,255,0.15), 0 20px 60px rgba(0,0,0,0.4);
  width: 360px;
  max-width: calc(100vw - 60px);
}
.widget-content h3,
.widget-content .widget-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neon-cyan);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(0,229,255,0.3);
}
.widget-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-shadow: inherit;
  text-align: left;
  cursor: pointer;
}
.widget-toggle:focus { outline: none; }
.widget-toggle:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 4px;
  border-radius: 4px;
}
.widget-close:focus { outline: none; }
.widget-close:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
  border-radius: 4px;
  color: var(--text-primary);
}
.innovation-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.innovation-form input,
.innovation-form select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(25,34,54,0.7);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.innovation-form input:focus,
.innovation-form select:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0,229,255,0.15);
}
.innovation-form select option {
  background: #192236;
  color: #fff;
}
.widget-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  transition: color 0.3s;
}
.widget-close:hover { color: var(--text-primary); }

/* QUALIFICATION JOURNEY - TRANSPARENT SIDE PANEL */
.qualification-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 18, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
}
.qualification-backdrop.active {
  display: block;
}
.qualification-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 100%;
  height: 100%;
  z-index: 2000;
  pointer-events: none;
}
.qualification-overlay.active {
  display: flex;
  flex-direction: column;
  pointer-events: all;
}
.qualification-modal {
  width: 100%;
  height: 100%;
  background: rgba(13,21,37,0.88);
  padding: 40px 32px;
  border-left: 1px solid rgba(0,229,255,0.25);
  box-shadow: -10px 0 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,168,255,0.1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow-y: auto;
}
.qualification-modal::-webkit-scrollbar { width: 4px; }
.qualification-modal::-webkit-scrollbar-track { background: transparent; }
.qualification-modal::-webkit-scrollbar-thumb { background: rgba(0,229,255,0.3); border-radius: 2px; }
.qualification-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.5rem;
  transition: color 0.3s;
  z-index: 10;
}
.qualification-close:hover { color: var(--text-primary); }
.qualification-close:focus-visible {
  color: var(--text-primary);
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
  border-radius: 4px;
}
.qualification-modal:focus { outline: none; }
.qualification-modal:focus-visible { outline: none; }
.progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-bottom: 32px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--gradient-neon);
  border-radius: 2px;
  transition: width 0.5s ease;
  box-shadow: 0 0 10px rgba(0,229,255,0.3);
}
.qualification-stage {
  display: none;
}
.qualification-stage.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
.qualification-stage h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--neon-cyan);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(0,229,255,0.3);
}
.question-group {
  margin-bottom: 18px;
}
fieldset.question-group {
  border: 0;
  padding: 0;
  margin-inline: 0;
  min-width: 0;
}
.question-group label,
.question-group legend {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
  padding: 0;
}
.question-group textarea,
.question-group select,
.question-group input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(25,34,54,0.6);
  border: 1px solid rgba(0,229,255,0.12);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}
.question-group textarea {
  resize: vertical;
  min-height: 65px;
}
.question-group textarea:focus,
.question-group select:focus,
.question-group input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0,229,255,0.1);
}
.question-group select option {
  background: #192236;
  color: #fff;
}

/* ADMIN LOGIN POPUP */
.admin-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 4000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
}
.admin-popup-overlay.active { display: flex; }
.admin-popup {
  width: 400px;
  max-width: 90%;
  background: rgba(13,21,37,0.95);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0,229,255,0.25);
  box-shadow: 0 0 40px rgba(0,168,255,0.15), 0 25px 80px rgba(0,0,0,0.5);
  text-align: center;
}
.admin-popup h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--neon-cyan);
  margin-bottom: 24px;
  text-shadow: 0 0 10px rgba(0,229,255,0.3);
}
.admin-popup .form-group {
  margin-bottom: 16px;
  text-align: left;
}
.admin-popup .admin-error {
  color: #ef4444;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: none;
}
.admin-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.5rem;
}

/* FOOTER */
.footer {
  padding: 80px 0 30px;
  background: var(--dark-surface);
  border-top: 1px solid rgba(0,229,255,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 0 15px rgba(0,229,255,0.2);
  display: block;
}
.footer-brand span { color: var(--neon-cyan); }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand-orbit {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.4));
}
.footer-brand-wordmark {
  height: 38px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: brightness(1.35) contrast(1.05) drop-shadow(0 0 14px rgba(0, 229, 255, 0.55)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,168,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  transition: all 0.3s;
  font-size: 0.9rem;
}
.footer-social a:hover {
  background: rgba(0,168,255,0.2);
  border-color: var(--neon-cyan);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0,229,255,0.3);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.3s, text-shadow 0.3s;
}
.footer-col a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0,229,255,0.3);
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0,229,255,0.08);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a {
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--neon-cyan); }
.footer-admin-link {
  opacity: 0.5;
  transition: opacity 0.3s;
  font-size: 0.82rem;
  cursor: pointer;
}
.footer-admin-link:hover { opacity: 1; }

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* PAGE LOADER */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}
.page-loader.loaded { opacity: 0; pointer-events: none; }
.loader-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(0,229,255,0.15);
  border-top-color: var(--neon-cyan);
  animation: spin 0.8s linear infinite;
  box-shadow: 0 0 20px rgba(0,229,255,0.2);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* FORM SUCCESS */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success.show { display: block; }
.form-success svg { color: var(--neon-cyan); margin-bottom: 20px; }
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.form-success p {
  color: var(--text-secondary);
}

/* FLOATING ANIMATION */
.floating {
  animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb {
  background: rgba(0,229,255,0.25);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0,229,255,0.4); }

/* SECTION DIVIDER NEON LINES */
.section-surface::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,0.3), rgba(168,85,247,0.2), transparent);
}
.section-dark + .section-surface::before,
.section-surface + .section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,0.25), transparent);
}

/* ===== LEGAL PAGES ===== */
.legal-page { padding-top: 80px; min-height: 100vh; }
.legal-hero { padding: 60px 0 40px; border-bottom: 1px solid rgba(0,229,255,0.15); background: rgba(10,15,30,0.4); }
.legal-label { display: inline-block; padding: 6px 14px; border: 1px solid rgba(0,229,255,0.4); border-radius: 999px; color: var(--accent-cyan); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.legal-hero h1 { font-size: clamp(32px, 5vw, 56px); margin: 0 0 14px; }
.legal-sub { color: var(--text-muted); max-width: 720px; font-size: 17px; }
.legal-body { padding: 60px 0 100px; }
.legal-container { max-width: 860px; }
.legal-container h2 { color: var(--accent-cyan); margin: 36px 0 14px; font-size: 24px; }
.legal-container h3 { margin: 24px 0 10px; font-size: 18px; color: #e7eefb; }
.legal-container p { line-height: 1.8; color: #c8d2e0; margin: 12px 0; }
.legal-container ul { padding-left: 22px; line-height: 1.9; color: #c8d2e0; }
.legal-container ul li { margin: 4px 0; }
.legal-container a { color: var(--accent-cyan); }

/* ===== PRICING PAGE ===== */
.pricing-page { padding-top: 80px; }
.pricing-hero { padding: 70px 0 50px; text-align: center; background: rgba(10,15,30,0.4); border-bottom: 1px solid rgba(0,229,255,0.15); }
.pricing-label { display: inline-block; padding: 6px 14px; border: 1px solid rgba(0,229,255,0.4); border-radius: 999px; color: var(--accent-cyan); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.pricing-hero h1 { font-size: clamp(34px, 5vw, 56px); margin: 0 auto 16px; max-width: 900px; }
.pricing-sub { color: var(--text-muted); font-size: 17px; max-width: 680px; margin: 0 auto 28px; }
.pricing-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.pricing-nav a { padding: 8px 16px; border: 1px solid rgba(0,229,255,0.3); border-radius: 999px; color: #e7eefb; text-decoration: none; font-size: 13px; transition: all 0.2s; }
.pricing-nav a:hover { background: rgba(0,229,255,0.1); border-color: rgba(0,229,255,0.6); }

.billing-toggle { display: inline-flex; align-items: stretch; padding: 4px; margin: 8px auto 0; background: rgba(10,15,30,0.7); border: 1px solid rgba(0,229,255,0.25); border-radius: 999px; gap: 4px; }
.billing-toggle__btn { appearance: none; background: transparent; border: 0; color: #c8d2e0; font: inherit; font-size: 14px; font-weight: 600; padding: 10px 20px; min-height: 40px; border-radius: 999px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s; }
.billing-toggle__btn:hover { color: #fff; }
.billing-toggle__btn:focus-visible { outline: 2px solid var(--accent-cyan); outline-offset: 2px; }
.billing-toggle__btn.is-active { background: linear-gradient(90deg, rgba(0,229,255,0.25), rgba(168,85,247,0.25)); color: #fff; box-shadow: 0 0 16px rgba(0,229,255,0.18); }
.billing-toggle__save { display: inline-block; padding: 2px 8px; border-radius: 999px; background: rgba(34,197,94,0.18); color: #4ade80; font-size: 11px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; }

.annual-savings { display: none; margin: -2px 0 14px; padding: 4px 10px; align-self: flex-start; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.35); border-radius: 999px; color: #4ade80; font-size: 12px; font-weight: 600; letter-spacing: 0.2px; }
.pricing-page[data-cycle="yearly"] .annual-savings { display: inline-block; }
.price-card .price { min-height: 44px; }
.pricing-product { padding: 70px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.pricing-product.alt { background: rgba(20,30,55,0.25); }
.product-header { text-align: center; margin-bottom: 48px; }
.product-header h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 10px; background: linear-gradient(90deg, #00e5ff, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.product-header p { color: var(--text-muted); font-size: 16px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 1280px; margin: 0 auto; }
.price-card { background: rgba(20,30,55,0.6); border: 1px solid rgba(0,229,255,0.15); border-radius: 16px; padding: 32px 24px; position: relative; display: flex; flex-direction: column; transition: transform 0.2s, border-color 0.2s; }
.price-card:hover { transform: translateY(-4px); border-color: rgba(0,229,255,0.4); }
.price-card.popular { border-color: rgba(168,85,247,0.6); background: linear-gradient(180deg, rgba(168,85,247,0.12), rgba(20,30,55,0.6)); box-shadow: 0 0 30px rgba(168,85,247,0.15); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, #a855f7, #00e5ff); color: #fff; padding: 5px 14px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.price-card h3 { margin: 0 0 14px; font-size: 22px; color: #fff; }
.price-card .price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.price-card .amount { font-size: 32px; font-weight: 700; color: var(--accent-cyan); }
.price-card .period { color: var(--text-muted); font-size: 13px; }
.price-card .tagline { color: var(--text-muted); font-size: 13px; margin: 0 0 18px; min-height: 18px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.price-card ul li { padding: 7px 0 7px 22px; color: #c8d2e0; font-size: 14px; position: relative; line-height: 1.5; }
.price-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-cyan); font-weight: 700; }
.price-btn { display: block; text-align: center; padding: 12px 16px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 14px; border: 1px solid rgba(0,229,255,0.4); color: #e7eefb; transition: all 0.2s; margin-top: auto; }
.price-btn:hover { background: rgba(0,229,255,0.1); border-color: var(--accent-cyan); }
.price-btn.primary { background: linear-gradient(90deg, #00a8ff, #00e5ff); border-color: transparent; color: #061018; }
.price-btn.primary:hover { filter: brightness(1.1); }

/* ===== READ MORE BUTTONS & MODAL ===== */
.readmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 16px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: #00e5ff;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  font-family: inherit;
}
.readmore-btn:hover {
  background: rgba(0, 229, 255, 0.22);
  border-color: #00e5ff;
  transform: translateY(-1px);
}
.industry-card-overlay .readmore-btn {
  align-self: flex-start;
}
template.readmore-content { display: none; }

.readmore-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 5vh 16px;
  overflow-y: auto;
}
.readmore-overlay.active { display: flex; }
.readmore-modal {
  position: relative;
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(20, 30, 55, 0.98), rgba(10, 15, 30, 0.98));
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 16px;
  padding: 40px 36px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 229, 255, 0.1);
  animation: readmoreFadeIn 0.25s ease-out;
}
.readmore-body {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 10px;
  margin-right: -6px;
  flex: 1 1 auto;
}
.readmore-body::-webkit-scrollbar { width: 8px; }
.readmore-body::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 4px; }
.readmore-body::-webkit-scrollbar-thumb { background: rgba(0,229,255,0.35); border-radius: 4px; }
.readmore-body::-webkit-scrollbar-thumb:hover { background: rgba(0,229,255,0.55); }
.readmore-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #00e5ff, #0066ff);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.readmore-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,229,255,0.3); }
@keyframes readmoreFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.readmore-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  color: #c8d2e0;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 8px;
  transition: all 0.2s;
}
.readmore-close:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.readmore-close:focus-visible {
  outline: 2px solid #00e5ff;
  outline-offset: 2px;
  background: rgba(0, 229, 255, 0.12);
  color: #fff;
}
.readmore-overlay:focus { outline: none; }
.readmore-cta:focus-visible {
  outline: 2px solid #00e5ff;
  outline-offset: 3px;
}
button.readmore-cta {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Required-field error highlight on the lead funnel inputs */
.qualification-stage input.input-error,
.qualification input.input-error {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.18);
}

/* ===== CONTACT POPUP ===== */
.contact-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10010;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 16px;
}
.contact-popup-overlay.active { display: flex; }
.contact-popup-modal {
  position: relative;
  max-width: 420px;
  width: 100%;
  background: linear-gradient(180deg, rgba(20, 30, 55, 0.98), rgba(10, 15, 30, 0.98));
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 16px;
  padding: 36px 28px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 229, 255, 0.1);
  animation: readmoreFadeIn 0.25s ease-out;
  text-align: center;
}
.contact-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  color: #c8d2e0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 8px;
  transition: all 0.2s;
}
.contact-popup-close:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.contact-popup-close:focus-visible {
  outline: 2px solid #00e5ff;
  outline-offset: 2px;
  background: rgba(0, 229, 255, 0.12);
  color: #fff;
}
.contact-popup-title {
  margin: 0 0 8px;
  font-size: 22px;
  background: linear-gradient(90deg, #00e5ff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-popup-subtitle {
  color: #c8d2e0;
  font-size: 14px;
  margin: 0 0 18px;
}
.contact-popup-phone {
  display: inline-block;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  color: #00e5ff;
  text-decoration: none;
  letter-spacing: 0.5px;
  margin: 0 0 22px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}
.contact-popup-phone:hover { background: rgba(0, 229, 255, 0.08); }
.contact-popup-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid rgba(0, 229, 255, 0.4);
  background: rgba(0, 229, 255, 0.08);
  color: #00e5ff;
  font-family: inherit;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.contact-popup-btn:hover {
  background: rgba(0, 229, 255, 0.18);
  transform: translateY(-1px);
}
.contact-popup-btn.primary {
  background: linear-gradient(135deg, #00e5ff, #0066ff);
  color: #fff;
  border-color: transparent;
}
.contact-popup-btn.primary:hover { box-shadow: 0 8px 20px rgba(0, 229, 255, 0.3); }
.contact-popup-btn:focus-visible {
  outline: 2px solid #00e5ff;
  outline-offset: 2px;
}
.readmore-title {
  margin: 0 36px 20px 0;
  font-size: clamp(24px, 3vw, 32px);
  background: linear-gradient(90deg, #00e5ff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.readmore-body p {
  color: #d4dbe7;
  line-height: 1.8;
  margin: 0 0 14px;
  font-size: 15px;
}
.readmore-body strong { color: #00e5ff; font-weight: 600; }

/* Stage-2 needs assessment helper text */
.qualification-stage .stage-hint {
  color: var(--text-muted);
  margin: -8px 0 18px;
  font-size: 14px;
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}
.checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d4dbe7;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 0;
}
.checkbox-line input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #00e5ff;
  cursor: pointer;
}

/* ===== CTA SECTION VIDEO BACKGROUND ===== */
.cta-section--video { padding: 110px 0; }
.cta-section--video::before { display: none; }
.cta-video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 12, 28, 0.78) 0%, rgba(0, 30, 60, 0.7) 50%, rgba(40, 10, 70, 0.78) 100%);
  z-index: 1;
}
.cta-section--video .container { position: relative; z-index: 2; }
.cta-section--video h2,
.cta-section--video p { text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6); }

/* ===== FOOTER EXPANDED CONTENT ===== */
.footer-tagline {
  margin: 12px 0 18px;
  font-size: 13px;
  font-style: italic;
  color: rgba(0, 229, 255, 0.85);
  line-height: 1.55;
  border-left: 2px solid rgba(0, 229, 255, 0.4);
  padding-left: 12px;
}
.footer-list-detailed {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list-detailed li {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}
.footer-list-detailed li:last-child { border-bottom: none; }
.footer-list-detailed li a {
  display: block;
  color: #e6edf6;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}
.footer-list-detailed li a:hover { color: #00e5ff; }
.footer-list-detailed li span {
  display: block;
  color: rgba(212, 219, 231, 0.65);
  font-size: 12px;
  line-height: 1.5;
}
.footer-subhead {
  margin: 18px 0 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 229, 255, 0.85);
  font-weight: 600;
}
.footer-subhead:first-of-type { margin-top: 0; }

/* Collapsible subheads (Resources column) */
.footer-subhead-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin: 18px 0 0;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 229, 255, 0.85);
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}
.footer-subhead-toggle:first-of-type { margin-top: 0; }
.footer-subhead-toggle:hover { color: #00e5ff; }
.footer-subhead-toggle .chev {
  display: inline-block;
  transition: transform 0.25s ease;
  font-size: 10px;
  opacity: 0.85;
}
.footer-subhead-toggle.is-open .chev { transform: rotate(180deg); }
.footer-subhead-toggle + .footer-link-list {
  display: none;
  margin-top: 8px;
}
.footer-subhead-toggle.is-open + .footer-link-list {
  display: block;
}
.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  color: rgba(212, 219, 231, 0.85);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease;
}
.footer-link-btn:hover { color: #00e5ff; }
.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-link-list li {
  margin: 0 0 8px;
  line-height: 1.4;
}
.footer-link-list-desc li {
  margin: 0 0 14px;
}
.footer-link-desc {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(212, 219, 231, 0.55);
}
.footer-product-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: rgba(212, 219, 231, 0.85);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}
.footer-product-toggle:hover { color: #00e5ff; }
.footer-product-toggle .chev {
  display: inline-block;
  font-size: 10px;
  opacity: 0.55;
  transition: transform 0.25s ease, opacity 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.footer-product-toggle.is-open {
  color: #00e5ff;
}
.footer-product-toggle.is-open .chev {
  transform: rotate(180deg);
  opacity: 1;
  color: #00e5ff;
}
.footer-product-toggle + .footer-link-desc {
  display: none;
  margin-top: 6px;
}
.footer-product-toggle.is-open + .footer-link-desc {
  display: block;
}
.footer-link-list-desc li:has(.footer-product-toggle) {
  margin-bottom: 10px;
}

/* ============================================================
   MOBILE OPTIMIZATIONS (<= 768px / <= 414px)
   - Innovation widget docks to bottom as compact sheet
   - Qualification modal becomes full-screen with tap-friendly UI
   - Footer columns stack with readable spacing & wrapping
   ============================================================ */

/* Innovation widget: dock to bottom on mobile so it doesn't cover hero copy */
@media (max-width: 768px) {
  .innovation-widget {
    top: auto;
    right: 12px;
    left: 12px;
    bottom: 12px;
    transform: translateY(40px) scale(0.97);
    width: auto;
  }
  .innovation-widget.visible {
    transform: translateY(0) scale(1);
  }
  .widget-content {
    width: 100%;
    max-width: 100%;
    padding: 18px 18px 16px;
    border-radius: 16px;
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .widget-content.is-collapsed {
    padding: 12px 16px;
    max-height: none;
    overflow: hidden;
    cursor: pointer;
  }
  .widget-content.is-collapsed .innovation-form {
    display: none;
  }
  .widget-content h3 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-right: 28px;
  }
  .widget-content.is-collapsed h3 {
    margin-bottom: 0;
    padding-right: 64px;
    font-size: 0.85rem;
  }
  .widget-content.is-collapsed::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 44px;
    transform: translateY(-50%);
    color: var(--neon-cyan);
    font-size: 1.3rem;
    line-height: 1;
    pointer-events: none;
  }
  .innovation-form input,
  .innovation-form select {
    padding: 14px 14px;
    font-size: 16px; /* prevent iOS zoom on focus */
    border-radius: 12px;
  }
  .innovation-form .btn-primary {
    padding: 14px 20px;
    min-height: 48px;
    font-size: 0.95rem;
  }
  .widget-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    top: 6px;
    right: 6px;
  }
}

/* Qualification modal: full-screen mobile experience with tap-friendly UI */
@media (max-width: 768px) {
  .qualification-overlay {
    width: 100%;
  }
  .qualification-modal {
    padding: 56px 18px 28px;
    border-left: none;
    border-top: 1px solid rgba(0, 229, 255, 0.25);
    box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.4);
  }
  .qualification-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    top: 8px;
    right: 8px;
  }
  .progress-bar {
    margin-bottom: 24px;
  }
  .qualification-stage h2 {
    font-size: 1.05rem;
    margin-bottom: 20px;
  }
  .qualification-stage .stage-hint {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .question-group {
    margin-bottom: 16px;
  }
  .question-group label,
  .question-group legend {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  .question-group textarea,
  .question-group select,
  .question-group input {
    padding: 14px 14px;
    font-size: 16px; /* prevent iOS zoom on focus */
    border-radius: 12px;
    min-height: 48px;
  }
  .question-group textarea {
    min-height: 96px;
  }
  .checkbox-group {
    padding: 12px;
    gap: 4px;
  }
  .checkbox-line {
    font-size: 15px;
    padding: 10px 4px;
    min-height: 44px;
  }
  .checkbox-line input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  .qualification-stage .btn-primary {
    padding: 16px 20px;
    min-height: 52px;
    font-size: 1rem;
    font-weight: 600;
  }
}

/* Footer: improve mobile stacking, spacing & wrapping */
@media (max-width: 768px) {
  .footer {
    padding: 56px 0 24px;
  }
  .footer-grid {
    gap: 32px;
    margin-bottom: 36px;
  }
  .footer-col h4 {
    margin-bottom: 14px;
    font-size: 0.78rem;
  }
  .footer-list-detailed li {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  .footer-list-detailed li a {
    font-size: 15px;
    padding: 6px 0;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }
  .footer-list-detailed li span,
  .footer-link-desc {
    font-size: 12.5px;
    line-height: 1.55;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }
  .footer-link-list li {
    margin-bottom: 6px;
  }
  .footer-link-btn {
    font-size: 14px;
    padding: 8px 0;
    line-height: 1.45;
    min-height: 36px;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
    width: 100%;
  }
  .footer-subhead-toggle {
    padding: 10px 0;
    min-height: 44px;
    font-size: 12px;
  }
  .footer-tagline {
    font-size: 13px;
    padding-left: 10px;
    line-height: 1.55;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding-top: 20px;
    line-height: 1.6;
  }
  .footer-bottom > span:nth-child(2),
  .footer-bottom > span:nth-child(4),
  .footer-bottom > span:nth-child(6) {
    display: none; /* hide separator pipes when stacking */
  }
}

/* Phones <= 414px: tighten further & ensure single column footer reads cleanly */
@media (max-width: 480px) {
  .footer-grid {
    gap: 28px;
  }
  .qualification-modal {
    padding: 52px 14px 24px;
  }
  .innovation-widget {
    right: 8px;
    left: 8px;
    bottom: 8px;
  }
  .widget-content {
    padding: 16px 14px 14px;
    border-radius: 14px;
  }
}

/* Readmore overlay extras for case study formatting */
#readmoreBody h4 {
  margin: 22px 0 8px;
  color: #00e5ff;
  font-size: 1.05rem;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.04em;
}
#readmoreBody h4:first-child { margin-top: 0; }
#readmoreBody ul {
  margin: 8px 0 14px 22px;
  padding: 0;
}
#readmoreBody ul li {
  margin-bottom: 6px;
  line-height: 1.55;
  color: rgba(230, 237, 246, 0.88);
}

/* Pricing & legal pages: mobile sizing, single-column stacking,
   tap-friendly buttons, and readable type at <=768px / <=414px. */
@media (max-width: 768px) {
  /* Pricing hero */
  .pricing-page { padding-top: 64px; }
  .pricing-hero { padding: 44px 0 32px; }
  .pricing-hero h1 { font-size: clamp(28px, 7vw, 40px); line-height: 1.2; }
  .pricing-sub { font-size: 15.5px; line-height: 1.55; padding: 0 4px; }
  .pricing-nav { gap: 8px; margin-top: 18px; }
  .pricing-nav a {
    padding: 10px 14px;
    font-size: 13px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
  .billing-toggle { width: 100%; max-width: 360px; }
  .billing-toggle__btn { flex: 1; justify-content: center; padding: 12px 14px; min-height: 44px; font-size: 13.5px; }
  .billing-toggle__save { font-size: 10px; padding: 2px 6px; }

  /* Pricing product sections */
  .pricing-product { padding: 44px 0; }
  .product-header { margin-bottom: 28px; }
  .product-header h2 { font-size: clamp(24px, 6vw, 32px); line-height: 1.25; }
  .product-header p { font-size: 14.5px; line-height: 1.55; }

  /* Force single-column stack so cards never feel cramped */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 480px;
  }
  .price-card {
    padding: 24px 20px;
    border-radius: 14px;
  }
  .price-card h3 { font-size: 20px; margin-bottom: 10px; }
  .price-card .amount {
    font-size: 26px;
    line-height: 1.2;
    word-break: break-word;
  }
  .price-card .period { font-size: 12.5px; }
  .price-card .tagline { font-size: 13px; margin-bottom: 14px; }
  .price-card ul { margin-bottom: 20px; }
  .price-card ul li { font-size: 14px; padding: 6px 0 6px 22px; }

  /* Tap-friendly CTA buttons */
  .price-btn {
    padding: 14px 18px;
    min-height: 48px;
    font-size: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Disable hover lift on touch — prevents sticky :hover state */
  .price-card:hover { transform: none; }

  /* Legal pages */
  .legal-page { padding-top: 64px; }
  .legal-hero { padding: 40px 0 28px; }
  .legal-hero h1 { font-size: clamp(26px, 7vw, 36px); line-height: 1.2; }
  .legal-sub { font-size: 15px; line-height: 1.55; }
  .legal-body { padding: 36px 0 64px; }
  .legal-container h2 {
    font-size: 20px;
    margin: 28px 0 10px;
    line-height: 1.3;
  }
  .legal-container h3 {
    font-size: 16px;
    margin: 20px 0 8px;
  }
  .legal-container p {
    font-size: 15px;
    line-height: 1.7;
    margin: 10px 0;
  }
  .legal-container ul {
    padding-left: 20px;
    line-height: 1.7;
    font-size: 15px;
  }
  .legal-container ul li { margin: 6px 0; }
  /* Long emails / links shouldn't blow out the column */
  .legal-container a {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}

/* Phones <= 414px: tighten container padding for more reading width */
@media (max-width: 480px) {
  .pricing-page .container,
  .legal-page .container {
    padding: 0 18px;
  }
  .pricing-grid { gap: 16px; }
  .price-card { padding: 22px 18px; }
  .price-card .amount { font-size: 24px; }
  .price-card h3 { font-size: 19px; }
  .legal-container h2 { font-size: 19px; }
  .legal-container p,
  .legal-container ul { font-size: 14.5px; line-height: 1.65; }
}

/* ─── Blog ──────────────────────────────────────────────────────────────── */
.blog-page { background: #fafbff; }
.blog-hero { padding: 140px 0 60px; background: linear-gradient(180deg, #f0f9ff 0%, #fafbff 100%); border-bottom: 1px solid #e2e8f0; }
.blog-hero .hero-title { font-size: clamp(2rem, 4vw, 3rem); margin: 12px 0 12px; color: #0f172a; }
.blog-hero .hero-sub { font-size: 1.125rem; color: #475569; max-width: 640px; }
.blog-list-section { padding: 60px 0 100px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-loading, .blog-empty { text-align: center; padding: 60px 20px; color: #64748b; grid-column: 1 / -1; }
.blog-empty h3 { color: #0f172a; margin-bottom: 8px; }
.blog-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; overflow: hidden; box-shadow: 0 1px 3px rgba(15,23,42,.04); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(14,165,233,.12); border-color: #bae6fd; }
.blog-card-image { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: linear-gradient(135deg, #0ea5e9, #6366f1); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-meta { font-size: 12px; color: #64748b; display: flex; gap: 8px; align-items: center; }
.blog-card-meta .dot { color: #cbd5e1; }
.blog-card-title { font-size: 1.25rem; line-height: 1.3; margin: 0; }
.blog-card-title a { color: #0f172a; text-decoration: none; }
.blog-card-title a:hover { color: #0ea5e9; }
.blog-card-excerpt { color: #475569; font-size: 0.95rem; line-height: 1.6; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-link { font-weight: 600; color: #0ea5e9; text-decoration: none; font-size: 0.95rem; margin-top: auto; padding-top: 8px; transition: gap .2s; display: inline-flex; align-items: center; gap: 4px; }
.blog-card-link:hover { gap: 10px; }
.blog-single-page { background: #fff; }
.blog-single-hero { padding: 130px 0 40px; background: linear-gradient(180deg, #f0f9ff 0%, #fff 100%); border-bottom: 1px solid #e2e8f0; }
.blog-back-link { display: inline-block; color: #0ea5e9; text-decoration: none; font-size: 14px; font-weight: 500; margin-bottom: 16px; }
.blog-back-link:hover { text-decoration: underline; }
.blog-single-hero .hero-title { font-size: clamp(1.75rem, 4vw, 2.75rem); color: #0f172a; line-height: 1.2; margin: 12px 0 16px; max-width: 800px; }
.blog-single-meta { font-size: 14px; color: #64748b; display: flex; gap: 8px; align-items: center; }
.blog-single-meta .dot { color: #cbd5e1; }
.blog-single-body-section { padding: 50px 0 100px; }
.blog-single-container { max-width: 760px; }
.blog-single-cover { margin: 0 0 40px; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 12px rgba(15,23,42,.08); }
.blog-single-cover img { width: 100%; height: auto; display: block; }
.blog-single-content { font-size: 1.05rem; line-height: 1.8; color: #334155; }
.blog-single-content h2 { font-size: 1.65rem; color: #0f172a; margin: 36px 0 14px; }
.blog-single-content h3 { font-size: 1.3rem; color: #0f172a; margin: 28px 0 12px; }
.blog-single-content p { margin: 0 0 18px; }
.blog-single-content ul, .blog-single-content ol { margin: 0 0 18px; padding-left: 24px; }
.blog-single-content li { margin: 6px 0; }
.blog-single-content blockquote { border-left: 4px solid #0ea5e9; background: #f0f9ff; padding: 16px 20px; margin: 24px 0; color: #0c4a6e; font-style: italic; border-radius: 0 8px 8px 0; }
.blog-single-content a { color: #0ea5e9; }
.blog-single-content code { background: #f1f5f9; padding: 2px 6px; border-radius: 4px; font-size: 0.9em; font-family: 'JetBrains Mono', Consolas, monospace; }
.blog-single-content pre { background: #0f172a; color: #e2e8f0; padding: 16px 18px; border-radius: 8px; overflow-x: auto; margin: 18px 0; }
.blog-single-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 14px 0; }
.blog-single-tags { margin: 30px 0; display: flex; gap: 8px; flex-wrap: wrap; }
.blog-tag { background: #f1f5f9; color: #475569; padding: 4px 12px; border-radius: 14px; font-size: 13px; font-weight: 500; }
.blog-single-share { margin: 24px 0 10px; padding: 16px 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; }
.blog-single-share-label { color: #475569; font-size: 14px; font-weight: 600; }
.blog-share-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.blog-share-linkedin { background: #0a66c2; color: #fff; }
.blog-share-linkedin:hover { background: #084d92; transform: translateY(-1px); color: #fff; }
.blog-share-linkedin svg { display: block; }
.blog-share-follow { margin-left: auto; color: #0a66c2; font-size: 14px; font-weight: 500; text-decoration: none; }
.blog-share-follow:hover { text-decoration: underline; }
@media (max-width: 540px) {
  .blog-share-follow { margin-left: 0; width: 100%; }
}
.blog-single-cta { margin-top: 50px; padding: 32px; background: linear-gradient(135deg, #f0f9ff 0%, #ede9fe 100%); border-radius: 14px; border: 1px solid #e2e8f0; text-align: center; }
.blog-single-cta h3 { color: #0f172a; margin: 0 0 8px; font-size: 1.4rem; }
.blog-single-cta p { color: #475569; margin: 0 0 20px; }
.blog-single-cta .btn { margin: 4px 6px; }
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-hero, .blog-single-hero { padding-top: 110px; }
  .blog-single-content { font-size: 1rem; }
}

/* ─── AI Chat Widget ────────────────────────────────────────────────────── */
.stz-chat { position: fixed; right: 22px; bottom: 22px; z-index: 9990; font-family: inherit; }
.stz-chat-bubble { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px 12px 14px; background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%); color: #fff; border: none; border-radius: 999px; box-shadow: 0 10px 28px rgba(14,165,233,.45); cursor: pointer; font-weight: 600; font-size: 15px; transition: transform .2s ease, box-shadow .2s ease; }
.stz-chat-bubble:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(14,165,233,.55); }
.stz-chat-bubble-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; background: transparent; border-radius: 0; overflow: visible; box-shadow: none; }
.stz-chat-bubble-img { width: 100%; height: 100%; object-fit: contain; display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
.stz-chat.open .stz-chat-bubble { transform: scale(0.92); opacity: 0.85; }
.stz-chat-panel { position: absolute; right: 0; bottom: 70px; width: 380px; max-width: calc(100vw - 32px); height: 560px; max-height: calc(100vh - 110px); background: #fff; border-radius: 16px; box-shadow: 0 20px 60px rgba(15,23,42,.25); display: flex; flex-direction: column; overflow: hidden; border: 1px solid #e2e8f0; animation: stzPanelIn .2s ease-out; }
.stz-chat-panel[hidden] { display: none !important; }
@keyframes stzPanelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.stz-chat-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%); color: #fff; }
.stz-chat-header-left { display: flex; align-items: center; gap: 12px; }
.stz-chat-avatar { width: 64px; height: 64px; background: rgba(255,255,255,.22); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; overflow: hidden; padding: 3px; box-shadow: 0 2px 6px rgba(0,0,0,.18); }
.stz-chat-avatar img { width: 100%; height: 100%; object-fit: contain; display: block; filter: drop-shadow(0 1px 2px rgba(0,0,0,.35)); }
.stz-chat-title { font-weight: 600; font-size: 15px; line-height: 1.2; }
.stz-chat-status { font-size: 12px; opacity: .9; display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.stz-chat-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 0 2px rgba(74,222,128,.3); }
.stz-chat-close { background: rgba(255,255,255,.15); border: none; color: #fff; font-size: 22px; line-height: 1; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; transition: background .15s; }
.stz-chat-close:hover { background: rgba(255,255,255,.3); }
.stz-chat-messages { flex: 1; overflow-y: auto; padding: 16px; background: #f8fafc; display: flex; flex-direction: column; gap: 10px; }
.stz-msg { display: flex; }
.stz-msg-user { justify-content: flex-end; }
.stz-msg-assistant { justify-content: flex-start; }
.stz-msg-bubble { max-width: 82%; padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.5; word-wrap: break-word; }
.stz-msg-user .stz-msg-bubble { background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%); color: #fff; border-bottom-right-radius: 4px; }
.stz-msg-assistant .stz-msg-bubble { background: #fff; color: #0f172a; border: 1px solid #e2e8f0; border-bottom-left-radius: 4px; box-shadow: 0 1px 2px rgba(15,23,42,.04); }
.stz-msg-bubble a { color: #0ea5e9; }
.stz-msg-user .stz-msg-bubble a { color: #fff; text-decoration: underline; }
.stz-typing { display: inline-flex; gap: 4px; align-items: center; padding: 2px 0; }
.stz-typing i { width: 7px; height: 7px; background: #94a3b8; border-radius: 50%; animation: stzTyping 1.2s infinite ease-in-out; }
.stz-typing i:nth-child(2) { animation-delay: .15s; }
.stz-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes stzTyping { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }
.stz-chat-form { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid #e2e8f0; background: #fff; }
.stz-chat-input { flex: 1; padding: 10px 14px; border: 1px solid #e2e8f0; border-radius: 999px; font-size: 14px; outline: none; transition: border-color .15s, box-shadow .15s; }
.stz-chat-input:focus { border-color: #0ea5e9; box-shadow: 0 0 0 3px rgba(14,165,233,.15); }
.stz-chat-input:disabled { opacity: .6; }
.stz-chat-send { width: 40px; height: 40px; border: none; background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%); color: #fff; border-radius: 50%; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: transform .15s; }
.stz-chat-send:hover { transform: scale(1.05); }
.stz-chat-footnote { font-size: 11px; color: #94a3b8; padding: 0 14px 10px; background: #fff; text-align: center; }
.stz-chat-footnote a { color: #0ea5e9; }
@media (max-width: 480px) {
  .stz-chat { right: 12px; bottom: 12px; }
  .stz-chat-bubble-label { display: none; }
  .stz-chat-bubble { padding: 12px; }
  .stz-chat-panel { width: calc(100vw - 24px); right: 0; height: calc(100vh - 100px); bottom: 64px; }
}

/* ─── Chatbot welcome / landing screen ───────────────────────────── */
.stz-chat-welcome { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 22px 18px; text-align: center; background:
  radial-gradient(1100px 480px at 50% 0%, rgba(99,102,241,.10), transparent 65%),
  radial-gradient(700px 340px at 100% 100%, rgba(14,165,233,.10), transparent 60%),
  #ffffff;
  gap: 14px; overflow-y: auto;
}
.stz-chat-welcome[aria-hidden="true"] { display: none !important; }
.stz-chat-welcome-orb {
  width: 150px; height: 150px; display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 8px 18px rgba(14,165,233,.32));
}
.stz-chat-welcome-orb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.stz-chat-welcome-title { font-size: 20px; font-weight: 700; background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.01em; }
.stz-chat-welcome-sub { font-size: 13.5px; line-height: 1.55; color: #475569; max-width: 320px; }
.stz-chat-welcome-suggestions { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 320px; margin-top: 6px; }
.stz-chat-suggestion {
  appearance: none; -webkit-appearance: none;
  background: #ffffff; color: #0f172a;
  border: 1px solid #e2e8f0; border-radius: 12px;
  padding: 10px 14px; font-size: 13.5px; font-weight: 500;
  text-align: left; cursor: pointer;
  transition: border-color .15s, background .15s, transform .12s, box-shadow .15s;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.stz-chat-suggestion:hover { border-color: #6366f1; background: #f8fafc; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(99,102,241,.12); }
.stz-chat-suggestion:active { transform: translateY(0); }
@media (max-width: 480px) {
  .stz-chat-welcome { padding: 18px 16px 12px; }
  .stz-chat-welcome-orb { width: 120px; height: 120px; }
  .stz-chat-welcome-title { font-size: 18px; }
}
