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

.ipromo-prices-content {
    background: var(--bg);
}

/* Таблица */
.ipromo-prices-table-wrap {
    margin-bottom: 24px;
}

.ptable {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    background: #f5f4f0;
}

.ptable th {
    background: var(--dk);
    color: #fff;
    padding: 13px 18px;
    text-align: left;
    font-family: 'Unbounded', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ptable th:first-child {
    border-radius: 10px 0 0 0;
}

.ptable th:last-child {
    border-radius: 0 10px 0 0;
}

.ptable td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--bo);
}

.ptable tr:last-child td {
    border-bottom: none;
}

.ptable tr:hover td {
    background: var(--acl);
}

.ptable td:last-child {
    color: var(--ac);
    font-weight: 500;
}

/* Карточки */
.ipromo-prices-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

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

.card {
    background: var(--sf2);
    border: 1px solid var(--bo);
    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: var(--ac);
    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;
}

.card a {
    color: var(--ac);
    text-decoration: none;
}

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

.btn-calc {
    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-calc:hover {
    background: var(--acd);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 90, 0, 0.32);
}

body {
    background: #f5f4f0!important;
}
a:hover{
    color: #fff!important;
}

section{
    margin: 0!important;
}