.report-page {
    background:
        linear-gradient(180deg, #eaf1f5 0%, #f6f8fb 42%, #eef3f6 100%);
    color: #172033;
}

.report-page,
.report-page * {
    box-sizing: border-box;
}

.report-intro {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 24px;
    max-width: 1040px;
    margin: 28px auto 24px;
    padding: 28px;
    border: 1px solid #dce5ea;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(10, 27, 40, 0.08);
}

.report-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0 42%, rgba(245, 158, 11, 0.09) 49%, transparent 58% 100%);
    transform: translateX(-80%);
    animation: reportIntroSweep 7s ease-in-out infinite;
    pointer-events: none;
}

.report-intro > * {
    position: relative;
    z-index: 1;
}

.report-intro span {
    display: inline-flex;
    align-items: center;
    height: 28px;
    margin-bottom: 12px;
    padding: 0 10px;
    border-radius: 999px;
    background: #fff3d8;
    color: #9a5a00;
    font-size: 12px;
    font-weight: 800;
}

.report-intro h2 {
    margin: 0 0 10px;
    color: #10202d;
    font-size: 25px;
    line-height: 1.35;
    letter-spacing: 0;
}

.report-intro p {
    max-width: 660px;
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

.report-intro ul {
    display: grid;
    align-content: center;
    gap: 10px;
    margin: 0;
    padding: 18px;
    border-radius: 8px;
    background: #f8fafc;
    list-style: none;
}

.report-intro li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
}

.report-intro li i {
    color: #0f766e;
}

.report-form {
    max-width: 1040px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.report-section {
    margin-bottom: 18px;
    padding: 26px;
    border: 1px solid #dce5ea;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(10, 27, 40, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.report-section:hover {
    border-color: rgba(15, 118, 110, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(10, 27, 40, 0.11);
}

.report-section-head {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    min-width: 0;
}

.report-section-head div {
    min-width: 0;
}

.report-section-head strong {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #0f766e;
    color: #fff;
    box-shadow: 0 10px 18px rgba(15, 118, 110, 0.18);
    transition: transform 220ms ease, background-color 220ms ease;
}

.report-section:hover .report-section-head strong {
    background: #f59e0b;
    transform: rotate(-3deg) scale(1.04);
}

.report-section h2 {
    margin: 0 0 6px;
    font-size: 22px;
    color: #10202d;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.report-section p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.report-grid > *,
.report-block {
    min-width: 0;
}

.report-wide {
    grid-column: 1 / -1;
}

.report-form label {
    display: grid;
    gap: 8px;
}

.report-form label span {
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.report-form em {
    color: #e11d48;
    font-style: normal;
}

.report-form input,
.report-form select,
.report-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #cfd9e2;
    border-radius: 6px;
    background: #fff;
    color: #10202d;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.report-form input,
.report-form select {
    height: 46px;
    padding: 0 12px;
}

.report-form textarea {
    padding: 13px 12px;
    resize: vertical;
    line-height: 1.7;
}

.report-form input:focus,
.report-form select:focus,
.report-form textarea:focus {
    border-color: #0f766e;
    outline: 3px solid rgba(15, 118, 110, 0.12);
    box-shadow: 0 8px 18px rgba(15, 118, 110, 0.08);
    transform: translateY(-1px);
}

.report-agree {
    margin-top: 18px;
    grid-template-columns: 18px 1fr !important;
    align-items: start;
    gap: 10px !important;
}

.report-agree input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.report-agree span {
    font-weight: 600 !important;
    line-height: 1.6;
}

.report-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 10px 0 0;
}

.report-actions a,
.report-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    height: 48px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.report-actions a {
    border: 1px solid #cfd9e2;
    background: #fff;
    color: #334155;
}

.report-actions button {
    border: 0;
    background: linear-gradient(180deg, #f7b43c 0%, #f59e0b 100%);
    color: #111827;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.report-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(245, 158, 11, 0.28);
    filter: saturate(1.05);
}

@keyframes reportIntroSweep {
    0%, 42% { transform: translateX(-85%); opacity: 0; }
    52% { opacity: 1; }
    78%, 100% { transform: translateX(85%); opacity: 0; }
}

@media (max-width: 720px) {
    .report-intro {
        grid-template-columns: 1fr;
        margin: 16px 16px 20px;
        padding: 22px;
    }

    .report-intro h2 {
        font-size: 22px;
    }

    .report-form {
        padding: 0 16px;
    }

    .report-section {
        padding: 20px;
    }

    .report-section-head {
        gap: 12px;
        margin-bottom: 18px;
    }

    .report-section-head strong {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .report-section h2 {
        font-size: 19px;
    }

    .report-grid {
        grid-template-columns: 1fr;
    }

    .report-actions {
        flex-direction: column;
    }

    .report-actions a,
    .report-actions button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .report-intro {
        margin-right: 12px;
        margin-left: 12px;
        padding: 18px;
    }

    .report-form {
        padding-right: 12px;
        padding-left: 12px;
    }

    .report-section {
        padding: 16px;
    }

    .report-section-head {
        align-items: flex-start;
    }

    .report-form input,
    .report-form select {
        height: 44px;
        font-size: 14px;
    }

    .report-form textarea {
        font-size: 14px;
    }
}
