  /* =============================
   VARIABLES & RESETS
   ============================= */
    :root {
        --shadow: 0 .75rem 2rem rgba(0, 0, 0, .08);
        --container: 1200px;
        --gray-900: #101828;
        --gray-700: #344054;
        --amber-500: #F5BE01;
        --amber-300: #FFDF72;
        --ink-800: #121B29;
        --ink-700: #2C323C;
        --font-sans: "Inter", "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";

        /* Testimonials palette */
        --t-dark: #101828;
        --t-sub: #344054;
        --t-accent: #F5BE01;
        --t-chip: #F7CB33;
        --t-card: #F9FAFB;
        --nav-h: 80px;
    }

    * {
        box-sizing: border-box;
    }

    html,
    body {
        height: 100%;
    }

    body {
        margin: 0;
        font-family: var(--font-sans);
        color: var(--gray-900);
        background: #fff;
        line-height: 1.5;
    }

    /* Container helpers */
    .bx-container {
        max-width: var(--container);
        margin-inline: auto;
        padding-inline: 1rem;
        text-align: center;
    }

    .bx-center {
        text-align: center;
    }



    /* =============================
   HERO
   ============================= */

    #hero {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: var(--gray-900);
        padding: 2rem 0 0;
    }

    .hero-title {
        font-weight: 900;
        letter-spacing: -.01em;
        padding-top:10px;
        margin: 0;
    }

    .mt-5 {
        margin-top: 3rem;
    }

    .mt-8 {
        margin-top: 4rem;
    }

    .hero-sub {
        color: var(--gray-700);
        font-weight: 700;
        font-size: clamp(1rem, .5vw + .9rem, 1.125rem);
        margin: 1.5rem 0 2rem;
    }

    .btn-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        height: 2.5rem;
        padding: .5rem 1rem;
        border-radius: .375rem;
        font-size: .875rem;
        font-weight: 600;
        text-decoration: none;
        color: #111;
        background-image: linear-gradient(to bottom, var(--amber-500), var(--amber-300));
        border: 1px solid var(--amber-500);
        transition: all .3s ease-in-out;
        box-shadow: 0 1px 0 rgba(0, 0, 0, .03), 0 1px 2px rgba(0, 0, 0, .06);
    }

    .btn-cta:hover {
        color: #fff;
        border-color: transparent;
        background-image: linear-gradient(to bottom, var(--ink-800), var(--ink-700));
        transform: translateY(-1px);
    }

    .btn-cta:active {
        transform: none;
    }

    .btn-cta:focus-visible {
        outline: 2px solid var(--ink-700);
        outline-offset: 2px;
    }

    .hero-frame-desktop {
        position: relative;
        pointer-events: none;
        max-width: 1920px;
        margin: 0 auto;
        width: 100%;
        display: none;
        padding-left:100px;
    }

    .hero-frame-desktop .hero-bg {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero-card-left {
        position: absolute;
        top: 20%;
        left: 25%;
        max-width: 9rem;
        filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .12));
    }

    .hero-right-wrap {
        position: absolute;
        top: 25%;
        right: 25%;
    }

    .hero-icon-wifi {
        position: absolute;
        right: 0;
        top: -4rem;
        width: 7rem;
    }

    .hero-card-right {
        max-width: 13rem;
        display: block;
        filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .12));
    }

    .hero-frame-mobile {
        position: relative;
        display: block;
        pointer-events: none;
    }

    .hero-frame-mobile .hero-bg {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* Desktop hero visibility */
    @media (min-width:1024px) {
        #hero {
            padding-top: 0;
        }

        .hero-frame-desktop {
            display: block;
        }

        .hero-frame-mobile {
            display: none;
        }

        .hero-title {
            margin-top: rem;
        }
    }



    /* =============================
   ANIMATIONS
   ============================= */
    @keyframes fxFadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes fxSlideUp {
        from {
            opacity: 0;
            transform: translateY(24px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .reveal {
        opacity: 0;
        will-change: transform, opacity;
    }

    .reveal.up {
        transform: translateY(16px);
    }

    .reveal.is-visible.fade {
        animation: fxFadeIn .8s ease forwards;
    }

    .reveal.is-visible.up {
        animation: fxSlideUp .8s cubic-bezier(.22, 1, .36, 1) forwards;
    }

    .delay-1 {
        animation-delay: .1s;
    }

    .delay-2 {
        animation-delay: .2s;
    }

    .delay-3 {
        animation-delay: .35s;
    }

    .delay-4 {
        animation-delay: .5s;
    }

    .delay-5 {
        animation-delay: .65s;
    }

    @media (prefers-reduced-motion:reduce) {

        .reveal,
        .reveal.up {
            opacity: 1;
            transform: none !important;
            animation: none !important;
        }
    }

    /* =============================
   NAV (FIXED)
   ============================= */
    #site-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50;
        background: #fff;
        height: 80px;
        border-bottom: 1px solid rgba(2, 8, 23, .06);
    }

    #site-nav .navbar {
        height: 80px;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    #site-nav .logo {
        display: inline-flex;
        align-items: center;
    }

    #site-nav .logo img {
        display: block;
        width: 80px;
        height: auto;
    }

    /* Hamburger (mobile) */
    #toggle_nav {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .hamburger {
        position: relative;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        cursor: pointer;
    }

    .hamburger span {
        position: absolute;
        height: 2px;
        width: 20px;
        background: #0C111D;
        border-radius: 2px;
        transition: transform .3s ease, opacity .2s ease, width .2s ease;
    }

    .hamburger span:nth-child(1) {
        transform: translateY(-6px);
    }

    .hamburger span:nth-child(2) {
        transform: translateY(0);
    }

    .hamburger span:nth-child(3) {
        width: 14px;
        transform: translateY(6px);
    }

    #toggle_nav:checked+label.hamburger span:nth-child(1) {
        transform: rotate(45deg);
    }

    #toggle_nav:checked+label.hamburger span:nth-child(2) {
        opacity: 0;
    }

    #toggle_nav:checked+label.hamburger span:nth-child(3) {
        width: 20px;
        transform: rotate(-45deg);
    }

    /* Mobile overlay + panel */
    .overlay {
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, .7);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform .5s ease;
    }

    #toggle_nav:checked~.overlay {
        transform: scaleY(1);
        transform-origin: top;
    }

    .menu-panel {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 2rem 1rem;
        visibility: hidden;
        opacity: 0;
        transform: translateY(6px) scale(.98);
        transition: all .3s ease;
        max-height: 90vh;
        overflow-y: auto;
        border-bottom: 1px solid rgba(2, 8, 23, .06);
    }

    #toggle_nav:checked~.menu-panel {
        visibility: visible;
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .mobile-only {
        display: block;
    }

    .nav-desktop {
        display: none;
    }

    .btn-top {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        padding: .5rem 1rem;
        border-radius: .375rem;
        font-size: .875rem;
        font-weight: 700;
        text-decoration: none;
        color: #0C111D;
        border: 1px solid var(--amber-500);
    }

    .btn-top:hover {
        background: #f9fafb;
    }

    /* Mobile accordion */
    .mobile-accordion details {
        border-top: 1px solid #eee;
    }

    .mobile-accordion details:first-child {
        border-top: 0;
    }

    .mobile-accordion summary {
        list-style: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0;
        font-weight: 600;
    }

    .mobile-accordion summary::-webkit-details-marker {
        display: none;
    }

    .mobile-accordion .chev {
        transition: transform .2s ease;
    }

    .mobile-accordion details[open] .chev {
        transform: rotate(180deg);
    }

    .mobile-accordion .acc-list {
        padding: .25rem 0 1rem 0;
        display: grid;
        gap: .5rem;
    }

    .mobile-accordion .acc-list a {
        display: flex;
        gap: .5rem;
        align-items: center;
        text-decoration: none;
        color: #475467;
        font-size: .95rem;
        padding: .25rem 0;
    }

    .mobile-accordion .acc-list a:hover {
        color: #0C111D;
    }

    /* Desktop nav */
    @media (min-width:1024px) {

        .hamburger,
        .overlay,
        .menu-panel {
            display: none;
        }

        .nav-desktop {
            display: flex;
            gap: .75rem;
            align-items: center;
            margin-left: auto;
        }

        .menu {
            display: flex;
            align-items: center;
            gap: .25rem;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .menu-btn {
            display: inline-flex;
            align-items: center;
            height: 40px;
            padding: 0 16px;
            font-size: .875rem;
            background: transparent;
            border: 0;
            border-radius: .375rem;
            color: #475467;
            cursor: pointer;
            text-decoration: none;
        }

        .menu-btn:hover {
            background: #f8fafc;
            color: #0C111D;
        }

        .chev {
            width: 12px;
            height: 12px;
            margin-left: 6px;
            transition: transform .2s ease;
        }

        .menu>li {
            position: relative;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 260px;
            background: #fff;
            border: 1px solid #eee;
            border-radius: .5rem;
            padding: .5rem;
            box-shadow: 0 12px 30px rgba(2, 8, 23, .12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(6px);
            transition: all .2s ease;
        }

        .menu>li:hover .dropdown,
        .menu>li:focus-within .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown a {
            display: flex;
            align-items: center;
            gap: .5rem;
            padding: .5rem .75rem;
            border-radius: .375rem;
            color: #475467;
            text-decoration: none;
        }

        .dropdown a:hover {
            background: #f8fafc;
            color: #0C111D;
        }

        /* body top space for fixed nav */
        body {
            padding-top: 80px;
        }
    }

    /* =============================
   PRODUCTS / FEATURES (generic wrap)
   ============================= */
    .products-section {
        margin: 0 0 2.5rem 0;
    }

    .products-wrap {
        background: #0C111D;
        border-radius: 1.5rem;
        padding: 2rem 1rem;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    @media (min-width:1024px) {
        .products-wrap {
            padding: 2.5rem;
        }
    }

    .products-head {
        color: #fff;
        max-width: 800px;
        margin: 0 auto 1.25rem auto;
        text-align: center;
    }

    .products-head h2 {
        font-size: clamp(1.25rem, 1.2vw + .8rem, 2rem);
        font-weight: 700;
        margin: 0;
    }

    .products-head h2 .accent {
        color: var(--amber-500);
    }

    .products-head .lead {
        color: #D0D5DD;
        margin: .75rem auto 1rem;
        font-size: clamp(1rem, .5vw + .9rem, 1.125rem);
        max-width: 560px;
    }

    .pill {
        display: inline-block;
        margin-top: .5rem;
        padding: .25rem .6rem;
        border-radius: 999px;
        font-size: .75rem;
        background: rgba(255, 255, 255, .08);
        color: #E2E8F0;
    }

    @media (min-width:1024px) {

        /* Wrap lebih lega & tetap dark */
        #products .products-wrap {
            padding: 48px 40px;
            /* lebih lega */
            border-radius: 24px;
            background: #0C111D;
            /* atau pakai bg vector kamu */
            /* background: #0C111D url('/assets/bg-vector.png') center/cover no-repeat; */
        }

        /* Head tetap center & proporsi heading */
        #products .products-head {
            max-width: 840px;
            margin: 0 auto 24px;
            text-align: center;
        }

        #products .products-head h2 {
            font-weight: 800;
            letter-spacing: -.2px;
        }

        #products .products-head .lead {
            max-width: 640px;
            margin: 10px auto 0;
        }

        /* Grid dua kolom, full stretch, tengah */
        #products .products-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
            /* jarak antar kartu */
            max-width: 1100px;
            /* lebar konten ala broiler x */
            width: 100%;
            margin: 0 auto;
            /* center */
            align-items: stretch;
            /* semua kartu sama tinggi */
        }

        /* Kartu: hilangkan max-width & auto margin yang bikin sempit */
        #products .product-card {
            background: #1E222C;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
            display: flex;
            flex-direction: column;
            height: 100%;
            max-width: none;
            /* override 480px */
            margin: 0;
            /* override margin auto */
            overflow: hidden;
            transition: transform .15s ease, box-shadow .2s ease;
        }

        /* Sedikit efek hover seperti */
        #products .product-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
        }

        /* Konten kartu: kiri, seimbang, CTA nempel bawah */
        #products .product-card .inner {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            text-align: left;
            /* counter bawaan .bx-container */
            flex: 1;
            /* isi mengisi tinggi */
        }

        #products .product-card h5 {
            margin: 6px 0 2px;
            font-size: 20px;
            line-height: 1.3;
            font-weight: 800;
            color: var(--amber-500);
        }

        #products .product-card p {
            margin: 8px 0 0;
            font-size: 15px;
            line-height: 1.7;
            color: #E5E7EB;
        }

        #products .product-card .cta-link {
            margin-top: auto;
            /* dorong CTA ke bawah */
            font-size: 14.5px;
            font-weight: 600;
            color: #fff;
            text-decoration: none;
        }

        /* Gambar konsisten & rapi di bawah kartu */
        #products .product-card img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            display: block;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
        }
    }

    @media (max-width: 1023.98px) {
        #products .product-card .inner {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Paksa paragraf tampil & terbaca di mobile */
        #products .product-card p {
            display: block !important;
            /* override d-none/d-lg-block */
            opacity: 1 !important;
            /* override .reveal */
            visibility: visible !important;
            height: auto !important;
            max-height: none !important;
            overflow: visible !important;
            -webkit-line-clamp: unset !important;
            /* lepas clamp kalau ada */
            -webkit-box-orient: initial !important;

            margin: 8px 0 0;
            font-size: 15px;
            /* konsisten dengan desktop */
            line-height: 1.7;
            color: #E5E7EB;
            text-align: left;
        }

        /* Netralisir animasi .reveal di section products saat mobile */
        #products .product-card .reveal {
            opacity: 1 !important;
            transform: none !important;
            animation: none !important;
        }

        /* Jika paragraf pakai util clamp class, buka clamp-nya */
        #products .product-card p.clamp-2,
        #products .product-card p.clamp-3,
        #products .product-card p.clamp-4 {
            -webkit-line-clamp: unset !important;
            color: #E5E7EB !important;
        }
    }

    /* =============================
   #KEUNGGULAN (PRODUCTS) — MOBILE FIRST
   ============================= */
    #keunggulan .products-wrap {
        background: #0C111D url('/assets/bg-vector.png') center/cover no-repeat;
        border-radius: 24px;
        padding: 20px 14px;
        color: #fff;
    }

    #keunggulan .products-head {
        text-align: center;
        max-width: 740px;
        margin: 0 auto 16px;
        color: #fff;
    }

    #keunggulan .products-head h2 {
        font-weight: 800;
        letter-spacing: -.2px;
        margin: 0;
        font-size: clamp(18px, 4.5vw, 28px);
    }

    #keunggulan .products-head .accent {
        color: #F5BE01;
    }

    #keunggulan .products-head .lead {
        color: #D0D5DD;
        margin: 10px auto 12px;
        font-size: clamp(14px, 3.8vw, 17px);
        line-height: 1.6;
    }

    #keunggulan .pill {
        display: inline-block;
        margin-top: 6px;
        padding: 4px 10px;
        font-size: 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .08);
        color: #E2E8F0;
    }

    #keunggulan .products-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 100%;
        margin: 0 auto;
    }

    #keunggulan .product-card {
        background: #1E222C;
        border-radius: 12px;
        color: #fff;
        box-shadow: 0 10px 18px rgba(0, 0, 0, .18);
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }

    #keunggulan .product-card .inner {
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 1;
    }

    #keunggulan .product-card h5 {
        margin: 6px 0 4px;
        font-size: 18px;
        line-height: 1.35;
        color: #F5BE01;
        font-weight: 800;
    }

    #keunggulan .product-card p {
        margin: 0;
        font-size: 14.5px;
        line-height: 1.7;
        color: #E5E7EB;
    }

    #keunggulan .product-card .cta-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: auto;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
    }

    #keunggulan .product-card .cta-link:hover {
        opacity: .9;
    }

    #keunggulan .product-card img {
        width: 100%;
        display: block;
        aspect-ratio: 16/9;
        object-fit: cover;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    /* Phones kecil */
    @media (max-width:380px) {
        #keunggulan .products-wrap {
            padding: 20px 12px;
        }

        #keunggulan .product-card .inner {
            padding: 14px;
        }
    }

    /* Tablet */
    @media (min-width:640px) {
        #keunggulan .products-wrap {
            padding: 28px 20px;
        }

        #keunggulan .products-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
            max-width: 980px;
        }
    }

    /* Desktop */
    @media (min-width:1024px) {
        #keunggulan .products-wrap {
            padding: 40px;
        }

        #keunggulan .products-grid {
            gap: 20px;
            max-width: 1100px;
        }

        #keunggulan .product-card h5 {
            font-size: 20px;
        }

        #keunggulan .product-card p {
            font-size: 15px;
        }
    }

    /* =============================
   TESTIMONIALS — MOBILE FIRST
   ============================= */
    .testimonial-section {
        background: #fff;
        color: #101828;
        padding: 24px 0;
    }

    .testimonial-section .bx-container {
        max-width: 1200px;
        margin-inline: auto;
        padding: 0 16px;
    }

    .t-head .t-kicker {
        color: #667085;
        text-transform: uppercase;
        font-weight: 600;
        margin: 0;
        font-size: 12px;
        letter-spacing: .02em;
    }

    .t-head .t-head-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin: 16px 0 20px;
    }

    .t-head .t-title {
        font-size: clamp(20px, 2.5vw, 30px);
        font-weight: 700;
        color: var(--t-dark);
        margin: 0;
        max-width: 100%;
    }

    .t-head .t-title .accent {
        color: var(--t-accent);
    }

    /* Nav buttons */
    .t-nav {
        display: flex;
        gap: 8px;
    }

    .t-btn {
        width: 36px;
        height: 36px;
        border-radius: 999px;
        border: 0;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--t-chip);
        color: #0C111D;
        transition: filter .2s ease, transform .1s ease;
    }

    .t-btn:hover {
        filter: brightness(.95);
    }

    .t-btn:active {
        transform: scale(.98);
    }

    /* Swiper area */
    .t-swiper {
        overflow: hidden;
    }

    .swiper-slide {
        height: auto;
    }

    /* Card */
    .t-card {
        background: var(--t-card);
        border-radius: 12px;
        padding: 16px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
    }

    .t-quote {
        color: var(--t-sub);
        font-size: 14px;
        line-height: 1.7;
        font-weight: 500;
        margin: 0 0 14px 0;
    }

    .t-author {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-top: auto;
    }

    .t-avatar {
        width: 56px;
        height: 56px;
        border-radius: 999px;
        object-fit: cover;
        display: block;
    }

    .t-name {
        color: #475467;
        font-weight: 700;
        margin: 0 0 2px;
    }

    .t-meta {
        color: #667085;
        margin: 0;
        font-size: 14px;
    }

    /* Clamp */
    .clamp-6 {
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Pagination */
    .t-pagination {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 12px;
    }

    .t-pagination .swiper-pagination-bullet {
        width: 20px;
        height: 4px;
        border-radius: 2px;
        background: #D2D2D2;
        opacity: 1;
    }

    .t-pagination .swiper-pagination-bullet-active {
        background: #0C111D;
    }

    /* Tablet: header sejajar */
    @media (min-width:768px) {
        .t-head .t-head-row {
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
        }

        .t-head .t-title {
            max-width: 60%;
        }

        .t-card {
            padding: 20px;
            min-height: 250px;
        }
    }

    /* Desktop spacing */
    @media (min-width:1024px) {
        .testimonial-section {
            padding: 40px 0;
        }
    }

    /* =============================
   PARTNERS (tetap, rapi di desktop)
   ============================= */
    .partners-section {
        background: #F9FAFB;
        color: #101828;
        padding: 40px 0;
    }

    .partners-section .bx-container {
        max-width: 1200px;
        margin-inline: auto;
        padding: 0 16px;
    }

    .partners-title {
        text-align: center;
        color: #344054;
        font-weight: 600;
        font-size: clamp(20px, 2.5vw, 30px);
        margin: 8px 0 24px;
    }

    .partners-rail {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 36px;
        margin: 24px 0;
    }

    /* Gradient fades */
    .fade {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 25%;
        pointer-events: none;
        display: none;
        z-index: 10;
    }

    .fade-left {
        left: -10px;
        background: linear-gradient(to right, #F9FAFB 0%, rgba(249, 250, 251, 0) 100%);
    }

    .fade-right {
        right: -10px;
        background: linear-gradient(to left, #F9FAFB 0%, rgba(249, 250, 251, 0) 100%);
    }

    @media (min-width:1024px) {
        .fade {
            display: block;
        }
    }

    /* Logo style */
    .partner-logo {
        display: inline-block;
        height: auto;
        width: clamp(100px, 12vw, 160px);
        filter: grayscale(1) brightness(.9);
        transition: filter .3s ease, transform .2s ease, box-shadow .3s ease;
    }

    .partner-logo:hover {
        filter: grayscale(0) brightness(1);
        transform: translateY(-2px);
    }

    /* Splide spacing (jika dipakai) */
    .partners-section .splide__track {
        padding: 0 !important;
    }

    .partners-section .splide__list {
        align-items: center;
    }

    .partners-section .splide__slide {
        margin: 0;
    }

    #bx-footer {
        --footer-bg: #12141D;
        --footer-text: #FFFFFF;
        --footer-muted: #A1A1AA;
        --footer-border: #3E4550;
        --footer-link: #E5E7EB;
        --footer-link-hover: #FFFFFF;
        --accent: #F5BE01;
        background: var(--footer-bg);
        color: var(--footer-text);
    }

    #bx-footer .bx-container {
        max-width: var(--container, 1200px);
        margin-inline: auto;
        padding: 0 16px;
    }

    /* ===== Top Grid ===== */
    #bx-footer .footer-top {
        display: grid;
        gap: 22px;
        padding: 28px 0 22px;
        grid-template-columns: 1fr;
        /* mobile */
    }

    /* Tablet */
    @media (min-width: 768px) {
        #bx-footer .footer-top {
            grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
            gap: 16px;
            padding: 40px 0 22px;
        }
    }

    /* Desktop */
    @media (min-width: 1024px) {
        #bx-footer .footer-top {
            gap: 10px;
            padding: 48px 0 22px;
        }
    }

    /* ===== Brand / Address / Socials ===== */
    #bx-footer .brand .logo img {
        width: 140px;
        height: auto;
        display: block;
    }

    #bx-footer .brand .address {
        color: var(--footer-muted);
        margin-top: 12px;
        font-size: 0.95rem;
    }

    #bx-footer .brand .address .title {
        color: var(--footer-text);
        font-weight: 600;
        display: block;
        margin-bottom: 6px;
    }

    #bx-footer .brand .row {
        display: grid;
        grid-template-columns: 20px 1fr;
        gap: 8px;
        align-items: start;
        margin: 8px 0;
    }

    #bx-footer .brand .row .ico {
        color: var(--footer-muted);
        line-height: 0;
    }

    #bx-footer .socials {
        display: flex;
        gap: 10px;
        margin-top: 14px;
        padding: 0;
        list-style: none;
    }

    #bx-footer .socials a {
        display: inline-flex;
        width: 36px;
        height: 36px;
        border-radius: 999px;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, .08);
        color: #DADADA;
        text-decoration: none;
        transition: transform .15s ease, filter .2s ease, background .2s ease;
    }

    #bx-footer .socials a:hover {
        background: rgba(255, 255, 255, .14);
        filter: brightness(1.05);
        transform: translateY(-1px);
        color: #fff;
    }

    /* ===== Columns ===== */
    #bx-footer .fcol h5 {
        color: var(--footer-muted);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-weight: 700;
        font-size: .8rem;
        margin: 10px 0 12px;
    }

    #bx-footer .fcol ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    #bx-footer .fcol li {
        margin: 8px 0;
    }

    #bx-footer .fcol a {
        color: var(--footer-link);
        text-decoration: none;
        transition: color .2s ease, opacity .2s ease;
    }

    #bx-footer .fcol a:hover {
        color: var(--footer-link-hover);
    }

    /* Badges */
    #bx-footer .install .badges {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 12px;
    }

    #bx-footer .install img {
        display: block;
        height: 56px;
        width: auto;
        border-radius: 8px;
        background: #0e0f16;
    }

    /* ===== Bottom bar ===== */
    #bx-footer .footer-bottom {
        border-top: 1px solid var(--footer-border);
        padding: 12px 0 18px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        color: var(--footer-text);
    }

    #bx-footer .footer-bottom p {
        margin: 0;
        text-align: center;
        flex: 1 1 100%;
    }

    #bx-footer .footer-bottom .legal {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex: 1 1 100%;
    }

    #bx-footer .footer-bottom .legal a {
        color: var(--footer-link);
        text-decoration: underline;
    }

    @media (min-width: 1024px) {
        #bx-footer .footer-bottom p {
            flex: 0 0 auto;
            text-align: left;
        }

        #bx-footer .footer-bottom .legal {
            flex: 0 0 auto;
            justify-content: flex-end;
        }
    }