:root {
    --eci_cat_bg: #f4f4f9;
    --eci_cat_bg_soft: #ecf0f1;
    --eci_cat_panel: #ffffff;
    --eci_cat_primary: #2c3e50;
    --eci_cat_primary_soft: #34495e;
    --eci_cat_border: #d9e2ea;
    --eci_cat_text: #243746;
    --eci_cat_text_soft: #627384;
    --eci_cat_accent: #d8c08d;
    --eci_cat_shadow: 0 18px 40px rgba(29, 45, 61, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.eci-cat-body {
    margin: 0;
    min-height: 100vh;
    padding: 32px 24px 40px;
    background: linear-gradient(180deg, var(--eci_cat_bg) 0%, var(--eci_cat_bg_soft) 100%);
    color: var(--eci_cat_text);
    font-family: "Segoe UI", Arial, sans-serif;
}

.eci-cat-page {
    max-width: 1440px;
    margin: 0 auto;
}

.eci-cat-hero {
    padding: 28px 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--eci_cat_primary) 0%, var(--eci_cat_primary_soft) 100%);
    color: #ffffff;
    box-shadow: var(--eci_cat_shadow);
}

.eci-cat-hero__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--eci_cat_accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.eci-cat-hero__title {
    margin: 0;
    font-size: 34px;
    line-height: 1.1;
}

.eci-cat-hero__text {
    max-width: 760px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.6;
}

.eci-cat-card {
    margin-top: 22px;
    padding: 22px 24px;
    border: 1px solid var(--eci_cat_border);
    border-radius: 18px;
    background: var(--eci_cat_panel);
    box-shadow: 0 10px 28px rgba(37, 53, 70, 0.08);
}

.eci-cat-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: stretch;
}

.eci-cat-summary__item {
    min-width: 200px;
    padding: 16px 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fbfd 0%, #f2f6fa 100%);
    border: 1px solid #e0e8ef;
}

.eci-cat-summary__item--soft {
    background: #fbfcfd;
}

.eci-cat-summary__label {
    display: block;
    margin-bottom: 6px;
    color: var(--eci_cat_text_soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eci-cat-summary__value {
    color: var(--eci_cat_primary);
    font-size: 28px;
    font-weight: 700;
}

.eci-cat-summary__value--small {
    font-size: 20px;
}

.eci-cat-table-wrap {
    overflow-x: auto;
    border: 1px solid #dfe7ee;
    border-radius: 16px;
    background: #fbfcfd;
}

.eci-cat-table {
    width: 100%;
    min-width: 1080px;
    border-collapse: collapse;
    background: #ffffff;
    color: var(--eci_cat_text);
    font-size: 14px;
}

.eci-cat-table th,
.eci-cat-table td {
    padding: 13px 16px;
    border-bottom: 1px solid #e4ebf1;
    text-align: left;
    vertical-align: top;
    line-height: 1.5;
}

.eci-cat-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--eci_cat_primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eci-cat-table tbody tr:nth-child(even) td {
    background: #f8fafc;
}

.eci-cat-table tbody tr:hover td {
    background: #eef4f8;
}

.eci-cat-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 720px) {
    .eci-cat-body {
        padding: 20px 14px 28px;
    }

    .eci-cat-hero {
        padding: 22px 20px;
        border-radius: 16px;
    }

    .eci-cat-hero__title {
        font-size: 28px;
    }

    .eci-cat-card {
        padding: 18px;
        border-radius: 16px;
    }

    .eci-cat-summary__item {
        width: 100%;
    }
}
