@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

/* Keep section-2 visual tone aligned with shared ls-* sections */
.ls-why {
    background: linear-gradient(180deg, #020202, #0a0a0a);
    font-family: 'Roboto', sans-serif;
}

/* Vanilla CSS motion: simple transform/opacity only for smoother rendering */
.ls-why__left,
.ls-why__right,
.ls-why__trust-card {
    animation-duration: 650ms;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
}

.ls-why__left {
    animation-name: lsFadeUp;
}

.ls-why__right {
    animation-name: lsFadeIn;
    animation-delay: 90ms;
}

.ls-why__trust-card {
    animation-name: lsPopIn;
    animation-delay: 180ms;
}

.ls-why__list li {
    animation: lsFadeUp 500ms ease-out both;
}

.ls-why__list li:nth-child(1) { animation-delay: 140ms; }
.ls-why__list li:nth-child(2) { animation-delay: 190ms; }
.ls-why__list li:nth-child(3) { animation-delay: 240ms; }
.ls-why__list li:nth-child(4) { animation-delay: 290ms; }
.ls-why__list li:nth-child(5) { animation-delay: 340ms; }

.ls-why__stickers img {
    animation: lsFloat 3.8s ease-in-out infinite;
}

.ls-why__stickers img:nth-child(2n) {
    animation-duration: 4.4s;
    animation-delay: -1.1s;
}

.ls-why__stickers img:nth-child(3n) {
    animation-duration: 5s;
    animation-delay: -1.9s;
}

.ls-why__container {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(340px, 1.2fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: center;
}

.ls-why__title {
    margin: 0 0 26px;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.35rem, 2.3vw, 2.4rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: 0.01em;
}

.ls-why__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.ls-why__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.45;
    color: #d8d8d8;
}

.ls-why__item-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    color: #ffc54d;
    margin-top: 0.12em;
    display: block;
}

.ls-why__list strong {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-weight: 700;
}

.ls-why__right {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.ls-why__client-image {
    width: 100%;
    max-width: 760px;
    height: auto;
    display: block;
    margin-inline: auto;
}

.ls-why__bubble {
    position: absolute;
    width: min(35vw, 420px);
    opacity: 0.7;
    z-index: 0;
}

.ls-why__bubble img {
    width: 100%;
    display: block;
}

.ls-why__bubble--left {
    left: -20px;
    top: 10px;
}

.ls-why__bubble--right {
    right: -15px;
    top: -8px;
    transform: scaleX(-1);
}

.ls-why__trust-card {
    position: relative;
    z-index: 2;
    width: min(92%, 580px);
    background: linear-gradient(180deg, rgba(255, 192, 0, 0.14), rgba(255, 255, 255, 0.03));
    color: #fff;
    border-radius: 18px;
    border: 1px solid rgba(255, 192, 0, 0.35);
    padding: clamp(22px, 2.2vw, 34px);
    margin-bottom: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.ls-why__trust-card p {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.05rem, 1.55vw, 1.65rem);
    line-height: 1.3;
    font-weight: 700;
}

.ls-why__stickers {
    position: relative;
    z-index: 2;
    width: min(92%, 580px);
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.ls-why__stickers img {
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 6px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.22);
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35));
}

@keyframes lsFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lsFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes lsPopIn {
    from {
        opacity: 0;
        transform: scale(0.97);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lsFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ls-why__left,
    .ls-why__right,
    .ls-why__trust-card,
    .ls-why__list li,
    .ls-why__stickers img {
        animation: none !important;
    }
}

@media (max-width: 980px) {
    .ls-why__container {
        grid-template-columns: 1fr;
    }

    .ls-why__right {
        min-height: 0;
    }

    .ls-why__stickers {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ls-why__bubble {
        width: min(65vw, 360px);
    }

    .ls-why__bubble--left {
        left: -8px;
        top: 0;
    }

    .ls-why__bubble--right {
        right: -8px;
        top: 0;
    }
}

@media (max-width: 640px) {
    .ls-why__item-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .ls-why__stickers {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        padding: 10px;
    }

    .ls-why__stickers img {
        padding: 5px;
    }

    .ls-why__right {
        min-height: 0;
    }

    .ls-why__trust-card {
        width: 94%;
        border-radius: 16px;
    }
}

/* Marquee khusus untuk section-2 (ls-why) */
.ls-why__marquee {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}
.ls-why__marquee .marquee-wrap {
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 14px 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}
.ls-why__marquee .marquee-track {
    display: flex;
    white-space: nowrap;
    align-items: center;
    animation: ls-marquee 22s linear infinite;
    will-change: transform;
}
.ls-why__marquee .marquee-item {
    display: inline-flex;
    align-items: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 0.18em;
    color: #b79b4a;
    text-transform: uppercase;
}
.ls-why__marquee .marquee-item .dot { color: #c9a84c; margin: 0 24px; }

@keyframes ls-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .ls-why__marquee .marquee-track { animation: none !important; }
}

/* Stats block for section-2 */
.ls-why__stats {
    background: var(--black-3, #1a1a1a);
    border-top: 1px solid var(--border, rgba(201,168,76,0.18));
    border-bottom: 1px solid var(--border, rgba(201,168,76,0.18));
    /* make the stats strip full-bleed across the viewport */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    box-sizing: border-box;
    padding: 80px 5vw;
}
.ls-why__stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}
.ls-why__stats .stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
    padding: 8px 6px;
    font-family: 'Roboto', sans-serif;
}
.ls-why__stats .stat-num {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 900;
    color: var(--gold, #c9a84c);
    line-height: 1;
    margin-bottom: 12px;
}
.ls-why__stats .stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-dim, rgba(245,240,232,0.55));
}

@media (max-width: 980px) {
    .ls-why__stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .ls-why__stats { padding: 40px 4vw; }
    .ls-why__stats-inner { grid-template-columns: 1fr; gap: 18px; }
    .ls-why__stats .stat-num { font-size: clamp(32px, 12vw, 56px); }
}
