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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Tech Futuristic Design Variables */
:root {
  --primary: #00ffff;
  --primary-glow: rgba(0, 255, 255, 0.5);
  --secondary: #ff00ff;
  --secondary-glow: rgba(255, 0, 255, 0.5);
  --accent: #00ff88;
  --dark-bg: #0a0e27;
  --card-bg: rgba(26, 31, 58, 0.8);
  --text-primary: #ffffff;
  --text-secondary: #b8c5d6;
  --neon-blue: #00d4ff;
  --neon-purple: #b000ff;
  --neon-green: #00ff88;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  text-shadow: 0 0 10px var(--primary-glow);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-lg);
}

h2 {
  font-size: 32px;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
  font-size: 16px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
  text-shadow: 0 0 8px var(--secondary-glow);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, var(--primary) 0%, var(--neon-blue) 100%);
  border: 2px solid var(--primary);
  color: var(--dark-bg);
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 20px var(--primary-glow), inset 0 0 10px rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--primary-glow);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -5px 0 30px rgba(0, 255, 255, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 2px solid var(--primary);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: var(--secondary);
  color: var(--dark-bg);
  box-shadow: 0 0 20px var(--secondary-glow);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  text-align: left;
  background: rgba(0, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
  transition: left 0.5s ease;
}

.mobile-nav a:hover::before {
  left: 100%;
}

.mobile-nav a:hover {
  border-color: var(--primary);
  background: rgba(0, 255, 255, 0.1);
  transform: translateX(10px);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Header */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 4px 30px rgba(0, 255, 255, 0.2);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--primary-glow));
  transition: all 0.3s ease;
}

.logo:hover img {
  filter: drop-shadow(0 0 20px var(--primary-glow));
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu li a {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu li a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary-glow);
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--neon-blue) 100%);
  color: var(--dark-bg);
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--primary-glow), 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--dark-bg);
  box-shadow: 0 0 20px var(--primary-glow);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  opacity: 0.1;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.2); opacity: 0.2; }
}

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

.hero-subheadline {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.trust-line {
  font-size: 14px;
  color: var(--accent);
  margin-top: var(--spacing-md);
  text-shadow: 0 0 5px var(--primary-glow);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 2px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
  animation: slide 3s linear infinite;
}

@keyframes slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Sections */
section {
  padding: 60px 20px;
  margin-bottom: 40px;
  position: relative;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subheading {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

/* Problem Solution Section */
.problem-solution {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 50px 30px;
  border: 1px solid var(--primary);
  box-shadow: 0 0 30px var(--primary-glow);
}

.problem-list {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.problem-list li {
  padding: 16px 16px 16px 50px;
  margin-bottom: 16px;
  background: rgba(0, 255, 255, 0.05);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  color: var(--text-secondary);
  position: relative;
  transition: all 0.3s ease;
}

.problem-list li::before {
  content: '⚡';
  position: absolute;
  left: 16px;
  font-size: 24px;
  color: var(--primary);
}

.problem-list li:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateX(10px);
  box-shadow: 0 0 15px var(--primary-glow);
}

.solution-intro {
  font-size: 18px;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.8;
}

/* Feature Grid */
.features {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.5) 0%, rgba(10, 14, 39, 0.5) 100%);
  padding: 60px 20px;
  border-radius: 12px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: var(--spacing-lg);
}

.feature-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--card-bg);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--primary);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 12px 12px 0 0;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px var(--primary-glow);
  border-color: var(--secondary);
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

.feature-card p {
  color: var(--text-secondary);
}

/* Service Grid */
.services-preview {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(26, 31, 58, 0.8) 100%);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
}

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: var(--card-bg);
  padding: 40px 32px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.service-card:hover::after {
  opacity: 0.2;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 50px var(--primary-glow);
}

.service-card h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: var(--spacing-sm);
}

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin: var(--spacing-md) 0;
  text-shadow: 0 0 10px var(--primary-glow);
}

/* Program Grid */
.program-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: var(--spacing-xl);
}

.program-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.program-card.featured {
  border-color: var(--secondary);
  box-shadow: 0 0 40px var(--secondary-glow);
}

.program-card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--neon-blue));
  color: var(--dark-bg);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px var(--primary-glow);
}

.program-card.featured .badge {
  background: linear-gradient(135deg, var(--secondary), var(--neon-purple));
  box-shadow: 0 0 15px var(--secondary-glow);
}

.program-card .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin: var(--spacing-sm) 0;
  text-shadow: 0 0 15px var(--primary-glow);
}

.program-card .duration {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

.features-list {
  list-style: none;
  margin: var(--spacing-lg) 0;
}

.features-list li {
  padding: 12px 12px 12px 40px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  position: relative;
  border-left: 2px solid var(--primary);
  background: rgba(0, 255, 255, 0.05);
  border-radius: 4px;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(10, 14, 39, 0.6) 100%);
  padding: 80px 20px;
  border-radius: 12px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: var(--spacing-xl) 0;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  position: relative;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 50px var(--primary-glow);
}

