/* ===== Система скидок ===== */
.ipromo-discounts-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;
}

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

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

.ipromo-stag::before {
    content: '';
    width: 16px;
    height: 2px;
    background: var(--ac);
    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-discounts-desc {
    font-size: 14px;
    color: var(--mu);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 32px;
}

/* Сетка скидок */
.dis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--sf);
    border: 1px solid var(--bo);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 32px;
}

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

.dis-item {
    padding: 28px 24px;
    border-right: 1px solid var(--bo);
    text-align: center;
}

.dis-item:last-child {
    border-right: none;
}

@media (max-width: 960px) {
    .dis-item:nth-child(2) {
        border-right: none;
    }
    .dis-item:nth-child(3),
    .dis-item:nth-child(4) {
        border-top: 1px solid var(--bo);
    }
}

.dis-pct {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--ac);
}

.dis-cond {
    font-size: 12px;
    color: var(--mu);
    margin-top: 5px;
    line-height: 1.5;
}

/* Карточки */
.ipromo-discounts-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

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

.card {
    background: var(--sf2);
    border: 1px solid #e2e0dd!important;
    border-radius: 14px!important;
    padding: 26px 22px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.card:hover {
    border-color: #ff5a00!important;
    transform: translateY(-4px);
    box-shadow: 0 10px 34px rgba(255, 90, 0, 0.09);
}

.ci {
    width: 46px;
    height: 46px;
    background: var(--acl);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    transition: background 0.3s;
}

.card:hover .ci {
    background: var(--ac);
}

.card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 7px;
}

.card p {
    font-size: 12px;
    color: var(--mu);
    line-height: 1.65;
}

/* Кнопка */
.ipromo-discounts-action {
    margin-top: 28px;
}

.btn-contact {
    display: inline-block;
    background: var(--ac);
    color: #fff;
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(255, 90, 0, 0.24);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
}

.btn-contact:hover {
    background: var(--acd);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 90, 0, 0.32);
}

body {
    background-color: #f5f4f0!important;
}

section {
    margin: 0!important;
}

a:hover {
    color: #fff!important;
}