/* ==========================================================================
   Testimoni 2026 — quote-card redesign, same "2026" design language as
   product-2026.css / populer.css (rounded surfaces, brand-color accents,
   soft shadows) instead of the old flat/borderless text block.
   ========================================================================== */

.containerTestimoni {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(100deg, rgba(11, 15, 25, 0.94) 0%, rgba(11, 15, 25, 0.8) 45%, rgba(11, 15, 25, 0.45) 100%), url("../images/bg-trust-grid.jpg");
    background-size: cover;
    background-position: center;
}

.containerTestimoni::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--yellow-primary) 35%, transparent) 0%, transparent 70%);
    pointer-events: none;
}

.containerTestimoni .testiIntro {
    max-width: 640px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.containerTestimoni .trusted-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: color-mix(in srgb, var(--yellow-primary) 16%, transparent);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12.5px;
}

.containerTestimoni .trusted-text i {
    font-size: 13px;
}

.containerTestimoni .desc-text {
    font-family: "Outfit", sans-serif;
}

/* -------- Trust badge bar: Opsi 2 glass stat-card grid -------- */
.containerTestimoni .trustBar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.containerTestimoni .trustItem {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.containerTestimoni .trustItem:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--yellow-primary) 60%, transparent);
}

.containerTestimoni .trustItem:last-child {
    grid-column: 1 / -1;
}

.containerTestimoni .trustInfo {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.containerTestimoni .trustInfo strong {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    white-space: nowrap;
}

.containerTestimoni .trustInfo span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
}

.containerTestimoni .trustIconWrap {
    flex: none;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 14px rgba(0, 239, 255, 0.22);
}

.containerTestimoni .trustIconWrap.is-brand {
    box-shadow: inset 0 0 14px color-mix(in srgb, var(--yellow-primary) 25%, transparent);
}

.containerTestimoni .trustIconWrap img {
    width: 22px;
    height: 22px;
    display: block;
}

.containerTestimoni .trustIconWrap i {
    font-size: 19px;
    color: var(--yellow-primary);
}

@media (max-width: 576px) {
    .containerTestimoni .trustBar {
        grid-template-columns: 1fr;
    }

    .containerTestimoni .trustItem {
        padding: 14px 16px;
    }
}

/* -------- Desktop: split hero into text (left) + enlarged stat card grid (right) -------- */
.containerTestimoni .testiGrid {
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .containerTestimoni .testiGrid {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 48px;
    }

    .containerTestimoni .testiGrid .testiIntro {
        flex: 1 1 auto;
    }

    .containerTestimoni .trustPanel {
        flex: 0 0 auto;
        width: 440px;
    }

    .containerTestimoni .trustPanel .trustBar {
        gap: 18px;
    }

    .containerTestimoni .trustPanel .trustItem {
        padding: 20px 22px;
    }

    .containerTestimoni .trustPanel .trustInfo strong {
        font-size: 23px;
    }

    .containerTestimoni .trustPanel .trustInfo span {
        font-size: 13px;
    }

    .containerTestimoni .trustPanel .trustIconWrap {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .containerTestimoni .trustPanel .trustIconWrap i {
        font-size: 23px;
    }

    .containerTestimoni .trustPanel .trustIconWrap img {
        width: 26px;
        height: 26px;
    }
}

/* -------- About / SEO content section (before footer) -------- */
.containerAbout {
    padding: 3rem 0;
    background: var(--bg-body);
}

.containerAbout .aboutBox {
    position: relative;
    padding: 0;
}

.containerAbout .aboutTitle {
    font-family: "Outfit", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 14px;
}

.containerAbout .aboutBody {
    position: relative;
    max-height: 132px;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.containerAbout .aboutBody.is-expanded {
    max-height: 2400px;
}

.containerAbout .aboutBody p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--black-text);
    margin: 0 0 12px;
}

.containerAbout .aboutBody p strong {
    color: var(--black);
}

.containerAbout .aboutFade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 46px;
    height: 44px;
    background: linear-gradient(180deg, transparent 0%, var(--bg-body) 90%);
    pointer-events: none;
}

.containerAbout .aboutBody.is-expanded ~ .aboutFade {
    display: none;
}

.containerAbout .aboutToggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 0;
    border: none;
    background: none;
    color: var(--yellow-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.containerAbout .aboutToggle i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.containerAbout .aboutToggle.is-expanded i {
    transform: rotate(180deg);
}

@media (max-width: 576px) {
    .containerAbout {
        padding: 2rem 0;
    }

    .containerAbout .aboutTitle {
        font-size: 16px;
    }
}

/* -------------------------------------------------------------------- */
/* 2026-07 redesign accent overrides (sky/blue, matches new homepage)   */
/* Just swaps the yellow-tinted background glow/chips/icons in this     */
/* footer-question hero block to the same blue used across             */
/* flashsale-2026.css / product-2026.css / populer.css.                 */
/* -------------------------------------------------------------------- */
body.site2026 .containerTestimoni::before {
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-blue-2026) 35%, transparent) 0%, transparent 70%);
}

body.site2026 .containerTestimoni .trusted-text {
    background: color-mix(in srgb, var(--accent-blue-2026) 16%, transparent);
}

body.site2026 .containerTestimoni .trustItem:hover {
    border-color: color-mix(in srgb, var(--accent-blue-2026) 60%, transparent);
}

body.site2026 .containerTestimoni .trustIconWrap.is-brand {
    box-shadow: inset 0 0 14px color-mix(in srgb, var(--accent-blue-2026) 25%, transparent);
}

body.site2026 .containerTestimoni .trustIconWrap i {
    color: var(--accent-blue-2026);
}