.premium-hero-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 4%, rgba(151, 91, 255, 0.16), transparent 32%),
    radial-gradient(circle at 8% 100%, rgba(0, 186, 255, 0.13), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f7faff 56%, #f2f0ff 100%);
  border: 1px solid rgba(62, 100, 255, 0.16);
  box-shadow:
    0 28px 70px rgba(39, 67, 143, 0.14),
    inset 0 -3px 0 rgba(20, 92, 255, 0.12);
}

.premium-hero-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(20, 92, 255, 0.13), rgba(183, 44, 255, 0.14));
  filter: blur(2px);
}

.premium-hero-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 30px;
}

.premium-card-kicker {
  display: inline-block;
  margin-bottom: 13px;
  color: #145cff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.premium-hero-card h3 {
  margin: 0;
  color: #10172a;
  font-size: 31px;
  line-height: 1.08;
  font-weight: 900;
}

.premium-server-visual {
  position: relative;
  width: 92px;
  min-width: 92px;
  height: 92px;
  transform: rotate(-10deg);
}

.premium-server-visual span {
  position: absolute;
  left: 10px;
  width: 72px;
  height: 24px;
  border-radius: 10px;
  background: linear-gradient(145deg, #ffffff, #eaf0ff);
  border: 1px solid rgba(20, 92, 255, 0.16);
  box-shadow: 0 14px 24px rgba(38, 87, 190, 0.14);
}

.premium-server-visual span:nth-child(1) { top: 4px; }
.premium-server-visual span:nth-child(2) { top: 31px; }
.premium-server-visual span:nth-child(3) { top: 58px; }

.premium-server-visual i {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 34px;
  height: 40px;
  border-radius: 14px 14px 18px 18px;
  background: linear-gradient(135deg, #145cff, #b72cff);
  box-shadow: 0 14px 30px rgba(20, 92, 255, 0.26);
}

.premium-server-visual i::before {
  content: "✓";
  position: absolute;
  inset: 0;
  color: #fff;
  font-size: 21px;
  font-style: normal;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-feature-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.premium-feature-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(38, 87, 190, 0.11);
  box-shadow: 0 16px 34px rgba(38, 87, 190, 0.07);
}

.premium-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
}

.premium-feature-icon.blue {
  color: #145cff;
  background: rgba(20, 92, 255, 0.09);
}

.premium-feature-icon.purple {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.10);
}

.premium-feature-icon.green {
  color: #16a34a;
  background: rgba(34, 197, 94, 0.11);
}

.premium-feature-icon.orange {
  color: #ea580c;
  background: rgba(249, 115, 22, 0.11);
}

.premium-feature-item strong {
  display: block;
  color: #111827;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.premium-feature-item span {
  display: block;
  margin-top: 4px;
  color: #66708d;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.premium-feature-item em {
  color: #145cff;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.premium-hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(38, 87, 190, 0.13);
}

.premium-hero-stats div {
  text-align: center;
}

.premium-hero-stats div:not(:last-child) {
  border-right: 1px solid rgba(38, 87, 190, 0.12);
}

.premium-hero-stats span {
  display: block;
  color: #10172a;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.1;
}

.premium-hero-stats small {
  display: block;
  margin-top: 6px;
  color: #66708d;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .premium-hero-card {
    padding: 28px;
  }
}

@media (max-width: 575px) {
  .premium-hero-card {
    padding: 24px;
    border-radius: 24px;
  }

  .premium-hero-card-head {
    flex-direction: column;
  }

  .premium-hero-card h3 {
    font-size: 26px;
  }

  .premium-feature-item {
    grid-template-columns: 44px 1fr;
  }

  .premium-feature-item em {
    grid-column: 2;
  }

  .premium-hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .premium-hero-stats div:not(:last-child) {
    border-right: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(38, 87, 190, 0.12);
  }
}