html,
body {
    max-width: 100%;
    overflow-x: clip;
}

:root {
    --home-hero-height: clamp(600px, min(56.25vw, 100svh), 900px);
    --home-shell-width: var(--site-shell-width, calc(100% - clamp(32px, 8vw, 128px)));
    --home-shell-max-width: var(--site-shell-max-width, 1424px);
    --home-section-space: clamp(48px, 5.6vw, 80px);
    --home-feature-section-space: clamp(40px, 4.5vw, 64px);
    --home-achievement-top-space: calc(var(--home-feature-section-space) + clamp(12px, 1.25vw, 20px));
    --home-grid-gap: clamp(20px, 2.5vw, 36px);
    --home-font-title: 28px;
    --home-font-subtitle: 16px;
    --home-achievement-card-title-size: 18px;
    --home-hero-title-size: 34px;
    --home-hero-subtitle-size: 16px;
    --home-insight-date-size: 16px;
    --home-insight-title-size: 18px;
    --home-insight-control-size: 15px;
    --home-cta-title-size: 28px;
    --home-cta-description-size: 16px;
    --home-cta-button-size: 15px;
    --home-testimonial-heading-size: 30px;
    --home-testimonial-content-size: 16px;
    --home-testimonial-meta-size: 16px;
}

@media screen and (min-width: 576px) {
    :root {
        --home-font-title: 30px;
        --home-font-subtitle: 17px;
        --home-achievement-card-title-size: 20px;
        --home-hero-title-size: 38px;
        --home-hero-subtitle-size: 18px;
        --home-cta-title-size: 30px;
        --home-cta-description-size: 17px;
        --home-cta-button-size: 16px;
    }
}

/* Keep the full home type system fixed across tablet and desktop widths. */
@media screen and (min-width: 768px) {
    :root {
        --home-font-title: 32px;
        --home-font-subtitle: 18px;
        --home-achievement-card-title-size: 22px;
        --home-hero-title-size: clamp(38px, 3vw, 60px);
        --home-hero-subtitle-size: clamp(18px, 1.4vw, 28px);
        --home-insight-date-size: 18px;
        --home-insight-title-size: 20px;
        --home-insight-control-size: 16px;
        --home-cta-title-size: 32px;
        --home-cta-description-size: 22px;
        --home-cta-button-size: 20px;
        --home-testimonial-heading-size: 32px;
        --home-testimonial-content-size: 18px;
        --home-testimonial-meta-size: 18px;
    }
}

:is(#hero, #achievement, #solution, #power-growth, #clients, #testimoni, #insight) > .container {
    width: var(--home-shell-width);
    max-width: var(--home-shell-max-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: clamp(12px, 1.1vw, 16px);
    padding-left: clamp(12px, 1.1vw, 16px);
}

#banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--home-hero-height);
    overflow: hidden;
}

#banner picture {
    display: block;
    width: 100%;
    height: 100%;
}

#home-banner {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#hero {
    position: relative;
    min-height: var(--home-hero-height);
}

#hero .container {
    position: relative;
    min-height: var(--home-hero-height);
}

@media screen and (max-width: 991.98px) {
    :root {
        --home-hero-height: clamp(560px, min(75vw, 100svh), 760px);
    }
}

@media screen and (max-width: 575.98px) {
    :root {
        --home-hero-height: clamp(620px, min(196.4vw, 100svh), 820px);
        --home-feature-section-space: clamp(36px, 7vw, 40px);
    }
}

.hero-title {
    color: #fff !important;
    margin: 0 0 clamp(12px, 1.2vw, 16px);
    font-size: var(--home-hero-title-size);
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.3px;
    font-family: Poppins, sans-serif;
}

.hero-content {
    position: absolute;
    top: 38%;
    left: 0;
    width: min(62%, 900px);
    max-width: 100%;
    color: #fff;
    transform: translateY(-50%);
}

.hero-subtitle {
    margin: 0;
    max-width: 760px;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: var(--home-hero-subtitle-size);
    font-style: normal;
    font-weight: 100;
    line-height: 1.5;
    letter-spacing: -0.017em;
}

.achievement-section {
    background: #fff;
    margin-top: clamp(-180px, -12.5vw, -96px);
    padding-top: var(--home-achievement-top-space);
}

