/* Base Styles */
:root {
  --dark-bg: #0d141f;
  --primary-accent: #4cc9f0;
  --secondary-accent: #9d4edd;
  --metallic-silver: #cccccc;
  --text-light: #e0e0e0;
  --card-border: rgba(76, 201, 240, 0.2);
  --card-bg: rgba(13, 20, 31, 0.7);
  --gradient-start: #4cc9f0;
  --gradient-end: #9d4edd;
  --glass-bg: rgba(13, 20, 31, 0.7);
  --grid-color: rgba(76, 201, 240, 0.05);
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-accent);
  color: var(--dark-bg);
  padding: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.3s;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

/* No JavaScript Warning */
.no-js-warning {
  background: rgba(231, 76, 60, 0.2);
  border: 1px solid rgba(231, 76, 60, 0.5);
  border-radius: 10px;
  padding: 2rem;
  margin: 1rem;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
}

.no-js-warning h2 {
  color: #e74c3c;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 1rem;
}

.no-js-warning p {
  color: rgba(224, 224, 224, 0.9);
  margin-bottom: 1rem;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
  /* Add futuristic grid background */
  background-image: 
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 30px 30px;
  position: relative;
  min-height: 100vh;
}

/* Add animated grid effect */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(76, 201, 240, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 201, 240, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: gridMove 20s linear infinite;
  z-index: -1;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 30px);
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(76, 201, 240, 0.3);
}

/* Flying Particles Animation */
.particle {
  position: absolute;
  background: var(--primary-accent);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  box-shadow: 0 0 10px var(--primary-accent);
  will-change: transform, opacity; /* Optimize for animation performance */
}

.particle--1 {
  width: 4px;
  height: 4px;
  animation: flyParticle 8s linear infinite;
}

.particle--2 {
  width: 6px;
  height: 6px;
  animation: flyParticle 12s linear infinite;
}

.particle--3 {
  width: 3px;
  height: 3px;
  animation: flyParticle 10s linear infinite;
}

.particle--4 {
  width: 5px;
  height: 5px;
  animation: flyParticle 15s linear infinite;
}

