.plans-page {
  min-height: 100vh;
}

.plans-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.plans-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--tb-ink);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.plans-brand img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
}

.plans-hero {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(15, 118, 110, 0.18), transparent 32%),
    linear-gradient(135deg, #12314a 0%, #15425c 48%, #0f766e 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.22);
}

.plans-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 0.9rem;
}

.plans-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.plans-body {
  max-width: 58rem;
  font-size: 1.02rem;
  line-height: 1.68;
  opacity: 0.9;
}

.plans-channel-card {
  border-radius: 24px;
}

.plans-channel-message {
  color: var(--tb-ink);
  font-size: 1rem;
  line-height: 1.6;
}

.plan-card {
  height: 100%;
  border-radius: 26px;
  border: 1px solid rgba(17, 33, 54, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.08);
}

.plan-card.is-recommended {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 24px 48px rgba(15, 118, 110, 0.12);
}

.plan-code {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5b6b7e;
}

.plan-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--tb-ink);
}

.plan-description {
  color: #5b6b7e;
  min-height: 3.8rem;
}

.plan-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.plan-price-card {
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.03);
  padding: 0.9rem 0.85rem;
}

.plan-price-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7a8b;
  margin-bottom: 0.35rem;
}

.plan-price-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--tb-ink);
}

.plan-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.plan-highlight-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--tb-ink);
  font-size: 0.82rem;
  font-weight: 600;
}

.plan-offers {
  color: #5b6b7e;
  font-size: 0.88rem;
  line-height: 1.55;
}

.plan-footer-note {
  color: #6b7a8b;
  font-size: 0.86rem;
  line-height: 1.55;
}

@media (max-width: 767.98px) {
  .plan-price-grid {
    grid-template-columns: 1fr;
  }
}
