/* --- PRICING PAGE STYLES --- */
.pricing-page-banner {
  margin-top: 50px;
  padding: 100px 20px 20px;
  text-align: center;
  background-color: #fff;
}

.pricing-page-banner h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #333;
}

.pricing-page-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Grid System: Maksimal 3 Kolom */
.pricing-grid {
  display: grid;
  /* Membuat kolom fleksibel, minimal 300px, maksimal 3 per baris di layar besar */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  justify-content: center;
}

/* Card Styling */
.pricing-card {
  background: #ffd81a; /* Warna Kuning Dasar */
  border-radius: 20px;
  padding: 40px 30px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  min-height: 100%; /* Memastikan tinggi sama */
}

.pricing-card:hover {
  transform: translateY(-10px);
}

/* Badge Harga */
.price-badge {
  position: absolute;
  top: -30px;
  right: -15px;
  background: #961b1a;
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px dashed rgba(255, 255, 255, 0.3);
  z-index: 10;
}

.price-val {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.price-unit {
  font-size: 0.7rem;
}

/* Header & Icon */
.card-header {
  margin-bottom: 20px;
}

.course-icon {
  width: 80px; /* Ukuran disesuaikan agar tidak menabrak teks */
  height: auto;
  margin-bottom: 15px;
  position: absolute;
  top: -30px;
  left: -30px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #000;
  margin: 0;
}

/* Body Content */
.card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.card-body.pricing ul {
  padding-left: 18px;   /* kontrol jarak bullet */
  margin-left: 0;
  list-style-position: outside;
  width: auto !important;
}

.card-body.pricing li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 3px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #1a1a1a;
}

.card-body.pricing li::marker {
  content: "◆";
  position: absolute;
  left: 0;
  color: #961b1a;
}

.time-title {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 8px;
}

.duration-highlight {
  background: #961b1a;
  color: white;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: bold;
}

/* Footer & Button */
.card-footer {
  margin-top: 20px;
}

.btn-price {
  display: block;
  background: #961b1a;
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-price:hover {
  background: #7d0000;
  color: #fff;
}

/* Desktop Limit: Memastikan tidak lebih dari 3 kolom di layar sangat lebar */
@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .pricing-page-banner h1 { font-size: 1.8rem; }
  .pricing-grid { gap: 40px; } /* Memberi ruang antar card yang menumpuk */
  .course-icon {
    left: -15px;
  }
}