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

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

.ipromo-postprocess-section {
    padding: 80px 48px;
}

@media (max-width: 960px) {
    .ipromo-postprocess-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-postprocess-desc {
    font-size: 14px;
    color: #7a7a7a;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 32px;
}

.pp-section {
    background: var(--bg);
}

.pp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

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

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

.pp-card {
    background: #f9f8f6;
    border: 1px solid #e2e0dd;
    border-radius: 14px;
    padding: 26px 22px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

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

.pp-card__icon {
    width: 46px;
    height: 46px;
    background: #fff3ee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    transition: background 0.3s;
}

.pp-card:hover .pp-card__icon {
    background: #ff5a00;
}

.pp-card__title {
    font-size: 13px;
    margin-bottom: 8px;
}

.pp-card__desc {
    font-size: 12px;
    color: #7a7a7a;
    line-height: 1.65;
    margin-bottom: 12px;
}

.pp-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 0;
    padding-left: 0;
}

.pp-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #7a7a7a;
    line-height: 1.6;
}

.pp-card__list li::before {
    content: '→';
    color: #ff5a00;
    flex-shrink: 0;
    font-size: 12px;
    margin-top: 1px;
}

.post-processing-banner {
    margin-top: 32px;
    background: #fff3ee;
    border-radius: 14px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.post-processing-banner__title {
    font-size: 15px;
    margin-bottom: 6px;
}

.post-processing-banner__desc {
    font-size: 13px;
    color: #7a7a7a;
}

.post-processing-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-calculation {
    display: inline-block;
    background: #ff5a00;
    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;
    text-decoration: none;
}

.btn-calculation:hover {
    background: #d44600;
    transform: translateY(-2px);
}

.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;
}

.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;
}