.plans-page {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-status-card,
.plan-tips-card,
.plan-card {
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--app-shadow);
}

.plan-status-card {
    padding: 20px 18px;
    background:
        radial-gradient(circle at top right, rgba(255, 190, 218, 0.6), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #fff6fa 100%);
}

.plan-status-card__eyebrow,
.plan-tips-card__eyebrow,
.plan-card__eyebrow {
    margin: 0 0 8px;
    color: #b03072;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-status-card__title {
    margin: 0;
    color: #23252b;
    font-size: 24px;
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.plan-status-card__copy,
.plan-tips-card__copy,
.plan-card__copy {
    margin: 10px 0 0;
    color: #5f6575;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.plan-status-card__progress {
    margin-top: 18px;
}

.plan-progress__track {
    width: 100%;
    height: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(63, 54, 197, 0.12);
}

.plan-progress__bar {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #362fc1 0%, #e0438d 100%);
    transition: width 0.45s ease;
}

.plan-progress__meta {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #23252b;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 600;
}

.plan-tips-card {
    padding: 18px;
}

.plans-grid {
    display: grid;
    gap: 14px;
}

.plan-card {
    padding: 18px;
    border: 1px solid rgba(63, 54, 197, 0.08);
}

.plan-card.is-active {
    border-color: rgba(176, 48, 114, 0.24);
    box-shadow: 0 14px 28px rgba(176, 48, 114, 0.12);
}

.plan-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.plan-card__title {
    margin: 0;
    color: #23252b;
    font-size: 22px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.plan-card__badge {
    min-width: 74px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(63, 54, 197, 0.1);
    color: #362fc1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
}

.plan-card__price {
    margin: 14px 0 0;
    color: #23252b;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.plan-card__meta {
    margin: 10px 0 0;
    color: #727b8d;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}

.plan-card__button {
    width: 100%;
    min-height: 52px;
    margin-top: 16px;
    border-radius: 999px;
    background: #362fc1;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

.plan-card__button:disabled {
    opacity: 0.72;
    cursor: wait;
}

.plan-card__button.is-secondary {
    background: rgba(54, 47, 193, 0.08);
    color: #362fc1;
}

@media (max-width: 390px) {
    .plan-status-card,
    .plan-tips-card,
    .plan-card {
        border-radius: 20px;
    }

    .plan-status-card,
    .plan-tips-card,
    .plan-card {
        padding: 16px;
    }

    .plan-status-card__title {
        font-size: 22px;
    }

    .plan-card__title {
        font-size: 20px;
    }

    .plan-card__price {
        font-size: 30px;
    }

    .plan-progress__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
