/* ============================
   HOME PAGE
   ============================ */
.home-page {
    background: #FAFAFA;
}

.home-page .section-header__tag,
.home-page .home-about-tag,
.home-page .home-layanan-tag {
    padding-top: 40px;
}

.home-body {
    padding-left: var(--gutter-desktop);
    padding-right: var(--gutter-desktop);
    padding-bottom: 80px;
    width: 100vw;
}

/* ============================
   HERO
   ============================ */
.home-hero {
    margin-bottom: 80px;
}

.home-hero-header {
    padding-top: 80px;
    background-image: url('../../img/beranda/bg-hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.home-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 64px;
    padding-bottom: 64px;
}

.home-hero-title {
    max-width: 850px;
    margin: 0 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0;
    text-align: center;
    color: #333333;
}

.home-hero-desc {
    max-width: 850px;
    margin: 0 0 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center;
    color: #606060;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.home-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 12px 20px;
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-decoration: none;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
    box-sizing: border-box;
}

.home-hero-btn:hover {
    transform: scale(1.03);
}

.home-hero-btn--primary {
    background: #1C2E56;
    color: #FFFFFF;
    border: none;
}

.home-hero-btn--outline {
    background: #FFFFFF;
    color: #1C2E56;
    border: 1px solid #1C2E56;
}

.home-hero-image {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 287px;
    overflow: hidden;
}

.home-hero-image img,
.home-hero-image picture,
.home-hero-image picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================
   TENTANG KAMI
   ============================ */
.home-about-section {
    padding-bottom: 80px;
}

.home-about-grid {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.home-about-icon {
    flex: 0 0 30%;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 230px;
}

.home-about-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.home-about-content {
    flex: 0 0 70%;
    max-width: 70%;
    min-width: 0;
}

.home-artikel-empty {
    grid-column: 1 / -1;
}

.home-about-tag {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #CA1B18;
    margin-bottom: 8px;
}

.home-about-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0;
    color: #333333;
    margin: 0 0 16px;
}

.home-about-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    color: #606060;
    margin: 0 0 24px;
}

.home-about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 64px;
    height: 26px;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.home-about-link:hover {
    opacity: 0.8;
}

.home-about-link span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
    color: #707E9C;
}

.home-about-link img {
    width: 24px;
    height: 24px;
    display: block;
}

/* ============================
   LAYANAN
   ============================ */
.home-layanan-section {
    padding-bottom: 80px;
    background: #F2F4F7;
}

.home-layanan-grid {
    display: flex;
    align-items: stretch;
    gap: 40px;
    max-width: calc(var(--max-container) + var(--gutter-desktop));
    margin-left: 0;
    margin-right: auto;
}

.home-layanan-image-wrap {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    height: 636px;
    border-radius: 0 4px 4px 0;
    overflow: hidden;
}

.home-layanan-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
}

.home-layanan-image.is-active {
    opacity: 1;
    pointer-events: auto;
}

.home-layanan-content {
    flex: 0 0 calc(50% - 40px);
    max-width: calc(50% - 40px);
    min-width: 0;
    padding-right: var(--gutter-desktop);
    box-sizing: border-box;
}

.home-layanan-tag {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #CA1B18;
    margin-bottom: 8px;
}

.home-layanan-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0;
    color: #333333;
    margin: 0 0 32px;
}

.home-layanan-accordion {
    display: flex;
    flex-direction: column;
}

.home-layanan-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.home-layanan-item-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;
    color: #333333;
}

.home-layanan-item-icon {
    position: relative;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
}

.home-layanan-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    display: block;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.home-layanan-icon--plus {
    opacity: 1;
    transform: scale(1);
}

.home-layanan-icon--minus {
    opacity: 0;
    transform: scale(0.85);
}

.home-layanan-item.is-open .home-layanan-icon--plus {
    opacity: 0;
    transform: scale(0.85);
}

.home-layanan-item.is-open .home-layanan-icon--minus {
    opacity: 1;
    transform: scale(1);
}

.home-layanan-item-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.home-layanan-item.is-open .home-layanan-item-body {
    grid-template-rows: 1fr;
}

.home-layanan-item-body-inner {
    overflow: hidden;
}

.home-layanan-item-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
    color: #606060;
    margin: 12px 0 0;
    padding-right: 52px;
}

.home-layanan-divider {
    width: 100%;
    height: 0;
    border-top: 1px solid #D2D2D2;
    margin: 20px 0;
}

.home-layanan-item:last-child .home-layanan-item-body {
    margin-bottom: 0;
}