.achievement-section > .container {
    position: relative;
    top: 20px;
    margin-bottom: var(--home-feature-section-space);
}

.achievement-header {
    margin-bottom: clamp(28px, 3.1vw, 44px);
}

.achievement-heading,
.achievement-description,
.achievement-card-title {
    color: var(--Neutral-100, #212121);
    font-family: Poppins, sans-serif;
}

.achievement-heading {
    margin: 0;
    font-size: var(--home-font-title);
    font-weight: 700;
    line-height: 1.18;
}

.achievement-description {
    margin: 0;
    font-size: var(--home-font-subtitle);
    font-weight: 400;
    line-height: 1.25;
}

.achievement-grid {
    --bs-gutter-x: var(--home-grid-gap);
    --bs-gutter-y: var(--home-grid-gap);
}

.achievement-card {
    min-height: clamp(200px, 20vw, 320px);
    padding: clamp(32px, 2.8vw, 40px) clamp(24px, 2.2vw, 32px) clamp(28px, 2.4vw, 34px);
    border-radius: 32px;
    background: var(--STORE2GO-Lightest, #E8F6FF);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    height: 100%;
}

.achievement-card-icon {
    width: clamp(112px, 8.9vw, 128px);
    height: clamp(112px, 8.9vw, 128px);
    object-fit: contain;
    margin-bottom: 12px;
}

.achievement-card-title {
    margin: 0;
    font-size: var(--home-achievement-card-title-size);
    font-weight: 700;
    line-height: 1.4;
}

.solutions-section {
    --solution-body-size: 16px;
    --solution-toggle-title-size: 17px;
    --solution-detail-title-size: 21px;
    --solution-detail-description-size: 16px;
    --solution-button-font-size: 16px;
    --solution-panel-min-height: 500px;
    background: var(--STORE2GO-Normal, #0071BD);
    margin-top: clamp(48px, 5vw, 72px);
    padding: var(--home-feature-section-space) 0;
}

@media screen and (min-width: 576px) {
    .solutions-section {
        --solution-body-size: 17px;
        --solution-toggle-title-size: 17px;
        --solution-detail-title-size: 22px;
        --solution-detail-description-size: 16px;
        --solution-button-font-size: 16px;
        --solution-panel-min-height: 470px;
    }
}

@media screen and (min-width: 768px) {
    .solutions-section {
        --solution-body-size: 18px;
        --solution-toggle-title-size: 20px;
        --solution-detail-title-size: 32px;
        --solution-detail-description-size: 18px;
        --solution-button-font-size: 17px;
    }
}

@media screen and (min-width: 992px) {
    .solutions-section {
        --solution-panel-min-height: 620px;
    }
}

.solution-title {
    color: var(--Neutral-100, #212121);
    text-align: center;
    font-size: var(--home-font-title);
    font-style: Normal;
    font-weight: 700;
    line-height: 1.42;
    letter-spacing: -0.005px;
    font-family: Poppins, sans-serif;
    margin: 0;
}

#solution .solution-title {
    color: var(--Neutral-10, #FFF);
    text-align: left;
    font-size: var(--home-font-title);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
    text-wrap: balance;
}

.solution-header {
    margin-bottom: clamp(32px, 3.9vw, 56px);
}

@media (min-width: 992px) {
    #achievement .achievement-header > .col-lg-5,
    #achievement .achievement-header > .col-lg-7,
    #power-growth .power-growth-header > .col-lg-5,
    #power-growth .power-growth-header > .col-lg-7,
    #solution .solution-header > .col-lg-5,
    #solution .solution-header > .col-lg-7 {
        flex: 0 0 auto;
        width: 50%;
    }
}

.solution-description {
    color: var(--Neutral-10, #FFF);
    text-align: left;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: var(--solution-body-size);
    font-style: normal;
    font-weight: 300;
    line-height: 1.25;
}

.solutions-body {
    align-items: stretch;
}

.solution-toggle-grid {
    --bs-gutter-x: clamp(20px, 1.9vw, 28px);
    --bs-gutter-y: clamp(20px, 1.9vw, 28px);
}

.solution-toggle-card {
    min-height: calc((var(--solution-panel-min-height) - 20px) / 2);
    padding: clamp(20px, 1.7vw, 24px) clamp(20px, 1.7vw, 24px) clamp(24px, 1.9vw, 28px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 16px;
    background: transparent;
    color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    height: 100%;
    --solution-toggle-icon-gradient: linear-gradient(180deg, #D8F2FF 0%, #72BFE8 100%);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.solution-toggle-card.is-active {
    background: #fff;
    color: var(--Neutral-100, #212121);
    border-color: #fff;
    --solution-toggle-icon-gradient: linear-gradient(180deg, #F4FCFF 0%, #A9DDF8 100%);
}

.solution-toggle-icon {
    width: 64px;
    height: 64px;
    align-self: flex-start;
    padding: 12px;
    border: 1px solid var(--STORE2GO-Normal, #0071BD);
    border-radius: 12px;
    background-image:
        var(--solution-toggle-icon-image),
        var(--solution-toggle-icon-gradient);
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: 70%, 100% 100%;
}

.solution-toggle-title {
    width: 100%;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: var(--solution-toggle-title-size);
    font-weight: 700;
    line-height: 1.25;
}

.solution-detail-card {
    display: flex;
    height: auto;
    min-height: var(--solution-panel-min-height);
    flex-direction: column;
    padding: clamp(12px, 1.1vw, 16px);
    border-radius: 24px;
    background: #fff;
    color: var(--Neutral-100, #212121);
    gap: clamp(10px, 1vw, 14px);
}

.solution-detail-image {
    display: block;
    width: 100%;
    flex: 1 1 clamp(200px, 20.8vw, 300px);
    min-height: clamp(200px, 20.8vw, 300px);
    border-radius: 16px;
    background: var(--STORE2GO-Lightest, #E8F6FF);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.solution-detail-title {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: var(--solution-detail-title-size);
    font-weight: 700;
    line-height: 1.3;
}

.solution-detail-description {
    align-items: justify;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: var(--solution-detail-description-size);
    font-weight: 400;
    line-height: 1.35;
}

.solution-detail-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 0.8vw, 12px);
    width: 100%;
    min-height: 48px;
    margin-top: auto;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--STORE2GO-Normal, #0071BD);
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: var(--solution-button-font-size);
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.solution-detail-button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.solution-detail-button:hover {
    color: #fff;
    text-decoration: none;
}

@media screen and (min-width: 992px) {
    .solutions-body > .col-lg-6 {
        display: flex;
    }

    .solution-toggle-grid {
        width: 100%;
        min-height: var(--solution-panel-min-height);
        flex: 1 1 auto;
    }

    .solution-toggle-grid > .col {
        display: flex;
    }

    .solution-toggle-card {
        min-height: 0;
    }

    .solution-detail-card {
        width: 100%;
    }

    .solution-detail-image {
        flex-basis: 280px;
        min-height: 280px;
    }

    .solution-detail-button {
        min-height: 56px;
        padding: 14px 20px;
    }

    .solution-detail-button svg {
        width: 24px;
        height: 24px;
    }
}

.power-growth-section {
    background: var(--STORE2GO-Lightest, #E8F6FF);
    padding: var(--home-feature-section-space) 0;
}

.power-growth-header {
    margin-bottom: clamp(28px, 3.1vw, 44px);
}

.power-growth-title,
.power-growth-description,
.power-growth-card-title {
    font-family: Poppins, sans-serif;
}

.power-growth-title {
    margin: 0;
    color: var(--Neutral-100, #212121);
    font-size: var(--home-font-title);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
}

.power-growth-description {
    margin: 0;
    color: var(--Neutral-100, #212121);
    font-size: var(--home-font-subtitle);
    font-weight: 400;
    line-height: 1.25;
}

.power-growth-grid {
    --bs-gutter-x: clamp(20px, 1.9vw, 28px);
    --bs-gutter-y: clamp(20px, 1.9vw, 28px);
}

.power-growth-grid > [class*="col-"] {
    display: flex;
}

.power-growth-grid .power-growth-card {
    width: 100%;
}

.power-growth-card {
    position: relative;
    min-height: clamp(280px, 20vw, 400px);
    overflow: hidden;
    border-radius: 36px;
    background: #003653;
    color: #fff;
}

.power-growth-card-featured {
    min-height: clamp(320px, 26vw, 520px);
}

.power-growth-card-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* object-position: center 25%; */
}

.power-growth-card-image[src=""] {
    display: none;
}

.power-growth-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: clamp(120px, 12vw, 170px);
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(0, 40, 67, 0) 0%,
        rgba(0, 40, 67, 0.68) 55%,
        rgba(0, 40, 67, 0.95) 100%
    );
}

.power-growth-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: clamp(280px, 20vw, 400px);
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 1.9vw, 28px) clamp(20px, 1.7vw, 24px);
}

.power-growth-card-featured .power-growth-card-content {
    min-height: clamp(320px, 26vw, 520px);
}

.power-growth-card-title {
    margin: 0;
    color: #fff;
    font-size: var(--home-font-subtitle);
    font-weight: 700;
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.insight-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: var(--Neutral-100, #212121);
    text-decoration: none;
}

.insight-card:hover {
    color: var(--Neutral-100, #212121);
    text-decoration: none;
}

.insight-image {
    display: block;
    width: 100%;
    height: clamp(220px, 24.3vw, 350px);
    border-radius: 16px;
    object-fit: cover;
}

.insight-date {
    margin: clamp(16px, 1.4vw, 20px) 0 8px;
    color: var(--STORE2GO-Normal, #0071BD);
    font-family: Poppins, sans-serif;
    font-size: var(--home-insight-date-size);
    font-weight: 600;
    line-height: 1.35;
}

.insight-title {
    margin: 0 0 20px;
    color: var(--Neutral-100, #212121);
    font-family: Poppins, sans-serif;
    font-size: var(--home-insight-title-size);
    font-weight: 700;
    line-height: 1.45;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

.insight-status {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    min-width: clamp(120px, 9.7vw, 140px);
    width: auto;
    margin-top: auto;
    padding: clamp(5px, 0.4vw, 6px) clamp(18px, 1.5vw, 22px);
    border-radius: 8px;
    background: var(--Neutral-20, #F5F5F5);
    color: var(--Neutral-100, #212121);
    font-family: Poppins, sans-serif;
    font-size: var(--home-insight-control-size);
    font-weight: 500;
    line-height: 1.3;
}

.insight-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 0.8vw, 12px);
    min-width: clamp(150px, 12.5vw, 180px);
    border-radius: 8px;
    background: var(--STORE2GO-Normal, #0071BD);
    color: var(--Neutral-10, #FFF);
    text-align: center;
    padding: clamp(12px, 1vw, 14px) clamp(24px, 2.2vw, 32px);
    font-family: Poppins, sans-serif;
    font-size: var(--home-insight-control-size);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.002px;
}

.insight-button:hover {
    color: var(--Neutral-10, #FFF);
}

.cta-section {
    margin-top: clamp(32px, 3.9vw, 56px);
    background: #f7f0e4;
    overflow: hidden;
}

.cta-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 1440 / 699;
    overflow: hidden;
    background: #f7f0e4;
}

.cta-image {
    display: block;
    width: 107.5%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center calc(100% + clamp(48px, 5vw, 90px));
    filter: brightness(1.12) saturate(1.02);
}

@media screen and (min-width: 1200px) {
    .cta-hero {
        aspect-ratio: 12 / 5;
    }
}

.cta-content {
    position: absolute;
    top: 31%;
    left: 50%;
    z-index: 1;
    width: var(--home-shell-width);
    max-width: var(--home-shell-max-width);
    text-align: left;
    transform: translateX(-50%);
}

.cta-copy {
    width: min(56vw, 820px);
    margin-bottom: clamp(26px, 2.5vw, 40px);
}

.cta-title {
    max-width: min(48vw, 620px);
    margin: 0 0 clamp(10px, 1.15vw, 20px);
    color: var(--Neutral-100, #212121);
    font-family: Poppins, sans-serif;
    font-size: var(--home-cta-title-size);
    font-weight: 700;
    line-height: 1.18;
    text-align: left;
}

.cta-description {
    max-width: min(56vw, 820px);
    margin: 0;
    color: var(--Neutral-100, #212121);
    font-family: Poppins, sans-serif;
    font-size: var(--home-cta-description-size);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.01em;
    text-align: left;
    text-wrap: balance;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(48px, 4.5vw, 76px);
    padding: clamp(14px, 1.25vw, 20px) clamp(18px, 1.6vw, 28px);
    border: 0;
    border-radius: clamp(10px, 0.85vw, 16px);
    background: var(--STORE2GO-Normal, #0071BD);
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: var(--home-cta-button-size);
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    margin-left: 0;
    transform: none;
}

.cta-button:hover {
    color: #fff;
    text-decoration: none;
}

@media screen and (min-width: 1200px) {
    #hero .store2go-hero-cta--home-wide {
        width: auto;
        min-width: 200px;
        max-width: 100%;
    }
}

@media screen and (min-width: 1600px) {
    .cta-copy {
        width: min(56vw, clamp(680px, calc(1053px - 19.4vw), 820px));
    }

    .cta-description {
        max-width: min(56vw, clamp(680px, calc(1053px - 19.4vw), 820px));
    }
}

@media screen and (min-width: 1200px) and (max-width: 1599.98px) {
    .cta-copy,
    .cta-description {
        width: min(48vw, 640px);
        max-width: min(48vw, 640px);
    }
}

.clients-section {
    margin-top: 0;
    padding: var(--home-section-space) 0;
    overflow: hidden;
}

.clients-section > .container {
    overflow: hidden;
}

.clients-title-row {
    margin-right: 0;
    margin-bottom: clamp(24px, 3vw, 44px);
    margin-left: 0;
}

.clients-title-row > * {
    padding-right: 0;
    padding-left: 0;
}

.clients-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.clients-carousel .owl-item {
    display: flex;
    align-items: stretch;
}

.client-logo-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 0;
    aspect-ratio: 2.4 / 1;
    padding: clamp(10px, 1.2vw, 18px);
}

#clients .owl-carousel .owl-item img.client-logo {
    width: auto;
    max-width: min(clamp(110px, 10vw, 160px), 100%);
    height: auto;
    max-height: clamp(38px, 3.5vw, 54px);
    object-fit: contain;
}

#clients .owl-carousel .owl-item img.client-logo-multiwangi {
    max-width: min(150px, 100%);
    max-height: clamp(76px, 6vw, 96px);
}

#clients .owl-carousel .owl-item img.client-logo-square {
    max-width: min(110px, 100%);
    max-height: clamp(68px, 5.5vw, 84px);
}

#clients .owl-carousel .owl-item img.client-logo-rumah-hardware {
    max-width: min(150px, 100%);
    max-height: clamp(76px, 6vw, 92px);
}

#clients .owl-carousel .owl-item img.client-logo-normalized {
    transform: scale(1.35);
    transform-origin: center;
}

#clients .owl-carousel .owl-item img.client-logo-yale {
    height: auto;
    max-height: clamp(54px, 5vw, 72px);
    max-width: min(100px, 100%);
}

.clients-carousel .owl-dots {
    margin-top: clamp(14px, 2vw, 28px);
}

@media (max-width: 575.98px) {
    .clients-section {
        padding: clamp(40px, 11vw, 56px) 0;
    }

    .clients-title-row {
        margin-bottom: clamp(20px, 6vw, 28px);
    }

    .client-logo-slide {
        aspect-ratio: 1.8 / 1;
        padding: clamp(8px, 3vw, 14px);
    }

    #clients .owl-carousel .owl-item img.client-logo {
        max-width: min(clamp(100px, 34vw, 145px), 100%);
        max-height: clamp(34px, 11vw, 50px);
    }

    #clients .owl-carousel .owl-item img.client-logo-multiwangi {
        max-width: min(118px, 100%);
        max-height: 76px;
    }

    #clients .owl-carousel .owl-item img.client-logo-square {
        max-width: min(90px, 100%);
        max-height: 70px;
    }

    #clients .owl-carousel .owl-item img.client-logo-rumah-hardware {
        max-width: min(120px, 100%);
        max-height: 76px;
    }

    #clients .owl-carousel .owl-item img.client-logo-yale {
        max-width: min(72px, 100%);
        max-height: 64px;
    }
}

.insight-section {
    margin-top: clamp(64px, 8vw, 112px);
    padding-bottom: var(--home-section-space);
}

.insight-title-row {
    margin: 0 0 clamp(28px, 3.5vw, 50px);
}

.insight-actions-row {
    margin-top: clamp(28px, 3.5vw, 50px);
}

.insight-section .row.gx-lg-5 > [class*="col-"] {
    display: flex;
}

.fade-left {
    opacity: 0;
    transform: translateX(-50px); /* Awal dari posisi kiri */
    transition: opacity 1s ease, transform 1s ease;
}

.fade-left.show {
    opacity: 1;
    transform: translateX(0); /* Pindah ke posisi normal */
}

.hero-content.fade-left {
    transform: translate(-50px, -50%);
}

.hero-content.fade-left.show {
    transform: translate(0, -50%);
}

.fade-in-down {
  opacity: 0; /* Tidak terlihat pada awalnya */
  transform: translateY(-50px); /* Mulai dari posisi di atas */
  transition: opacity 1s ease, transform 1s ease; /* Durasi dan jenis transisi */
}

.fade-in-down.show {
  opacity: 1; /* Menjadi terlihat */
  transform: translateY(0); /* Pindah ke posisi normal */
}

.fade-in-up {
  opacity: 0; /* Tidak terlihat pada awalnya */
  transform: translateY(50px); /* Mulai dari posisi di bawah */
  transition: opacity 1s ease, transform 1s ease; /* Durasi dan transisi efek */
}

.fade-in-up.show {
  opacity: 1; /* Menjadi terlihat */
  transform: translateY(0); /* Pindah ke posisi normal */
}

.testimonial-section {
    margin-top: 0 !important;
    padding: var(--home-section-space) 0 !important;
    background: var(--STORE2GO-Lightest, #E8F6FF);
}

.testimonial {
    width: 100%;
}

.testimonial-heading {
    margin: 0 0 clamp(28px, 2.5vw, 36px);
    color: var(--Neutral-100, #212121);
    font-family: Poppins, sans-serif;
    font-size: var(--home-testimonial-heading-size);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.testimonial-layout {
    --bs-gutter-x: clamp(28px, 2.5vw, 36px);
    --bs-gutter-y: clamp(28px, 2.5vw, 36px);
    min-height: 0;
}

.testimonial-image-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 580 / 484;
    border-radius: 40px;
    background: #fff;
}

.testimoni-image-layer {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.45s ease;
}

#testimoni-image-next {
    position: absolute;
    inset: 0;
    opacity: 0;
}

#testimoni-image-next.is-visible {
    opacity: 1;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    transition: opacity 0.32s ease, transform 0.32s ease;
}

.testimonial-content.is-transition-paused {
    transition: none;
}

.testimonial-content.is-slide-out-left,
.testimonial-content.is-slide-in-left {
    opacity: 0;
    transform: translateX(-32px);
}

.testimonial-content.is-slide-out-right,
.testimonial-content.is-slide-in-right {
    opacity: 0;
    transform: translateX(32px);
}

.testimonial-category {
    display: inline-flex;
    align-items: center;
    min-height: clamp(42px, 3.3vw, 48px);
    margin: 0 0 clamp(20px, 1.9vw, 28px);
    padding: clamp(8px, 0.7vw, 10px) clamp(14px, 1.25vw, 18px);
    border-radius: 16px;
    background: var(--STORE2GO-Dark, #003653);
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: var(--home-testimonial-content-size);
    font-weight: 500;
    line-height: 1.2;
}

.testimoni-slide-body {
    margin: 0;
    color: #555;
    font-family: Poppins, sans-serif;
    font-size: var(--home-testimonial-content-size);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.003px;
    text-align: justify;
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: auto;
}

.testimonial-person {
    min-width: 0;
}

.testimoni-slide-name {
    margin: 0 0 6px;
    color: var(--Neutral-100, #212121);
    font-family: Poppins, sans-serif;
    font-size: var(--home-testimonial-meta-size);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.003px;
}

.testimoni-slide-position {
    margin: 0;
    color: var(--Neutral-100, #212121);
    font-family: Poppins, sans-serif;
    font-size: var(--home-testimonial-meta-size);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.003px;
}

.swiper-testimoni {
    width: 100%;
}

.nav-buttons {
    display: flex;
    margin-top: 24px;
    gap: clamp(18px, 1.9vw, 28px);
}

.nav-button {
    width: clamp(46px, 3.8vw, 54px);
    height: clamp(46px, 3.8vw, 54px);
    border: 4px solid var(--STORE2GO-Normal, #0071BD);
    border-radius: 50%;
    background: transparent;
    color: var(--STORE2GO-Normal, #0071BD);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-button:hover {
    transform: translateY(-1px);
}

.nav-button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.nav-button svg {
    width: clamp(24px, 1.9vw, 28px);
    height: clamp(24px, 1.9vw, 28px);
}

@media screen and (min-width: 992px) {
    .testimonial-layout > .col-lg-6:last-child {
        display: flex;
    }

    .testimonial-content {
        flex: 1 1 auto;
        width: 100%;
        height: auto;
        min-height: 0;
    }
}

@media screen and (max-width: 991.98px){
    .hero-content {
        left: 0;
        width: min(72%, 640px);
        max-width: 100%;
    }

    .hero-title {
        margin-bottom: 12px;
    }

    .testimonial-footer {
        margin-top: 0;
    }

    .nav-button {
        border-width: 3px;
    }

    .cta-description {
        max-width: 620px;
    }
}

@media screen and (max-width: 575.98px) {
    .hero-content {
        top: 38%;
        width: 100%;
    }

    .hero-subtitle {
        line-height: 1.4;
    }

    .achievement-section {
        margin-top: -90px;
        padding: var(--home-achievement-top-space) 0 var(--home-feature-section-space);
    }

    .achievement-section > .container {
        top: -32px;
        margin-bottom: -32px;
    }

    .achievement-card {
        border-radius: 24px;
    }

    .achievement-card-icon {
        margin-bottom: clamp(16px, 4.9vw, 28px);
    }

    .solutions-section {
        padding: var(--home-feature-section-space) 0;
    }

    .solution-toggle-card {
        min-height: clamp(190px, 55vw, 240px);
    }

    .solution-detail-image {
        flex-basis: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .power-growth-section {
        padding: var(--home-feature-section-space) 0;
    }

    .power-growth-card {
        border-radius: 20px;
    }

    .cta-title {
        line-height: 1.22;
    }

    .cta-description {
        line-height: 1.35;
    }

    .cta-button {
        border-radius: 12px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199.98px) {
    .cta-content {
        top: 27%;
    }

    .cta-copy {
        width: min(50vw, 600px);
        margin-bottom: clamp(20px, 2.5vw, 30px);
    }

    .cta-title {
        max-width: min(48vw, 520px);
        margin-bottom: clamp(10px, 1.4vw, 16px);
    }

    .cta-description {
        max-width: min(50vw, 600px);
    }

    .cta-button {
        min-height: clamp(48px, 5.2vw, 60px);
        padding: clamp(13px, 1.6vw, 17px) clamp(18px, 2.2vw, 24px);
        border-radius: clamp(10px, 1.3vw, 14px);
    }
}

@media screen and (max-width: 767.98px) {
    .cta-hero {
        display: flex;
        aspect-ratio: auto;
        flex-direction: column;
    }

    .cta-content {
        position: relative;
        top: auto;
        left: auto;
        order: 1;
        width: 100%;
        max-width: none;
        padding: clamp(40px, 11vw, 64px) clamp(20px, 6vw, 36px) clamp(26px, 7vw, 40px);
        text-align: left;
        transform: none;
    }

    .cta-copy {
        width: 100%;
        max-width: 680px;
        margin-bottom: clamp(24px, 7vw, 34px);
    }

    .cta-image {
        order: 2;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: 68% center;
    }

    .cta-title {
        max-width: 680px;
        margin-bottom: 14px;
    }

    .cta-description {
        max-width: 560px;
        margin-bottom: 0;
        line-height: 1.5;
    }

    .cta-button {
        width: auto;
        max-width: 100%;
        min-height: 52px;
        padding: 14px 20px;
        margin-left: 0;
    }

}

@media screen and (max-width: 480px) {
    .cta-content {
        padding: 32px 20px 24px;
    }

    .cta-copy {
        margin-bottom: 22px;
    }

    .cta-title {
        margin-bottom: 12px;
    }

    .cta-description {
        line-height: 1.45;
    }

    .cta-button {
        min-height: 48px;
        padding: 12px 16px;
        border-radius: 10px;
    }
}