.testimonial-card p {
  color: #1a1a1a;
  font-style: italic;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: #2a2a2a;
  font-size: 14px;
  margin-top: var(--spacing-md);
}

.rating {
  color: #ffd700;
  font-size: 18px;
  margin-top: var(--spacing-sm);
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Story Cards */
.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: var(--spacing-xl);
}

.story-card {
  flex: 1 1 100%;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.story-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 0 50px var(--secondary-glow);
  transform: translateY(-5px);
}

.story-card h3 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: var(--spacing-sm);
}

.program-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), var(--neon-purple));
  color: var(--dark-bg);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-card h4 {
  color: var(--accent);
  font-size: 20px;
  margin: var(--spacing-md) 0;
}

.key-takeaway {
  background: rgba(0, 255, 255, 0.1);
  border-left: 4px solid var(--accent);
  padding: 16px;
  margin-top: var(--spacing-md);
  font-style: italic;
  color: var(--text-primary);
  border-radius: 4px;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(10, 14, 39, 0.9) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  margin-top: var(--spacing-xl);
}

.stat-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  padding: 32px;
  background: rgba(0, 255, 255, 0.05);
  border: 2px solid var(--primary);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover::before {
  opacity: 0.2;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 50px var(--primary-glow);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 0 20px var(--primary-glow);
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
  border: 2px solid var(--primary);
  box-shadow: 0 0 40px var(--primary-glow);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 200%; }
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: var(--spacing-lg) 0;
}

.guarantee {
  color: var(--accent);
  font-size: 14px;
  margin-top: var(--spacing-md);
  font-weight: 600;
  text-shadow: 0 0 5px var(--primary-glow);
}

/* Resource Categories */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: var(--spacing-xl);
}

.category-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background: var(--card-bg);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px var(--primary-glow);
  border-color: var(--secondary);
}

.category-card h3 {
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

.category-card .count {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  margin-top: var(--spacing-sm);
}

/* Resource Grid */
.resource-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: var(--spacing-xl);
}

.resource-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: var(--card-bg);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.resource-card .badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark-bg);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px var(--primary-glow);
}

.resource-card .meta {
  color: var(--text-secondary);
  font-size: 14px;
  margin: var(--spacing-md) 0;
}

/* Article Grid */
.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: var(--spacing-xl) 0;
}

.article-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: var(--card-bg);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px var(--primary-glow);
  border-color: var(--secondary);
}

.article-card .category {
  display: inline-block;
  background: var(--accent);
  color: var(--dark-bg);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
}

/* Contact Forms */
.contact-options {
  padding: 60px 20px;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: var(--spacing-xl);
}

.option-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 50px var(--primary-glow);
}

.best-for {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 14px;
  margin: var(--spacing-md) 0;
}

.form-wrapper {
  max-width: 600px;
  margin: var(--spacing-xl) auto 0;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.form-field {
  margin-bottom: var(--spacing-md);
}

.form-field label {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--primary);
  border-radius: 8px;
  background: rgba(0, 255, 255, 0.05);
  color: var(--text-primary);
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 15px var(--primary-glow);
  background: rgba(0, 255, 255, 0.1);
}

.privacy-note {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: var(--spacing-md);
  text-align: center;
}

.privacy-note a {
  color: var(--primary);
  text-decoration: underline;
}

/* Info Grid */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: var(--spacing-xl);
}

.info-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: var(--card-bg);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px var(--primary-glow);
}

.info-card h3 {
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

.info-card .note {
  color: var(--accent);
  font-size: 14px;
  font-style: italic;
  margin-top: var(--spacing-sm);
}

.info-card .timezone {
  color: var(--text-secondary);
  font-size: 12px;
  margin-top: var(--spacing-xs);
}

/* Thank You Page */
.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--neon-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--dark-bg);
  margin: 0 auto var(--spacing-lg);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: var(--spacing-xl);
}

.step-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: var(--card-bg);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.step-card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--neon-blue));
  border-radius: 50%;
  box-shadow: 0 0 20px var(--primary-glow);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px var(--primary-glow);
}

.timeline {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  margin-top: var(--spacing-md);
  text-transform: uppercase;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: var(--spacing-xl);
}

.link-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: var(--card-bg);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px var(--primary-glow);
  border-color: var(--secondary);
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 50px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.content-wrapper .intro {
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
  padding: 20px;
  background: rgba(0, 255, 255, 0.05);
  border-left: 4px solid var(--primary);
  border-radius: 4px;
}

.content-wrapper h2 {
  color: var(--primary);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--primary);
}

.content-wrapper p {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

/* Mission Values */
.mission-statement {
  font-size: 20px;
  color: var(--text-primary);
  text-align: center;
  padding: 32px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 12px;
  border: 2px solid var(--primary);
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
  box-shadow: 0 0 20px var(--primary-glow);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: var(--spacing-xl);
}

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--card-bg);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px var(--primary-glow);
  border-color: var(--secondary);
}

