/* OLISEC Production Cybersecurity Platform Styles */

/* Universal Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Page Title Font */
title {
  font-family: "Orbitron", monospace;
  font-weight: 700;
}

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

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

  /* 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-behavior: smooth;
}

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%;
}

.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: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1.125rem;
}

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;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition-normal);
}

.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 {
  width: 40px;
  height: 32px;
  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;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.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-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  overflow: hidden;
}

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

.hero-grid {
  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 20s linear infinite;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.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: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.title-line {
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  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-lg);
  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: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-elevated);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

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

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

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-focus);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.feature-card p {
  margin-bottom: var(--space-lg);
}

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

.feature-list li {
  padding: var(--space-xs) 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: var(--space-lg);
}

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

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

.docs-tabs {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.tab-nav {
  display: flex;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-light);
}

.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 */
.system-requirements {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}

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

.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%
  );
}

.requirement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.req-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.req-header i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

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

.req-list li {
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.req-list li:last-child {
  border-bottom: none;
}

.system-check {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
}

.system-check h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  color: var(--success-color);
}

.system-info-display {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-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;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  display: flex;
  align-items: left;
  gap: 4px;
  margin-bottom: var(--space-lg);
}

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

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

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

.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);
}

.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);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* 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) {
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .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;
  }

  .tab-nav {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

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

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

  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:hover::before {
  left: 100%;
}

.feature:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.4);
}

.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;
}

.feature:hover .feature-icon::after {
  opacity: 1;
}

.feature:hover .feature-icon {
  transform: rotate(360deg) scale(1.1);
}

.feature h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.feature p {
  color: #666;
  font-size: 1rem;
}

/* Requirements Box */
.requirements {
  background: linear-gradient(
    135deg,
    rgba(26, 77, 58, 0.1),
    rgba(26, 77, 58, 0.05)
  );
  border: 1px solid var(--dark-green);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 2rem 0;
}

.requirements h3 {
  color: var(--dark-green);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.requirements ul {
  color: var(--dark-green);
  padding-left: 1.5rem;
}

.requirements li {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: linear-gradient(135deg, var(--bg-card), rgba(26, 77, 58, 0.05));
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  border-left: 4px solid var(--primary-color);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

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

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

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

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

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

  .footer-content {
    gap: 2rem;
  }
}

/* Small Tablets */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .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: 2.5rem 0 0;
    margin-top: 4rem;
  }

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

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

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

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

  .footer-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-meta span:not(:last-child) {
    padding-right: 0;
  }

  .footer-meta span:not(:last-child)::after {
    display: none;
  }
}

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

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

.footer-logo {
  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);
  margin-bottom: 0.25rem;
}

.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-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.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);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-meta {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-meta span:not(:last-child) {
  position: relative;
  padding-right: 1rem;
}

.footer-meta span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: 0;
  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;
  }

  .nav-links {
    gap: 1rem;
  }

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

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

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

  .footer-section h4 {
    margin-top: 1.5rem;
  }

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

  .footer-meta {
    justify-content: flex-start;
    gap: 0.75rem;
  }
}

/* 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;
}

.feature-icon {
  animation: float 3s ease-in-out infinite;
}

/* 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 0;
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    rgba(26, 77, 58, 0.05) 100%
  );
  border-top: 1px solid var(--border-color);
  position: relative;
}

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

/* Enterprise Features Section */
.enterprise-features {
  padding: 80px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
}

.access-card {
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    rgba(30, 30, 30, 0.8) 100%
  );
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 60px 30px 35px;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: visible;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

/* Enhanced border animation */
.access-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: var(--radius-xl);
  padding: 2px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

/* Glowing background effect on hover */
.access-card::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0;
  filter: blur(15px);
  transition: opacity var(--transition-normal);
}

.access-card:hover::before,
.access-card:hover::after {
  opacity: 0.6;
}

.access-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 25px 50px rgba(26, 77, 58, 0.2);
  border-color: var(--primary-color);
}

/* Icon positioned on top edge - partly outside, partly inside */
.access-icon {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(26, 77, 58, 0.3);
  border: 4px solid var(--bg-secondary);
  transition: all var(--transition-normal);
  z-index: 10;
}

.access-card:hover .access-icon {
  transform: translateX(-50%) scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(26, 77, 58, 0.5);
  filter: brightness(1.1);
}

/* Pulsing animation for icons */
.access-icon::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

.access-card:hover .access-icon::after {
  animation-duration: 1s;
}

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

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

.access-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  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);
}

.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);
}

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

.access-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), 0 10px 30px rgba(26, 77, 58, 0.4);
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--primary-color)
  );
}

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

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

/* 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: 40px 0;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.enterprise-metrics::-webkit-scrollbar {
  height: 8px;
}

.enterprise-metrics::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}

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

.metric-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-info);
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

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

.enterprise-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

/* Enterprise Demo Request Section */
.demo-request {
  background: var(--bg-secondary);
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--border-color);
}

.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 {
  display: flex;
  flex-direction: column;
}

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

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

/* Compliance Badges Section */
.compliance-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-md);
  padding: var(--space-xl) 0;
  margin: var(--space-2xl) 0;
}

.badge-item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-normal);
  border: 1px solid var(--border-light);
}

/* Compliance Badge Icons */
.badge-item i {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.badge-item:hover i {
  color: var(--accent-color);
}

.badge-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.badge-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.badge-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.badge-subtitle {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Case Studies Section */
.case-studies {
  background: var(--bg-tertiary);
  padding: var(--space-3xl) 0;
}

.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);
}

.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;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  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);
}

