
/* ================= HERO SECTION ================= */
.page-hero {
  background: linear-gradient(135deg, #043854, #0d6efd);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 380px;
  height: 380px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* ================= PRICING STYLES ================= */
.plan-header {
  font-size: 22px;
  font-weight: 600;
  padding: 14px;
  text-align: center;
  background: #f5f7fb;
  border-radius: 10px 10px 0 0;
}
.plan-header.basic { border-top: 4px solid #6c757d; }
.plan-header.standard { border-top: 4px solid #f9ab00; }
.plan-header.enterprise { border-top: 4px solid #198754; }

.price-main {
  font-size: 30px;
  font-weight: 700;
  color: #198754;
}
.price-sub {
  font-size: 14px;
  color: #666;
}
.card { border-radius: 10px; }
