/* Дополнительные стили только для главной страницы покупки */
.hero-with-mascot {
    min-height: 320px;
    padding: clamp(18px, 3vw, 28px);
}

.hero-with-mascot .hero-content {
    width: min(42%, 460px);
}

.hero-with-mascot h1 {
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: .98;
    margin-bottom: 12px;
}

.hero-with-mascot p {
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.45;
    max-width: 430px;
}

.hero-with-mascot .hero-actions {
    margin-top: 16px;
}

.flow-panel,
.benefits-grid {
    margin-top: 22px;
}

.flow-panel {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(31, 20, 13, .64);
    box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.flow-heading {
    margin-top: 0;
    margin-bottom: 18px;
}

.flow-note {
    margin: 16px 0 0;
    color: var(--muted);
    text-align: center;
    font-weight: 700;
}

.plan-card-clickable {
    cursor: pointer;
    outline: none;
}

.plan-card-clickable:focus-visible {
    border-color: rgba(255, 179, 107, .72);
    box-shadow: 0 0 0 4px rgba(242, 122, 50, .16), 0 24px 70px rgba(0,0,0,.22);
}

.plan-description {
    margin: 0 0 16px;
    color: var(--muted);
}

.plan-card-action {
    align-self: flex-start;
    margin-top: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 14px;
}

.benefit-card {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 180px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--card);
    box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.benefit-card-wide {
    grid-row: span 2;
}

.benefit-card h2 {
    margin: 0;
    color: var(--text);
    font-size: 20px;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
}

.ping-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    margin-top: 6px;
    padding: 14px;
    border: 1px solid rgba(255, 132, 61, .18);
    border-radius: 16px;
    background: rgba(0,0,0,.14);
}

.ping-grid span {
    color: var(--muted);
}

.ping-grid strong {
    color: var(--accent-strong);
    white-space: nowrap;
}

.support-inline-link {
    font-weight: 700;
}

.support-inline-link a {
    color: var(--accent-strong);
    font-weight: 900;
}

.notice-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    justify-content: center;
}

@media (max-width: 1040px) {
    .hero-with-mascot .hero-content {
        width: min(50%, 460px);
    }
}

@media (max-width: 920px) {
    .hero-with-mascot {
        min-height: 300px;
    }

    .hero-with-mascot .hero-content {
        width: min(60%, 460px);
    }
}

@media (max-width: 720px) {
    .hero-with-mascot {
        min-height: 360px;
        padding: 20px 18px;
    }

    .flow-panel {
        padding: 16px;
        border-radius: 18px;
    }

    .benefit-card-wide {
        grid-row: auto;
    }

    .notice-actions .btn,
    .plan-card-action {
        width: 100%;
    }
}
