/* ETHEGEN Production Cybersecurity Platform Styles */

/* Universal Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: auto;
  scrollbar-color: var(--primary-color) transparent;
}

/* Page Title Font */
/* Lucide Icons */
.lucide {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

/* Animation for loader */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

title {
  font-family: "Orbitron", monospace;
  font-weight: 700;
}

/* CSS Variables */
:root {
  /* Theme Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #1e1e1e;
  --bg-elevated: #252525;

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b1b1b8;
  --text-muted: #666666;
  --text-inverse: #000000;
  --metric: #c5c5c5;

  /* Brand Colors */
  --primary-color: #2a7e5f;
  --primary-hover: #0f3a2d;
  --secondary-color: #0f3a2d;
  --accent-color: #2d5a47;
  --success-color: #10b981;
  --production-color: #22c55e;
  --accent-neutral: #64748b;
  --accent-success: #059669;
  --accent-info: #2d5a47;
  --error-color: #ef4444;

  /* Dark Green Color */
  --dark-green: #1a4d3a;
  --dark-green-light: #2d5a47;

  /* Gradients - Now Solid Dark Green */
  --gradient-primary: #1e6148;
  --gradient-secondary: #1a4d3a;
  --gradient-accent: #1a4d3a;
  --gradient-hero: linear-gradient(
    135deg,
    #0a0a0a 0%,
    #1a1a1a 50%,
    #0a0a0a 100%
  );

  /* Borders */
  --border-color: #333333;
  --border-light: #2a2a2a;
  --border-focus: #1a4d3a;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6);
  --shadow-glow: 0 0 20px rgba(0, 0, 0, 0.8);

  /* Typography */
  --font-family-primary:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-family-mono: "JetBrains Mono", "Fira Code", "Monaco", monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Styles */
html {
  scroll-padding-top: 80px; /* Account for fixed navbar */
}

/* Lenis Smooth Scroll Recommended CSS */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-family-primary);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-secondary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Custom Scrollbar Styles */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 6px;
  border: 2px solid var(--bg-primary);
  transition: var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
  border-color: var(--bg-secondary);
}

::-webkit-scrollbar-thumb:active {
  background: var(--dark-green-light);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1rem;
}
h6 {
  font-size: 0.875rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home {
  text-decoration: none;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  z-index: 1000;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(10, 10, 10);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Use space-between for alignment */
  padding: 0 var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 70px; /* Set a consistent height */
}

.brand-text {
  display: flex;
  align-items: center; /* No longer absolute */
  gap: 8px;
}

.brand-logo {
  -webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-content {
  display: flex;
  flex-direction: column;
}

.nav-brand {
  align-items: center;
  gap: var(--space-md);
  text-decoration: none;
}

.logo-image {
  width: 40px;
  height: 32px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 1px 4px rgba(0, 212, 255, 0.15));
  transition: all 0.3s ease;
}

.logo-image:hover {
  filter: drop-shadow(0 4px 16px rgba(113, 113, 113, 0.4));
  transform: scale(1.05);
}

.brand-name {
  font-family: "Orbitron", monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.brand-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1;
}

.nav-menu {
  display: flex;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
}

@media (max-width: 600px) {
  .nav-menu {
    width: 100vw;
    max-width: 100vw;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-toggle {
  display: none;
}

/* Dropdown Navigation */
.dropdown {
  position: relative;
  display: inline-block;
  height: 100%;
  display: flex;
  align-items: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--bg-card);
  min-width: 240px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  z-index: 1001;
  top: 100%;
  left: -20px;
  padding: var(--space-xs) 0;
  margin-top: 0;
  backdrop-filter: blur(10px);
}

.dropdown-content a {
  color: var(--text-secondary);
  padding: var(--space-md) var(--space-lg);
  text-decoration: none;
  display: block;
  transition: var(--transition-fast);
  font-size: 0.95rem;
  border-left: 2px solid transparent;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.03);
  border-left-color: var(--primary-color);
  padding-left: calc(var(--space-lg) + 4px);
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeInUp 0.2s ease-out;
}

.dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
  opacity: 1;
}

@media (max-width: 600px) {
  .dropdown:hover .dropdown-icon {
    transform: none;
  }
}