@keyframes flyParticle {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translate(100vw, 100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Navigation */
.navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  padding: 1rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

.logo-img {
  height: 40px;
  width: auto;
  margin-right: 10px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
  color: var(--primary-accent);
  text-shadow: 0 0 10px rgba(76, 201, 240, 0.7);
}

.btn-gradient {
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  color: white !important;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(76, 201, 240, 0.4);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(76, 201, 240, 0.6);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
  /* Add glassmorphism effect */
  background: rgba(13, 20, 31, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

#globe-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  /* Consistent styling with unified color and glow effect */
  color: #e0e0e0;
  text-shadow: 
    0 0 10px rgba(76, 201, 240, 0.5),
    0 0 20px rgba(76, 201, 240, 0.3),
    0 0 30px rgba(76, 201, 240, 0.2);
  filter: drop-shadow(0 0 15px rgba(76, 201, 240, 0.4));
  letter-spacing: 2px;
  animation: subtleGlow 3s ease-in-out infinite alternate;
}

/* Remove gradient from hero title span to maintain visual consistency */
.hero-title .gradient-text {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: inherit;
  background-clip: unset;
  text-fill-color: inherit;
  font-weight: 800;

  /* Consistent glow effect */
  text-shadow: 
    0 0 10px rgba(76, 201, 240, 0.5),
    0 0 20px rgba(76, 201, 240, 0.3),
    0 0 30px rgba(76, 201, 240, 0.2);
  filter: drop-shadow(0 0 15px rgba(76, 201, 240, 0.4));
}

@keyframes subtleGlow {
  0% {
    text-shadow: 
      0 0 10px rgba(76, 201, 240, 0.5),
      0 0 20px rgba(76, 201, 240, 0.3),
      0 0 30px rgba(76, 201, 240, 0.2);
  }
  100% {
    text-shadow: 
      0 0 15px rgba(76, 201, 240, 0.6),
      0 0 25px rgba(76, 201, 240, 0.4),
      0 0 35px rgba(76, 201, 240, 0.3);
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: rgba(224, 224, 224, 0.9);
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;

  /* Enhanced text shadow for subtitle */
  text-shadow: 
    0 0 5px rgba(0, 0, 0, 0.8),
    0 0 10px rgba(0, 0, 0, 0.6),
    0 0 15px rgba(0, 0, 0, 0.4);

  /* Added dark glow effect */
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.6));
}

.hero-stats {
  margin: 2rem 0;
  padding: 1.5rem 0;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 0.5rem;

  /* Consistent styling with unified color and glow effect */
  color: #e0e0e0;
  text-shadow: 
    0 0 8px rgba(76, 201, 240, 0.5),
    0 0 15px rgba(76, 201, 240, 0.3),
    0 0 20px rgba(76, 201, 240, 0.2);
  filter: drop-shadow(0 0 10px rgba(76, 201, 240, 0.4));
  letter-spacing: 1px;
  animation: subtleGlow 3s ease-in-out infinite alternate;
}

/* Remove gradient styling to maintain consistency */
.stat-number.gradient-text {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: inherit;
  background-clip: unset;
  text-fill-color: inherit;
  font-weight: 800;

  /* Consistent glow effect */
  text-shadow: 
    0 0 8px rgba(76, 201, 240, 0.5),
    0 0 15px rgba(76, 201, 240, 0.3),
    0 0 20px rgba(76, 201, 240, 0.2);
  filter: drop-shadow(0 0 10px rgba(76, 201, 240, 0.4));
}

/* Different sizes for each number while maintaining consistent styling */
.stat-number:nth-child(1) {
  font-size: 1.3rem; /* 50+ */
}

.stat-number:nth-child(2) {
  font-size: 1.3rem; /* 6 */
}

.stat-number:nth-child(3) {
  font-size: 1.3rem; /* 24/7 */
}

.stat-label {
  font-size: 1rem;
  color: rgba(224, 224, 224, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Rajdhani', sans-serif;

  /* Enhanced text shadow for stat labels */
  text-shadow: 
    0 0 3px rgba(0, 0, 0, 0.8),
    0 0 6px rgba(0, 0, 0, 0.6),
    0 0 10px rgba(0, 0, 0, 0.4);

  /* Added dark glow effect */
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.6));
}

.hero-buttons .btn {
  margin: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;

  /* Enhanced text shadow for buttons */
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

/* Section Styles */
section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(224, 224, 224, 0.8);
  font-family: 'Rajdhani', sans-serif;
}

/* Feature Cards */
.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent), var(--primary-accent));
  z-index: -1;
  border-radius: 17px;
  animation: glow 3s linear infinite;
  opacity: 0.5;
}

@keyframes glow {
  0% {
    filter: blur(5px);
    opacity: 0.5;
  }
  50% {
    filter: blur(10px);
    opacity: 0.8;
  }
  100% {
    filter: blur(5px);
    opacity: 0.5;
  }
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-accent);
  box-shadow: 0 15px 30px rgba(76, 201, 240, 0.4);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-accent);
  text-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Orbitron', sans-serif;
}

/* Persona Cards */
.persona-card {
  background: var(--glass-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 1;
}

.persona-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent), var(--primary-accent));
  z-index: -1;
  border-radius: 17px;
  animation: glow 3s linear infinite;
  opacity: 0.5;
}

.persona-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-accent);
  box-shadow: 0 15px 30px rgba(76, 201, 240, 0.4);
}

.persona-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.persona-badge.free {
  background: rgba(76, 201, 240, 0.2);
  color: var(--primary-accent);
  box-shadow: 0 0 10px rgba(76, 201, 240, 0.3);
}