/* ============================
   KEUNGGULAN
   ============================ */
.home-keunggulan-section {
    padding-bottom: 80px;
}

.home-keunggulan-section .section-header {
    margin-bottom: 16px;
}

.home-keunggulan-desc {
    max-width: 720px;
    margin: 0 auto 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center;
    color: #606060;
}

.home-keunggulan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
}

.home-keunggulan-cell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 265px;
    padding: 32px;
    box-sizing: border-box;
}

.home-keunggulan-cell-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.home-keunggulan-cell-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.home-keunggulan-cell:nth-child(1)::after,
.home-keunggulan-cell:nth-child(2)::after,
.home-keunggulan-cell:nth-child(3)::after,
.home-keunggulan-cell:nth-child(4)::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, #EDF8F8 10%, #839AC2 50%, #EDF8F8 90%);
    pointer-events: none;
}

.home-keunggulan-cell:nth-child(2)::before,
.home-keunggulan-cell:nth-child(4)::before,
.home-keunggulan-cell:nth-child(6)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: linear-gradient(180deg, #EDF8F8 10%, #839AC2 50%, #EDF8F8 90%);
    pointer-events: none;
}

.home-keunggulan-cell-diamond {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    background: #BACAE6;
    transform: translate(-50%, 50%) rotate(135deg);
    z-index: 2;
    pointer-events: none;
}

.home-keunggulan-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 8px;
    border-radius: 8px;
    background: #839AC233;
    box-sizing: border-box;
}

.home-keunggulan-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.home-keunggulan-cell-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center;
    color: #333333;
    margin: 0;
}

.home-keunggulan-cell-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center;
    color: #606060;
    margin: 0;
}

/* ============================
   PORTOFOLIO
   ============================ */
.home-portofolio-section {
    padding-bottom: 80px;
    background: #F2F4F7;
}

.home-portofolio-section .section-header {
    margin-bottom: 24px;
}

.home-portofolio-divider {
    width: 780px;
    max-width: 100%;
    height: 2px;
    margin: 0 auto 24px;
    background: linear-gradient(90deg, rgba(131, 154, 194, 0) 0%, rgba(131, 154, 194, 0.5) 36.54%, #839AC2 49.24%, rgba(131, 154, 194, 0.5) 59.72%, rgba(131, 154, 194, 0) 100%);
}

.home-portofolio-desc {
    max-width: 720px;
    margin: 0 auto 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center;
    color: #606060;
}

.home-portofolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1.5fr);
    gap: 32px;
    justify-items: center;
}

.home-portofolio-stage {
    position: relative;
}

.home-portofolio-viewport {
    width: 100%;
}

.home-portofolio-slide {
    min-width: 0;
}

.home-portofolio-nav {
    display: none;
    position: absolute;
    top: 50%;
    z-index: 2;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 20px;
    gap: 9.62px;
    border-radius: 100px;
    border: 1px solid #839AC2;
    background: var(--color-white);
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.home-portofolio-nav--prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.home-portofolio-nav--next {
    right: 0;
    transform: translate(50%, -50%);
}

.home-portofolio-nav:hover {
    opacity: 0.85;
}

.home-portofolio-nav img {
    width: 16px;
    height: 16px;
    display: block;
}

.home-portofolio-nav--prev img {
    transform: rotate(-180deg);
}

.home-artikel-nav[hidden],
.home-portofolio-nav[hidden] {
    display: none !important;
}

.home-portofolio-card {
    width: 100%;
    height: 250px;
    padding-top: 1px;
    box-sizing: border-box;
    overflow: hidden;
}

.home-portofolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-portofolio-skeleton {
    width: 100%;
    max-width: 380px;
    height: 250px;
    padding-top: 1px;
    box-sizing: border-box;
}

.home-portofolio-more-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 48px;
}

.home-portofolio-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 12px 20px;
    border-radius: 100px;
    border: 1px solid #839AC2;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #1C2E56;
    cursor: pointer;
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.home-portofolio-more-btn[hidden] {
    display: none !important;
}

.home-portofolio-more-btn:hover {
    transform: scale(1.03);
    background: rgba(131, 154, 194, 0.08);
}

.home-portofolio-empty {
    grid-column: 1 / -1;
}

/* ============================
   ARTIKEL
   ============================ */
.home-artikel-section {
    padding-bottom: 80px;
}

.home-artikel-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.home-artikel-header .section-header {
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
}