.dropdown:hover .dropdown-trigger {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  background-image:
    radial-gradient(
      circle at 15% 50%,
      rgba(26, 77, 58, 0.25) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(26, 77, 58, 0.2) 0%,
      transparent 45%
    ),
    radial-gradient(circle at 50% 50%, transparent 0%, #000000 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-grid {
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 15s linear infinite;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Section Particles */
.enterprise-particles,
.demo-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Sections with particles need position relative */
#enterprise,
#demo-request {
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(70px + 2rem) 0 2rem;
  text-align: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.hero-container {
  padding: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

.hero-logo {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.hero-logo-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 4px 16px rgba(0, 212, 255, 0.3))
    drop-shadow(0 0 12px rgba(0, 212, 255, 0.15));
  animation: logoFloat 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.hero-logo-image:hover {
  filter: drop-shadow(0 12px 40px rgba(0, 212, 255, 0.6))
    drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
  transform: scale(1.05);
}

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

.hero-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.title-line {
  display: block;
}

.hero-subtitle {
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-secondary {
  background: rgba(19, 19, 19, 0.65);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(56, 56, 56, 0.534);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.demo-submit-btn {
  width: 100%;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.466);
}

.demo-submit-btn span {
  width: 100%;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-shadow:
    0 0 5px rgba(19, 58, 44, 0.8),
    0 0 10px rgba(26, 77, 58, 0.6),
    0 0 20px rgba(15, 58, 45, 0.4),
    0 0 30px rgba(15, 58, 45, 0.3),
    0 0 40px rgba(10, 10, 10, 0.2);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

/* Features Showcase Section */

.features-showcase {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  padding: 4rem 0;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.showcase-item.reverse {
  flex-direction: row-reverse;
}

.showcase-content {
  flex: 1;
  position: relative;
  padding: 2rem 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-shadow:
    0 0 10px rgba(26, 77, 58, 0.6),
    0 0 20px rgba(15, 58, 45, 0.4),
    0 0 30px rgba(15, 58, 45, 0.3),
    0 0 40px rgba(10, 10, 10, 0.2);
}

.showcase-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.showcase-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-container {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(40, 117, 89, 0.2) 0%,
    transparent 76%
  );
  filter: blur(30px);
  animation: pulseGlow 2s ease-in-out infinite;
}

.showcase-icon {
  height: 14rem;
  margin-top: 40px;
  filter: drop-shadow(0 0 20px rgba(42, 126, 95, 0.5)) brightness(0.8);
  z-index: 2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

@media (max-width: 1024px) {
  .features-showcase {
    gap: 1.5rem;
    padding: 1rem 0;
  }

  .showcase-item,
  .showcase-item.reverse {
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
    background: rgba(83, 83, 83, 0.2);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--primary-color); /* Added accent border */

    padding: 1.5rem;
    overflow: hidden;
    transition: none !important;
  }

  .showcase-content {
    padding: 0;
    order: 2;
  }

  .showcase-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-align: left;
    color: var(--text-primary);
  }

  .showcase-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: left;
    line-height: 1.6;
  }

  .feature-list {
    gap: 0.1rem;
  }

  .feature-list li {
    font-size: 0.85rem;
    padding-left: 1rem;
  }

  .showcase-visual {
    order: 1;
    margin-bottom: 0.5rem;
    justify-content: flex-start;
    display: flex;
  }

  .visual-container {
    width: 48px;
    height: 48px;
    justify-content: flex-start;
    display: flex;
    align-items: center;
  }

  .showcase-icon {
    animation: none;
    height: 2.5rem;
    width: auto;
    margin: 0;
    filter: drop-shadow(0 0 8px rgba(42, 126, 95, 0.3));
  }

  .visual-glow {
    display: none;
  }
}

@media (max-width: 768px) {
  .showcase-item {
    position: relative;
    border-radius: var(--radius-sm);
  }

  .showcase-visual {
    position: absolute;
    top: 1.6rem;
    right: 0.8rem;
    margin: 0;
  }

  .eps {
    top: -0.5rem !important;
  }

  .showcase-content h3 {
    padding-right: 3.5rem;
    margin-bottom: 1.25rem;
  }

  .visual-container img {
    height: 70px;
    width: 70px;
  }
}

.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.1rem;
}

.feature-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-secondary);
  font-weight: 500;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.tab-btn {
  flex: 1;
  padding: var(--space-lg);
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-weight: 500;
}

.tab-btn.active {
  color: var(--primary-color);
  background: var(--bg-card);
  border-bottom: 2px solid var(--primary-color);
}

.tab-btn:hover:not(.active) {
  color: var(--text-primary);
  background: var(--bg-card);
}

.tab-content {
  padding: var(--space-2xl);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.doc-content h3 {
  margin-bottom: var(--space-lg);
}

.step {
  margin-bottom: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-color);
}

.step h4 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.step-number {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.api-section,
.config-section {
  margin-bottom: var(--space-2xl);
}

.endpoint {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

.method {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.method.get {
  background: var(--success-color);
  color: white;
}

.method.post {
  background: var(--primary-color);
  color: white;
}

.path {
  font-family: var(--font-family-mono);
  color: var(--text-primary);
  font-weight: 500;
}

.description {
  color: var(--text-secondary);
}

/* System Requirements */
.requirement-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: var(--transition-normal);
}

.requirement-card.recommended {
  border-color: var(--primary-color);
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    rgba(26, 77, 58, 0.05) 100%
  );
}

@media (min-width: 769px) {
  .requirement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
}

/* Footer */
.footer {
  background: var(--bg-primary) !important;
  border-top: 3px solid var(--border-light);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 3fr 2fr 1.5fr 1.5fr;
}

.footer-brand {
  display: flex;
  align-items: left;
}

.footer-brand .brand-text {
  position: static;
  left: auto;
  display: flex;
  flex-direction: column;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-brand .footer-logo {
  width: 40px;
  height: 40px;
}

.brand-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-section h4 {
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-success) !important;
}

.social-links {
  display: flex;
  gap: var(--space-md);
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-success) !important;
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Animations */
@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero-buttons {
    /* flex-direction: column; */
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}

.code-block {
  background: var(--dark-color);
  color: #e2e8f0;
  padding: 1.5rem;
  border-radius: 8px;
  font-family: "Monaco", "Menlo", "Consolas", monospace;
  font-size: 0.9rem;
  overflow-x: auto;
  position: relative;
  border: 1px solid #2d3748;
}

.copy-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #4a5568;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background-color 0.3s ease;
}

.copy-btn:hover {
  background: #2d3748;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.feature-icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Footer Styles */
.footer {
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 4rem 0 0;
  border-top: 1px solid var(--border-color);
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Tablet and Mobile Responsive */
@media (max-width: 992px) {
  .footer {
    padding: 3rem 0 0;
  }
}

/* Small Tablets */
@media (max-width: 768px) {
  .footer-brand {
    grid-column: 1 / -1;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section h4 {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  .footer {
    padding: 1.5rem 0 0;
  }

  .footer .container {
    padding: 0 var(--space-md);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .footer-section h4 {
    margin-bottom: 0rem;
    padding-bottom: 0rem;
  }

  .footer-links li {
    margin-bottom: 0rem;
    padding-bottom: 0rem;
  }

  .footer-links a {
    font-size: 0.7rem;
  }
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  -webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-brand .brand-text {
  display: flex;
  flex-direction: column;
}

.footer-brand .brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.footer-brand .brand-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  opacity: 0.8;
}

.footer-section h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition:
    color 0.3s ease,
    padding-left 0.2s ease;
  display: inline-block;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.copyright {
  margin-top: 5.5rem;
  margin-left: 3rem;
  font-size: 11px;
  color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .header h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 2rem;
  }

  .nav-container {
    padding: 0 1rem;
    justify-content: space-between;
  }

  .brand-text {
    position: static;
    left: auto;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    flex-direction: column;
  }

  .copyright {
    margin-top: 0rem;
  }
}

/* Enhanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

.section {
  animation: fadeInUp 0.8s ease-out;
}

.feature {
  animation: fadeInUp 0.6s ease-out;
}

.feature:nth-child(odd) {
  animation: slideInLeft 0.8s ease-out;
}

.feature:nth-child(even) {
  animation: slideInRight 0.8s ease-out;
}

/* Text Selection Styling */
::selection {
  background-color: var(--secondary-color);
  color: white;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #ccc;
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Live Access Section */
.live-access {
  padding: 80px 20px;
  background: linear-gradient(
    135deg,
    var(--bg-primary) 30%,
    var(--bg-secondary) 100%
  );
  border-top: 1px solid var(--border-color);
  position: relative;
}

.live-access::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    135deg,
    transparent,
    var(--bg-primary),
    transparent
  );
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px !important;
  margin-top: 60px;
  padding-top: 40px;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  justify-items: center;
}

/* Tablet: Two columns for showcase items */
@media (min-width: 769px) and (max-width: 1024px) {
  .access-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.access-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: linear-gradient(
    130deg,
    rgba(13, 19, 17, 0.8) 30%,
    rgba(14, 17, 16, 0.8) 60%,
    #141414af 100%
  );
  border: 1px solid var(--border-focus);
  border-radius: var(--radius-md);
  padding: 10px 30px 30px;
  text-align: center;
  position: relative;
  overflow: visible;
  box-shadow: var(--shadow-xl);
  width: 100%;
}

@media (min-width: 769px) {
  .access-card:hover::before,
  .access-card:hover::after {
    opacity: 0.6;
  }

  .access-card a:hover {
    transform: translateY(1%) scale(1.03);
  }
}

.access-card h3 {
  color: var(--text-primary);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 5px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.access-card p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Access Card Button Layout */
.access-buttons {
  margin-top: auto; /* This pushes the buttons to the bottom */
  padding-top: var(--space-md); /* Add some spacing above the buttons */
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.access-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
  flex: 1;
  min-width: 120px;
  justify-content: center;
  text-align: center;
}

.learn-more-btn {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--primary-color);
}

@media (min-width: 769px) {
  .learn-more-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-1px);
    background: var(--bg-tertiary) !important;
  }
}

.access-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left var(--transition-slow);
}

@media (min-width: 769px) {
  .access-btn:hover::before {
    left: 100%;
  }

  .access-btn:hover {
    transform: translateY(-2px);
  }
}

.learn-more-btn::before {
  background: transparent;
}

/* Mobile Responsive for Access Buttons */
@media (max-width: 768px) {
  .access-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .access-btn {
    min-width: 100%;
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .access-buttons {
    gap: 8px;
  }

  .access-btn {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
}

.access-btn::after {
  content: "→";
  position: absolute;
  right: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-fast);
}

@media (min-width: 769px) {
  .access-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(
      135deg,
      var(--accent-color),
      var(--primary-color)
    );
  }

  .access-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Enterprise Features Section */
.enterprise-features {
  padding: 80px 20px;
  background: var(--bg-primary);
  position: relative;
}

.enterprise-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

/* Enterprise Badge */
.enterprise-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-green);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.badge-icon {
  font-size: 16px;
}

/* Enterprise Metrics */
.enterprise-metrics {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 30px;
  margin: 25px 0;
  padding: 15px 0;
  border-top: 1px solid var(--primary-hover);
  border-bottom: 1px solid var(--primary-hover);
  overflow: hidden;
}

.metric-item {
  text-align: center;
  flex-shrink: 0;
  min-width: 0;
  padding: 0 10px;
}

.metric-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--metric);
  text-shadow:
    0 0 3px rgba(19, 58, 44, 0.5),
    0 0 8px rgba(26, 77, 58, 0.3),
    0 0 15px rgba(22, 83, 65, 0.2);
  margin-bottom: 8px;
  line-height: 1.1;
  word-break: keep-all;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
  .enterprise-metrics {
    gap: 10px;
    padding: 15px 0;
    margin: 25px 0;
    justify-content: space-around;
  }

  .metric-item {
    flex: 1;
    min-width: 100px;
    padding: 0 5px;
  }

  .metric-number {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .metric-label {
    font-size: 10px;
    line-height: 1.2;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .enterprise-metrics {
    gap: 5px;
  }

  .metric-number {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .metric-label {
    font-size: 10px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .enterprise-metrics {
    gap: 5px;
  }

  .metric-number {
    font-size: 16px;
  }

  .metric-label {
    font-size: 7px;
  }
}

/* Enterprise CTA Buttons */
.enterprise-cta {
  padding: 10px 45px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Enterprise Demo Request Section */
/* CTA Section */
.cta-section {
  background: linear-gradient(var(--bg-secondary), var(--bg-primary));
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

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

.cta-section .section-title {
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.cta-section .section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.footer-index {
  border-top: none !important;
}

.demo-request {
  background: linear-gradient(var(--bg-secondary), var(--text-inverse));
  padding: var(--space-3xl) 0 6rem 0;
  border-top: 1px solid var(--border-color);
  position: relative;
}

.demo-request::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.demo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 60px;
  padding: 0 var(--space-lg);
  border-radius: var(--radius-xl);
}

.enterprise-qualification {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.enterprise-qualification h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.form-group input:focus,
.form-group select:focus {
  outline: 2px solid var(--border-focus);
  outline-offset: 2px;
  border-color: var(--primary-color);
}

@media (max-width: 600px) {
  .demo-submit-btn {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    max-width: 450px;
  }
}

/* Case Studies Section */
.case-studies {
  background: var(--bg-secondary);
  padding: var(--space-3xl) 20px;
  position: relative;
}

.case-studies::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.case-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

@media (min-width: 769px) {
  .case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
  }
}

.client-logo {
  height: 60px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--text-secondary);
  font-weight: 600;
}

.case-metric {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--metric) !important;
  text-shadow:
    0 0 3px rgba(19, 58, 44, 0.5),
    0 0 8px rgba(26, 77, 58, 0.3),
    0 0 15px rgba(22, 83, 65, 0.2);
  margin-bottom: var(--space-sm);
}

.case-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.case-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: #169466;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-normal);
}

.case-cta:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

/* Enhanced Typography */
.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Accessibility Improvements */
.btn:focus {
  outline: 2px solid var(--border-focus);
  outline-offset: 2px;
}

/* Mobile Enhancements */
.mobile-demo-form {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-top: 1px solid var(--border-color);
  transform: translateY(100%);
  transition: var(--transition-normal);
  z-index: 1000;
}

.mobile-demo-form.active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .contact-info h2 {
    font-size: 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
  }
}

/* Demo Video Styles */
.demo-video-content {
  padding: var(--space-2xl);
  color: var(--text-primary);
}

.demo-slides {
  position: relative;
  min-height: 300px;
}

.demo-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: all var(--transition-normal);
}

