/* ========================================
   HERO SECTION - PREMIUM STYLE
   ======================================== */

.hero {
  display: flex;
  align-items: center;
  position: relative;
  padding: 40px 0 30px;
  margin-top: 0;
  min-height: auto;
  overflow: visible !important;
}

.hero * {
  overflow: visible !important;
}

.hero-content {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: visible !important;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #06b6d4;
  margin-bottom: 20px;
  backdrop-filter: blur(20px);
  animation: fadeInUp 0.6s ease, glow 3s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.2);
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.2);
  }
  50% {
    box-shadow: 0 4px 30px rgba(6, 182, 212, 0.4);
  }
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #06b6d4;
  border-radius: 50%;
  animation: badgePulse 2s ease infinite;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
}

@keyframes badgePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

h1 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.5;
  animation: fadeInUp 1s ease 0.4s both;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.hero-description {
  max-width: 650px;
  margin: 0 auto 28px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1.1s ease 0.5s both;
}

.hero-description p {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.6 !important;
  margin: 0;
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease 0.6s both;
  width: 100%;
  margin-bottom: 18px;
}

/* Hero Info Block */
.hero-info {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 1.4s ease 0.8s both;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(14, 165, 233, 0.15));
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 50px;
  color: #06b6d4;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.15);
}

.program-link::before,
.program-link::after {
  display: none !important;
}

.program-link:hover {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(14, 165, 233, 0.25));
  border-color: rgba(6, 182, 212, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
}

.hero-stats-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-stats-inline::before,
.hero-stats-inline::after {
  display: none !important;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stars {
  font-size: 14px;
  letter-spacing: 2px;
  color: #fbbf24;
  text-shadow: none;
  filter: none;
}

.rating {
  font-weight: 800;
  color: #fbbf24;
  font-size: 13px;
}

.divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.stat-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 50px 0 40px;
    min-height: auto;
  }

  .hero-content {
    padding: 0 20px;
  }

  h1 {
    font-size: 34px;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 28px;
    font-weight: 600;
  }

  .hero-description {
    padding: 14px 20px;
    margin-bottom: 24px;
  }

  .hero-description p {
    font-size: 13px !important;
  }

  .badge {
    font-size: 11px;
    padding: 5px 14px;
    margin-bottom: 20px;
  }

  .cta-buttons {
    gap: 14px;
    padding: 0 10px;
    margin-bottom: 28px;
  }

  .btn {
    padding: 13px 26px;
    font-size: 14px;
  }

  .hero-info {
    margin-top: 28px;
    gap: 14px;
  }

  .program-link {
    font-size: 13px;
    padding: 11px 24px;
  }

  .hero-stats-inline {
    font-size: 11px;
    gap: 10px;
    padding: 8px 16px;
  }

  .stat-text {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0 30px;
  }

  .hero-content {
    padding: 0 16px;
  }

  h1 {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .subtitle {
    font-size: 13px;
    margin-bottom: 24px;
    font-weight: 600;
  }

  .hero-description {
    padding: 12px 16px;
    margin-bottom: 20px;
  }

  .hero-description p {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  .badge {
    font-size: 10px;
    padding: 4px 12px;
    margin-bottom: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
    margin-bottom: 24px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }

  .btn-large {
    padding: 15px 26px;
    font-size: 15px;
  }

  .hero-info {
    margin-top: 24px;
  }

  .program-link {
    font-size: 12px;
    padding: 10px 22px;
  }

  .hero-stats-inline {
    font-size: 11px;
    gap: 8px;
    padding: 7px 14px;
  }
}
