.hero-wrap {
  position: relative;
  width: 100%;
  height: 603px;
  background-image: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-white);
  max-width: 800px;
  padding: 0 20px;
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-sub {
  font-size: 1.3rem;
  margin-bottom: 48px;
  opacity: 0.9;
  font-weight: 300;
}

.btn-cta {
  background-color: var(--accent-yellow);
  color: #000;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 48px;
  border: none;
  border-radius: 50px;
  transition:
    transform 0.2s,
    background-color 0.2s;
}

.btn-cta:hover {
  background-color: var(--accent-yellow-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.stats-section {
  background-color: var(--bg-white);
  color: var(--text-black);
  padding: 60px 0;
}

.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat-wrapper {
  display: flex;
  gap: 10px;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: bold;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

.course-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.course-card:hover {
  /* Hover Animation */
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.thumb-area {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

.thumb-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.course-card:hover .thumb-area img {
  transform: scale(1.1);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.75rem;
  border-radius: 20px;
  font-weight: 600;
}

.badge.free {
  background: var(--primary-blue);
}

.badge.sub {
  background: #6f42c1;
}

.card-info {
  padding: 24px;
  text-align: left;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
  line-height: 1.4;
}

.card-tags {
  margin-bottom: 15px;
}

.tag-pill {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-sub);
  background: #f1f3f5;
  padding: 4px 10px;
  border-radius: 12px;
  margin-right: 4px;
}

.card-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.membership-banner {
  background: linear-gradient(135deg, #0d2137 0%, #2a5298 100%);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  color: white;
  margin: 80px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.mb-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.mb-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.btn-mb {
  background: var(--accent-yellow);
  color: black;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 15px 40px;
  border-radius: 40px;
  border: none;
  transition: 0.2s;
}

.btn-mb:hover {
  background: #fff;
  color: var(--primary-blue);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #f1f3f5;
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
  opacity: 0.3;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-weight: 700;
  color: #333;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
}

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