.demo-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.demo-slide h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.demo-slide p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.demo-visual {
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.threat-timeline {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.threat-event {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  position: relative;
}

.threat-event.detected {
  background: var(--error-color);
  color: white;
}

.threat-event.analyzed {
  background: var(--accent-info);
  color: white;
}

.threat-event.responded {
  background: var(--success-color);
  color: white;
}

.threat-event:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -15px;
  color: var(--text-secondary);
}

.metric {
  text-align: center;
  padding: var(--space-lg);
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-shadow:
    0 0 3px rgba(19, 58, 44, 0.5),
    0 0 8px rgba(26, 77, 58, 0.3),
    0 0 15px rgba(22, 83, 65, 0.2);
  display: block;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.3;
  word-break: break-word;
  white-space: normal;
}

.demo-controls {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}

.demo-btn {
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-md);
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
}

@media (min-width: 769px) {
  .demo-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
  }
}

.demo-btn.secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

@media (min-width: 769px) {
  .demo-btn.secondary:hover {
    background: var(--bg-tertiary);
  }
}

/* Demo Success Message */
.demo-success-message {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.success-content i {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: var(--space-lg);
}

.success-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.success-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

/* Animations */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-in {
  animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Button Styles */
.btn.success-stories {
  border-color: var(--accent-success);
}

.btn.enterprise-cta {
  position: relative;
  overflow: hidden;
  background: var(--gradient-primary);
  border: none;
  color: white;
  font-weight: 600;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.btn.enterprise-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

@media (min-width: 769px) {
  .btn.enterprise-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
  }

  .btn.enterprise-cta:hover::before {
    left: 100%;
  }
}

/* Demo Scheduler Styles */
.demo-scheduler {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: visible;
  border: 1px solid var(--border-color);
  margin-top: 80px;
}

.scheduler-header {
  background: linear-gradient(
    135deg,
    var(--bg-elevated) 0%,
    var(--bg-tertiary) 100%
  );
  padding: var(--space-xl);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.scheduler-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Scheduler Steps */
.scheduler-step {
  display: none;
  padding: var(--space-2xl);
  min-height: 400px;
  overflow: visible;
  border-radius: var(--radius-xl);
}

.scheduler-step.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.scheduler-header h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.step-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.step-header p,
.scheduler-header p {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* Profile Form */
.profile-form {
  max-width: 600px;
  margin: 0 auto;
  overflow: visible;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-lg);
  justify-content: center;
  overflow: visible;
}

.form-group {
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.form-group label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select {
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: var(--transition-normal);
  width: 100% !important;
}

@media (max-width: 768px) {
  /* Reduce demo scheduler padding on mobile */
  .demo-scheduler {
    margin-top: 40px;
    border-radius: var(--radius-lg);
  }

  .scheduler-header {
    padding: var(--space-lg);
  }

  .scheduler-header h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
  }

  .scheduler-header p {
    font-size: 0.75rem;
  }

  .scheduler-step {
    padding: var(--space-lg);
    min-height: auto;
  }

  .step-header {
    margin-bottom: var(--space-lg);
  }

  .step-header h3 {
    font-size: 1.1rem;
  }

  .step-header p {
    font-size: 0.75rem;
  }

  .profile-form {
    max-width: 100%;
  }

  .profile-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
  }

  .form-group label {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.625rem;
    font-size: 0.8rem;
    height: 44px;
  }

  .form-group textarea {
    height: auto;
    min-height: 80px;
  }

  .form-hint {
    font-size: 0.7rem;
    margin-top: 0.25rem;
  }

  .demo-submit-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 600px) {
  .profile-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.form-group input.error,
.form-group select.error {
  border-color: var(--error-color);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: var(--transition-normal);
  width: 100% !important;
  resize: vertical;
  min-height: 80px;
  font-family: var(--font-family-primary);
}

.form-group textarea:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(26, 77, 58, 0.1);
}

.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-hint {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: var(--space-xs);
  line-height: 1.4;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Multi-Select Checkbox Component */
.multi-select-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
  z-index: 1;
}

.multi-select-wrapper.active {
  z-index: 1001;
}

.multi-select-trigger {
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--text-primary);
  font-size: 0.875rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-family: var(--font-family-primary);
  min-height: 48px;
  line-height: normal;
}

@media (min-width: 769px) {
  .multi-select-trigger:hover {
    border-color: var(--primary-color);
    background: var(--bg-card);
  }
}

.multi-select-trigger:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(26, 77, 58, 0.1);
}

