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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #0a0a0a;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: white;
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  margin-bottom: 30px;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.1;
  position: relative;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  position: relative;
}

.btn-hero {
  display: inline-block;
  padding: 16px 48px;
  background: #3b82f6;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  position: relative;
}

.btn-hero:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: white;
}

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

.feature-card {
  text-align: center;
  padding: 30px 20px;
}

.feature-number {
  font-size: 3rem;
  font-weight: 800;
  color: #3b82f6;
  opacity: 0.2;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0a0a0a;
}

.feature-description {
  color: #666;
  line-height: 1.7;
}

/* Programs Section */
.programs {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: #0a0a0a;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.program-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-card.featured {
  border: 2px solid #3b82f6;
  transform: scale(1.02);
}

.program-header {
  margin-bottom: 20px;
}

.program-tag {
  display: inline-block;
  padding: 6px 14px;
  background: #e5e7eb;
  color: #374151;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.program-tag.highlight {
  background: #3b82f6;
  color: white;
}

.program-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0a0a0a;
}

.program-description {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
}

.program-features {
  list-style: none;
}

.program-features li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: #444;
}

.program-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

/* Success Section */
.success {
  padding: 80px 0;
  background: #0a0a0a;
  color: white;
}

.success .section-title {
  color: white;
}

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

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

.stat-value {
  font-size: 3.5rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.125rem;
  opacity: 0.8;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.btn-cta {
  display: inline-block;
  padding: 18px 48px;
  background: white;
  color: #3b82f6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: #0a0a0a;
  color: white;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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