

/* =========================
   PRICING SECTION
   ========================= */

.pricing-section {
  padding: 120px 50px 160px;
  text-align: center;
}

.pricing-header {
  max-width: 800px;
  margin: 0 auto 80px;
}

.pricing-badge {
  font-family: 'Livvic', sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
}

/* .pricing-badge {display:inline-flex;align-items:center;gap:10px;background:rgba(15,61,222,0.08);color:#0f3dde;font-size:16px;padding:10px 26px;border-radius:50px;margin-bottom:20px} */

.pricing-title {
  font-family: 'Livvic', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
}

.pricing-subtitle {
  font-size: 20px;
  color: #64748b;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.plan-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s;
}

.plan-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.recommended-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6900, #ff8534);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 105, 0, 0.3);
}

.plan-name {
  font-family: 'Livvic', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 16px;
}

.price {
  font-family: 'Livvic', sans-serif;
  font-size: 52px;
  font-weight: 600;
  background: linear-gradient(90deg, #0f3dde, #ff6900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-standard {
  background: linear-gradient(90deg, #ff6900, #ff4500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.per-student {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 32px;
}

.features {
  text-align: left;
  margin: 32px 0 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #374151;
}

.feature-item img {
  width: 20px;
  height: 20px;
}

.feature-highlight {
  color: #ff6900;
  font-weight: 600;
}

.plan-btn {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 15px;
  color: white;
  text-decoration: none;
  display: block;
}

.btn-primary {
  background: linear-gradient(92deg, #0f3dde, #ff6900);
}

.btn-secondary {
  background: #ff7b72;
}

.plan-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 61, 222, 0.3);
}

.plan-card.standard {
  border: 3px solid #ff6900;
  box-shadow: 0 15px 40px rgba(255, 105, 0, 0.15);
}

.pricing-cta {
  margin: 120px auto 0;
  max-width: 900px;
  text-align: center;
}

.cta-title {
  font-family: 'Livvic', sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 40px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 15px;
  min-width: 180px;
  color: white;
  text-decoration: none;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #0f3dde, #4169e1);
}

.cta-btn.secondary {
  background: linear-gradient(135deg, #ff6900, #ff8534);
}

/* =========================
   FOOTER SECTION
   ========================= */

.hs-footer {
  background: linear-gradient(96deg, #faa74a 17%, #fcc88e 55%, #fff 100%);
  padding: 80px 50px 40px;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */

@media (max-width: 1024px) {
  .pricing-section,
  .hs-footer {
    padding-left: 30px;
    padding-right: 30px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pricing-section,
  .hs-footer {
    padding: 20px;
  }

  .pricing-title {
    font-size: 40px;
  }
}