.multi-select-trigger.active {
  border-color: var(--primary-color);
  box-shadow: none;
}

.trigger-text {
  flex: 1;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.trigger-text.empty {
  color: var(--text-muted);
}

.trigger-count {
  background: var(--primary-color);
  color: var(--text-primary);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  margin-right: auto;
}

.trigger-icon {
  color: var(--text-secondary);
  transition: transform var(--transition-normal);
  font-size: 0.875rem;
}

.multi-select-trigger.active .trigger-icon {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.multi-select-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all var(--transition-normal);
  pointer-events: none;
}

.multi-select-dropdown.flip-up {
  top: auto;
  bottom: calc(100% + 4px);
  margin-top: 0;
  margin-bottom: 4px;
}

.multi-select-dropdown.active {
  max-height: 260px;
  opacity: 1;
  overflow-y: auto;
  pointer-events: auto;
}

@media (max-width: 600px) {
  .multi-select-dropdown.active {
    max-height: 400px;
  }
}

.multi-select-options {
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.multi-select-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  user-select: none;
}

@media (min-width: 769px) {
  .multi-select-option:hover {
    background: rgba(42, 126, 95, 0.1);
  }
}

.multi-select-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  position: relative;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 769px) {
  .multi-select-option:hover .checkbox-custom {
    border-color: var(--primary-color);
    background: rgba(42, 126, 95, 0.1);
  }
}

