/* ===== Отзывы ===== */
.ipromo-reviews-section {
    --bg: #f5f4f0;
    --sf: #fff;
    --sf2: #f9f8f6;
    --ac: #ff5a00;
    --acd: #d44600;
    --acl: #fff3ee;
    --tx: #1a1a1a;
    --mu: #7a7a7a;
    --li: #b8b6b2;
    --bo: #e2e0dd;
    --bod: #cbc9c5;
    --dk: #1a1a1a;

    padding: 80px 48px;
}

body {
    background: #f5f4f0!important;
}

@media (max-width: 960px) {
    .ipromo-reviews-section {
        padding: 52px 18px;
    }
}

.ipromo-stag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff5a00;
    font-weight: 600;
    margin-bottom: 12px;
}

.ipromo-stag::before {
    content: '';
    width: 16px;
    height: 2px;
    background: #ff5a00;
    border-radius: 2px;
}

.ipromo-section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(22px, 2.8vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
}

.ipromo-reviews-desc {
    font-size: 14px;
    color: var(--mu);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 32px;
}

.ipromo-reviews-empty {
    font-size: 14px;
    color: var(--mu);
    text-align: center;
    padding: 40px 0;
}

/* Сетка отзывов */
.rev-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

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

.rev-card {
    background: var(--sf);
    border: 1px solid var(--bo);
    border-radius: 14px;
    padding: 26px;
}

.rev-stars {
    color: var(--ac);
    font-size: 14px;
    margin-bottom: 10px;
}

.rev-txt {
    font-size: 13px;
    color: var(--mu);
    line-height: 1.75;
    margin-bottom: 14px;
}

.rev-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.rev-role {
    font-size: 11px;
    color: #7a7a7a;
    margin-top: 2px;
}

/* Призыв оставить отзыв */
.ipromo-reviews-cta {
    background: #fff;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.ipromo-stag--center {
    justify-content: center;
}

.ipromo-reviews-cta-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(16px, 1.8vw, 24px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.ipromo-reviews-cta-desc {
    font-size: 14px;
    color: #7a7a7a;
    line-height: 1.8;
    margin: 0 auto 24px;
    text-align: center;
    max-width: 420px;
}

.btn-tg {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #2AABEE;
    color: #fff;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-tg:hover {
    background: #1a8dc7;
}

section {
    margin: 0!important;
}

a:hover {
    color: #fff;
}

.btn-max {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #c82aee;
    color: #fff;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
}

.btn-max:hover {
    background: #9420b0;
    transform: translateY(-1px);
    color: #fff;
}