:root {
    --bg: #f8f7f4;
    --surface: #ffffff;
    --surface-alt: #faf5ef;
    --text: #1a2332;
    --text-muted: #6b6560;
    --accent: #c0392b;
    --accent-soft: #e74c3c;
    --accent-bg: #fdf0ee;
    --border: #e8e2da;
    --border-strong: #d4ccc2;
    --tag-bg: #f0ebe4;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04), 0 1px 2px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .06), 0 2px 6px rgba(0, 0, 0, .04);
    --radius: 14px;
    --radius-sm: 8px;
}

/* ── Section wrapper ── */
.no-repair {
    /*max-width: 880px;*/
    margin: 0 auto;
    padding: 56px 24px 64px;
}

/* ── Header ── */
.no-repair__header {
    text-align: center;
    margin-bottom: 40px;
}

.no-repair__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-bg);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.no-repair__badge svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.h2 span {
    color: var(--accent);
}

.no-repair__subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.55;
}

/* ── Cards grid ── */
.no-repair__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ── Card ── */
.no-repair__card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px 24px;
    position: relative;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    display: flex;
    flex-direction: column;
}

.no-repair__card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.no-repair__card--wide {
    grid-column: 1 / -1;
}

.no-repair__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 16px;
    background: var(--accent-bg);
    color: var(--accent);
}

.no-repair__card-icon svg {
    width: 22px;
    height: 22px;
}

.no-repair__card-num {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--border-strong);
    letter-spacing: .04em;
}

.no-repair__card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--text);
}

.no-repair__card-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    flex-grow: 1;
}

.no-repair__card-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 4px 10px;
    border-radius: 6px;
    align-self: flex-start;
    background: var(--tag-bg);
    color: var(--text-muted);
}

.no-repair__card-tag--red {
    background: var(--accent-bg);
    color: var(--accent);
}

/* ── Bottom note ── */
.no-repair__footer {
    margin-top: 32px;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.no-repair__footer-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #388e3c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-repair__footer-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}

.no-repair__footer-text strong {
    color: var(--text);
    font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .no-repair {
        padding: 40px 16px 48px;
    }

    .no-repair__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .no-repair__card {
        padding: 22px 20px 20px;
    }

    .no-repair__footer {
        flex-direction: column;
        gap: 10px;
        padding: 18px 20px;
        align-items: flex-start;
    }

    .no-repair__subtitle {
        font-size: 15px;
    }
}