.multi-select-option input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.multi-select-option input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  border: solid var(--text-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  top: 2px;
}

.multi-select-option input[type="checkbox"]:focus + .checkbox-custom {
  box-shadow: 0 0 0 3px rgba(26, 77, 58, 0.2);
}

.option-text {
  color: var(--text-primary);
  font-size: 0.9375rem;
  line-height: 1.4;
  flex: 1;
}

.multi-select-option input[type="checkbox"]:checked ~ .option-text {
  color: var(--text-primary);
  font-weight: 500;
}

/* Multi-Select Actions (Done button) */
.multi-select-actions {
  display: none;
  padding: var(--space-md);
  border-top: 1px solid var(--border-color);
  background: var(--bg-tertiary);
}

.multi-select-done-btn {
  width: 100%;
  padding: var(--space-md);
  background: var(--primary-color);
  color: var(--text-primary);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
}

@media (min-width: 769px) {
  .multi-select-done-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
  }
}

.multi-select-done-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .multi-select-actions {
    display: block;
  }
}

/* Mobile Overlay Backdrop */
.multi-select-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  backdrop-filter: blur(2px);
}

.multi-select-backdrop.active {
  display: block;
}

/* Mobile Overlay */

@media (max-width: 768px) {
  .multi-select-dropdown {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 400px;
    max-height: 70vh;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    margin-top: 0;
    z-index: 1000;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity var(--transition-normal),
      transform var(--transition-normal);
    height: auto;
  }

  .multi-select-trigger {
    padding: 0.625rem;
    font-size: 0.8rem;
    height: 44px;
    min-height: 44px;
  }

  .multi-select-dropdown.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
    overflow-y: auto;
  }

  .multi-select-options {
    padding-bottom: var(--space-lg);
    flex: 1;
    overflow-y: auto;
  }

  .multi-select-actions {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    padding: var(--space-sm);
    z-index: 1;
  }
}