.home-artikel-all-btn {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    width: max-content;
    height: 44px;
    padding: 12px 20px;
    gap: 9.62px;
    border-radius: 100px;
    border: 1px solid #839AC2;
    background: transparent;
    text-decoration: none;
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.home-artikel-all-btn:hover {
    transform: scale(1.03);
    background: rgba(131, 154, 194, 0.08);
}

.home-artikel-all-btn span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #1C2E56;
}

.home-artikel-all-btn img {
    width: 16px;
    height: 16px;
    display: block;
}

.home-artikel-all-wrap {
    display: none;
    justify-content: center;
    margin-top: 32px;
}

.home-artikel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.home-artikel-slide {
    min-width: 0;
}

.home-artikel-stage {
    position: relative;
}

.home-artikel-viewport {
    width: 100%;
}

.home-artikel-nav {
    display: none;
    position: absolute;
    top: 25%;
    z-index: 2;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 20px;
    gap: 9.62px;
    border-radius: 100px;
    border: 1px solid #839AC2;
    background: var(--color-white);
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.home-artikel-nav--prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.home-artikel-nav--next {
    right: 0;
    transform: translate(50%, -50%);
}

.home-artikel-nav:hover {
    opacity: 0.85;
}

.home-artikel-nav img {
    width: 16px;
    height: 16px;
    display: block;
}

.home-artikel-nav--prev img {
    transform: rotate(-180deg);
}

/* ============================
   CTA
   ============================ */
.home-cta-section {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../../img/tentang-kami/img-cta.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.home-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(175.27deg, #1C2E56 -6.11%, rgba(0, 0, 0, 0) 133.43%);
    pointer-events: none;
}

.home-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px var(--gutter-desktop);
    text-align: center;
}

.home-cta-title {
    max-width: 600px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
    margin: 0 0 16px;
}

.home-cta-desc {
    max-width: 1000px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
    margin: 0 0 32px;
}

.home-cta-btn {
    display: inline-flex;
    align-items: center;
    width: max-content;
    height: 44px;
    padding: 12px 20px;
    gap: 14px;
    border-radius: 100px;
    background: #FFFFFF33;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-decoration: none;
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.home-cta-btn:hover {
    transform: scale(1.03);
    background: #FFFFFF44;
}

.home-cta-btn span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
}

.home-cta-btn img {
    width: 16px;
    height: 16px;
    display: block;
}

/* ============================
   ANIMATIONS
   ============================ */
.home-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.home-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.home-animate.is-hidden {
    opacity: 0;
    transform: translateY(-12px);
}

/* ============================
   RESPONSIVE — Tablet
   ============================ */
@media (max-width: 991px) {
    .home-body {
        padding-left: var(--gutter-tablet);
        padding-right: var(--gutter-tablet);
        padding-bottom: 64px;
    }

    .home-hero {
        margin-bottom: 64px;
    }

    .home-hero-inner {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .home-hero-title {
        font-size: 30px;
        line-height: 38px;
    }

    .home-about-section {
        padding-bottom: 64px;
    }

    .home-layanan-section {
        padding-bottom: 64px;
    }

    .home-layanan-grid {
        gap: 32px;
        max-width: calc(var(--max-container) + var(--gutter-tablet));
    }

    .home-layanan-content {
        padding-right: var(--gutter-tablet);
    }

    .home-layanan-image-wrap {
        height: 480px;
    }

    .home-keunggulan-section {
        padding-bottom: 64px;
    }

    .home-portofolio-section {
        padding-bottom: 64px;
    }

    .home-portofolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .home-about-grid {
        gap: 32px;
    }

    .home-about-icon {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .home-about-content {
        flex: 0 0 70%;
        max-width: 70%;
    }

    .home-artikel-section {
        padding-bottom: 64px;
    }

    .home-artikel-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .home-cta-content {
        padding: 48px var(--gutter-tablet);
    }

    .home-cta-title {
        font-size: 28px;
        line-height: 36px;
    }
}

/* ============================
   RESPONSIVE — Mobile
   ============================ */
@media (max-width: 767px) {
    .home-hero {
        display: flex;
        flex-direction: column;
        margin-bottom: 64px;
        padding-top: 80px;
    }

    .home-hero-image {
        order: 1;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        height: 197px;
    }

    .home-hero-header {
        order: 2;
        padding-top: 0;
        background-image: none;
        background: var(--color-page-bg);
    }

    .home-hero-inner {
        padding-top: 32px;
        padding-bottom: 40px;
    }

    .home-hero-title {
        font-size: 26px;
        line-height: 34px;
    }

    .home-hero-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .home-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .home-hero-btn {
        width: 100%;
        max-width: 280px;
    }

    .home-about-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        text-align: center;
    }

    .home-about-icon {
        flex: none;
        max-width: 100%;
        width: 100%;
        height: 230px;
        align-items: center;
    }

    .home-about-icon img {
        margin-left: auto;
        margin-right: auto;
    }

    .home-about-content {
        flex: none;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home-about-tag,
    .home-about-title,
    .home-about-desc {
        text-align: center;
    }

    .home-about-link {
        justify-content: center;
    }

    .home-layanan-grid {
        flex-direction: column;
        gap: 32px;
        max-width: none;
    }

    .home-layanan-image-wrap {
        flex: none;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        border-radius: 0;
        height: 280px;
    }

    .home-layanan-content {
        flex: none;
        max-width: 100%;
        width: 100%;
        padding-left: var(--gutter-mobile);
        padding-right: var(--gutter-mobile);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home-layanan-tag,
    .home-layanan-title {
        text-align: center;
    }

    .home-layanan-accordion {
        width: 100%;
    }

    .home-layanan-item-head {
        text-align: left;
    }

    .home-layanan-item-desc {
        text-align: left;
    }

    .home-about-title {
        font-size: 26px;
        line-height: 36px;
    }

    .home-about-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .home-layanan-title {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 24px;
    }

    .home-layanan-item-title {
        font-size: 20px;
        line-height: 30px;
    }

    .home-layanan-item-desc {
        padding-right: 0;
    }

    .home-keunggulan-section .section-header,
    .home-keunggulan-section .section-header__title {
        text-align: center;
    }

    .home-keunggulan-desc {
        text-align: center;
    }

    .home-keunggulan-grid {
        grid-template-columns: 1fr;
    }

    .home-keunggulan-cell:nth-child(1)::after,
    .home-keunggulan-cell:nth-child(2)::after,
    .home-keunggulan-cell:nth-child(3)::after,
    .home-keunggulan-cell:nth-child(4)::after {
        display: none;
    }

    .home-keunggulan-cell:nth-child(2)::before,
    .home-keunggulan-cell:nth-child(4)::before,
    .home-keunggulan-cell:nth-child(6)::before {
        display: none;
    }

    .home-keunggulan-cell-diamond {
        display: none;
    }

    .home-keunggulan-cell:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background: linear-gradient(90deg, #EDF8F8 10%, #839AC2 50%, #EDF8F8 90%);
        display: block;
    }

    .home-keunggulan-cell {
        min-height: auto;
        padding: 32px 24px;
    }

    .home-keunggulan-cell-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .home-portofolio-section .section-header,
    .home-portofolio-section .section-header__title {
        text-align: center;
    }

    .home-portofolio-desc {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 32px;
    }

    .home-portofolio-stage {
        position: relative;
    }

    .home-portofolio-grid {
        display: block;
        position: relative;
        min-height: 250px;
    }

    .home-portofolio-slide {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        transition: opacity 0.45s ease, visibility 0.45s ease;
    }

    .home-portofolio-slide.active {
        opacity: 1;
        visibility: visible;
        position: relative;
    }

    .home-portofolio-card {
        max-width: 100%;
        width: 100%;
    }

    .home-portofolio-nav {
        display: inline-flex;
    }

    .home-portofolio-nav--prev {
        left: -12px;
        transform: translateY(-50%);
    }

    .home-portofolio-nav--next {
        right: -12px;
        transform: translateY(-50%);
    }

    .home-portofolio-more-wrap {
        display: none;
    }

    .home-artikel-header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .home-artikel-header .section-header {
        text-align: center;
    }

    .home-artikel-header .section-header--left .section-header__title {
        text-align: center;
    }

    .home-artikel-all-btn--header {
        display: none;
    }

    .home-artikel-all-wrap {
        display: flex;
    }

    .home-artikel-track {
        display: block;
        position: relative;
        min-height: 515px;
    }

    .home-artikel-slide {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        transition: opacity 0.45s ease, visibility 0.45s ease;
    }

    .home-artikel-slide.active {
        opacity: 1;
        visibility: visible;
        position: relative;
    }

    .home-artikel-nav {
        display: inline-flex;
    }

    .home-artikel-nav--prev {
        left:-12px;
        transform: translateY(-50%);
    }

    .home-artikel-nav--next {
        right:-12px;
        transform: translateY(-50%);
    }

    .home-cta-content {
        padding: 40px var(--gutter-mobile);
    }

    .home-cta-title {
        font-size: 24px;
        line-height: 32px;
    }

    .home-cta-desc {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .home-body {
        padding-left: var(--gutter-mobile);
        padding-right: var(--gutter-mobile);
    }
}
