#subscriptions-mount {
  padding: 10px 0 40px;
}

.subs-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.subs-head {
  text-align: center;
  margin-bottom: 22px;
}

.subs-kicker {
  display: inline-block;
  color: var(--brand);
  background: #e6f4f1;
  font-weight: 700;
  font-size: 12px;
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 10px;
}

.subs-head h2 {
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.subs-copy {
  max-width: 720px;
  margin: 10px auto 0;
  color: var(--muted);
}

.subs-cycle {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 18px 0 20px;
}

.cycle-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}

.cycle-btn.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.subs-state {
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  color: var(--muted);
  background: #fff;
  margin-bottom: 12px;
}

.subs-state-error {
  border-color: #ffd7d7;
  background: #fff8f8;
  color: #a12222;
}

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

.sub-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  min-height: 330px;
}

.sub-card.popular {
  border-color: var(--accent);
  box-shadow: 0 12px 34px rgba(15, 28, 26, 0.09);
}

.sub-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  font-size: 11px;
  font-weight: 700;
  background: var(--accent);
  color: #1d1a0e;
  border-radius: 999px;
  padding: 4px 10px;
}

.sub-title {
  font-size: 20px;
  font-weight: 800;
}

.sub-desc {
  margin-top: 6px;
  color: var(--muted);
  min-height: 40px;
}

.sub-price-box {
  margin-top: 16px;
}

.sub-original-price {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.sub-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.sub-price {
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  color: var(--ink);
}

.sub-period {
  font-size: 14px;
  color: var(--muted);
}

.sub-features {
  margin-top: 14px;
  padding-left: 0;
  color: var(--muted);
  flex: 1;
  list-style: none;
}

.sub-features li {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.sub-features svg {
  flex-shrink: 0;
  color: var(--brand);
}

.sub-cta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--brand);
  color: var(--brand);
  cursor: pointer;
}

.sub-card.popular .sub-cta {
  background: var(--brand);
  color: #fff;
}

@media (max-width: 980px) {
  .subs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .subs-grid {
    grid-template-columns: 1fr;
  }
}
