.service-plans-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f6fbff 0%, #edf7fb 100%);
}

.service-plans-section::before,
.service-plans-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.service-plans-section::before {
  width: 300px;
  height: 300px;
  top: -120px;
  right: -100px;
  background: rgba(15, 98, 166, 0.09);
  filter: blur(8px);
}

.service-plans-section::after {
  width: 240px;
  height: 240px;
  left: -110px;
  bottom: -110px;
  background: rgba(22, 162, 184, 0.08);
  filter: blur(8px);
}

.service-plans-section .container {
  position: relative;
  z-index: 1;
}

.service-plans-header {
  max-width: 820px;
  margin: 0 auto 42px;
}

.service-plans-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(15, 98, 166, 0.1);
  color: #0f62a6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-plans-header h2 {
  margin: 18px 0 14px;
  color: #0f172a;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
}

.service-plans-header p {
  margin: 0 auto;
  max-width: 720px;
  color: #5b6b80;
  font-size: 18px;
  line-height: 1.7;
}

.service-plan-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15, 98, 166, 0.08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.service-plan-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0f62a6 0%, #16a2b8 100%);
}

.service-plan-card.featured {
  background: linear-gradient(180deg, #0f62a6 0%, #0b4071 100%);
  border-color: transparent;
  color: #fff;
}

.service-plan-card.featured::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.service-plan-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 98, 166, 0.1);
  color: #0f62a6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-plan-card.featured .service-plan-label {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.service-plan-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.service-plan-card.featured h3 {
  color: #fff;
}

.service-plan-pricing {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.service-plan-price-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(15, 98, 166, 0.06);
  box-shadow: inset 0 0 0 1px rgba(15, 98, 166, 0.08);
}

.service-plan-card.featured .service-plan-price-item {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.service-plan-price-item span {
  display: block;
  margin-bottom: 6px;
  color: #0f62a6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-plan-card.featured .service-plan-price-item span {
  color: rgba(255, 255, 255, 0.86);
}

.service-plan-price-item strong {
  display: block;
  color: #0f172a;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.service-plan-card.featured .service-plan-price-item strong {
  color: #fff;
}

.service-plan-price-item em {
  display: block;
  margin-top: 6px;
  color: #5b6b80;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

.service-plan-card.featured .service-plan-price-item em {
  color: rgba(255, 255, 255, 0.82);
}

.service-plan-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.service-plan-list li {
  display: flex;
  gap: 12px;
  color: #334155;
  font-size: 15px;
  line-height: 1.55;
}

.service-plan-card.featured .service-plan-list li {
  color: rgba(255, 255, 255, 0.92);
}

.service-plan-list i {
  margin-top: 5px;
  color: #16a2b8;
}

.service-plan-card.featured .service-plan-list i {
  color: rgba(255, 255, 255, 0.95);
}

.service-plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 26px;
  padding: 15px 26px;
  border-radius: 999px;
  background: linear-gradient(145deg, #0f62a6 0%, #16a2b8 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 34px rgba(15, 98, 166, 0.22);
}

.service-plan-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.service-plan-card.featured .service-plan-btn {
  background: #fff;
  color: #0f62a6;
}

.service-plan-card.featured .service-plan-btn:hover {
  color: #0f62a6;
}

@media (max-width: 991.98px) {
  .service-plans-header {
    margin-bottom: 32px;
  }

  .service-plan-card {
    padding: 30px;
  }
}

@media (max-width: 575.98px) {
  .service-plans-header h2 {
    font-size: 30px;
  }

  .service-plans-header p {
    font-size: 16px;
  }

  .service-plan-card {
    padding: 26px 22px;
  }

  .service-plan-price-item strong {
    font-size: 26px;
  }
}
