/* Clients page — hero mirrors the shared page-hero look, plus a logo grid. */

/* Hero */
.clients-hero {
    position: relative;
    padding: 200px 0 100px;
    background-color: #0e2b3d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
}

.clients-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 18, 28, 0.85) 0%, rgba(10, 18, 28, 0.62) 55%, rgba(10, 18, 28, 0.3) 100%);
}

.clients-hero .container {
    position: relative;
    z-index: 2;
}

.clients-hero__inner {
    max-width: 720px;
}

.clients-hero__small-title {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: #c54142;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.clients-hero__small-line {
    display: block;
    width: 48px;
    height: 2px;
    background: #c54142;
    flex-shrink: 0;
}

.clients-hero__title {
    margin: 0 0 20px;
    color: #fff;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
}

.clients-hero__title p {
    margin: 0;
}

.clients-hero__description {
    max-width: 620px;
    margin-bottom: 32px;
    color: hsla(0, 0%, 100%, 0.88);
    font-size: 17px;
    line-height: 1.75;
}

.clients-hero__description p {
    margin: 0 0 10px;
}

.clients-hero__description p:last-child {
    margin-bottom: 0;
}

.clients-hero__breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: hsla(0, 0%, 100%, 0.78);
}

.clients-hero__breadcrumbs a {
    color: hsla(0, 0%, 100%, 0.78);
    text-decoration: none;
    transition: color 0.25s ease;
}

.clients-hero__breadcrumbs a:hover {
    color: #fff;
}

.clients-hero__breadcrumbs-separator {
    color: hsla(0, 0%, 100%, 0.55);
}

.clients-hero__breadcrumbs-current {
    color: #fff;
}

/* Logo grid */
.clients-logos {
    padding: 90px 0;
}

.clients-logos__title {
    margin: 0 0 40px;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #0e2b3d;
}

.clients-logos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.clients-logos__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    padding: 30px;
    background: #fff;
    border: 1px solid #e6e9ee;
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.clients-logos__image {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.clients-logos__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(14, 43, 61, 0.1);
    border-color: #d9dee5;
}

.clients-logos__item:hover .clients-logos__image {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 991px) {
    .clients-hero {
        padding: 150px 0 70px;
    }

    .clients-hero__title {
        font-size: 52px;
    }

    .clients-logos {
        padding: 64px 0;
    }

    .clients-logos__title {
        margin-bottom: 32px;
        font-size: 30px;
    }

    .clients-logos__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .clients-hero {
        padding: 110px 0 54px;
    }

    .clients-hero__small-title {
        gap: 12px;
        margin-bottom: 14px;
        font-size: 13px;
    }

    .clients-hero__title {
        margin-bottom: 16px;
        font-size: 34px;
    }

    .clients-hero__description {
        margin-bottom: 24px;
        font-size: 15px;
    }

    .clients-logos {
        padding: 48px 0;
    }

    .clients-logos__title {
        font-size: 26px;
    }

    .clients-logos__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .clients-logos__item {
        min-height: 110px;
        padding: 20px;
    }

    .clients-logos__image {
        max-height: 54px;
    }
}