/* Interactive Tour Section */
.product-tour {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}

.tour-video {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 850px;
  margin: var(--space-2xl) auto 0;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(
    135deg,
    var(--bg-tertiary) 0%,
    rgba(26, 77, 58, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.play-icon {
  color: white;
  font-size: 1.5rem;
  margin-left: 4px;
}

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

.section-subtitle {
  font-size: 1.125rem;
  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;
  }

  .compliance-badges {
    grid-template-columns: repeat(2, 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);
}

.response-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.action {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.action.completed {
  background: var(--success-color);
  color: white;
}

.action.completed::before {
  content: "✓";
  font-weight: bold;
}

.action.in-progress {
  background: var(--accent-info);
  color: white;
}

.action.in-progress::before {
  content: "⟳";
  animation: spin 1s linear infinite;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.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.875rem;
  color: var(--text-secondary);
}

.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);
}

.demo-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

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

.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);
  }
}

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

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

.compliance-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 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-xl);
  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:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.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;
}

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

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

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

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

.ai-status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--bg-card);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--success-color);
  color: var(--success-color);
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: var(--space-md);
}

.ai-indicator {
  font-size: 0.75rem;
  animation: pulse 2s infinite;
}

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

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

.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);
}

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

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

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

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

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

.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: 1rem;
  transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.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);
}

/* AI Analysis */
.ai-analysis {
  max-width: 500px;
  margin: 0 auto;
}

.analysis-progress {
  margin-bottom: var(--space-2xl);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-xl);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  width: 0%;
  transition: width 0.8s ease-out;
  border-radius: var(--radius-lg);
}

.analysis-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.analysis-step {
  display: flex;
  align-items: center;
  padding: var(--space-md);
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  transition: var(--transition-normal);
  opacity: 0.5;
}

.analysis-step.active {
  color: var(--text-primary);
  background: var(--bg-elevated);
  opacity: 1;
  transform: translateX(8px);
}

/* AI Insights */
.ai-insights {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.ai-insights h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  text-align: center;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.insight-card {
  background: var(--bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.insight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.insight-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.insight-card h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.insight-card p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Timezone Detection */
.timezone-detector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  padding: var(--space-md);
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.timezone-detector i {
  color: var(--accent-color);
}

/* Time Slots */
.time-slots h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  text-align: center;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.time-slot {
  position: relative;
  background: var(--bg-elevated);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
  overflow: hidden;
}

.time-slot:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.time-slot.recommended {
  border-color: var(--success-color);
  background: linear-gradient(
    135deg,
    var(--bg-elevated) 0%,
    rgba(16, 185, 129, 0.05) 100%
  );
}

.time-slot.selected {
  border-color: var(--primary-color);
  background: linear-gradient(
    135deg,
    var(--bg-elevated) 0%,
    rgba(59, 130, 246, 0.1) 100%
  );
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.ai-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--success-color);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 0 var(--radius-lg) 0 var(--radius-md);
}

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

.slot-time {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.slot-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slot-timezone {
  font-size: 0.7rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-top: var(--space-xs);
}

.alternative-times {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.confirm-booking {
  display: none;
  margin: var(--space-xl) auto 0;
  animation: slideInUp 0.3s ease-out;
}

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

/* Confirmation Step */
.confirmation-details {
  max-width: 600px;
  margin: 0 auto;
}

.demo-summary {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
  border: 1px solid var(--border-color);
}

.demo-summary h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  text-align: center;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-color);
}

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

.detail-item i {
  color: var(--primary-color);
  width: 1.25rem;
  text-align: center;
}

.detail-item span {
  color: var(--text-primary);
  font-weight: 500;
}

.next-steps {
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.next-steps h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .ai-demo-scheduler {
    margin: 0 var(--space-md);
    border-radius: var(--radius-lg);
  }

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

  .scheduler-header h2 {
    font-size: 1.75rem;
  }

  .scheduler-step {
    padding: var(--space-xl);
  }

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

  .slots-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .confirmation-actions {
    flex-direction: column;
    align-items: center;
  }

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

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

@media (max-width: 480px) {
  .scheduler-header h2 {
    font-size: 1.5rem;
  }

  .ai-status {
    font-size: 0.75rem;
    padding: var(--space-xs) var(--space-md);
  }

  .time-slot {
    padding: var(--space-md);
  }

  .slot-time {
    font-size: 1.125rem;
  }
}

/* Responsive Live Access Section */
@media (max-width: 768px) {
  .access-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 50px;
  }

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

  .access-icon {
    width: 70px;
    height: 70px;
    top: -35px;
    font-size: 24px;
  }

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

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

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

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

  .access-grid {
    gap: 40px;
    padding-top: 40px;
  }

  .access-card {
    padding: 60px 20px 25px;
    margin-bottom: 20px;
  }

  .access-icon {
    width: 60px;
    height: 60px;
    top: -30px;
    font-size: 20px;
  }

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

  .access-card p {
    font-size: 0.85rem;
    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 {
    display: none; /* Hide by default */
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 6rem var(--space-xl) var(--space-2xl);
    text-align: left;
    transition: right 0.4s ease-in-out;
    border-left: 1px solid var(--border-light);
    z-index: 999;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--space-lg);
  }

  .nav-menu.active {
    display: flex; /* Show when active */
    right: 0;
  }

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

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    right: var(--space-lg);
  }

  .nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all var(--transition-normal);
  }

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

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

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

@media (min-width: 1025px) {
  .nav-toggle {
    display: none;
  }
}

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

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

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

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

/* Mobile-specific fixes */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    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;
  }
}

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

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

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

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