.lp-section {
    padding: 60px 20px;
}

.lp-container {
    max-width: 1200px;
    margin: 0 auto;
}

.lp-header {
    text-align: center;
    margin-bottom: 50px;
}

.lp-main-title {
    font-family: 'SatoshiBlack';
    font-size: 28px;
    margin-bottom: 14px;
    color: #101114;
}

.lp-main-para {
    font-family: 'SatoshiRegular';
    font-size: 15px;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
    color: rgba(16, 17, 20, 0.65);
}

.lp-card {
    background: #e9f0f3;
    border-radius: 30px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    border: 2px solid rgba(120, 170, 200, 0.35);
    overflow: hidden;
}

.lp-content {
    padding: 0 0 10px;
}

.lp-eyebrow {
    font-size: 14px;
    letter-spacing: 2px;
    color: #b58a57;
    display: inline-block;
    margin-bottom: 14px;
}

.lp-title {
    font-family: 'SatoshiBlack';
    font-size: 22px;
    margin-bottom: 12px;
    color: #101114;
}

.lp-description {
    font-family: 'SatoshiRegular';
    font-size: 16px;
    line-height: 1.6;
    color: rgba(16, 17, 20, 0.85);
    max-width: 460px;
}

.lp-image {
    position: relative;
}

.lp-image img {
    width: 100%;
    display: block;
    border-radius: 22px;
}

.lp-logos {
    /* position: absolute;
    left: 14px;
    right: 14px;
    bottom: 15%;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; */

    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 15%;
    z-index: 5;

    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);

    overflow: hidden;
    /* ✅ must */
}

.lp-logos-set img {
    height: 20px;
    width: auto;
    object-fit: contain;
    flex: 0 0 auto;
    max-width: none;
}

/* ✅ move exactly one-set width (set by JS) */
@keyframes lpMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-1 * var(--lp-move, 300px)));
    }
}

.lp-logos-fade {
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            #000 10%,
            #000 90%,
            transparent 100%);

    mask-image: linear-gradient(to right,
            transparent 0%,
            #000 10%,
            #000 90%,
            transparent 100%);
}

.lp-logos-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: lpMarquee 30s linear infinite;
}

.lp-logos-group {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
    /* small spacing between end & start */
}

.lp-logos-set {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
    /* -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0)); */
    /* small spacing between sets */
}

@keyframes lpMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {

    .lp-main-title {
        font-size: 36px;
    }

    .lp-main-para {
        font-size: 17px;
    }

    .lp-card {
        position: relative;
        flex-direction: row;
        padding: 44px;
        gap: 40px;
    }

    .lp-content {
        flex: 1;
        padding-bottom: 70px;
    }

    .lp-image {
        flex: 1;
        position: static;
    }

    .lp-logos {
        position: absolute;
        left: 34px;
        right: 34px;
    }

    .lp-title {
        font-size: 28px;
    }

    .lp-description {
        font-size: 18px;
    }

    .lp-logos img {
        height: 26px;
        max-width: 120px;
    }

    .lp-container {
        max-width: 680px;
    }
}

@media (min-width: 1000px) {
    .lp-container {
        max-width: 1024px;
    }
}

@media (min-width: 1200px) {

    .lp-main-title {
        font-size: 42px;
    }

    .lp-card {
        padding: 60px;
        border-radius: 34px;
    }

    .lp-title {
        font-size: 32px;
    }

    .lp-description {
        font-size: 20px;
    }

    .lp-logos {
        left: 44px;
        right: 44px;
        padding: 18px 28px;
    }

    .lp-logos img {
        height: 30px;
        max-width: 150px;
    }
}

@media (min-width:1400px) {
    .lp-container {
        max-width: 1260px;
    }
}