.persona-badge.premium {
  background: rgba(157, 78, 221, 0.2);
  color: var(--secondary-accent);
  box-shadow: 0 0 10px rgba(157, 78, 221, 0.3);
}

.persona-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-accent);
  text-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

.persona-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Orbitron', sans-serif;
}

.persona-description {
  margin-bottom: 1.5rem;
  color: rgba(224, 224, 224, 0.8);
  font-family: 'Rajdhani', sans-serif;
}

.persona-indicators .badge {
  margin: 0.2rem;
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.1);
  font-family: 'Rajdhani', sans-serif;
}

/* Features Section */
.features-section {
  background: rgba(13, 20, 31, 0.7);
  position: relative;
}

.features-container {
  background: var(--glass-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.features-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent), var(--primary-accent));
  z-index: -1;
  border-radius: 17px;
  animation: glow 3s linear infinite;
  opacity: 0.5;
}

.feature-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', sans-serif;
}

.feature-description {
  color: rgba(224, 224, 224, 0.8);
  font-family: 'Rajdhani', sans-serif;
}

/* Commands Section */
.commands-section {
  background: rgba(13, 20, 31, 0.7);
  position: relative;
}

.commands-container {
  background: var(--glass-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.commands-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent), var(--primary-accent));
  z-index: -1;
  border-radius: 17px;
  animation: glow 3s linear infinite;
  opacity: 0.5;
}

.command-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.command-syntax {
  font-family: 'Courier New', monospace;
  background: rgba(76, 201, 240, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--primary-accent);
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-shadow: 0 0 5px rgba(76, 201, 240, 0.3);
}

.command-description {
  color: rgba(224, 224, 224, 0.8);
  font-family: 'Rajdhani', sans-serif;
}

.command-usage {
  color: rgba(224, 224, 224, 0.7);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  margin-top: 0.3rem;
  font-style: italic;
}

.command-example {
  color: rgba(224, 224, 224, 0.7);
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  margin-top: 0.3rem;
  padding-left: 1rem;
  border-left: 2px solid var(--primary-accent);
}

/* Feedback Section */
.feedback-section {
    background: rgba(13, 20, 31, 0.7);
    position: relative;
    padding: 6rem 0;
}

.feedback-container {
    background: var(--glass-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    max-width: 1400px; /* Increased from default container width */
    margin: 0 auto;
}

.feedback-container::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent), var(--primary-accent));
    z-index: -1;
    border-radius: 17px;
    animation: glow 3s linear infinite;
    opacity: 0.5;
}

.feedback-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

.feedback-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    z-index: 1;
    min-width: 250px;
    width: calc(33.333% - 2rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1; /* Allow items to grow */
}

.feedback-item:hover {
    transform: translateY(-10px);
    background: rgba(76, 201, 240, 0.15);
    border: 1px solid var(--primary-accent);
    box-shadow: 0 10px 25px rgba(76, 201, 240, 0.3);
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feedback-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(224, 224, 224, 0.9);
    line-height: 1.6;
}

.feedback-rating {
    display: flex;
    gap: 0.3rem;
}

.star-filled {
    color: #FFD700; /* Gold color for filled stars */
    fill: #FFD700; /* For feather icons */
}

.feedback-rating i {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.3); /* Gray for empty stars */
    display: inline-block;
}

.user-initial {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    margin-right: 0.8rem;
}

.feedback-status {
    font-size: 0.7rem;
    color: rgba(76, 201, 240, 0.8);
    font-family: 'Rajdhani', sans-serif;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
}

.feedback-date {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(224, 224, 224, 0.7);
}

/* Analysis Preview Section */
.preview-section {
    background: rgba(13, 20, 31, 0.7);
    position: relative;
}

.analysis-preview {
    background: var(--glass-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1; /* Ensure content is visible */
}

.analysis-preview::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent), var(--primary-accent));
    z-index: -1;
    border-radius: 17px;
    animation: glow 3s linear infinite;
    opacity: 0.5;
}

