.price-page {
  padding-bottom: 36px;
}

.price-hero {
  min-height: 360px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: clamp(44px, 6vw, 84px) 16px 26px;
  position: relative;
  overflow: hidden;
}

.price-hero::before,
.price-hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.price-hero::before {
  inset: 32% -8% auto;
  height: 190px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.82), transparent 52%),
    linear-gradient(90deg, transparent 4%, rgba(134, 161, 255, 0.3), rgba(45, 223, 255, 0.22), transparent 96%);
  filter: blur(8px);
}

.price-hero::after {
  inset: 44% 5% auto;
  height: 120px;
  border-bottom: 2px solid rgba(117, 165, 255, 0.34);
  border-radius: 50%;
}

.price-hero p {
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
  padding: 12px 42px;
  border: 1px solid rgba(40, 131, 255, 0.28);
  border-radius: 999px;
  color: #1b62ff;
  background: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 950;
  box-shadow: inset 0 1px 16px rgba(255, 255, 255, 0.82);
}

.price-hero h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: #075eea;
  font-size: clamp(82px, 13vw, 164px);
  line-height: 0.95;
  font-weight: 950;
  text-shadow: 0 14px 34px rgba(18, 104, 255, 0.18);
}

.price-hero h1 span {
  font-size: 0.62em;
}

.price-hero h1 em {
  color: #061b67;
  font-style: normal;
  font-size: clamp(32px, 4vw, 56px);
  white-space: nowrap;
}

.price-hero > strong {
  position: relative;
  z-index: 1;
  color: #263762;
  font-size: clamp(22px, 2.7vw, 34px);
  font-weight: 900;
}

.price-table {
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid rgba(80, 122, 218, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 22px rgba(255, 255, 255, 0.78),
    0 18px 42px rgba(43, 80, 158, 0.11);
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.08fr;
}

.table-head span {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: #061b67;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(235, 242, 255, 0.74));
  border-right: 1px solid rgba(75, 114, 202, 0.14);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 950;
}

.table-head span:last-child {
  color: #1268ff;
  border-right: 0;
  box-shadow: inset 0 0 0 2px rgba(18, 104, 255, 0.12);
}

.table-row span,
.table-row strong {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border-top: 1px solid rgba(75, 114, 202, 0.12);
  border-right: 1px solid rgba(75, 114, 202, 0.12);
  color: #263762;
  font-size: clamp(18px, 2.1vw, 27px);
  font-weight: 820;
}

.table-row span:first-child {
  justify-content: flex-start;
  padding-left: clamp(24px, 4vw, 64px);
  color: #25345d;
  font-weight: 900;
}

.table-row strong {
  color: #1268ff;
  border-right: 0;
  font-weight: 950;
}

.table-row strong::before {
  width: 28px;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  margin-right: 14px;
  border-radius: 50%;
  background: #1268ff;
  color: #fff;
  content: "✓";
  font-size: 18px;
}

.price-bonus {
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  padding: clamp(28px, 4vw, 56px);
  border: 2px solid rgba(255, 96, 39, 0.52);
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 28%, rgba(255, 255, 255, 0.3), transparent 12rem),
    linear-gradient(105deg, #ff322c 0%, #ff4030 58%, #ff6e2a 100%);
  box-shadow:
    inset 0 2px 18px rgba(255, 255, 255, 0.3),
    0 20px 38px rgba(255, 61, 39, 0.22);
}

.price-bonus p {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 950;
}

.price-bonus h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.18;
  font-weight: 950;
}

.price-bonus h2 span {
  color: #ffe96f;
  white-space: nowrap;
}

.price-bonus div > strong {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: clamp(17px, 2vw, 24px);
}

.bonus-gift {
  width: min(250px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 32px;
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(255, 255, 255, 0.38) 43% 58%, transparent 59%),
    linear-gradient(180deg, #ffba5f, #ff4436);
  box-shadow:
    inset 0 2px 18px rgba(255, 255, 255, 0.36),
    0 18px 34px rgba(120, 16, 8, 0.22);
  position: relative;
}

.bonus-gift::before {
  position: absolute;
  left: 18%;
  right: 18%;
  top: -20px;
  height: 58px;
  border: 18px solid #ffd66e;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  content: "";
}

.bonus-gift::after {
  position: absolute;
  right: -22px;
  bottom: 22px;
  width: 100px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 5px solid #ff7a20;
  border-radius: 50%;
  background: #ffe09c;
  color: #b9410b;
  content: "限时赠送";
  font-size: 22px;
  font-weight: 950;
  text-align: center;
}

.price-contact {
  margin: 30px 0 36px;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(80, 122, 218, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  text-align: center;
  box-shadow:
    inset 0 1px 22px rgba(255, 255, 255, 0.76),
    0 18px 42px rgba(43, 80, 158, 0.1);
}

.price-contact h2 {
  margin-bottom: 24px;
  color: #061b67;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 950;
}

.price-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.price-contact-grid a,
.price-contact-grid button {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(80, 122, 218, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f3f8ff);
  color: #061b67;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(43, 80, 158, 0.09);
}

.price-contact-grid span {
  color: #465579;
  font-size: 18px;
  font-weight: 850;
}

.price-contact-grid strong {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 950;
}

@media (max-width: 900px) {
  .price-bonus {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .price-hero {
    min-height: 300px;
    padding-top: 34px;
  }

  .price-hero p {
    padding-inline: 22px;
  }

  .price-hero h1 {
    font-size: clamp(68px, 22vw, 98px);
  }

  .price-hero h1 em {
    display: block;
    margin-top: 10px;
  }

  .price-table {
    overflow-x: auto;
  }

  .table-head,
  .table-row {
    min-width: 760px;
  }

  .price-contact-grid {
    grid-template-columns: 1fr;
  }

  .bonus-gift {
    width: 180px;
  }
}
