/* Modern Professional CSS for SuperNMS */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: #e5e5e5;
  background: #0a0a0a;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 60%, #0f0f23 100%);
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    /* Network grid */
    linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px),
    /* Network nodes */
    radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.4) 2px, transparent 3px),
    radial-gradient(circle at 80% 30%, rgba(118, 75, 162, 0.4) 2px, transparent 3px),
    radial-gradient(circle at 60% 60%, rgba(56, 178, 172, 0.4) 2px, transparent 3px),
    radial-gradient(circle at 30% 80%, rgba(102, 126, 234, 0.4) 2px, transparent 3px),
    radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.4) 2px, transparent 3px),
    radial-gradient(circle at 15% 50%, rgba(56, 178, 172, 0.4) 2px, transparent 3px),
    radial-gradient(circle at 90% 60%, rgba(102, 126, 234, 0.4) 2px, transparent 3px),
    radial-gradient(circle at 45% 25%, rgba(118, 75, 162, 0.4) 2px, transparent 3px);
  background-size: 
    50px 50px,
    50px 50px,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%;
  animation: networkPulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes networkPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  25% {
    opacity: 0.8;
    transform: scale(1.02);
  }
  50% {
    opacity: 1;
    transform: scale(0.98);
  }
  75% {
    opacity: 0.9;
    transform: scale(1.01);
  }
}

/* Network Connection Lines */
.network-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

.network-lines::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    /* Connection lines between nodes */
    linear-gradient(45deg, transparent 20%, rgba(102, 126, 234, 0.3) 20.5%, rgba(102, 126, 234, 0.3) 21%, transparent 21.5%),
    linear-gradient(-45deg, transparent 30%, rgba(118, 75, 162, 0.3) 30.5%, rgba(118, 75, 162, 0.3) 31%, transparent 31.5%),
    linear-gradient(30deg, transparent 60%, rgba(56, 178, 172, 0.3) 60.5%, rgba(56, 178, 172, 0.3) 61%, transparent 61.5%),
    linear-gradient(-30deg, transparent 75%, rgba(102, 126, 234, 0.3) 75.5%, rgba(102, 126, 234, 0.3) 76%, transparent 76.5%);
  background-size: 200px 200px, 150px 150px, 180px 180px, 220px 220px;
  animation: networkFlow 15s linear infinite;
}

@keyframes networkFlow {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
  100% {
    background-position: 200px 200px, -150px -150px, 180px 180px, -220px -220px;
  }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  color: #b8c5d1;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #667eea;
  border-color: #667eea;
}

.btn-secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #e5e5e5;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  /*padding: 1rem 0;*/
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 80px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #e5e5e5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #667eea;
}

.nav-cta {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 6px !important;
  color: white !important;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #e5e5e5;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    /* Network topology overlay */
    radial-gradient(circle at 15% 25%, rgba(102, 126, 234, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(118, 75, 162, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 45% 15%, rgba(56, 178, 172, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 75% 45%, rgba(102, 126, 234, 0.1) 0%, transparent 30%),
    /* Base gradient */
    linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(22, 33, 62, 0.95) 100%);
  background-size: 100% 100%;
  padding-top: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  --parallax-y: 0px;
  --parallax-x: 0px;
  transform: translateY(var(--parallax-y));
  will-change: transform;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(102, 126, 234, 0.05) 2px,
      rgba(102, 126, 234, 0.05) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(118, 75, 162, 0.05) 2px,
      rgba(118, 75, 162, 0.05) 4px
    );
  pointer-events: none;
  transform: translate(calc(var(--parallax-x) * 0.5), calc(var(--parallax-y) * 0.3));
  will-change: transform;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
  animation: backgroundMove 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  transform: translate(calc(var(--parallax-x) * -0.3), calc(var(--parallax-y) * -0.2));
  will-change: transform;
}

@keyframes backgroundMove {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-5%, -5%) rotate(1deg);
  }
  50% {
    transform: translate(5%, 5%) rotate(-1deg);
  }
  75% {
    transform: translate(-5%, 5%) rotate(0.5deg);
  }
}

.floating-element {
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(118, 75, 162, 0.5);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(118, 75, 162, 0.8);
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #b8c5d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #b8c5d1;
  line-height: 1.6;
}

.hero-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e5e5e5;
  font-weight: 500;
}