/* Error State */
.multi-select-wrapper.error .multi-select-trigger {
  border-color: var(--error-color);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Scrollbar Styling for Dropdown */
.multi-select-dropdown::-webkit-scrollbar {
  width: 8px;
}

.multi-select-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.multi-select-dropdown::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-sm);
}

.multi-select-dropdown::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Responsive Live Access Section */
@media (min-width: 1148px) {
  .access-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px;
    padding-top: 60px;
  }
  .access-card {
    margin: 0 var(--space-lg);
    padding: 30px 30px 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .access-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 50px;
  }

  .access-card {
    margin: 0 var(--space-md);
    padding: 30px 30px 30px;
    margin-bottom: 25px;
  }

  .access-card h3 {
    font-size: 1.25rem;
    margin-top: 5px;
  }

  .access-card p {
    font-size: 0.75rem;
    margin-bottom: 25px;
  }

  .access-btn {
    padding: 12px 24px;
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  .more {
    display: none;
  }
}

@media (min-width: 600px) {
  .access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 60px;
    padding-top: 40px;
  }
}

@media (max-width: 480px) {
  .live-access {
    padding: 60px 20px;
  }

  .access-grid {
    gap: 20px;
    padding: 0 15px;
  }

  .access-card {
    padding: 30px 30px 25px;
  }

  .access-card h3 {
    font-size: 1.1rem;
    margin-top: 5px;
    margin-bottom: 15px;
  }

  .access-card p {
    font-size: 0.7rem;
    margin-bottom: 20px;
  }

  .access-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .access-btn::after {
    right: 10px;
  }
}

/* Responsive Navigation */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    padding: 80px var(--space-lg) var(--space-2xl);
    text-align: left;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border-light);
    z-index: 999;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1rem;
    width: 100%;
    padding: var(--space-md) var(--space-sm);
  }

  /* Mobile Dropdown Styles */
  .dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
    background: transparent;
    padding-left: var(--space-lg);
    border: none;
    display: none;
    opacity: 1;
    transform: none;
    animation: none;
    margin-top: 0;
  }

  .dropdown-content a {
    padding: var(--space-sm) var(--space-lg);
    font-size: 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    width: 100%;
  }

  .nav-container {
    padding: 0 var(--space-lg);
    justify-content: flex-start;
  }

  .brand-text {
    max-width: calc(100%);
  }

  .dropdown.active .dropdown-content {
    display: block;
    animation: fadeInExpand 0.3s ease-out;
  }

  .dropdown.active .dropdown-icon {
    transform: rotate(180deg);
  }

  /* Disable hover effect on mobile */
  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.active:hover .dropdown-content {
    display: block;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 2100;
    position: absolute;
    right: var(--space-lg);
    margin-left: 1rem;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text-primary);
    border-radius: 6px;
    transition: all var(--transition-normal);
    /* Add pointer-events: none to prevent hover issues */
    pointer-events: none;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Hero Section - Mobile Responsive Override */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    max-height: none;
  }

  .hero-content {
    padding: 120px 0 60px;
  }
}

/* Footer Brand Alignment Fix */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.footer-brand .brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .brand-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  opacity: 0.8;
  line-height: 1;
}

/* Mobile-specific fixes */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-brand {
    justify-content: flex-start;
    text-align: left;
    flex-direction: row;
    align-items: center;
  }

  .footer-section {
    text-align: left;
  }

  .footer-section h4 {
    display: block;
    text-align: left;
  }

  .footer-section h4::after {
    left: 0;
    transform: none;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-section.socials {
    padding-left: 30px;
  }
  .footer-section.support-links {
    padding-left: 30px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .footer-brand {
    gap: 0.6rem;
  }

  .footer-logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .footer-brand .brand-name {
    font-size: 1.2rem;
  }

  .footer-brand .brand-subtitle {
    font-size: 0.8rem;
  }

  .footer-section ul li {
    font-size: 0.2rem;
    margin-bottom: 0.2rem;
    padding-bottom: 0.2rem;
  }
}

/* Floating Help Button */
.help-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-primary);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  transition: all var(--transition-normal);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}

