/* CUSTOM STYLES */
.banner {
    background: #ddf2ff; 
    border-radius: 2rem;
    padding: 1.5rem;
}

.banner .row {
    height: auto !important;
    padding: 2.5rem;
}


.banner img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}


@media (max-width: 768px) {

    .banner .row {
        padding: 1.5rem 1rem;
        text-align: center; 
    }

    .banner h1 {
        font-size: 2rem !important;
    }

    .banner p {
        font-size: 1rem;
    }

    .banner a.btn {
        margin-top: 1.5rem !important;
    }

    .banner img {
        margin-top: 2rem;
        max-height: 220px;
    }
}

/* Очень маленькие устройства */
@media (max-width: 480px) {

    .banner h1 {
        font-size: 1.7rem !important;
    }

    .banner p {
        font-size: 0.95rem;
    }

    .banner img {
        max-height: 180px;
    }
}

.client-logo {
    align-content: center !important;
    padding: 0 2.5rem;
    position: relative;
}

.client-logo img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100%);
    max-width: 120px;
}

.client-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.features-section {
    padding: 80px 0;
}

.section-label {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.section-title span {
    background: #a1def8;
    padding: 0 8px;
}

.section-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 60px;
    color: #555;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    text-align: left;
    max-width: 300px;
}

.feature-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    filter: grayscale(1) contrast(3);
}

.blue {
    background: #038bd4;
}
.purple {
    background: #ca3120;
}
.green {
    background: #eabd37;
}

.feature-item h4 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 22px;
}

.feature-item p {
    color: #555;
    line-height: 1.5;
}

.clients-section {
    padding: 60px 0;
}

.clients-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.clients-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.clients-carousel {
    overflow: hidden;
    width: 80%;
}

.clients-track {
    display: flex;
    transition: transform 0.3s ease;
}

.client-logo img {
    opacity: 0.5;
    filter: grayscale(100%);
    transition: 0.3s;
    max-width: 120px;
}

.client-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.clients-arrow {
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    padding: 10px;
    opacity: 0.4;
    transition: 0.2s;
}

.clients-arrow:hover {
    opacity: 1;
}

.arrow-list {
    list-style: none;
    padding-left: 0;
}

.arrow-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #4d4d4d;
}

.arrow-list li::before {
    content: "❯";
    position: absolute;
    left: 0;
    top: 15%;
    font-size: 16px;
    color: #a5a5a5;
}

.custom-width {
    max-width: 80rem !important;
}

.custom-width header {
    max-width: 80rem !important;
}

.custom-width .secondary-navigation .navigation .nav-tabs {
    max-width: 80rem !important;
}