.benefit-icon {
  font-size: 1.25rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-note {
  color: #8a95a3;
  font-size: 0.9rem;
  font-style: italic;
}

/* Social Proof */
.social-proof {
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.social-proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.1) 0%, transparent 70%),
    radial-gradient(circle at 70% 60%, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.social-proof-text {
  text-align: center;
  color: #8a95a3;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.customer-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.testimonial {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.testimonial:hover {
  transform: translateY(-5px);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  color: #e5e5e5;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 2rem;
  color: #667eea;
  position: absolute;
  left: -0.5rem;
  top: -0.5rem;
}

.testimonial-content p::after {
  content: '"';
  font-size: 2rem;
  color: #667eea;
}

.testimonial-author strong {
  color: #667eea;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: #8a95a3;
  font-size: 0.9rem;
}

.customer-logo {
  color: #667eea;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 6px;
  background: rgba(102, 126, 234, 0.05);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.customer-logo:hover {
  border-color: rgba(102, 126, 234, 0.4);
  background: rgba(102, 126, 234, 0.1);
  transform: scale(1.02);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #b8c5d1;
  margin-top: 1rem;
}

/* Solution Section */
.solution-section {
  padding: 6rem 0;
  background: rgba(5, 5, 5, 0.5);
}

.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.problem, .solution {
  padding: 2rem;
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem {
  border-left: 4px solid #ff6b6b;
}

.solution {
  border-left: 4px solid #51cf66;
}

.problem h3, .solution h3 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.problem ul, .solution ul {
  list-style: none;
  padding: 0;
}

.problem li, .solution li {
  padding: 0.75rem 0;
  color: #b8c5d1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.problem li:last-child, .solution li:last-child {
  border-bottom: none;
}

/* Screenshots Section */
.screenshots-section {
  padding: 6rem 0;
  background: rgba(10, 10, 10, 0.9);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.screenshot-item {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  max-width: 600px;
  margin: 0 auto;
}

.screenshot-item:hover {
  transform: translateY(-8px);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.screenshot-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-info {
  padding: 1.5rem;
}

.screenshot-info h3 {
  color: #667eea;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.screenshot-info p {
  color: #b8c5d1;
  line-height: 1.5;
  margin: 0;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: rgba(10, 10, 10, 0.8);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  color: #667eea;
  margin-bottom: 1rem;
}

.feature-card p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  color: #b8c5d1;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1rem;
}

.feature-list li::before {
  content: '•';
  color: #667eea;
  position: absolute;
  left: 0;
}

/* Use Cases Section */
.use-cases-section {
  padding: 6rem 0;
  background: rgba(5, 5, 5, 0.5);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.use-case {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.use-case:hover {
  transform: translateY(-5px);
  border-color: rgba(102, 126, 234, 0.3);
}

.use-case-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.use-case h3 {
  color: #667eea;
  margin-bottom: 1rem;
}

.use-case-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.benefit-tag {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: rgba(10, 10, 10, 0.8);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: #667eea;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.pricing-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-header h3 {
  color: #667eea;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  color: #8a95a3;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.pricing-price {
  margin-bottom: 2rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
}

.period {
  display: block;
  color: #8a95a3;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: #b8c5d1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Pricing Notes */
.pricing-notes {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(20, 20, 20, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-notes p {
  margin-bottom: 0.75rem;
  color: #b8c5d1;
  font-size: 0.95rem;
}

.pricing-notes p:last-child {
  margin-bottom: 0;
}

.pricing-notes strong {
  color: #667eea;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  text-align: center;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #b8c5d1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-note {
  color: #8a95a3;
  font-size: 0.9rem;
  font-style: italic;
}

/* Footer */
.footer {
  background: rgba(5, 5, 5, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #667eea;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #b8c5d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #667eea;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 32px;
  width: auto;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #667eea;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8a95a3;
}

/* Page Header Styles */
.page-header {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
  padding-top: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #b8c5d1;
  margin-top: 1rem;
  font-weight: 400;
}

/* Case Studies Styles */
.case-studies-section {
  padding: 6rem 0;
  background: rgba(5, 5, 5, 0.5);
}

.case-study {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 4rem;
  backdrop-filter: blur(10px);
}

.case-study-header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-company h2 {
  color: #667eea;
  margin-bottom: 0.5rem;
}

.company-details {
  color: #8a95a3;
  font-size: 1rem;
  margin: 0;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.metric {
  text-align: center;
  padding: 1rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.85rem;
  color: #b8c5d1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-study-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.challenge, .solution, .results {
  padding: 2rem;
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.challenge {
  border-left: 4px solid #ff6b6b;
}

.solution {
  border-left: 4px solid #667eea;
}

.results {
  border-left: 4px solid #51cf66;
}

.challenge h3, .solution h3, .results h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.challenge ul, .solution ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.challenge li, .solution li {
  padding: 0.5rem 0;
  color: #b8c5d1;
  position: relative;
  padding-left: 1.5rem;
}

.challenge li::before, .solution li::before {
  content: '•';
  color: #667eea;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.result-item {
  padding: 1.5rem;
  background: rgba(51, 207, 102, 0.1);
  border: 1px solid rgba(51, 207, 102, 0.2);
  border-radius: 8px;
}

.result-item h4 {
  color: #51cf66;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.result-item p {
  color: #b8c5d1;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.case-study-quote {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.case-study-quote blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: #e5e5e5;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.case-study-quote cite {
  color: #667eea;
  font-weight: 600;
  font-style: normal;
}

/* About Page Styles */
.mission-section {
  padding: 6rem 0;
  background: rgba(10, 10, 10, 0.8);
}

.mission-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.mission-text .lead {
  font-size: 1.3rem;
  color: #e5e5e5;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 500;
}

.mission-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.value {
  padding: 1.5rem;
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.value h3 {
  color: #667eea;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.value p {
  color: #b8c5d1;
  margin: 0;
  font-size: 0.95rem;
}

.mission-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 2rem;
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #b8c5d1;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Experience Section */
.experience-section {
  padding: 6rem 0;
  background: rgba(8, 8, 8, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-content {
  max-width: 1000px;
  margin: 0 auto;
}

.experience-text h3 {
  color: #667eea;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.experience-text > p {
  color: #e5e5e5;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.6;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.platform-item {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.platform-item:hover {
  border-color: rgba(102, 126, 234, 0.3);
  background: rgba(20, 20, 20, 0.9);
  transform: translateY(-5px);
}

.platform-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.platform-item h4 {
  color: #e5e5e5;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.platform-item p {
  color: #b8c5d1;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.experience-insight {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  margin-top: 3rem;
}

.experience-insight h3 {
  color: #667eea;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.experience-insight ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-insight li {
  color: #e5e5e5;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.experience-insight li:before {
  content: "→";
  color: #667eea;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.experience-insight strong {
  color: #667eea;
  font-weight: 600;
}

/* Team Section */
.team-section {
  padding: 6rem 0;
  background: rgba(5, 5, 5, 0.5);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.team-member {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.member-photo {
  margin-bottom: 1.5rem;
}

.photo-placeholder {
  width: 100px;
  height: 100px;
  background: rgba(102, 126, 234, 0.2);
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto;
}

.member-info h3 {
  color: #667eea;
  margin-bottom: 0.5rem;
}

.member-title {
  color: #8a95a3;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.member-bio {
  color: #b8c5d1;
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

/* Story Section */
.story-section {
  padding: 6rem 0;
  background: rgba(10, 10, 10, 0.8);
}

.timeline {
  max-width: 800px;
  margin: 3rem auto 0;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 0;
  bottom: -3rem;
  width: 2px;
  background: linear-gradient(to bottom, rgba(102, 126, 234, 0.3), transparent);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-year {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.timeline-content {
  flex: 1;
  padding-top: 1rem;
}

.timeline-content h3 {
  color: #667eea;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: #b8c5d1;
  line-height: 1.6;
  margin: 0;
}

/* Certifications Section */
.certifications-section {
  padding: 6rem 0;
  background: rgba(5, 5, 5, 0.5);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.certification {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.certification:hover {
  transform: translateY(-5px);
  border-color: rgba(102, 126, 234, 0.3);
}

.certification h3 {
  color: #667eea;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.certification p {
  color: #b8c5d1;
  margin: 0;
  font-size: 0.95rem;
}

/* Legal Document Styles */
.legal-content {
  padding: 4rem 0 6rem;
  background: rgba(5, 5, 5, 0.5);
}

.legal-document {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  color: #667eea;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.legal-section h3 {
  color: #e5e5e5;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-size: 1.2rem;
}

.legal-section p {
  color: #b8c5d1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.legal-section ul, .legal-section ol {
  color: #b8c5d1;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-info {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: #e5e5e5;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
  }
  
  .nav-links.mobile-menu-open {
    display: flex;
  }
  
  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 1.1rem;
  }
  
  .nav-links a:last-child {
    border-bottom: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-benefits {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .problem-solution {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* New Page Responsive Styles */
  .case-study-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .case-study-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .case-study {
    padding: 2rem;
  }
  
  .mission-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mission-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .platform-item {
    padding: 1.5rem;
  }
  
  .experience-insight {
    padding: 1.5rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .timeline-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .timeline-item::before {
    display: none;
  }
  
  .timeline-year {
    width: 60px;
    height: 60px;
    font-size: 0.9rem;
    align-self: flex-start;
  }
  
  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .legal-document {
    padding: 2rem;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .customer-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .page-header {
    min-height: 30vh;
    padding-top: 120px;
  }
  
  .case-study {
    padding: 1.5rem;
  }
  
  .legal-document {
    padding: 1.5rem;
  }
  
  .mission-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Integrations Page Styles */
.integrations-section {
  padding: 6rem 0;
  background: rgba(8, 8, 8, 0.9);
}

.integration-category {
  margin-bottom: 4rem;
}

.integration-category h3 {
  color: #667eea;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(102, 126, 234, 0.3);
  padding-bottom: 0.5rem;
}

.category-description {
  color: #b8c5d1;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.integration-item {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.integration-item:hover {
  border-color: rgba(102, 126, 234, 0.3);
  background: rgba(20, 20, 20, 0.9);
  transform: translateY(-5px);
}

.integration-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.integration-item h4 {
  color: #e5e5e5;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.integration-item p {
  color: #b8c5d1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.integration-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.api-section {
  padding: 6rem 0;
  background: rgba(5, 5, 5, 0.9);
}

.api-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.api-feature {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem;
}

.api-feature h3 {
  color: #667eea;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.api-feature p {
  color: #b8c5d1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.api-feature ul {
  list-style: none;
  padding: 0;
}

.api-feature li {
  color: #e5e5e5;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.api-feature li:before {
  content: "✓";
  color: #667eea;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Security Page Styles */
.security-overview {
  padding: 6rem 0;
  background: rgba(8, 8, 8, 0.9);
}

.security-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.security-highlight {
  text-align: center;
  padding: 2rem;
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.security-highlight:hover {
  border-color: rgba(102, 126, 234, 0.3);
  transform: translateY(-5px);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.security-highlight h3 {
  color: #e5e5e5;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.security-highlight p {
  color: #b8c5d1;
  line-height: 1.6;
}

.data-protection {
  padding: 6rem 0;
  background: rgba(5, 5, 5, 0.9);
}

.data-protection h2 {
  color: #e5e5e5;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.protection-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.protection-category h3 {
  color: #667eea;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-item h4 {
  color: #e5e5e5;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-item p {
  color: #b8c5d1;
  line-height: 1.6;
  margin: 0;
}

.compliance-section {
  padding: 6rem 0;
  background: rgba(8, 8, 8, 0.9);
}

.compliance-section h2 {
  color: #e5e5e5;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.compliance-item {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.compliance-item:hover {
  border-color: rgba(102, 126, 234, 0.3);
  transform: translateY(-5px);
}

.compliance-logo {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.compliance-item h3 {
  color: #e5e5e5;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.compliance-item p {
  color: #b8c5d1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.compliance-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.detail-tag {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.infrastructure-security {
  padding: 6rem 0;
  background: rgba(5, 5, 5, 0.9);
}

.infrastructure-security h2 {
  color: #e5e5e5;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.security-layers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.security-layer {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
}

.security-layer h3 {
  color: #667eea;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.security-layer ul {
  list-style: none;
  padding: 0;
}

.security-layer li {
  color: #b8c5d1;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.security-layer li:before {
  content: "→";
  color: #667eea;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.security-operations {
  padding: 6rem 0;
  background: rgba(8, 8, 8, 0.9);
}

.security-operations h2 {
  color: #e5e5e5;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.soc-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.soc-feature {
  text-align: center;
  padding: 2rem;
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.soc-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.soc-feature h3 {
  color: #e5e5e5;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.soc-feature p {
  color: #b8c5d1;
  line-height: 1.6;
}

.security-resources {
  padding: 6rem 0;
  background: rgba(5, 5, 5, 0.9);
}

.security-resources h2 {
  color: #e5e5e5;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.resource-item {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.resource-item:hover {
  border-color: rgba(102, 126, 234, 0.3);
  transform: translateY(-5px);
}

.resource-item h3 {
  color: #e5e5e5;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.resource-item p {
  color: #b8c5d1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.resource-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.resource-link:hover {
  color: #5a6fd8;
}

/* Case Studies Page Styling - Consistent with Site Design */
.success-stats {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(102, 126, 234, 0.3);
  background: rgba(15, 15, 15, 0.8);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #b8c5d1;
  font-weight: 500;
}

/* Industries Animation Section */
.industries-animation {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
  position: relative;
  overflow: hidden;
  min-height: 800px;
}

.animation-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flying-superhero {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 150;
  animation: flyAround 12s ease-in-out infinite;
  transform-origin: center;
  cursor: pointer;
  transition: transform 0.1s ease-out;
}

.flying-superhero:hover {
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
}

.superhero-controls-hint {
  pointer-events: none;
  user-select: none;
}

.score-display {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  font-family: 'Orbitron', monospace;
  font-weight: bold;
  z-index: 200;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 180px;
}

.score-number {
  font-size: 1.8rem;
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  margin-bottom: 5px;
}

.score-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.achievement-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: linear-gradient(135deg, #ff6b6b, #ffd93d);
  color: #333;
  padding: 20px 30px;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  z-index: 300;
  animation: achievementPop 3s ease-out forwards;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

@keyframes achievementPop {
  0% {
    transform: translate(-50%, -50%) scale(0) rotate(-10deg);
    opacity: 0;
  }
  20% {
    transform: translate(-50%, -50%) scale(1.2) rotate(5deg);
    opacity: 1;
  }
  40% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 0;
  }
}

.score-animation {
  animation: scoreBoost 0.6s ease-out;
}

@keyframes scoreBoost {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); color: #00ff88; }
  100% { transform: scale(1); }
}

@keyframes floatScore {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-30px) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateY(-60px) scale(0.8);
    opacity: 0;
  }
}

/* Alert animations for emergency bubbles */
@keyframes alertPulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.2);
  }
  50% {
    box-shadow: 0 8px 35px rgba(239, 68, 68, 0.4);
  }
}

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

/* Section Navigation Buttons */
.section-nav-buttons {
  position: fixed;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section-nav-up {
  top: 50%;
  transform: translateY(-150%);
}

.section-nav-down {
  bottom: 50%;
  transform: translateY(150%);
}

.nav-btn {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.nav-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(102, 126, 234, 1), rgba(118, 75, 162, 1));
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
}

.nav-btn:active {
  transform: scale(0.95);
}

/* Mobile styles for navigation buttons */
@media (max-width: 768px) {
  .section-nav-buttons {
    right: 15px;
  }
  
  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

.animation-container {
  cursor: crosshair;
}

@keyframes flyAround {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    transform: translate(200px, -150px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translate(-100px, -200px) rotate(180deg) scale(0.9);
  }
  75% {
    transform: translate(-250px, 100px) rotate(270deg) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.superhero-img {
  width: 100px;
  height: 100px;
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.8));
  transition: filter 0.3s ease;
  background: transparent;
  animation: superheroGlow 3s ease-in-out infinite alternate;
}

@keyframes superheroGlow {
  0% {
    filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.8));
  }
  100% {
    filter: drop-shadow(0 0 25px rgba(102, 126, 234, 1)) drop-shadow(0 0 35px rgba(118, 75, 162, 0.6));
  }
}

.superhero-img:hover {
  filter: drop-shadow(0 0 30px rgba(102, 126, 234, 1)) drop-shadow(0 0 40px rgba(118, 75, 162, 0.8));
}

.floating-industries {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.industry-bubble {
  position: absolute;
  border-radius: 15px;
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 140px;
  max-width: 180px;
  backdrop-filter: blur(8px);
  animation: floatUp linear infinite;
  opacity: 0;
  transition: all 0.3s ease;
  bottom: 0; /* Start at bottom of container */
  color: white;
}

/* Normal bubbles - original SuperNMS blue theme (safe) */
.industry-bubble.normal {
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(102, 126, 234, 0.3);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.industry-bubble.normal:hover {
  opacity: 1;
  border-color: rgba(102, 126, 234, 0.6);
  background: rgba(102, 126, 234, 0.2);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  transform: scale(1.1);
}

/* Alert bubbles - red-orange theme (emergency) */
.industry-bubble.alert {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.8), rgba(220, 38, 38, 0.7));
  border: 2px solid rgba(239, 68, 68, 0.5);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.2);
  animation: floatUp linear infinite, alertPulse 2s ease-in-out infinite;
}

.industry-bubble.alert::before {
  content: '⚠️';
  position: absolute;
  top: -8px;
  right: -8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  animation: alertBlink 1.5s ease-in-out infinite;
}

.industry-bubble.alert:hover {
  opacity: 1;
  border-color: rgba(239, 68, 68, 0.7);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.8));
  box-shadow: 0 12px 35px rgba(239, 68, 68, 0.35);
  transform: scale(1.1);
}

/* Pop effect when superhero touches bubbles */
.industry-bubble.popped {
  animation: bubblePop 0.6s ease-out forwards !important;
  pointer-events: none;
  /* Freeze the bubble at its current position */
  animation-play-state: paused;
  transform: var(--current-transform) !important;
}

@keyframes bubblePop {
  0% {
    transform: var(--current-transform, translateY(0)) scale(1) rotate(0deg);
    opacity: 1;
    border-color: rgba(34, 197, 94, 0.6);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.8), rgba(16, 185, 129, 0.7));
  }
  50% {
    transform: var(--current-transform, translateY(0)) scale(1.3) rotate(180deg);
    opacity: 0.8;
    border-color: rgba(34, 197, 94, 1);
    background: linear-gradient(135deg, rgba(34, 197, 94, 1), rgba(16, 185, 129, 0.9));
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.8), 0 0 50px rgba(16, 185, 129, 0.6);
  }
  100% {
    transform: var(--current-transform, translateY(0)) scale(0) rotate(360deg);
    opacity: 0;
    border-color: transparent;
  }
}

.pop-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(102, 126, 234, 1), rgba(118, 75, 162, 0.8));
  border-radius: 50%;
  animation: particleExplode 0.8s ease-out forwards;
  pointer-events: none;
  z-index: 250;
  transform: translate(-50%, -50%); /* Center the particle on its position */
}

@keyframes particleExplode {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: scale(0.3) translate(var(--random-x, 50px), var(--random-y, -50px));
    opacity: 0;
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(150px) translateX(0) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 0.8;
    transform: translateY(100px) translateX(calc(var(--drift-x) * 0.2)) rotate(calc(var(--rotation, 0deg) * 0.2));
  }
  85% {
    opacity: 0.8;
    transform: translateY(-500px) translateX(calc(var(--drift-x) * 0.8)) rotate(calc(var(--rotation, 0deg) * 0.8));
  }
  100% {
    transform: translateY(-650px) translateX(var(--drift-x)) rotate(var(--rotation, 0deg));
    opacity: 0;
  }
}

.industry-bubble .bubble-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.industry-bubble .bubble-title {
  color: #e5e5e5;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.industry-bubble .bubble-desc {
  color: #b8c5d1;
  font-size: 0.7rem;
  line-height: 1.3;
  margin: 0;
}

/* Responsive Design for Animation */
@media (max-width: 1024px) {
  .animation-container {
    height: 500px;
  }
  
  .industry-bubble {
    min-width: 120px;
    max-width: 150px;
    padding: 0.8rem 1.2rem;
  }
  
  .hub-logo {
    padding: 1.5rem;
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .industries-animation {
    padding: 60px 0;
    min-height: 600px;
  }
  
  .animation-container {
    height: 400px;
  }
  
  .industry-bubble {
    min-width: 100px;
    max-width: 130px;
    padding: 0.7rem 1rem;
  }
  
  .bubble-icon {
    font-size: 1.5rem !important;
  }
  
  .bubble-title {
    font-size: 0.8rem !important;
  }
  
  .bubble-desc {
    font-size: 0.65rem !important;
  }
  
  .hub-logo {
    min-width: auto;
    max-width: 180px;
    padding: 1.2rem;
  }
  
  .hub-logo h3 {
    font-size: 1.5rem;
  }
  
  .hub-logo .logo-icon {
    font-size: 2.5rem;
  }
  
  /* Mobile superhero animation with smaller flight path */
  .flying-superhero {
    animation: flyAroundMobile 12s ease-in-out infinite;
  }
  
  .superhero-controls-hint div {
    font-size: 0.7rem !important;
    padding: 8px !important;
    top: 5px !important;
    right: 5px !important;
  }
  
  .score-display {
    padding: 10px 15px !important;
    font-size: 0.8rem !important;
    min-width: 140px !important;
    top: 5px !important;
    left: 5px !important;
  }
  
  .score-number {
    font-size: 1.4rem !important;
  }
  
  .score-label {
    font-size: 0.7rem !important;
  }
  
  .achievement-popup {
    font-size: 1rem !important;
    padding: 15px 20px !important;
  }
  
  .animation-container {
    cursor: pointer;
  }
  
  @keyframes flyAroundMobile {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    25% {
      transform: translate(80px, -60px) rotate(90deg) scale(1.1);
    }
    50% {
      transform: translate(-40px, -80px) rotate(180deg) scale(0.9);
    }
    75% {
      transform: translate(-100px, 40px) rotate(270deg) scale(1.1);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  
  .superhero-img {
    width: 80px;
    height: 80px;
  }
}

.case-studies-section {
  padding: 80px 0;
}

.case-study {
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 3rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-study:hover {
  transform: translateY(-5px);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.case-study-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 2rem;
  background: rgba(102, 126, 234, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
}

.case-study-company h3 {
  color: #667eea;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.company-details {
  color: #b8c5d1;
  font-size: 1rem;
  margin: 0;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.metric {
  text-align: center;
  padding: 1rem;
  background: rgba(15, 15, 15, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.metric-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #667eea;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.metric-label {
  display: block;
  color: #b8c5d1;
  font-size: 0.8rem;
  font-weight: 500;
}

.case-study-content {
  padding: 2rem;
  display: grid;
  gap: 2rem;
}

.challenge h3, .solution h3, .results h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #e5e5e5;
}

.challenge p, .solution p, .results p {
  color: #b8c5d1;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.challenge ul, .solution ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.challenge li, .solution li {
  color: #b8c5d1;
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.challenge li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

.solution li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.result-item {
  background: rgba(15, 15, 15, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.result-item:hover {
  transform: translateY(-3px);
  border-color: rgba(102, 126, 234, 0.3);
}

.result-item h4 {
  color: #667eea;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.result-item p {
  color: #b8c5d1;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.case-study-quote {
  background: rgba(102, 126, 234, 0.05);
  padding: 2rem;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-quote blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #e5e5e5;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.case-study-quote cite {
  display: block;
  font-style: normal;
}

.case-study-quote cite strong {
  color: #667eea;
  font-weight: 600;
}

/* CTA Section - Consistent with Site Design */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e5e5e5;
  margin-bottom: 1rem;
}

.cta-content > p {
  font-size: 1.2rem;
  color: #b8c5d1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-stats-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(15, 15, 15, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.mini-stat {
  text-align: center;
}

.mini-stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 0.25rem;
}

.mini-stat-label {
  font-size: 0.85rem;
  color: #b8c5d1;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 1.5rem 0;
  flex-wrap: wrap;
}

.cta-note {
  font-size: 0.95rem;
  color: #b8c5d1;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .case-study-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .case-study-metrics {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .case-study-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-stats-mini {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  /* Fix case study content width on mobile */
  .case-study-content {
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
  }
  
  .challenge, .solution, .results {
    padding: 1.5rem;
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .challenge h3, .solution h3, .results h3 {
    font-size: 1.2rem;
  }
  
  .challenge p, .solution p, .results p {
    line-height: 1.7;
    font-size: 0.95rem;
  }
}

/* Scroll-triggered Fade-in Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky Early Access Button */
.sticky-early-access {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sticky-early-access.show {
  opacity: 1;
  visibility: visible;
}

.sticky-early-access .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 25px;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
  animation: pulse-glow 3s ease-in-out infinite;
}

.sticky-early-access .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
  }
}

/* Mobile responsive for sticky button */
@media (max-width: 768px) {
  .sticky-early-access {
    bottom: 15px;
    right: 15px;
  }
  
  .sticky-early-access .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* Staggered animation delays for multiple elements */
.industry-node:nth-child(1) { transition-delay: 0.1s; }
.industry-node:nth-child(2) { transition-delay: 0.2s; }
.industry-node:nth-child(3) { transition-delay: 0.3s; }
.industry-node:nth-child(4) { transition-delay: 0.4s; }
.industry-node:nth-child(5) { transition-delay: 0.5s; }
.industry-node:nth-child(6) { transition-delay: 0.6s; }
.industry-node:nth-child(7) { transition-delay: 0.7s; }
.industry-node:nth-child(8) { transition-delay: 0.8s; }
.industry-node:nth-child(9) { transition-delay: 0.9s; }

/* Enhanced animation for SuperNMS center node */
.supernms-center {
  transition: opacity 1s ease, transform 1s ease !important;
  transition-delay: 0.2s;
}

/* Benefit items staggered animation */
.benefit-item:nth-child(1) { transition-delay: 0.2s; }
.benefit-item:nth-child(2) { transition-delay: 0.4s; }
.benefit-item:nth-child(3) { transition-delay: 0.6s; }
.benefit-item:nth-child(4) { transition-delay: 0.8s; }

/* Smooth fade-in for headings */
h2, h3 {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Pulse animation for center node when it appears */
@keyframes centerPulse {
  0% { 
    transform: scale(1);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.8);
  }
  100% { 
    transform: scale(1);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
  }
}

.supernms-center.animate {
  animation: centerPulse 2s ease-in-out 1;
}

/* Early Access Page Styles */
.early-access-benefits {
  padding: 4rem 0;
  background: rgba(8, 8, 8, 0.9);
}

.benefits-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #e5e5e5;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(15, 15, 15, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  min-height: 70px;
  box-sizing: border-box;
}

.benefit-item:hover {
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(20, 20, 20, 0.4);
  transform: translateX(5px);
}

.benefit-check {
  font-size: 1.5rem;
  color: #22c55e;
  font-weight: bold;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.benefits-simple {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.benefit-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-card h3 {
  color: #667eea;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.benefit-card p {
  color: #b8c5d1;
  line-height: 1.6;
  margin: 0;
}

/* Early Access Form Section */
.early-access-form-section {
  padding: 6rem 0;
  background: rgba(5, 5, 5, 0.9);
}

.early-access-form-section .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1400px;
}

.form-container {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  color: #667eea;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.form-header p {
  color: #b8c5d1;
  font-size: 1.1rem;
  margin: 0;
}

.early-access-form {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #e5e5e5;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #e5e5e5;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  background: rgba(25, 25, 25, 0.9);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  color: #b8c5d1;
  line-height: 1.5;
  font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
  display: inline-block;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #667eea;
  border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}

.checkbox-label a {
  color: #667eea;
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.form-note {
  text-align: center;
  color: #8a95a3;
  font-size: 0.9rem;
  margin-top: 1.5rem;
  line-height: 1.5;
}

/* Form Sidebar */
.form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.sidebar-card h3 {
  color: #667eea;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: #e5e5e5;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.step-content p {
  color: #b8c5d1;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 8px;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: #b8c5d1;
  line-height: 1.3;
}

/* Program Info */
.program-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  color: #b8c5d1;
  font-size: 0.9rem;
  font-weight: 500;
}

.info-value {
  color: #667eea;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: right;
}

/* Contact Options */
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #b8c5d1;
  text-decoration: none;
  padding: 0.75rem;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-option:hover {
  color: #667eea;
  border-color: rgba(102, 126, 234, 0.3);
  background: rgba(25, 25, 25, 0.8);
}

.contact-icon {
  font-size: 1.1rem;
}

/* Early Access Testimonials */
.early-access-testimonials {
  padding: 6rem 0;
  background: rgba(10, 10, 10, 0.8);
}

.early-access-testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Responsive Design for Early Access Page */
@media (max-width: 1024px) {
  .early-access-form-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .form-sidebar {
    order: -1;
  }
  
  .sidebar-card {
    padding: 1.5rem;
  }
  
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .benefits-checklist {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .benefits-simple {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .benefits-checklist {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .benefit-item {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
  
  .benefit-check {
    font-size: 1.25rem;
    width: 20px;
    height: 20px;
  }
  
  .benefits-simple {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-container {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .early-access-form-section {
    padding: 4rem 0;
  }
  
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .steps {
    gap: 1rem;
  }
  
  .step {
    gap: 0.75rem;
  }
  
  .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
  
  .benefit-card {
    padding: 1.5rem;
  }
  
  .early-access-testimonials .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .form-container {
    padding: 1.5rem;
  }
  
  .sidebar-card {
    padding: 1.25rem;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
  
  .stat {
    padding: 0.75rem;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
}