.help-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  background: var(--primary-hover);
}

.help-button i {
  font-size: 1rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .help-button {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 1rem;
  }

  .help-button span {
    display: none;
  }

  .help-button i {
    font-size: 1.1rem;
  }
}

/* FAQ Page Specific Styles */

.faq-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(42, 126, 95, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(42, 126, 95, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(42, 126, 95, 0.1) 0%,
      transparent 50%
    );
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 500px) {
  .faq-name {
    font-size: 1rem;
  }
}

.faq-name {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.faq-subtitle {
  font-size: clamp(0.8rem, 2vw, 1rem);
  padding: 1rem;
}

/* FAQ Hero Section */
.faq-hero {
  min-height: 10vh;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.faq-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 40px;
}

.faq-hero .hero-text {
  max-width: 800px;
  margin: 0 auto;
}

.faq-hero .hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Twinkling Stars Styles */
.stars-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.star {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: twinkle 3s infinite ease-in-out;
}

/* Different star sizes and positions */
.star-1 {
  width: 2px;
  height: 2px;
  top: 15%;
  left: 30%;
  animation-delay: 0s;
}
.star-2 {
  width: 3px;
  height: 3px;
  top: 25%;
  left: 85%;
  animation-delay: 0.5s;
}
.star-3 {
  width: 1px;
  height: 1px;
  top: 40%;
  left: 30%;
  animation-delay: 1s;
}
.star-4 {
  width: 2px;
  height: 2px;
  top: 60%;
  left: 70%;
  animation-delay: 1.5s;
}
.star-5 {
  width: 3px;
  height: 3px;
  top: 75%;
  left: 20%;
  animation-delay: 2s;
}
.star-6 {
  width: 1px;
  height: 1px;
  top: 20%;
  left: 50%;
  animation-delay: 2.5s;
}
.star-7 {
  width: 2px;
  height: 2px;
  top: 35%;
  left: 80%;
  animation-delay: 0.3s;
}
.star-8 {
  width: 1px;
  height: 1px;
  top: 55%;
  left: 40%;
  animation-delay: 0.8s;
}
.star-9 {
  width: 3px;
  height: 3px;
  top: 50%;
  left: 60%;
  animation-delay: 1.2s;
}
.star-10 {
  width: 2px;
  height: 2px;
  top: 10%;
  left: 35%;
  animation-delay: 1.8s;
}
.star-11 {
  width: 1px;
  height: 1px;
  top: 45%;
  left: 30%;
  animation-delay: 2.2s;
}
.star-12 {
  width: 3px;
  height: 3px;
  top: 65%;
  left: 90%;
  animation-delay: 0.7s;
}
.star-13 {
  width: 2px;
  height: 2px;
  top: 30%;
  left: 65%;
  animation-delay: 1.4s;
}
.star-14 {
  width: 1px;
  height: 1px;
  top: 50%;
  left: 15%;
  animation-delay: 2.1s;
}
.star-15 {
  width: 2px;
  height: 2px;
  top: 80%;
  left: 45%;
  animation-delay: 0.9s;
}

/* Twinkling animation */
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
  }
}

/* FAQ Section */
.faq-section {
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-3xl);
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}

.faq-category {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.faq-category:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-focus);
}

.category-title {
  background: linear-gradient(
    135deg,
    var(--bg-elevated) 0%,
    var(--bg-tertiary) 100%
  );
  padding: var(--space-lg) var(--space-xl);
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.category-title i {
  color: var(--primary-color);
  font-size: 1rem;
  width: 24px;
  text-align: center;
}

/* FAQ Items */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

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

.faq-item:hover {
  background: rgba(42, 126, 95, 0.02);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-lg) var(--space-xl);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: var(--transition-normal);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
}

.faq-question:hover {
  background: rgba(42, 126, 95, 0.05);
  color: var(--primary-color);
}

.faq-question span {
  flex: 1;
  line-height: 1.4;
}

.faq-question i {
  color: var(--text-muted);
  transition: var(--transition-normal);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.faq-item.active .faq-question {
  color: var(--primary-color);
  background: rgba(42, 126, 95, 0.08);
}

.faq-item.active .faq-question i {
  color: var(--primary-color);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--bg-secondary);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
  font-size: 1.1rem;
  padding: 40px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .faq-answer p {
    padding: 20px;
    font-size: 0.8rem;
  }
}

.faq-answer strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* FAQ CTA Section */
.faq-cta {
  text-align: center;
}

.cta-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.cta-section p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.2;
}

.cta-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 180px;
  justify-content: center;
}

/* Enhanced FAQ Item Animations */
@keyframes fadeInExpand {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item.active .faq-answer-content {
  animation: fadeInExpand 0.3s ease-out;
}

/* Search Functionality (Optional Enhancement) */
.faq-search {
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition-normal);
}

.faq-search input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(42, 126, 95, 0.1);
}

