.lang-scroll {
    max-width: 1440px;
    margin: 60px auto;
    margin-bottom: 0;	
    overflow: hidden;
    text-align: center;
    color: #fff;
    padding: 20px 0;
}

.lang-scroll h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.scroll-container {
   }

.scroll-row {
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
    animation: scroll-left 40s linear infinite;
}

.scroll-row.reverse {
    animation: scroll-right 50s linear infinite;
}

.scroll-row li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #222;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 14px;
    white-space: nowrap;
    color: #fff;
    min-width: fit-content;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@keyframes scroll-right {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.cta-gradient {
    background: linear-gradient(130deg, #66A8F3, #0052D4, #66A8F3)!important; /* новый синий трёхцветный */
    color: #fff; /* белый текст */
    text-align: center;
    padding: 80px 20px;
    border-radius: 16px;
    margin: 60px auto;
    max-width: 1000px;
}

.cta-gradient h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.cta-gradient p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    color: #fff;
}

.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #fff; /* белый фон */
    color: #0052D4;   /* глубокий синий текст */
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(102,168,243,0.6), 0 0 30px rgba(0,82,212,0.4); /* синее сияние */
}

.cta-btn:hover {
    background: #f3f3f3;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.9), 0 0 45px rgba(0,82,212,0.6); /* сильнее синее сияние */
}

.reviews-marquee {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 20px;
    animation: scroll-left 40s linear infinite;
}

.review-card {
    flex: 0 0 45%;
    min-width: 45%;
    padding: 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    text-align: center;
}

.review-card h4 {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.8;
}

/* На мобилке по 1 карточке */
@media (max-width: 768px) {
    .review-card {
        flex: 0 0 80%;
        min-width: 80%;
    }
}

/* keyframes для бесконечного движения */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.reviews-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* полупрозрачные градиентные края */
.reviews-marquee::before,
.reviews-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px; /* ширина зоны затухания */
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-marquee::before {
    left: 0;
    background: linear-gradient(to right, #151515 0%, transparent 100%);
}

.reviews-marquee::after {
    right: 0;
    background: linear-gradient(to left, #151515 0%, transparent 100%);
}


/* Обертка для кнопок магазинов */
.store-buttons {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin: 20px auto 0;
    max-width: 320px; /* ширина как у кнопки */
}

/* Каждая кнопка занимает половину */
.store-buttons a {
    flex: 1;
}

.store-buttons a img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.store-buttons a img:hover {
    transform: scale(1.05);
}