.preview-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.preview-header h4 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
}

.analysis-timestamp {
    font-size: 0.9rem;
    color: rgba(224, 224, 224, 0.7);
    font-family: 'Rajdhani', sans-serif;
}

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

.analysis-section:last-child {
    margin-bottom: 0;
}

.analysis-section h5 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.8rem;
    color: var(--primary-accent);
}

.analysis-section p {
    font-family: 'Rajdhani', sans-serif;
    color: rgba(224, 224, 224, 0.9);
    line-height: 1.6;
}

.analysis-section ul {
    padding-left: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    color: rgba(224, 224, 224, 0.9);
}

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

.recommendation {
    background: rgba(76, 201, 240, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid var(--primary-accent);
}

.disclaimer-note {
    background: rgba(231, 76, 60, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid #e74c3c;
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    background: rgba(13, 20, 31, 0.7);
    position: relative;
    padding: 6rem 0;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    z-index: 1; /* Ensure content is visible */
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-accent);
    box-shadow: 0 15px 30px rgba(76, 201, 240, 0.4);
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent), var(--primary-accent));
    z-index: -1;
    border-radius: 17px;
    animation: glow 3s linear infinite;
    opacity: 0.5;
}

.pricing-card.featured {
    border-color: var(--primary-accent);
    box-shadow: 0 10px 25px rgba(76, 201, 240, 0.4);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-accent);
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

.period {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(224, 224, 224, 0.8);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Rajdhani', sans-serif;
    color: rgba(224, 224, 224, 0.9);
    display: flex;
    align-items: center;
}

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

.pricing-features li i {
    margin-right: 0.8rem;
    width: 20px;
}

.pricing-features li i[data-feather="check-circle"] {
    color: var(--primary-accent);
}

.pricing-features li i[data-feather="x-circle"] {
    color: #e74c3c;
}

.pricing-cta {
    text-align: center;
    margin-top: 2rem;
}

.pricing-cta .btn {
    width: 100%;
}

/* CTA Section */
.cta-section {
    background: rgba(13, 20, 31, 0.7);
    position: relative;
    padding: 6rem 0;
    text-align: center;
}

.security-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.security-badge:hover {
    transform: translateY(-3px);
    background: rgba(76, 201, 240, 0.1);
    box-shadow: 0 5px 15px rgba(76, 201, 240, 0.2);
}

.security-badge i {
    color: var(--primary-accent);
}

/* FAQ Section */
.faq-section {
    background: rgba(13, 20, 31, 0.7);
    position: relative;
    padding: 6rem 0;
}

.faq-container {
    background: var(--glass-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faq-container::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent), var(--primary-accent));
    z-index: -1;
    border-radius: 17px;
    animation: glow 3s linear infinite;
    opacity: 0.5;
}

.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(76, 201, 240, 0.1);
}

.faq-question h3 {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    font-size: 1.3rem;
    color: var(--text-light);
}

.faq-answer {
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 2px solid var(--primary-accent);
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
    opacity: 0 !important;
}

