.pricing-section {
  padding: 100px 0 0;
}

.pricing-heading {
  margin-inline: auto;
  text-align: center;
}

.pricing-heading h2 {
  margin-top: 0;
  font-size: clamp(42px, 4.6vw, 60px);
}

.pricing-card {
  width: min(100%, 460px);
  min-height: 700px;
  margin: 36px auto 0;
  padding: 1px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(246,248,255,.72));
  box-shadow: 0 26px 70px rgba(15,23,42,.1), inset 0 1px rgba(255,255,255,.9);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(96,142,255,.42), rgba(255,255,255,0) 48%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pricing-card-content {
  min-height: 698px;
  padding: 42px 42px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing-plan-label {
  color: #174cc4;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.pricing-price {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  color: #111827;
  letter-spacing: -.05em;
}

.pricing-currency { font-size: 76px; font-weight: 600; line-height: .85; }
.pricing-amount { font-size: 76px; font-weight: 600; line-height: .85; }
.pricing-period { margin-left: 8px; color: #4b5563; font-size: 14px; font-weight: 550; letter-spacing: -.01em; }

.pricing-trial {
  margin: 18px 0 0;
  color: #174cc4;
  font-size: 13px;
  font-weight: 700;
}

.pricing-checkout {
  margin-top: auto;
}

.pricing-benefits {
  width: 100%;
  margin: 26px 0 0;
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-block: 1px solid rgba(15,23,42,.09);
  list-style: none;
  text-align: left;
}

.pricing-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.35;
}

.pricing-benefits li::before {
  content: "✓";
  flex: 0 0 auto;
  color: #2765e7;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.pricing-card .button {
  width: 100%;
  min-height: 58px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 999px;
}
.pricing-card .button svg { fill: none; }
.pricing-renewal { margin: 18px 0 0; color: #4b5563; font-size: 12px; }
.pricing-trust { margin: 22px 0 0; display: flex; align-items: center; gap: 6px; color: #5e6878; font-size: 11px; }
.pricing-trust svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
