/* ===== Требования к файлам ===== */
.ipromo-files-section {
    padding: 80px 48px;
}

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

body{
    background: #f5f4f0!important;
}

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

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

.file-req {
    background: #f9f8f6;
    border: 1px solid #e2e0dd;
    border-radius: 14px;
    padding: 26px;
}

.file-req h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}

.file-req-desc {
    font-size: 13px;
    color: #7a7a7a;
    margin-bottom: 14px;
    line-height: 1.7;
}

.file-req-note {
    font-size: 12px;
    color: #7a7a7a;
    margin-top: 12px;
    line-height: 1.6;
}

/* Теги форматов */
.fmt-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.fmt-tag {
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #e2e0dd;
    color: #7a7a7a;
    font-weight: 500;
    font-family: monospace;
}

/* Список */
.file-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

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

/* Блок заявки */
.file-cta {
    margin-top: 28px;
    background: #fff3ee;
    border-radius: 14px;
    padding: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.file-cta-title {
    font-size: 14px;
    margin-bottom: 6px;
}

.file-cta-text {
    font-size: 13px;
    color: #7a7a7a;
}

.file-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Кнопки */
.btn-mail {
    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-mail:hover {
    background: #d44600;
    transform: translateY(-2px);
}

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

.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: 0.4375rem;
    background: #c82aee;
    color: #fff;
    padding: 0.6875rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s, transform .15s;
    text-decoration: none;
    line-height: 1;
}

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