.products-page {
    padding: 40px 0 56px;
    background:
        radial-gradient(75% 130% at 0 50%, rgba(15, 111, 126, 0.34) 0%, rgba(15, 111, 126, 0) 56%),
        radial-gradient(75% 130% at 100% 50%, rgba(15, 111, 126, 0.34) 0%, rgba(15, 111, 126, 0) 56%),
        linear-gradient(180deg, #242046 0%, #231f4a 62%, #252149 100%);
}

.products-page__inner {
    max-width: 1320px;
}

.products-page__hero {
    border-radius: 32px;
    background: linear-gradient(90deg, rgba(22, 103, 136, 0.88) 0%, rgba(46, 43, 112, 0.92) 40%, rgba(38, 35, 90, 0.96) 100%);
    box-shadow: 0 14px 34px rgba(13, 15, 46, 0.34);
    padding: 32px 28px;
}

.products-page__title {
    margin: 0;
    color: #f2f4f8;
    text-align: center;
    font-size: clamp(34px, 3vw, 56px);
    line-height: 1.14;
    font-weight: 700;
}

.products-page__tabs {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.products-page__tab {
    min-height: 58px;
    border: 1px solid rgba(242, 85, 44, 0.45);
    border-radius: 999px;
    background: rgba(246, 246, 246, 0.95);
    color: #202634;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.products-page__tab:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(12, 18, 44, 0.18);
}

.products-page__cards {
    margin-top: 28px;
}

.products-page__card {
    border: 1px solid rgba(242, 85, 44, 0.45);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(14, 18, 47, 0.14);
    padding: 30px 24px;
}

.products-page__card:not(:last-child) {
    margin-bottom: 60px;
}

.products-page__card-title {
    margin: 0;
    margin-bottom: 40px;
    color: #151d4f;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.01em;
    position: relative;
    padding-bottom: 16px;
    text-wrap: balance;
}

.products-page__card-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: clamp(120px, 40%, 220px);
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f2552c 0%, #f2552c 52%, #4f3db9 100%);
    box-shadow: 0 6px 14px rgba(79, 61, 185, 0.2);
}

.products-page__content {
    margin-top: 20px;
    color: #2d3442;
    font-size: 20px;
    line-height: 1.45;
}

.products-page__content p {
    margin: 0 0 12px;
}

.products-page__content p:last-child {
    margin-bottom: 0;
}

.products-page__content a {
    color: #1f3fdf;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.products-page__content ul {
    margin: 0;
    padding-left: 22px;
    display: grid;
    gap: 10px;
}

.products-page__card-list-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.products-page__card-list-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.products-page__card-list-item-image-wrapper {
    flex: 0 1 30%;
}

.products-page__card-list-item-content {
    flex: 0 1 70%;
}

.products-page__card-list-item-title-about {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
}

.products-page__card-list-item-title-info {
    font-size: 16px;
    line-height: 1.2;
}

.products-page__card-list-item-title-about,
.products-page__card-list-item-title-info {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.products-page__card-list-item-title-about:hover,
.products-page__card-list-item-title-info:hover {
    color: #f4572c;
}

@media (max-width: 1200px) {
    .products-page__cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .products-page {
        padding: 24px 0 34px;
    }

    .products-page__hero {
        border-radius: 20px;
        padding: 22px 14px;
    }

    .products-page__tabs {
        grid-template-columns: 1fr;
        margin-top: 16px;
        gap: 10px;
    }

    .products-page__tab {
        font-size: 17px;
        min-height: 50px;
    }

    .products-page__cards {
        margin-top: 16px;
        gap: 14px;
    }

    .products-page__card {
        border-radius: 18px;
        padding: 20px 14px;
    }

    .products-page__content {
        font-size: 18px;
    }

    .products-page__card-title {
        padding-bottom: 12px;
    }

    .products-page__card-title::after {
        height: 3px;
        width: 140px;
    }
}

@media (max-width: 768px) {
    .products-page__card-title {
        font-size: 36px
    }
}

@media (max-width: 480px) {
    .products-page__card-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .products-page__card-list-item {
        gap: 10px;
    }
    .products-page__card:not(:last-child) {
        margin-bottom: 30px;
    }
    .products-page__card-list-item-title-about {
        font-size: 17px;
    }
}
