.subscribe-shell {
  min-height: calc(100vh - 78px);
  padding: 70px clamp(24px, 7vw, 110px);
  background: linear-gradient(
    180deg,
    rgba(245, 153, 198, 0.2),
    transparent 45%
  );
}
.subscribe-heading {
  text-align: center;
  max-width: 700px;
  margin: auto;
}
.subscribe-heading h1 {
  font-size: clamp(44px, 5vw, 68px);
  letter-spacing: -3px;
  margin-bottom: 14px;
}
.subscribe-heading > p:not(.eyebrow) {
  color: var(--muted);
}
.subscribe-heading .flow {
  justify-content: center;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 55px auto 30px;
}
.plan-card {
  display: block;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 33px;
  cursor: pointer;
  transition: 0.2s;
}
.plan-card:hover,
.plan-card:has(input:checked) {
  border-color: var(--pink);
  box-shadow: 0 18px 55px rgba(77, 103, 135, 0.13);
  transform: translateY(-4px);
}
.plan-card.featured {
  background: linear-gradient(160deg, #fff 60%, rgba(245, 153, 198, 0.16));
}
.plan-card input {
  position: absolute;
  opacity: 0;
}
.radio-mark {
  position: absolute;
  right: 25px;
  top: 28px;
  width: 19px;
  height: 19px;
  border: 2px solid #c5c8ca;
  border-radius: 50%;
}
.plan-card input:checked + .radio-mark {
  border: 6px solid var(--pink);
}
.plan-card small {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  font-weight: 700;
}
.plan-card h2 {
  font-size: 42px;
  margin: 25px 0 14px;
}
.plan-card h2 em {
  font: 500 13px "Greta Arabic", Tahoma, Arial, sans-serif;
  color: var(--muted);
}
.plan-card p {
  min-height: 50px;
  color: var(--muted);
  line-height: 1.5;
}
.plan-card ul {
  list-style: none;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}
.plan-card li {
  margin: 12px 0;
  font-size: 14px;
}
.plan-card li:before {
  content: "✓";
  color: #328064;
  margin-right: 9px;
}
.popular {
  position: absolute;
  top: -13px;
  left: 25px;
  background: var(--pink);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.checkout-bar {
  max-width: 1120px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--yellow);
  padding: 23px 28px;
  border-radius: 18px;
}
.legal-terms { max-width: 1120px; margin: 0 auto 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.legal-terms summary { padding: 18px 24px; cursor: pointer; color: var(--blue); font-weight: 700; }
.legal-copy { max-height: 440px; overflow-y: auto; padding: 0 28px 28px; line-height: 1.7; }
.legal-copy h2 { font-size: 24px; }
.legal-copy h3 { margin: 24px 0 6px; font-size: 17px; }
.legal-copy p { color: var(--muted); }
.terms a { color: var(--blue); font-weight: 700; }
.terms {
  display: flex;
  gap: 10px;
  max-width: 590px;
  font-size: 13px;
  line-height: 1.4;
}
.terms input {
  accent-color: var(--blue);
}
.checkout-action {
  display: flex;
  align-items: center;
  gap: 25px;
}
.checkout-action > span {
  font-weight: 700;
}
.payment-note {
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  margin-top: 15px;
}
@media (max-width: 850px) {
  .plans {
    grid-template-columns: 1fr;
  }
  .plan-card p {
    min-height: auto;
  }
  .checkout-bar,
  .checkout-action {
    align-items: stretch;
    flex-direction: column;
  }
  .checkout-action {
    text-align: center;
  }
}
.plan-card h2 em {
  font-family: "Greta Arabic", Tahoma, Arial, sans-serif;
}
.radio-mark {
  right: auto;
  left: 25px;
}
.popular {
  left: auto;
  right: 25px;
}
.plan-card li:before {
  margin-right: 0;
  margin-left: 9px;
}