.faq-answer p {
    font-family: 'Rajdhani', sans-serif;
    color: rgba(224, 224, 224, 0.9);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.faq-answer ul {
    font-family: 'Rajdhani', sans-serif;
    color: rgba(224, 224, 224, 0.9);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer code {
    background: rgba(76, 201, 240, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: var(--primary-accent);
}

.faq-item.active .faq-answer {
    max-height: 2000px !important; /* Increased from 1000px to ensure enough space */
    padding: 1rem !important;
    opacity: 1 !important;
}

.faq-question.active i {
    transform: rotate(180deg) !important;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-accent);
    cursor: pointer;
    font-size: 1.5rem; /* Make icon more visible */
    min-width: 24px; /* Ensure consistent sizing */
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Make it look like a button */
    padding: 5px;
    background: rgba(76, 201, 240, 0.1); /* Subtle background */
}

.faq-question i:hover {
    background: rgba(76, 201, 240, 0.3); /* More prominent on hover */
    transform: scale(1.1) rotate(0deg); /* Slight scale effect */
}

.faq-question.active i:hover {
    transform: scale(1.1) rotate(180deg); /* Maintain rotation when active */
}

/* Contact Section */
.contact-section {
    background: rgba(13, 20, 31, 0.7);
    position: relative;
    padding: 4rem 0;
}

.contact-container {
    background: var(--glass-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    max-width: 1400px; /* Increased from default container width */
    margin: 0 auto;
}

.contact-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    z-index: 1;
    min-width: 250px;
    width: calc(33.333% - 2rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1; /* Allow items to grow */
}

.contact-item:hover {
    transform: translateY(-10px);
    background: rgba(76, 201, 240, 0.15);
    border: 1px solid var(--primary-accent);
    box-shadow: 0 10px 25px rgba(76, 201, 240, 0.3);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-accent);
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(76, 201, 240, 0.8);
}

.contact-content h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.5rem;
}

.contact-content p {
    font-family: 'Rajdhani', sans-serif;
    color: rgba(224, 224, 224, 0.8);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-content .btn {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-accent);
}

.contact-content .btn:hover {
    background: var(--primary-accent);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 201, 240, 0.4);
}

/* Footer */
.footer {
    background: var(--glass-bg);
    border-top: 1px solid var(--card-border);
    padding: 3rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 1; /* Ensure content is visible */
}

.footer::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent), var(--primary-accent));
    z-index: -1;
    border-radius: 17px;
    animation: glow 3s linear infinite;
    opacity: 0.5;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

.footer-text {
    color: rgba(224, 224, 224, 0.8);
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 1rem;
}

.small-disclaimer {
    font-size: 0.8rem;
    color: rgba(224, 224, 224, 0.6);
    font-style: italic;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.social-link:hover {
    color: var(--primary-accent);
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.7);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card, .persona-card {
        margin-bottom: 1.5rem;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .nav-link {
        margin: 0.2rem 0.3rem;
    }
    
    /* FAQ Section Mobile Optimization */
    .faq-container {
        padding: 1.5rem 1rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding-left: 0.5rem;
    }
    
    /* Contact Section Mobile Optimization */
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-container {
        padding: 1.5rem;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-item {
        min-width: 100%;
        width: 100%;
        padding: 1.5rem;
    }
    
    .contact-content h3 {
        font-size: 1.3rem;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .contact-content .btn {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .contact-item {
        width: calc(50% - 1rem);
        min-width: 45%;
    }
}

@media (min-width: 992px) {
    .contact-item {
        width: calc(33.333% - 2rem);
        min-width: 250px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 80%;
        margin: 0.5rem auto;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Additional Mobile Optimizations */
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 4rem 0 2rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-toggler {
        border: none;
        outline: none;
        box-shadow: none;
    }
    
    .navbar-collapse {
        background: rgba(13, 20, 31, 0.95);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        text-align: center;
    }
    
    .btn-gradient {
        margin: 0.5rem 0;
        display: block;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Contact Section Mobile Optimization */
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-container {
        padding: 1rem;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-item {
        width: 100%;
        min-width: auto;
        justify-content: flex-start;
    }
    
    .contact-content {
        text-align: left;
    }
    
    /* FAQ Section Mobile Optimization */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-item {
        padding: 1rem 0;
    }
    
    .faq-question {
        padding: 0.5rem 0;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .commands-container, .analysis-preview, .pricing-card {
        padding: 1.5rem;
    }
    
    .command-syntax {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .feature-card, .persona-card {
        padding: 1.5rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 0;
    background: transparent;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.faq-question .icon {
    transition: transform 0.3s ease;
    color: #fff;
    font-size: 1.5rem;
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 2000px !important; /* Increased from 1000px to ensure enough space */
    padding: 1rem !important;
    opacity: 1 !important;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}
