/* ===== 3D-печать по отраслям ===== */
.ipromo-industries-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-industries-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-industries-desc {
    font-size: 14px;
    color: var(--mu);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 32px;
}

body {
    background: #f5f4f0!important;
}

/* Сетка */
.ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

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

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

/* Карточка */
.ind-card {
    background: var(--sf);
    border: 1px solid var(--bo);
    border-radius: 14px;
    padding: 26px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.ind-card:hover {
    border-color: var(--ac);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(255, 90, 0, .09);
}

.ind-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ac);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.ind-card:hover::after {
    transform: scaleX(1);
}

/* Иконка */
.ind-ic {
    font-size: 32px;
    margin-bottom: 14px;
}

/* Заголовок */
.ind-t {
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 7px;
}

/* Описание */
.ind-d {
    font-size: 12px;
    color: var(--mu);
    line-height: 1.65;
}

/* Список пунктов */
.ind-items {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 12px;
}

.ind-item {
    font-size: 11px;
    color: var(--mu);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ind-item::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--ac);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Секция "Не нашли свою сферу?" */
.ipromo-industries-cta {
    background: #fff;
    padding: 40px 0;
}

.ipromo-industries-cta-inner {
    text-align: center;
}

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

.ipromo-industries-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-industries-cta-desc {
    font-size: 14px;
    color: var(--mu);
    line-height: 1.8;
    margin: 0 auto 24px;
    text-align: center;
    max-width: 440px;
}

.ipromo-industries-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Кнопки */
.btn-contacts {
    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-contacts: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;
}

section {
    margin: 0!important;
}

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

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