.power-hero {
    background: linear-gradient(135deg, #002b74 0%, #004c91 62%, #7cac00 160%);
    color: #fff;
}

.power-hero__inner {
    width: min(1300px, calc(100% - 40px));
    min-height: 380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    align-items: center;
    gap: 64px;
}

.power-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.2;
}

.power-hero p {
    max-width: 800px;
    margin: 0;
    font-size: clamp(17px, 1.8vw, 22px);
    line-height: 1.8;
    color: rgba(255, 255, 255, .88);
}

.power-hero img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 10px;
    box-shadow: 0 20px 44px rgba(0, 16, 48, .35);
}

.power-main {
    width: min(1300px, calc(100% - 40px));
    margin: 0 auto;
    padding: 64px 0 80px;
}

.power-intro {
    max-width: 920px;
    margin-bottom: 32px;
}

.power-intro h2 {
    margin: 0 0 12px;
    color: #002b74;
    font-size: clamp(28px, 3vw, 40px);
}

.power-intro p {
    margin: 0;
    color: #5e6470;
    font-size: 17px;
    line-height: 1.8;
}

.power-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 30px;
}

.power-filter {
    padding: 10px 17px;
    border: 1px solid #cfd8e6;
    border-radius: 2px;
    background: #fff;
    color: #344054;
    cursor: pointer;
    font: inherit;
    transition: border-color .2s, background .2s, color .2s;
}

.power-filter:hover,
.power-filter:focus-visible {
    border-color: #7cac00;
    outline: none;
}

.power-filter.is-active {
    border-color: #002b74;
    background: #002b74;
    color: #fff;
}

.power-table-wrap {
    overflow-x: auto;
    border: 1px solid #dfe5ec;
    box-shadow: 0 12px 34px rgba(0, 43, 116, .07);
}

.power-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.power-table th,
.power-table td {
    padding: 16px 14px;
    border-bottom: 1px solid #e8edf2;
    text-align: left;
    vertical-align: top;
}

.power-table th {
    background: #f4f7fb;
    color: #344054;
    font-size: 14px;
    white-space: nowrap;
}

.power-table tr:last-child td {
    border-bottom: 0;
}

.power-table tbody tr:hover {
    background: #f9fbfd;
}

.power-model {
    color: #002b74;
    font-weight: 700;
    white-space: nowrap;
}

.power-category {
    color: #667085;
    font-size: 14px;
}

.power-contact {
    display: inline-block;
    color: #6f9600;
    font-weight: 600;
    white-space: nowrap;
}

.power-contact:hover {
    color: #002b74;
}

.power-note {
    margin-top: 22px;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .power-hero__inner {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 46px 0;
    }

    .power-hero img {
        max-height: 190px;
    }

    .power-main {
        padding-top: 42px;
    }

    .power-table-wrap {
        overflow: visible;
        border: 0;
        box-shadow: none;
    }

    .power-table,
    .power-table tbody {
        display: block;
    }

    .power-table thead {
        display: none;
    }

    .power-table tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 16px;
        margin-bottom: 16px;
        padding: 20px;
        border: 1px solid #dfe5ec;
        background: #fff;
        box-shadow: 0 8px 22px rgba(0, 43, 116, .06);
    }

    .power-table td {
        display: block;
        padding: 0;
        border: 0;
        font-size: 14px;
    }

    .power-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 3px;
        color: #8a94a3;
        font-size: 12px;
    }

    .power-table td:first-child,
    .power-table td:nth-child(2),
    .power-table td:last-child {
        grid-column: 1 / -1;
    }
}
