.im-sec-report {
    background: #f8fafc;
    padding: 28px 0 64px;
}

.im-sec-report__wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.im-sec-report__hero {
    max-width: 760px;
    margin: 0 0 24px;
}

.im-sec-report__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #0f766e;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.im-sec-report__hero h1 {
    margin: 0 0 12px;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -.03em;
}

.im-sec-report__hero p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
}

.im-sec-report__alert {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
}

.im-sec-report__alert--ok {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.im-sec-report__alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.im-sec-report__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

.im-sec-report__card,
.im-sec-report__sidecard {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.im-sec-report__card {
    padding: 24px;
}

.im-sec-report__sidecard {
    padding: 20px;
    margin-bottom: 18px;
}

    .im-sec-report__sidecard h2 {
        margin: 0 0 12px;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 800;
        color: #0f172a;
    }

    .im-sec-report__sidecard p,
    .im-sec-report__sidecard li {
        font-size: 14px;
        line-height: 1.7;
        color: #334155;
    }

    .im-sec-report__sidecard ul {
        margin: 0;
        padding-left: 18px;
    }

.im-sec-report__ticket {
    margin-bottom: 22px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    border-radius: 18px;
    color: #fff;
}

    .im-sec-report__ticket span {
        display: block;
        margin-bottom: 6px;
        font-size: 12px;
        letter-spacing: .06em;
        text-transform: uppercase;
        opacity: .9;
        font-weight: 800;
    }

    .im-sec-report__ticket strong {
        display: block;
        font-size: 24px;
        line-height: 1.15;
        font-weight: 900;
        word-break: break-word;
    }

.im-sec-report__row {
    display: grid;
    gap: 16px;
}

.im-sec-report__row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.im-sec-report__field {
    margin-bottom: 16px;
}

    .im-sec-report__field label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 800;
        color: #0f172a;
    }

    .im-sec-report__field input,
    .im-sec-report__field textarea {
        width: 100%;
        box-sizing: border-box;
        border: 1px solid #cbd5e1;
        border-radius: 14px;
        background: #fff;
        padding: 14px 15px;
        font: inherit;
        color: #0f172a;
        outline: none;
    }

    .im-sec-report__field textarea {
        min-height: 110px;
        resize: vertical;
    }

        .im-sec-report__field input:focus,
        .im-sec-report__field textarea:focus {
            border-color: #14b8a6;
            box-shadow: 0 0 0 4px rgba(20, 184, 166, .12);
        }

.im-sec-report__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 8px;
}

.im-sec-report__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer;
}

.im-sec-report__btn--primary {
    background: #0f766e;
    color: #fff;
}

    .im-sec-report__btn--primary:hover {
        background: #0d675f;
    }

.im-sec-report__btn--ghost {
    background: #fff;
    color: #0f172a;
    border-color: #cbd5e1;
}

    .im-sec-report__btn--ghost:hover {
        background: #f8fafc;
    }

.im-sec-report a {
    color: #0f766e;
    text-decoration: none;
    font-weight: 700;
}

    .im-sec-report a:hover {
        text-decoration: underline;
    }

@media (max-width: 980px) {
    .im-sec-report__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .im-sec-report__wrap {
        padding: 0 16px;
    }

    .im-sec-report__hero h1 {
        font-size: 30px;
    }

    .im-sec-report__hero p {
        font-size: 16px;
    }

    .im-sec-report__row--2 {
        grid-template-columns: 1fr;
    }

    .im-sec-report__card,
    .im-sec-report__sidecard {
        border-radius: 18px;
    }

    .im-sec-report__card {
        padding: 18px;
    }

    .im-sec-report__sidecard {
        padding: 18px;
    }

    .im-sec-report__ticket strong {
        font-size: 20px;
    }

    .im-sec-report__actions {
        flex-direction: column;
    }

    .im-sec-report__btn {
        width: 100%;
    }
}
