/* PRO-блок в Hero на главной */
.hero-pro-promo {
    margin-top: 14px;
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 200, 80, 0.12), rgba(72, 132, 255, 0.06));
    border: 1px solid rgba(255, 210, 100, 0.28);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-pro-promo__top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.hero-pro-promo__crown {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c9a227, #e8c56a);
    color: #1a1408;
    font-size: 1.1rem;
}

.hero-pro-promo__title {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #f0d78a;
    margin-bottom: 2px;
}

.hero-pro-promo__sub {
    display: block;
    font-size: 0.78rem;
    opacity: 0.85;
    line-height: 1.35;
}

.hero-pro-promo__feats {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: grid;
    gap: 6px;
}

.hero-pro-promo__feats li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    opacity: 0.9;
    line-height: 1.35;
}

.hero-pro-promo__feats li i {
    width: 16px;
    color: #f0c96a;
    font-size: 0.72rem;
    flex-shrink: 0;
    text-align: center;
}

.hero-pro-promo__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-pro-promo__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 30px;
    background: linear-gradient(135deg, #c9a227, #e8c56a);
    color: #1a1408;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.hero-pro-promo__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 200, 80, 0.25);
}

.hero-pro-promo__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #f0d78a;
    text-decoration: none;
    background: rgba(255, 200, 80, 0.08);
    border: 1px solid rgba(255, 210, 100, 0.45);
    transition: background 0.2s, border-color 0.2s, transform 0.15s, color 0.2s;
}

.hero-pro-promo__link i {
    font-size: 0.72rem;
    transition: transform 0.2s;
}

.hero-pro-promo__link:hover {
    color: #fff8e0;
    background: rgba(255, 200, 80, 0.16);
    border-color: rgba(255, 210, 100, 0.65);
    transform: translateY(-1px);
}

.hero-pro-promo__link:hover i {
    transform: translateX(3px);
}

.hero-grid__text .hero-payments {
    margin-top: 4px;
}

.filter-chip--pro {
    border-color: rgba(255, 210, 100, 0.35);
    background: rgba(255, 200, 80, 0.1);
}

.filter-chip--pro i {
    color: #f0c96a;
}

.quick-filter-chip--pro.active {
    background: rgba(255, 200, 80, 0.2);
    border-color: rgba(255, 210, 100, 0.5);
    color: #f0d78a;
}

@media (max-width: 768px) {
    .hero-pro-promo {
        padding: 12px 14px;
    }

    .hero-pro-promo__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-pro-promo__btn {
        justify-content: center;
    }

    .hero-pro-promo__link {
        justify-content: center;
    }
}