.faq-search i {
  position: absolute;
  right: var(--space-xl);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-hero .hero-content {
    padding: 100px 0 0 0;
  }

  .category-title {
    padding: var(--space-md) var(--space-lg);
    font-size: 0.8rem !important;
  }

  .faq-question {
    padding: var(--space-md) var(--space-lg);
    font-size: 0.8rem;
  }

  .faq-answer-content {
    padding: 0 var(--space-lg) var(--space-md);
  }

  .cta-section h3 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 0;
  }

  .faq-categories {
    gap: var(--space-xl);
  }

  .cta-section h3 {
    font-size: 1.3rem;
  }
}

/* Enhanced FAQ Item States */
.faq-item.highlight {
  background: rgba(42, 126, 95, 0.1);
  border-left: 4px solid var(--primary-color);
  animation: pulseHighlight 2s ease-in-out;
}

@keyframes pulseHighlight {
  0%,
  100% {
    background: rgba(42, 126, 95, 0.1);
  }
  50% {
    background: rgba(42, 126, 95, 0.2);
  }
}

/* Pricing Section */
.pricing-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow:
    var(--shadow-xl),
    0 0 20px rgba(42, 126, 95, 0.2);
}

.pricing-card.highlighted {
  border-color: var(--primary-color);
  background: rgba(42, 126, 95, 0.05);
  box-shadow: 0 0 30px rgba(42, 126, 95, 0.1);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-header {
  margin-bottom: var(--space-xl);
}

.tier-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.pricing-header h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-2xl);
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.pricing-features li i {
  color: var(--success-color);
  font-size: 0.875rem;
}

.pricing-card .access-btn {
  width: 100%;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  transition: var(--transition-normal);
}

.pricing-card.highlighted .access-btn,
.pricing-card .access-btn:hover {
  background: var(--primary-color);
  color: white;
}

.deployment {
  background: linear-gradient(var(--bg-secondary), var(--bg-primary));
  padding: var(--space-3xl) 0 6rem 0;
  border-top: 1px solid var(--border-color);
  position: relative;
}

/* Mobile Font Size Adjustments */
@media (max-width: 768px) {
  /* Global Header Reductions */
  h1 {
    font-size: 1.75rem !important;
  }
  h2 {
    font-size: 1.5rem !important;
  }
  h3 {
    font-size: 1.25rem !important;
  }
  h4 {
    font-size: 1.1rem !important;
  }

  /* Specific Component Reductions */
  .hero-title {
    font-size: 1.75rem !important;
    line-height: 1.2;
  }

  .section-title {
    font-size: 1.5rem !important;
  }

  .brand-name {
    font-size: 1.25rem !important;
  }

  .stat-number {
    font-size: 1.5rem !important;
  }

  .showcase-content h3 {
    font-size: 1.5rem !important;
  }

  .footer-brand .brand-name {
    font-size: 1.25rem !important;
  }

  .pricing-header h3 {
    font-size: 1.5rem !important;
  }

  .price {
    font-size: 2rem !important;
  }

  .cta-section h3 {
    font-size: 1.2rem !important;
  }

  /* Adjust padding/margins for better mobile spacing with smaller text */
  .hero-content {
    padding-top: calc(70px + 1rem);
    padding-bottom: 1rem;
  }

  .section-header {
    margin-bottom: var(--space-xl);
  }
}

@media (max-width: 480px) {
  /* Further reductions for very small screens */
  h1,
  .hero-title {
    font-size: 1.5rem !important;
  }

  h2,
  .section-title {
    font-size: 1.35rem !important;
  }

  .stat-number {
    font-size: 1.25rem !important;
  }
}

/* Global Mobile Overrides for Hover and Icons */
@media (max-width: 1024px) {
  /* Disable all hover transformations and transitions on mobile */
  /* Replace global resets with targeted overrides to avoid breaking dynamic components */
  .showcase-item:hover,
  .case-card:hover,
  .requirement-card:hover,
  .feature:hover {
    transform: none !important;
  }

  .showcase-item,
  .case-card,
  .requirement-card,
  .feature {
    transition: none !important;
  }

  /* Keep animations but disable the hover-triggered transform jump */

  /* Ensure icons on cards don't have different background colors */
  .visual-container,
  .visual-glow,
  .showcase-visual,
  .client-logo,
  .tier-icon,
  .feature-icon {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* Disable sticky hover states for links and buttons */
  .nav-link:hover,
  .btn:hover,
  .access-btn:hover,
  .social-link:hover,
  .footer-links a:hover,
  .case-cta:hover,
  .tab-btn:hover {
    color: inherit !important;
    background: inherit !important;
    border-color: inherit !important;
    transform: none !important;
  }

  /* Specific button overrides to keep their base style */
  .btn-primary:hover {
    background: var(--gradient-primary) !important;
    color: white !important;
  }

  .btn-secondary:hover {
    background: rgba(19, 19, 19, 0.65) !important;
    color: var(--text-primary) !important;
  }

  .access-btn:hover {
    background: var(--primary-color) !important;
    color: white !important;
  }

  .learn-more-btn:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary) !important;
    border-color: var(--primary-color) !important;
  }
}

.last-updated {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  font-family: var(--font-family-mono);
}
