.home-clients-section {
    position: relative;
    overflow: hidden;
    padding: 70px max(4vw, 20px);
    background: linear-gradient(135deg, #12362e, #1e5043);
    color: #fff;
}

.home-clients-section::before,
.home-clients-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: #ffffff08;
}

.home-clients-section::before {
    width: 420px;
    height: 420px;
    top: -250px;
    right: -120px;
}

.home-clients-section::after {
    width: 300px;
    height: 300px;
    bottom: -210px;
    left: -90px;
}

.home-clients-section .clients-inner {
    position: relative;
    z-index: 1;
}

.home-clients-section .clients-heading {
    margin-bottom: 34px;
}

.home-clients-section .clients-heading > span {
    color: #ff9b77;
}

.home-clients-section .clients-heading h2 {
    color: #fff;
    font-size: 34px;
}

.home-clients-section .clients-heading p {
    max-width: 660px;
    margin: 0 auto;
    color: #dce9e5;
    line-height: 1.7;
}

.home-clients-count {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    padding: 7px 14px;
    border: 1px solid #ffffff26;
    border-radius: 30px;
    background: #ffffff0d;
    color: #eaf3f0;
    font-size: 12px;
}

.home-clients-count strong {
    color: #ff9b77;
    font: 800 17px Manrope;
}

.home-clients-section .home-clients-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1200px;
    margin: auto;
}

.home-clients-section .home-clients-grid.single {
    grid-template-columns: minmax(0, 400px);
    justify-content: center;
}

.home-clients-section .home-clients-grid.pair {
    grid-template-columns: repeat(2, minmax(0, 400px));
    justify-content: center;
}

.home-client-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 360px;
    flex-direction: column;
    padding: 24px;
    border: 1px solid #ffffff24;
    border-radius: 18px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 18px 45px #061c1630;
}

.home-client-card.featured {
    border: 2px solid #ff8b61;
    box-shadow: 0 20px 48px #061c1645, 0 0 0 4px #ff8b6117;
}

.home-client-badge {
    align-self: flex-start;
    margin: -10px 0 15px;
    padding: 6px 10px;
    border-radius: 30px;
    background: #fff0e8;
    color: #c13d14;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.home-client-card .home-client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 105px;
    margin-bottom: 19px;
    padding: 15px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fafafa;
    transition: .2s;
}

.home-client-card .home-client-logo:hover {
    transform: translateY(-2px);
    border-color: #ffc7b6;
}

.home-client-card .home-client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

.home-client-profile h3 {
    margin: 0 0 6px;
    color: #193c33;
    font: 800 20px Manrope;
}

.home-client-type {
    margin: 0 0 13px;
    color: #e14a1d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.home-client-description {
    margin: 0;
    color: #68736e;
    font-size: 13px;
    line-height: 1.65;
}

.home-client-card blockquote {
    margin: 18px 0 0;
    padding: 14px 15px;
    border-left: 3px solid #ff8b61;
    border-radius: 0 9px 9px 0;
    background: #fff6f2;
    color: #58615d;
    font-size: 12px;
    font-style: italic;
    line-height: 1.6;
}

.home-client-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    color: #d73f14;
    font-size: 13px;
    font-weight: 800;
}

.home-client-link span {
    font-size: 17px;
}

.home-clients-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 900px;
    margin: 34px auto 0;
    padding: 18px 22px;
    border: 1px solid #ffffff26;
    border-radius: 14px;
    background: #ffffff0c;
}

.home-clients-cta p {
    margin: 0;
    color: #eaf3f0;
}

.home-clients-cta .btn {
    flex: 0 0 auto;
    border-radius: 25px;
    background: #ff4d1c;
}

.home-clients-cta .btn:hover {
    background: #e43e11;
}

@media (max-width: 1000px) {
    .home-clients-section .home-clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .home-clients-section {
        padding: 48px 12px;
    }

    .home-clients-section .clients-heading h2 {
        font-size: 27px;
    }

    .home-clients-section .home-clients-grid,
    .home-clients-section .home-clients-grid.single,
    .home-clients-section .home-clients-grid.pair {
        grid-template-columns: 1fr;
    }

    .home-client-card {
        min-height: 0;
        padding: 20px;
    }

    .home-client-card .home-client-logo {
        height: 95px;
        padding: 13px;
    }

    .home-clients-cta {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .home-clients-cta .btn {
        width: 100%;
    }
}
