/* ---------- Plan cards: grid ---------- */
.aurora-grid-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.aurora-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 10.819px;
  color: #fff;
}

/* ---------- Plan cards: card body (icons + copy + background photo) ---------- */
.aurora-card {
  position: relative;
  flex: 1;
  padding: 17px 15px 10px 15px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: color;
  box-shadow: 0 6.762px 6.897px 0 rgba(0, 0, 0, 0.5);
  border-radius: 10.819px;
}
.aurora-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    radial-gradient(#fff 0.7px, transparent 0.8px),
    radial-gradient(#fff 0.5px, transparent 0.6px);
  background-size:
    17px 17px,
    29px 29px;
  background-position:
    2px 4px,
    11px 15px;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* ---------- "Most popular" badge ---------- */
.popular-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 155px;
  height: 93px;
  padding: 15px;
  border-radius: 13px;
  background: linear-gradient(
    180deg,
    rgba(255, 0, 0, 0.78) 0%,
    rgba(140, 0, 0, 0.78) 77.9%
  );
  box-shadow: 5px 4px 5.8px 0 rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4.05px);
  z-index: 2;
  font-size: 20px;
  line-height: 1.02;
  font-weight: 800;
}
.popular-badge-icon {
  margin-bottom: 6px;
}
.popular-badge-icon svg {
  display: block;
  width: 20px;
  height: 22px;
}

/* ---------- Plan cards: top icon row ---------- */
.icons {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 43px;
  margin-bottom: 36px;
}
.icon-monitor svg {
  width: 22px;
  height: 20px;
}
.icon-logo svg {
  width: 38px;
  height: 42px;
}

/* ---------- Plan cards: copy (title, speed, ideal-for list) ---------- */
.content {
  position: relative;
  z-index: 1;
}
.content h2 {
  margin: 0 0 12px;
  font-size: 35px;
  line-height: 1.02;
  letter-spacing: -1.3px;
}
.plan-speed {
  font-size: 16px;
  line-height: 1.04;
  font-weight: 700;
}
.plan-ideal-label {
  margin-top: 12px;
  font-size: 17px;
  text-transform: uppercase;
}
.plan-ideal-list {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.45;
}
.plan-ideal-list li {
  padding-left: 2px;
}

/* ---------- Pricing panel ---------- */
/* border-color / background-color are set inline per plan by the widget */
.aurora-pricing {
  border-style: solid;
  border-width: 0 1.352px 1.352px 1.352px;
  border-radius: 0 0 10.819px 10.819px;
  box-shadow: 0 5.41px 5.41px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  width: calc(100% - 24px);
  margin: 0 auto;
}

/* Regular (struck-through-style) price, shown above the discounted panel */
/* color is set inline per plan by the widget */
.regular-price {
  font-family: Lato, Arial, Helvetica, sans-serif;
  font-size: 45px;
  font-style: normal;
  font-weight: 900;
  line-height: 35px;
  letter-spacing: -2.286px;
  text-transform: uppercase;
  position: relative;
  display: block;
  top: 12px;
  padding: 0 20px;
}

/* Discounted price panel (frosted-glass promo price) */
.discounted-price {
  border-radius: 0 0 10px 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 140, 0, 0.78) 0%,
    rgba(153, 23, 0, 0.78) 77.9%
  );
  backdrop-filter: blur(4.05px);
  padding: 10px 8px;
}
.price-label {
  display: block;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}
.price-label strong {
  font-size: 19px;
}
.price-value {
  display: block;
  margin-top: 7px;
  font-size: 29px;
  line-height: 0.9;
  font-weight: 700;
}
.price-period {
  color: #e6e6e6;
  font-family: Lato, Arial, Helvetica, sans-serif;
  font-size: 16.77px;
  font-style: normal;
  font-weight: 900;
  line-height: 105%;
  letter-spacing: -0.671px;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .aurora-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .aurora-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .content h2 {
    font-size: 30px;
  }
  .regular-price {
    font-size: 36px;
    line-height: 1;
  }
}
