
    /* =============================
   VARIABLES & RESETS
   ============================= */
    :root {
        --shadow: 0 .75rem 2rem rgba(0, 0, 0, .08);
        --container: 1200px;
        --gray-900: #101828;
        --gray-700: #344054;
        --gray-500: #667085;
        --amber-500: #F5BE01;
        --amber-300: #FFDF72;
        --ink-800: #121B29;
        --ink-700: #2C323C;
        --ink-900: #0C111D;
        --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;
        --container: 1200px;
        --shadow: 0 .75rem 2rem rgba(0, 0, 0, .08);
        --card: #161A22;

        --chip: #F7CB33;
        --t-card: #F9FAFB;
    }

    * {
        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;
    }

    /* 1) Perbaiki container: JANGAN center semua konten di sini */
    .bx-container {
        max-width: var(--container);
        margin-inline: auto;
        /* gutter adaptif biar tidak nempel tepi */
        padding-inline: clamp(16px, 5vw, 40px);
        /* Hapus text-align global agar defaultnya left */
        text-align: left;
    }

    /* Kalau ada tempat lain yang butuh center, pakai util .bx-center saja */
    .bx-center {
        text-align: center;
    }

    .hero2 {
        display: grid;
        align-items: stretch;
        padding: 28px 0 8px
    }

    .hero2 p {
        color: var(--ink-500);
        margin: .6rem 0 1.1rem
    }

    /* varian hero yang kontennya dipusatkan */
    .hero--center .hero__grid {
        align-items: center;
    }

    .hero--center .hero__rail {
        margin-inline: auto;
        /* pastikan tetap berada di tengah */
        max-width: var(--container);
    }

    /* kalau mau full-height biar tampak ‘center’ vertikal */
    .hero--center {
        min-height: calc(100vh - var(--nav-h));
        display: grid;
        align-items: center;
    }

    .hero__wrap {
        display: grid;

        grid-template-columns: 1fr;
        /* mobile satu kolom */
        align-items: center;
        gap: clamp(16px, 3vw, 32px);
    }

    @media (min-width: 992px) {
        .hero__wrap {
            grid-template-columns: 1.15fr 1fr;
            /* desktop 2 kolom */
        }
    }

    /* Tipografi & lebar teks nyaman */
    .hero__eyebrow {
        display: inline-block;
        padding: .25rem .5rem;
        border-radius: 999px;
        background: #FFF2C2;
        font-weight: 700;
        font-size: .875rem;
        margin-bottom: .75rem;
    }

    .hero__title {
        margin: 0 0 .75rem;
        line-height: 1.1;
        font-weight: 900;
        letter-spacing: -.01em;
        font-size: clamp(1.6rem, 3vw + .5rem, 2.5rem);
        max-width: 22ch;
        /* batasi supaya tidak terlalu panjang */
    }

    .hero__title .accent {
        color: #F5BE01;
    }

    .hero__lead {
        margin: 0 0 1.25rem;
        color: #344054;
        font-weight: 600;
        font-size: clamp(1rem, .5vw + .9rem, 1.125rem);
        max-width: 60ch;
    }

    /* 3) Pastikan tidak ketutup navbar fixed saat di mobile */
    #hero {
        padding-top: clamp(24px, 6vw, 56px);
        scroll-margin-top: 96px;
        /* kalau diklik dari anchor */
    }

    @media (max-width: 1023.98px) {
        body {
            padding-top: 80px;
        }

        /* nav kamu fixed 80px */
    }


    /* =============================
   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;
        }
    }



    #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;
        }
    }

    /* =============== TOKENS =============== */


    img {
        max-width: 100%;
        display: block;
    }

    .container {
        max-width: var(--container);
        margin-inline: auto;
        padding-inline: 16px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        height: 44px;
        padding: 0 16px;
        border-radius: 10px;
        font-weight: 700;
        text-decoration: none;
        border: 1px solid var(--amber-500);
        color: #111;
        background-image: linear-gradient(to bottom, var(--amber-500), var(--amber-300));
        box-shadow: 0 1px 0 rgba(0, 0, 0, .03), 0 1px 2px rgba(0, 0, 0, .06);
        transition: all .2s ease;
    }

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

    .btn:active {
        transform: none;
    }

    /* =============== HERO =============== */
    .hero2 {
        background: #FFF6E5;
        padding: 28px 0;
    }

    .hero__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: center;
    }

    .hero__eyebrow {
        display: inline-block;
        padding: 6px 10px;
        border-radius: 999px;
        background: #fff;
        border: 1px solid #FFE7AC;
        color: #9A7A00;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .02em;
    }

    .hero__title {
        margin: 10px 0 8px;
        font-weight: 900;
        letter-spacing: -.2px;
        font-size: clamp(20px, 3.2vw + .5rem, 30px);
    }

    .hero__title .accent {
        color: #EA9A00;
    }

    .hero__lead {
        color: var(--gray-700);
        margin: 8px 0 16px;
        font-size: 15.5px;
    }

    .hero__media {
        border-radius: 18px;
        overflow: hidden;
        box-shadow: var(--shadow);
        background: #fff;
    }

    @media (min-width:960px) {
        .hero {
            padding: 38px 0;
        }

        .hero__grid {
            grid-template-columns: 1.1fr .9fr;
            gap: 28px;
        }

        .hero__lead {
            max-width: 560px;
        }
    }

    /* =============== PANEL PRODUK =============== */
    .panel {
        background: var(--ink-900);
        color: #fff;
        border-radius: 22px;
        padding: 28px 16px;
        margin: 28px auto;
        box-shadow: var(--shadow);
    }

    @media(min-width:960px) {
        .panel {
            padding: 38px 28px;
        }
    }

    .panel__kicker {
        color: #9AA4B2;
        text-transform: uppercase;
        letter-spacing: .06em;
        font-size: 12px;
        font-weight: 700;
        margin: 0;
        text-align: center;
    }

    .panel__title {
        margin: 10px auto 8px;
        text-align: center;
        font-weight: 800;
        letter-spacing: -.2px;
        font-size: clamp(20px, 2.4vw + .5rem, 28px);
        max-width: 760px;
    }

    .panel__title .accent {
        color: var(--amber-500);
    }

    .panel__lead {
        color: #D0D5DD;
        text-align: center;
        margin: 8px auto 12px;
        max-width: 640px;
        font-size: 15.5px;
    }

    .chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin: 10px 0 4px;
    }

    .chip {
        background: var(--chip);
        color: #0C111D;
        border-radius: 999px;
        padding: 6px 10px;
        font-size: 12px;
        font-weight: 800;
    }

    .cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 16px auto 6px;
        max-width: 1100px;
    }

    @media (min-width:680px) {
        .cards {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
    }

    @media (min-width:1024px) {
        .cards {
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
    }

    .card {
        background: var(--card);
        border: 1px solid rgba(255, 255, 255, .06);
        border-radius: 14px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform .15s ease, box-shadow .25s ease;
    }

    .card:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
    }

    .card__img {
        width: 100%;
        aspect-ratio: 1.1/1;
        object-fit: cover;
    }

    .card__body {
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex: 1;
    }

    .badge {
        align-self: flex-start;
        background: #F7CB33;
        color: #0C111D;
        border-radius: 999px;
        padding: 4px 10px;
        font-size: 12px;
        font-weight: 800;
    }

    .card h5 {
        margin: 4px 0 2px;
        color: var(--amber-500);
        font-size: 18px;
        font-weight: 800;
    }

    .card p {
        margin: 0;
        color: #E5E7EB;
        font-size: 14.5px;
    }

    .card ul {
        margin: 8px 0 0 18px;
        color: #E5E7EB;
        font-size: 14px;
    }

    .card li {
        margin: .25rem 0;
    }

    .card__cta {
        margin-top: auto;
        padding-top: 10px;
        font-weight: 700;
        font-size: 14px;
    }

    .card__cta a {
        color: #fff;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, .25);
    }

    .card__cta a:hover {
        border-color: #fff;
    }

    /* =============== CTA BANNER =============== */
    .cta {
        margin: 28px 0 40px;
    }

    .cta__box {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        background: #F7CB33;
        padding: 22px 16px;
    }

    .cta__box::after {
        content: "";
        position: absolute;
        inset: 0;
        background: url('https://images.unsplash.com/photo-1604079628040-94301bb21b91?q=80&w=1200&auto=format&fit=crop') center/cover no-repeat;
        mix-blend: multiply;
        opacity: .25;
    }

    .cta__content {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: center;
    }

    .cta__title {
        margin: 0;
        font-size: clamp(18px, 2.2vw + .5rem, 24px);
        font-weight: 900;
        letter-spacing: -.2px;
    }

    .cta__lead {
        margin: 0;
        color: #3B2A00;
        font-weight: 600;
    }

    .cta__actions {
        margin-top: 6px;
    }

    @media(min-width:900px) {
        .cta__box {
            padding: 28px 24px;
        }

        .cta__content {
            grid-template-columns: 1.2fr .8fr;
        }

        .cta__art {
            justify-self: end;
            max-width: 440px;
        }
    }

    /* Footer mini */
    footer {
        background: #0F1623;
        color: #C7CED6;
        padding: 24px 0;
        font-size: 13px;
    }

    .footer__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: center;
    }

    @media(min-width:720px) {
        .footer__grid {
            grid-template-columns: 1fr auto;
        }
    }