.value-card h3 {
  color: var(--primary);
}

/* Team Grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: var(--spacing-xl);
}

.team-member {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 50px var(--primary-glow);
}

.team-member h3 {
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.member-title {
  color: var(--accent);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: var(--spacing-xs);
}

.credentials {
  color: var(--text-secondary);
  font-size: 14px;
  font-style: italic;
  margin-bottom: var(--spacing-md);
}

/* Pillars Grid */
.pillars-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: var(--spacing-xl);
}

.pillar-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  background: var(--card-bg);
  padding: 40px 32px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.pillar-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 12px 12px 0 0;
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 50px var(--primary-glow);
}

.pillar-card h3 {
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

/* Story Section */
.story {
  background: var(--card-bg);
  padding: 60px 40px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.story p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  color: var(--text-secondary);
}

.story blockquote {
  font-size: 20px;
  font-style: italic;
  color: var(--text-primary);
  padding: 24px;
  border-left: 4px solid var(--primary);
  background: rgba(0, 255, 255, 0.05);
  margin: var(--spacing-xl) 0;
  border-radius: 4px;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
  padding: 60px 40px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  text-align: center;
}

.newsletter .benefits {
  list-style: none;
  max-width: 600px;
  margin: var(--spacing-xl) auto;
  text-align: left;
}

.newsletter .benefits li {
  padding: 12px 12px 12px 40px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  position: relative;
  border-left: 2px solid var(--accent);
  background: rgba(0, 255, 136, 0.05);
  border-radius: 4px;
}

.newsletter .benefits li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: var(--accent);
  font-weight: 700;
}

/* Guarantee Section */
.guarantee {
  background: var(--card-bg);
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--accent);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.trust-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: var(--spacing-lg);
}

.trust-points li {
  padding: 12px 24px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--accent);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Footer */
footer {
  background: rgba(10, 14, 39, 0.98);
  padding: 60px 20px 30px;
  border-top: 2px solid var(--primary);
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
}

.footer-brand {
  flex: 1 1 300px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: var(--spacing-md);
  filter: drop-shadow(0 0 10px var(--primary-glow));
}

.footer-brand p {
  color: var(--text-secondary);
  font-style: italic;
}

.footer-links {
  flex: 1 1 200px;
}

.footer-links h4 {
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

.footer-links ul {
  list-style: none;
}

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

.footer-links ul li a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-size: 14px;
}

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

.footer-contact {
  flex: 1 1 250px;
}

.footer-contact h4 {
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

.footer-contact p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: var(--spacing-sm);
}

.footer-bottom {
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: var(--text-secondary);
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary);
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 12px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
  backdrop-filter: blur(10px);
  padding: 24px;
  box-shadow: 0 -4px 30px rgba(0, 255, 255, 0.3);
  border-top: 2px solid var(--primary);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1 1 400px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  border: 2px solid var(--primary);
  box-shadow: 0 0 50px var(--primary-glow);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  color: var(--primary);
  margin-bottom: var(--spacing-lg);
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: rgba(0, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.cookie-category h4 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
  border: 2px solid var(--primary);
}

.cookie-toggle.active {
  background: var(--primary);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-secondary);
}

.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }

  /* Show mobile menu */
  .mobile-menu {
    display: block;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  /* Hero section */
  .hero {
    padding: 60px 20px;
  }

  .hero-subheadline {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

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

  /* Grids to single column */
  .feature-grid,
  .service-grid,
  .program-grid,
  .testimonial-grid,
  .story-grid,
  .stats-grid,
  .category-grid,
  .resource-grid,
  .article-grid,
  .options-grid,
  .info-grid,
  .steps-grid,
  .links-grid,
  .values-grid,
  .team-grid,
  .pillars-grid {
    flex-direction: column;
  }

  .feature-card,
  .service-card,
  .program-card,
  .testimonial-card,
  .story-card,
  .stat-card,
  .category-card,
  .resource-card,
  .article-card,
  .option-card,
  .info-card,
  .step-card,
  .link-card,
  .value-card,
  .team-member,
  .pillar-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }

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

  .footer-legal {
    flex-direction: column;
    align-items: center;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  /* Form adjustments */
  .form-wrapper {
    padding: 24px;
  }

  /* Legal content */
  .content-wrapper {
    padding: 24px;
  }

  /* Story section */
  .story {
    padding: 30px 20px;
  }

  /* Newsletter */
  .newsletter {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero {
    padding: 40px 16px;
  }

  section {
    padding: 40px 16px;
  }

  .program-card .price,
  .service-card .price {
    font-size: 28px;
  }

  .stat-number {
    font-size: 36px;
  }
}

/* Smooth scrolling animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  body {
    background: #000;
  }

  .card-bg,
  .feature-card,
  .service-card,
  .program-card {
    border-width: 3px;
  }
}