/* =========================================================================
   Landing — секция «Цены».
   ========================================================================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 380px));
    gap: 1.5rem;
    justify-content: center;
}

.plan {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
}

.plan--featured {
    border-color: rgba(0, 212, 170, 0.5);
    background: rgba(0, 212, 170, 0.06);
}

.plan__tag {
    position: absolute;
    top: -0.85rem;
    left: 2.25rem;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #00d4aa, #7c3aed);
}

.plan__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading);
    margin: 0 0 0.75rem;
}

.plan__price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--heading);
}

.plan__price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.plan__meta {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0.4rem 0 1.5rem;
    min-height: 1.4em;
}

.plan__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    gap: 0.7rem;
}

.plan__features li {
    position: relative;
    padding-left: 1.7rem;
    font-size: 0.98rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.plan__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary, #00d4aa);
    font-weight: 700;
}

.plan .lp-btn {
    margin-top: auto;
    width: 100%;
}

.pricing__note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}
