:root {
    --bj-surface: #fff6dc;
    --bj-surface-card: #ffffff;
    --bj-surface-soft: #fff0bd;
    --bj-surface-blue: #e7f0ff;
    --bj-surface-warm: #ffe8a3;
    --bj-text: #273047;
    --bj-heading: #101833;
    --bj-muted: #606a7e;
    --bj-muted-2: #7d8799;
    --bj-outline: #ead9aa;
    --bj-outline-strong: #d6bd79;
    --bj-primary: #004aaf;
    --bj-primary-2: #0b63d8;
    --bj-primary-3: #e7f0ff;
    --bj-yellow: #ffd85c;
    --bj-orange: #f15a24;
    --bj-green: #1fa463;
    --bj-radius-sm: 10px;
    --bj-radius: 18px;
    --bj-radius-lg: 26px;
    --bj-shadow-sm: 0 8px 24px rgba(16, 24, 51, .08);
    --bj-shadow: 0 20px 52px rgba(0, 74, 175, .14);
    --bj-shadow-strong: 0 28px 70px rgba(0, 74, 175, .2);
    --bj-container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 96px;
}

body {
    background:
        linear-gradient(180deg, rgba(234, 242, 255, .65), rgba(251, 248, 241, 0) 420px),
        var(--bj-surface);
    color: var(--bj-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.68;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(249, 191, 35, .75);
    outline-offset: 3px;
}

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

.bj-container {
    margin-inline: auto;
    width: min(var(--bj-container), calc(100% - 48px));
}

.bj-section {
    padding: clamp(54px, 7vw, 92px) 0;
}

.bj-section--soft {
    background:
        linear-gradient(135deg, rgba(234, 242, 255, .9), rgba(255, 244, 214, .5)),
        var(--bj-surface-soft);
}

.bj-eyebrow {
    align-items: center;
    color: var(--bj-primary);
    display: inline-flex;
    font-size: .72rem;
    font-weight: 800;
    gap: 8px;
    letter-spacing: .12em;
    line-height: 1.25;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.bj-eyebrow::before {
    background: linear-gradient(90deg, var(--bj-yellow), var(--bj-orange));
    border-radius: 999px;
    content: "";
    height: 8px;
    width: 8px;
}

.bj-h1,
.bj-h2,
.bj-h3,
h1,
h2,
h3 {
    color: var(--bj-heading);
    font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
    line-height: 1.12;
    margin-top: 0;
}

.bj-h1 {
    font-size: clamp(2.25rem, 5vw, 4.75rem);
    letter-spacing: 0;
    margin-bottom: 22px;
    max-width: 920px;
}

.bj-h2 {
    font-size: clamp(1.75rem, 3vw, 3rem);
    letter-spacing: 0;
    margin-bottom: 18px;
}

.bj-h3 {
    font-size: clamp(1.08rem, 1.4vw, 1.32rem);
    line-height: 1.25;
    margin-bottom: 10px;
}

.bj-lead {
    color: var(--bj-muted);
    font-size: clamp(1.02rem, 1.4vw, 1.22rem);
    line-height: 1.72;
    margin: 0 0 24px;
    max-width: 760px;
}

.bj-button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    align-items: center;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-size: .96rem;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    line-height: 1.1;
    min-height: 48px;
    padding: 14px 22px;
    position: relative;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
    white-space: nowrap;
}

.bj-button--primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: linear-gradient(180deg, var(--bj-primary-2), var(--bj-primary));
    box-shadow: 0 14px 30px rgba(0, 64, 152, .24);
    color: #fff;
}

.bj-button--primary::after {
    background: rgba(255, 255, 255, .34);
    border-radius: inherit;
    content: "";
    height: 42%;
    left: 12px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 6px;
}

.bj-button--primary {
    isolation: isolate;
}

.bj-button--primary > * {
    position: relative;
    z-index: 1;
}

.bj-button--outline {
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--bj-outline-strong);
    color: var(--bj-primary);
}

.bj-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    box-shadow: var(--bj-shadow);
    transform: translateY(-2px);
}

.bj-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92)),
        var(--bj-surface-card);
    border: 1px solid rgba(217, 223, 235, .95);
    border-radius: var(--bj-radius);
    box-shadow: var(--bj-shadow-sm);
    overflow: hidden;
    position: relative;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.bj-card:hover {
    border-color: rgba(0, 100, 216, .28);
    box-shadow: var(--bj-shadow);
    transform: translateY(-4px);
}

.bj-grid {
    display: grid;
    gap: 24px;
}

.bj-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bj-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bj-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Header */
.bj-site-header {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(217, 223, 235, .78);
    box-shadow: 0 8px 28px rgba(16, 24, 39, .04);
    position: sticky;
    top: 0;
    z-index: 50;
}

.bj-navbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 76px;
    position: relative;
}

.bj-logo {
    align-items: center;
    color: var(--bj-heading);
    display: inline-flex;
    font-family: Montserrat, Inter, sans-serif;
    font-weight: 850;
    gap: 12px;
    letter-spacing: 0;
}

.bj-logo__mark {
    align-items: center;
    background: linear-gradient(145deg, var(--bj-primary-2), var(--bj-primary));
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 64, 152, .2);
    color: #fff;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.bj-logo__mark svg {
    height: 29px;
    width: 29px;
}

.bj-logo__text {
    font-size: 1.02rem;
}

.bj-nav {
    align-items: center;
    display: flex;
    gap: clamp(14px, 2vw, 26px);
}

.bj-nav-menu {
    align-items: center;
    display: flex;
    gap: clamp(14px, 2vw, 26px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.bj-nav a {
    color: var(--bj-muted);
    display: inline-flex;
    font-size: .94rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
}

.bj-nav a:hover {
    color: var(--bj-primary);
}

.bj-nav li {
    list-style: none;
    margin: 0;
    position: relative;
}

.bj-nav .menu-item-has-children > a {
    align-items: center;
    gap: 6px;
}

.bj-nav .menu-item-has-children > a::before {
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    content: "";
    height: 6px;
    order: 2;
    transform: rotate(45deg) translateY(-2px);
    width: 6px;
}

.bj-nav .sub-menu {
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(217, 223, 235, .86);
    border-radius: 14px;
    box-shadow: 0 22px 54px rgba(16, 24, 39, .14);
    display: grid;
    gap: 2px;
    left: 50%;
    list-style: none;
    margin: 0;
    min-width: 220px;
    opacity: 0;
    padding: 10px;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 16px);
    transform: translate(-50%, -6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    visibility: hidden;
    z-index: 90;
}

.bj-nav .sub-menu::before {
    content: "";
    height: 18px;
    left: 0;
    position: absolute;
    right: 0;
    top: -18px;
}

.bj-nav li:hover > .sub-menu,
.bj-nav li:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
}

.bj-nav .sub-menu a {
    border-radius: 10px;
    color: var(--bj-muted);
    display: flex;
    font-size: .88rem;
    line-height: 1.35;
    padding: 10px 12px;
    width: 100%;
}

.bj-nav .sub-menu a:hover,
.bj-nav .sub-menu a:focus-visible {
    background: #fff0bd;
    color: var(--bj-primary);
}

.bj-nav .sub-menu .current-menu-item > a::after,
.bj-nav .sub-menu .current_page_item > a::after,
.bj-nav .sub-menu a[aria-current="page"]::after {
    content: none;
}

.bj-nav .current-menu-item > a,
.bj-nav .current_page_item > a,
.bj-nav a[aria-current="page"] {
    color: var(--bj-primary);
    position: relative;
}

.bj-nav .current-menu-item > a::after,
.bj-nav .current_page_item > a::after,
.bj-nav a[aria-current="page"]::after {
    background: var(--bj-primary);
    border-radius: 999px;
    bottom: -10px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
}

.bj-nav .bj-button {
    color: #fff;
    min-height: 42px;
    padding: 12px 18px;
}

.bj-menu-toggle {
    display: none;
}

/* Homepage hero */
.bj-hero {
    overflow: hidden;
    padding: clamp(56px, 7vw, 94px) 0 clamp(58px, 8vw, 104px);
    position: relative;
}

.bj-hero::before {
    background:
        radial-gradient(circle at 20% 10%, rgba(249, 191, 35, .22), transparent 28%),
        radial-gradient(circle at 95% 12%, rgba(0, 100, 216, .12), transparent 30%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.bj-hero__grid {
    align-items: center;
    display: grid;
    gap: clamp(34px, 6vw, 70px);
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
    position: relative;
}

.bj-hero .bj-meta-list {
    gap: 10px;
    margin-top: 30px;
}

.bj-hero__visual {
    aspect-ratio: 1 / .82;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(234, 242, 255, .92));
    border: 1px solid rgba(217, 223, 235, .9);
    border-radius: 34px;
    box-shadow: var(--bj-shadow-strong);
    min-height: 420px;
    overflow: hidden;
    position: relative;
}

.bj-hero__visual::before {
    background:
        radial-gradient(circle at 50% 34%, rgba(255, 255, 255, .4) 0 9%, transparent 10%),
        radial-gradient(circle at 42% 43%, var(--bj-primary-2) 0 17%, transparent 18%),
        radial-gradient(circle at 61% 30%, var(--bj-yellow) 0 13%, transparent 14%),
        radial-gradient(circle at 68% 55%, var(--bj-orange) 0 12%, transparent 13%),
        radial-gradient(circle at 34% 62%, #7bb3ff 0 10%, transparent 11%);
    content: "";
    inset: 0;
    position: absolute;
}

.bj-hero__visual::after {
    background:
        linear-gradient(var(--bj-primary), var(--bj-primary)) 32% 73% / 38% 12px no-repeat,
        linear-gradient(var(--bj-primary), var(--bj-primary)) 31% 64% / 12px 20% no-repeat,
        linear-gradient(var(--bj-primary), var(--bj-primary)) 68% 64% / 12px 20% no-repeat,
        linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,244,214,.94));
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 24px;
    bottom: 38px;
    box-shadow: 0 18px 38px rgba(16, 24, 39, .12);
    color: var(--bj-heading);
    content: "Gate event custom";
    display: flex;
    font-weight: 850;
    left: 38px;
    letter-spacing: 0;
    min-height: 96px;
    padding: 22px;
    position: absolute;
    right: 38px;
    text-align: left;
}

.bj-hero__visual .unused {
    display: none;
}

/* Homepage service cards without template changes */
.bj-section--soft .bj-grid--4 > .bj-card,
.bj-section .bj-grid--4 > .bj-card {
    display: flex;
    flex-direction: column;
    min-height: 250px;
    padding-top: 86px !important;
}

.bj-section--soft .bj-grid--4 > .bj-card::before,
.bj-section .bj-grid--4 > .bj-card::before {
    background:
        radial-gradient(circle at 32% 34%, var(--bj-primary-2) 0 20%, transparent 21%),
        radial-gradient(circle at 58% 32%, var(--bj-yellow) 0 17%, transparent 18%),
        radial-gradient(circle at 72% 56%, var(--bj-orange) 0 15%, transparent 16%),
        linear-gradient(135deg, var(--bj-surface-blue), #fff);
    border: 1px solid rgba(217, 223, 235, .9);
    border-radius: 18px;
    content: "";
    height: 54px;
    left: 24px;
    position: absolute;
    right: 24px;
    top: 22px;
}

.bj-section--soft .bj-grid--4 > .bj-card .bj-button,
.bj-section .bj-grid--4 > .bj-card .bj-button {
    margin-top: auto;
    width: fit-content;
}

/* Breadcrumb */
.bj-breadcrumb {
    color: var(--bj-muted-2);
    font-size: .9rem;
    margin: 24px auto 0;
    width: min(var(--bj-container), calc(100% - 48px));
}

.bj-breadcrumb ol {
    align-items: center;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(217, 223, 235, .78);
    border-radius: 999px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 9px 14px;
}

.bj-breadcrumb li {
    align-items: center;
    display: inline-flex;
}

.bj-breadcrumb li:not(:last-child)::after {
    color: var(--bj-outline-strong);
    content: "/";
    margin-left: 7px;
}

.bj-breadcrumb a {
    color: var(--bj-primary);
    font-weight: 750;
}

.bj-breadcrumb span {
    color: var(--bj-muted);
}

/* Single product */
.bj-product-hero {
    align-items: center;
    background:
        radial-gradient(circle at 2% 12%, rgba(249, 191, 35, .18), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(234, 242, 255, .62));
    border: 1px solid rgba(217, 223, 235, .82);
    border-radius: 34px;
    box-shadow: var(--bj-shadow-sm);
    display: grid;
    gap: clamp(28px, 5vw, 58px);
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    margin: 30px 0 48px;
    padding: clamp(22px, 4vw, 42px);
}

.bj-product-hero__image {
    aspect-ratio: 4 / 3;
    background:
        linear-gradient(135deg, var(--bj-surface-blue), var(--bj-surface-warm));
    border-radius: 28px;
    box-shadow: var(--bj-shadow);
    min-height: 360px;
    overflow: hidden;
    position: relative;
}

.bj-product-hero__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.bj-product-hero__image::after {
    background: linear-gradient(180deg, transparent, rgba(0, 39, 95, .16));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.bj-meta-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.bj-pill,
.bj-badge {
    align-items: center;
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--bj-outline);
    border-radius: 999px;
    color: var(--bj-muted);
    display: inline-flex;
    font-size: .86rem;
    font-weight: 750;
    gap: 6px;
    line-height: 1.1;
    padding: 9px 13px;
}

.bj-pill::before {
    background: var(--bj-yellow);
    border-radius: 50%;
    content: "";
    height: 7px;
    width: 7px;
}

.bj-price {
    color: var(--bj-primary);
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 16px 0 8px;
}

.bj-price del {
    color: var(--bj-muted-2);
    font-size: .62em;
    margin-right: 10px;
}

.bj-price ins {
    text-decoration: none;
}

.bj-product-hero .bj-button {
    min-width: 160px;
}

/* TOC */
.bj-toc {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(217, 223, 235, .9);
    border-radius: 14px;
    box-shadow: var(--bj-shadow-sm);
    margin: 0;
    max-width: 100%;
    padding: 6px;
    position: fixed;
    right: clamp(16px, 2vw, 36px);
    top: 112px;
    width: max-content;
    z-index: 49;
}

.bj-toc.is-open {
    border-radius: 18px;
    max-height: calc(100vh - 136px);
    max-width: calc(100vw - 32px);
    overflow: auto;
    padding: 12px;
    width: max-content;
}

.bj-toc__toggle {
    align-items: center;
    background: none;
    border: 0;
    border-radius: 10px;
    color: var(--bj-heading);
    cursor: pointer;
    display: flex;
    gap: 10px;
    font-weight: 850;
    height: 42px;
    justify-content: center;
    min-height: 42px;
    padding: 0;
    text-align: left;
    width: 42px;
}

.bj-toc.is-open .bj-toc__toggle {
    height: auto;
    justify-content: flex-start;
    min-height: 38px;
    padding: 2px 0;
    width: 100%;
}

.bj-toc__icon {
    display: grid;
    gap: 4px;
    width: 18px;
}

.bj-toc__icon span {
    background: currentColor;
    border-radius: 999px;
    display: block;
    height: 2px;
}

.bj-toc__label {
    display: none;
}

.bj-toc.is-open .bj-toc__label {
    display: inline;
}

.bj-toc__list {
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}

.bj-toc.is-open .bj-toc__list {
    display: flex;
}

.bj-toc a {
    background: transparent;
    border: 1px solid rgba(217, 223, 235, .9);
    border-radius: 999px;
    color: var(--bj-muted);
    display: block;
    font-size: .86rem;
    font-weight: 720;
    line-height: 1.15;
    padding: 8px 12px;
    white-space: nowrap;
    width: auto;
}

.bj-toc a:hover {
    background: var(--bj-primary-3);
    border-color: rgba(0, 100, 216, .25);
    color: var(--bj-primary);
}

/* Product content sections */
#keunggulan-produk,
#detail-layanan,
#layanan-fasilitas,
#spesifikasi-teknis,
#harga-ketersediaan,
#portfolio-layanan,
#alur-pemesanan,
#review-pelanggan,
#faq-layanan {
    border-radius: 30px;
    margin: 0 0 28px;
    padding-left: clamp(22px, 4vw, 44px);
    padding-right: clamp(22px, 4vw, 44px);
}

#keunggulan-produk,
#spesifikasi-teknis,
#review-pelanggan,
#faq-layanan {
    background: rgba(255, 255, 255, .56);
}

#detail-layanan,
#layanan-fasilitas,
#harga-ketersediaan,
#portfolio-layanan,
#alur-pemesanan {
    background:
        linear-gradient(135deg, rgba(234, 242, 255, .92), rgba(255, 244, 214, .48));
}

.bj-content,
.bj-post-content {
    color: var(--bj-text);
    max-width: 850px;
}

.bj-content p,
.bj-post-content p {
    margin-bottom: 1.05em;
}

.bj-content h2,
.bj-post-content h2 {
    font-size: clamp(1.55rem, 2.4vw, 2.35rem);
    margin: 1.35em 0 .5em;
}

.bj-content ul,
.bj-post-content ul {
    padding-left: 1.25rem;
}

#harga-ketersediaan .bj-card {
    background:
        linear-gradient(135deg, #fff, #f7fbff);
    border-color: rgba(0, 100, 216, .18);
    padding: clamp(24px, 4vw, 36px) !important;
}

#harga-ketersediaan .bj-card::before {
    background: linear-gradient(180deg, var(--bj-yellow), var(--bj-orange));
    border-radius: 999px;
    content: "";
    height: calc(100% - 42px);
    left: 0;
    position: absolute;
    top: 21px;
    width: 5px;
}

.single-product #harga-ketersediaan .bj-card::before {
    background: linear-gradient(180deg, var(--bj-primary-2), var(--bj-primary));
}

#galeri-produk .bj-grid--3,
.bj-archive-grid {
    gap: 22px;
}

#galeri-produk figure {
    aspect-ratio: 4 / 3;
    margin: 0;
}

#portfolio-layanan {
    overflow: hidden;
    position: relative;
}

#portfolio-layanan::after {
    background:
        radial-gradient(circle at 45% 38%, rgba(0, 100, 216, .28) 0 14%, transparent 15%),
        radial-gradient(circle at 62% 55%, rgba(249, 191, 35, .5) 0 11%, transparent 12%);
    bottom: -80px;
    content: "";
    height: 260px;
    position: absolute;
    right: -60px;
    width: 360px;
}

details.bj-card {
    padding: 0 !important;
}

details.bj-card summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 22px;
}

details.bj-card summary::-webkit-details-marker {
    display: none;
}

details.bj-card summary::after {
    color: var(--bj-primary);
    content: "+";
    float: right;
    font-size: 1.25rem;
    font-weight: 900;
}

details.bj-card[open] summary::after {
    content: "-";
}

details.bj-card > div {
    border-top: 1px solid var(--bj-outline);
    color: var(--bj-muted);
    padding: 0 22px 20px;
}

/* Product and post cards */
.bj-archive-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bj-product-card,
.bj-grid--3 > .bj-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.bj-product-card__image {
    aspect-ratio: 4 / 3;
    background:
        linear-gradient(135deg, var(--bj-surface-blue), #fff);
    display: block;
    overflow: hidden;
}

.bj-product-card__image img {
    height: 100%;
    object-fit: cover;
    transition: transform .42s ease;
    width: 100%;
}

.bj-product-card:hover .bj-product-card__image img,
.bj-card:hover .bj-product-card__image img {
    transform: scale(1.045);
}

.bj-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.bj-product-card__body p {
    color: var(--bj-muted);
    margin: 0 0 16px;
}

.bj-product-card__body .bj-meta-list:last-child {
    margin-top: auto;
}

.bj-product-card .bj-button,
.bj-product-card__body .bj-button {
    min-height: 42px;
    padding: 12px 16px;
}

/* Footer */
.bj-footer {
    background:
        radial-gradient(circle at 12% 8%, rgba(0, 100, 216, .25), transparent 28%),
        linear-gradient(135deg, #0d1626, #111d32 60%, #0a1220);
    color: #fff;
    margin-top: 28px;
    padding: clamp(58px, 7vw, 84px) 0 30px;
}

.bj-footer .bj-logo {
    color: #fff;
    margin-bottom: 18px;
}

.bj-footer a {
    color: rgba(255, 255, 255, .78);
}

.bj-footer a:hover {
    color: #fff;
}

.bj-footer p {
    color: rgba(255, 255, 255, .72);
}

.bj-footer__grid {
    align-items: start;
    display: grid;
    gap: clamp(26px, 4vw, 44px);
    grid-template-columns: minmax(260px, 1.35fr) minmax(150px, .7fr) minmax(170px, .8fr) minmax(220px, 1fr);
}

.bj-footer h4 {
    color: #fff;
    font-size: .88rem;
    letter-spacing: .08em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.bj-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bj-footer li {
    margin: 0 0 10px;
}

.bj-footer .bj-button {
    margin-top: 12px;
}

.bj-footer .bj-button--primary {
    color: #fff !important;
    overflow: hidden;
    text-shadow: 0 1px 1px rgba(0, 32, 80, .28);
}

.bj-footer .bj-button--primary::after {
    z-index: -1;
}

.bj-badge-group {
    margin-top: 28px;
}

.bj-badge-group p {
    font-size: .92rem;
    line-height: 1.55;
    margin: 0 0 12px;
}

.bj-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.bj-footer-policy {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 32px;
    padding-top: 24px;
}

.bj-footer-policy ul {
    column-gap: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
    row-gap: 10px;
}

.bj-footer-policy li {
    margin: 0;
}

.bj-footer-policy a {
    align-items: center;
    color: rgba(255, 255, 255, .74);
    display: inline-flex;
    font-size: .94rem;
    line-height: 1.35;
    text-decoration: none;
}

.bj-footer-policy a::before {
    background: currentColor;
    border-radius: 999px;
    content: "";
    height: 5px;
    margin-right: 10px;
    opacity: .42;
    width: 5px;
}

.bj-footer-policy a:hover {
    color: #fff;
}

.bj-footer .bj-badge {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .86);
    padding: 9px 12px;
}

.bj-footer a.bj-badge {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: rgba(255, 255, 255, .72);
    padding: 0;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .28);
    text-underline-offset: 4px;
}

.bj-footer a.bj-badge:hover {
    color: #fff;
    text-decoration-color: var(--bj-yellow);
}

.bj-floating-wa {
    align-items: center;
    background: linear-gradient(180deg, #27c96a, #149653);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    bottom: 22px;
    box-shadow: 0 16px 34px rgba(20, 150, 83, .28);
    color: #fff;
    display: inline-flex;
    gap: 8px;
    line-height: 1;
    padding: 12px 16px;
    position: fixed;
    right: 22px;
    z-index: 60;
}

.bj-floating-wa span {
    background: rgba(255, 255, 255, .18);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
    padding: 6px 7px;
}

/* WooCommerce basics */
.woocommerce-ordering select {
    background: #fff;
    border: 1px solid var(--bj-outline);
    border-radius: 999px;
    color: var(--bj-text);
    font-weight: 750;
    min-height: 44px;
    padding: 0 16px;
}

.woocommerce nav.woocommerce-pagination {
    margin-top: 34px;
}

.woocommerce nav.woocommerce-pagination ul {
    border: 0;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    border-radius: 999px;
    min-width: 40px;
}

/* Responsive */
@media (max-width: 1180px) {
    .bj-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bj-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .bj-hero__grid,
    .bj-product-hero {
        grid-template-columns: 1fr;
    }

    .bj-hero__visual {
        min-height: 360px;
    }

    .bj-product-hero__image {
        min-height: 300px;
    }
}

@media (max-width: 900px) {
    .bj-container,
    .bj-breadcrumb {
        width: min(var(--bj-container), calc(100% - 40px));
    }

    .bj-grid--2,
    .bj-grid--3,
    .bj-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bj-nav {
        align-items: stretch;
        background: #fff;
        border: 1px solid var(--bj-outline);
        border-radius: 20px;
        box-shadow: var(--bj-shadow);
        display: none;
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        position: absolute;
        right: 0;
        top: 82px;
        width: min(320px, calc(100vw - 40px));
    }

    .bj-nav.is-open {
        display: flex;
    }

    .bj-nav .bj-button {
        width: 100%;
    }

    .bj-menu-toggle {
        background: #fff;
        border: 1px solid var(--bj-outline);
        border-radius: 999px;
        color: var(--bj-heading);
        display: inline-flex;
        font-weight: 850;
        min-height: 42px;
        padding: 9px 15px;
    }

    .bj-toc {
        top: 98px;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 15.5px;
    }

    .bj-container,
    .bj-breadcrumb {
        width: min(var(--bj-container), calc(100% - 32px));
    }

    .bj-navbar {
        min-height: 68px;
    }

    .bj-logo__mark {
        border-radius: 14px;
        height: 40px;
        width: 40px;
    }

    .bj-logo__text {
        font-size: .96rem;
    }

    .bj-h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 16px;
    }

    .bj-h2 {
        font-size: clamp(1.55rem, 8vw, 2.2rem);
    }

    .bj-section {
        padding: 48px 0;
    }

    .bj-hero {
        padding: 46px 0 54px;
    }

    .bj-hero__visual {
        border-radius: 24px;
        min-height: 280px;
    }

    .bj-hero__visual::after {
        bottom: 24px;
        left: 22px;
        min-height: 76px;
        padding: 18px;
        right: 22px;
    }

    .bj-grid--2,
    .bj-grid--3,
    .bj-grid--4,
    .bj-archive-grid,
    .bj-footer__grid {
        grid-template-columns: 1fr;
    }

    .bj-product-hero {
        border-radius: 24px;
        margin-top: 22px;
        padding: 18px;
    }

    .bj-product-hero__image {
        border-radius: 20px;
        min-height: 230px;
    }

    .bj-meta-list {
        gap: 9px;
        margin: 16px 0;
    }

    .bj-button,
    .button,
    .woocommerce a.button,
    .woocommerce button.button,
    .woocommerce input.button {
        min-height: 46px;
        padding: 13px 17px;
        white-space: normal;
    }

    .bj-product-hero .bj-button,
    .bj-meta-list .bj-button {
        flex: 1 1 100%;
        width: 100%;
    }

    .bj-breadcrumb ol {
        border-radius: 18px;
    }

    .bj-toc {
        right: 16px;
        top: 92px;
    }

    .bj-toc a {
        white-space: normal;
        width: 100%;
    }

    #keunggulan-produk,
    #detail-layanan,
    #layanan-fasilitas,
    #spesifikasi-teknis,
    #harga-ketersediaan,
    #portfolio-layanan,
    #alur-pemesanan,
    #review-pelanggan,
    #faq-layanan {
        border-radius: 22px;
        margin-bottom: 18px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .bj-product-card__body {
        padding: 18px;
    }

    .bj-footer {
        padding-bottom: 86px;
    }

    .bj-floating-wa {
        bottom: 14px;
        left: 16px;
        justify-content: center;
        padding: 11px 14px;
        right: 16px;
    }
}

@media (max-width: 390px) {
    .bj-container,
    .bj-breadcrumb {
        width: min(var(--bj-container), calc(100% - 28px));
    }

    .bj-logo {
        gap: 9px;
    }

    .bj-logo__text {
        max-width: 145px;
    }

    .bj-hero__visual {
        min-height: 250px;
    }

    .bj-pill,
    .bj-badge {
        font-size: .8rem;
    }
}

/* Homepage redesign inspired by Stitch reference */
.bj-home {
    background: #fbf9ff;
}

.bj-home .bj-section {
    padding: clamp(62px, 8vw, 108px) 0;
}

.bj-home-hero {
    background:
        radial-gradient(circle at 72% 22%, rgba(249, 191, 35, .2), transparent 22%),
        linear-gradient(180deg, #fff, #fbf9ff);
    padding-bottom: clamp(72px, 9vw, 118px);
}

.bj-home-badge {
    align-items: center;
    background: #e9f2ff;
    border-radius: 999px;
    color: var(--bj-primary);
    display: inline-flex;
    font-size: .74rem;
    font-weight: 800;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 12px;
}

.bj-home-badge::before {
    background: var(--bj-primary-2);
    border-radius: 999px;
    content: "";
    height: 6px;
    width: 6px;
}

.bj-home-hero .bj-h1 {
    font-size: clamp(2.35rem, 4.7vw, 4.25rem);
    max-width: 720px;
}

.bj-home-hero .bj-lead {
    max-width: 680px;
}

.bj-home-hero__visual {
    background:
        linear-gradient(180deg, rgba(9, 19, 35, .04), rgba(9, 19, 35, .12)),
        linear-gradient(135deg, #15233b, #0b1426);
    border: 0;
    border-radius: 18px;
    box-shadow: 0 32px 70px rgba(18, 33, 60, .24);
    isolation: isolate;
    min-height: 350px;
}

.bj-home-hero__visual::before {
    background:
        linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px) 0 0 / 46px 46px,
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 46px 46px;
    content: "";
    inset: 0;
    opacity: .85;
    position: absolute;
    z-index: 0;
}

.bj-home-hero__visual::after {
    background:
        radial-gradient(circle at 50% 22%, rgba(249, 191, 35, .55), transparent 10%),
        linear-gradient(90deg, transparent 0 22%, #c39236 22% 27%, transparent 27% 73%, #c39236 73% 78%, transparent 78%),
        radial-gradient(ellipse at 50% 78%, #e0aa48 0 32%, transparent 33%);
    border: 8px solid #b98228;
    border-bottom-width: 0;
    border-radius: 999px 999px 0 0;
    bottom: 58px;
    content: "";
    height: 52%;
    left: 31%;
    min-height: auto;
    padding: 0;
    right: auto;
    top: auto;
    width: 38%;
    z-index: 1;
}

.bj-home-hero__visual--photos::before,
.bj-home-hero__visual--photos::after {
    display: none;
}

.bj-hero-sign {
    color: var(--bj-yellow);
    font-size: .92rem;
    font-weight: 900;
    left: 50%;
    letter-spacing: .08em;
    position: absolute;
    text-transform: uppercase;
    top: 20%;
    transform: translateX(-50%);
    z-index: 4;
}

.bj-hero-bottle {
    background:
        linear-gradient(90deg, rgba(255,255,255,.2), transparent 26%),
        linear-gradient(180deg, #d8a744 0 10%, #064baf 10% 78%, #052c6b 78%);
    border-radius: 26px 26px 12px 12px;
    bottom: 44px;
    box-shadow: 0 20px 36px rgba(0, 0, 0, .28);
    height: 58%;
    position: absolute;
    width: 17%;
    z-index: 3;
}

.bj-hero-bottle::before {
    background: #d8a744;
    border-radius: 8px 8px 0 0;
    content: "";
    height: 16%;
    left: 34%;
    position: absolute;
    top: -13%;
    width: 32%;
}

.bj-hero-bottle::after {
    align-items: center;
    background: linear-gradient(180deg, #f8d76b, #b98228);
    border-radius: 999px;
    color: #0b2a5d;
    content: "BJ";
    display: flex;
    font-weight: 900;
    height: 28%;
    justify-content: center;
    left: 18%;
    position: absolute;
    top: 42%;
    width: 64%;
}

.bj-hero-bottle--left {
    left: 9%;
}

.bj-hero-bottle--right {
    right: 9%;
}

.bj-hero-gate {
    background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(234, 242, 255, .68));
    border-radius: 16px;
    bottom: 34px;
    height: 18px;
    left: 23%;
    position: absolute;
    right: 23%;
    z-index: 2;
}

.bj-section-heading {
    margin-bottom: 34px;
}

.bj-section-heading--center {
    margin-inline: auto;
    max-width: 720px;
    text-align: center;
}

.bj-section-heading--split {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    min-width: 0;
}

.bj-section-heading--split > * {
    min-width: 0;
}

.bj-section-heading p {
    color: var(--bj-muted);
    margin: 0;
}

.bj-home-products {
    background: #f0f4ff;
}

.bj-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bj-service-card {
    min-height: 210px;
    padding: 26px !important;
}

.bj-service-card::before {
    display: none;
}

.bj-service-icon {
    align-items: center;
    background: #e6f0ff;
    border-radius: 12px;
    color: var(--bj-primary);
    display: inline-flex;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    margin-bottom: 22px;
    width: 38px;
}

.bj-card-link {
    align-items: center;
    color: var(--bj-primary);
    display: inline-flex;
    font-size: .9rem;
    font-weight: 850;
    gap: 6px;
    margin-top: auto;
    text-decoration: none;
}

.bj-card-link::after {
    background: transparent !important;
    color: currentColor;
    content: ">";
    display: inline;
    font: inherit;
    line-height: 1;
}

.bj-why-panel {
    align-items: center;
    background:
        radial-gradient(circle at 92% 6%, rgba(249, 191, 35, .18), transparent 24%),
        #004aad;
    border-radius: 20px;
    box-shadow: 0 26px 60px rgba(0, 74, 173, .22);
    color: #fff;
    display: grid;
    gap: clamp(28px, 5vw, 62px);
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1fr);
    padding: clamp(30px, 5vw, 64px);
}

.bj-why-panel .bj-h2,
.bj-why-panel p,
.bj-why-panel strong {
    color: #fff;
}

.bj-why-panel p {
    color: rgba(255,255,255,.82);
}

.bj-why-list {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
}

.bj-why-list div {
    display: grid;
    gap: 4px;
    padding-left: 24px;
    position: relative;
}

.bj-why-list div::before {
    background: var(--bj-yellow);
    border-radius: 4px;
    content: "";
    height: 12px;
    left: 0;
    position: absolute;
    top: 7px;
    width: 12px;
}

.bj-why-list span {
    color: rgba(255,255,255,.72);
    font-size: .88rem;
    line-height: 1.45;
}

.bj-why-image {
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(circle at 48% 18%, #ff8a6f 0 10%, transparent 11%),
        radial-gradient(circle at 38% 26%, #f9bf23 0 9%, transparent 10%),
        radial-gradient(circle at 58% 30%, #61d38b 0 10%, transparent 11%),
        radial-gradient(circle at 68% 42%, #3ab7ff 0 10%, transparent 11%),
        radial-gradient(circle at 26% 42%, #ff7fa9 0 10%, transparent 11%),
        linear-gradient(180deg, #d9e4ef 0 58%, #3a4656 58%);
    border-radius: 16px;
    box-shadow: 0 20px 44px rgba(0,0,0,.22);
}

.bj-home-scenarios {
    background: #fff;
}

.bj-scenario-showcase {
    margin-inline: auto;
    max-width: 1180px;
}

.bj-scenario-panels {
    position: relative;
}

.bj-scenario-panel {
    --arch-color: #168deb;
    --arch-shadow: rgba(8, 72, 138, .26);
    aspect-ratio: 16 / 6.6;
    background:
        linear-gradient(90deg, rgba(31, 62, 85, .86) 0%, rgba(31, 62, 85, .62) 34%, rgba(31, 62, 85, .18) 66%, rgba(31, 62, 85, .04) 100%),
        var(--scenario-bg, linear-gradient(135deg, #dbeeff, #eef7ff));
    border: 1px solid rgba(196, 209, 232, .78);
    border-radius: 18px;
    box-shadow: 0 24px 52px rgba(18, 54, 98, .14);
    display: block;
    min-height: 420px;
    overflow: hidden;
    position: relative;
}

.bj-scenario-panel[hidden] {
    display: none;
}

.bj-scenario-panel::before {
    background:
        radial-gradient(circle at 62% 74%, rgba(255,255,255,.42) 0 1.3%, transparent 1.4%),
        radial-gradient(circle at 68% 77%, rgba(0,0,0,.24) 0 1.1%, transparent 1.2%),
        radial-gradient(circle at 74% 76%, rgba(255,255,255,.36) 0 1%, transparent 1.1%),
        radial-gradient(circle at 79% 79%, rgba(0,0,0,.22) 0 1.2%, transparent 1.3%),
        linear-gradient(180deg, rgba(255,255,255,.15) 0 43%, transparent 44%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.18) 0 1px, transparent 1px 76px),
        repeating-linear-gradient(0deg, transparent 0 54px, rgba(255,255,255,.12) 55px 56px);
    content: "";
    inset: 0;
    opacity: .9;
    position: absolute;
}

.bj-scenario-overlay {
    color: #fff;
    left: clamp(24px, 4vw, 48px);
    max-width: 390px;
    position: absolute;
    top: clamp(42px, 7vw, 86px);
    z-index: 2;
}

.bj-scenario-overlay h3 {
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    margin: 0 0 16px;
}

.bj-scenario-overlay p {
    color: rgba(255,255,255,.86);
    font-size: .98rem;
    font-weight: 650;
    line-height: 1.55;
    margin: 0;
}

.bj-scenario-product {
    align-items: center;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 12px;
    bottom: clamp(28px, 5vw, 54px);
    box-shadow: 0 18px 42px rgba(0,0,0,.14);
    display: inline-flex;
    gap: 16px;
    left: clamp(24px, 4vw, 48px);
    min-width: min(310px, calc(100% - 48px));
    padding: 14px 18px 14px 14px;
    position: absolute;
    z-index: 3;
}

.bj-scenario-product strong {
    color: var(--bj-heading);
    display: block;
    font-size: .96rem;
    margin-bottom: 8px;
}

.bj-scenario-product a {
    background: var(--bj-primary);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 850;
    padding: 8px 14px;
    text-decoration: none;
}

.bj-scenario-thumb {
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #dfefff, #fff) border-box;
    border: 1px solid transparent;
    border-radius: 10px;
    display: block;
    height: 72px;
    position: relative;
    width: 82px;
}

.bj-scenario-thumb::before {
    border: 8px solid var(--arch-color);
    border-bottom: 0;
    border-radius: 28px 28px 0 0;
    content: "";
    height: 44px;
    inset: 12px 18px auto;
    position: absolute;
}

.bj-scenario-thumb::after {
    background: rgba(15, 76, 180, .12);
    bottom: 10px;
    content: "";
    height: 3px;
    left: 14px;
    position: absolute;
    right: 14px;
}

.bj-scenario-arch {
    border: clamp(34px, 5vw, 62px) solid var(--arch-color);
    border-bottom: 0;
    border-radius: 90px 90px 0 0;
    box-shadow: 0 24px 52px var(--arch-shadow);
    height: 50%;
    position: absolute;
    right: 7%;
    top: 11%;
    transform: skewX(-3deg);
    width: 47%;
    z-index: 1;
}

.bj-scenario-arch::before,
.bj-scenario-arch::after {
    background: var(--arch-color);
    border-radius: 0 0 22px 22px;
    bottom: -40%;
    box-shadow: 0 20px 38px var(--arch-shadow);
    content: "";
    position: absolute;
    top: 78%;
    width: clamp(42px, 6vw, 72px);
}

.bj-scenario-arch::before {
    left: calc(clamp(34px, 5vw, 62px) * -1);
}

.bj-scenario-arch::after {
    right: calc(clamp(34px, 5vw, 62px) * -1);
}

.bj-scenario-panel--sports {
    --arch-color: #18a6d8;
    --scenario-bg:
        radial-gradient(circle at 84% 24%, rgba(255,255,255,.78) 0 7%, transparent 8%),
        linear-gradient(180deg, #bde2ff 0 46%, #8bb777 47% 63%, #5d824e 64% 100%);
}

.bj-scenario-panel--expo {
    --arch-color: #238be8;
    --scenario-bg:
        linear-gradient(180deg, #dce6ef 0 40%, #aebac6 41% 57%, #f0f3f7 58% 100%),
        repeating-linear-gradient(90deg, rgba(8,44,90,.16) 0 90px, rgba(255,255,255,.24) 91px 180px);
}

.bj-scenario-panel--festival {
    --arch-color: #16b5a7;
    --scenario-bg:
        radial-gradient(circle at 86% 20%, rgba(255,255,255,.75) 0 9%, transparent 10%),
        linear-gradient(180deg, #bfe9ff 0 52%, #b9da9b 53% 100%);
}

.bj-scenario-panel--commercial {
    --arch-color: #1597ed;
    --scenario-bg:
        repeating-linear-gradient(90deg, rgba(24,42,62,.12) 0 120px, rgba(255,255,255,.2) 121px 240px),
        linear-gradient(180deg, #ccd6df 0 48%, #e8eaee 49% 100%);
}

.bj-scenario-panel--advertising {
    --arch-color: #f7b400;
    --arch-shadow: rgba(156, 118, 0, .22);
    --scenario-bg:
        radial-gradient(circle at 78% 20%, rgba(255,255,255,.85) 0 8%, transparent 9%),
        linear-gradient(180deg, #c8ecff 0 54%, #8bb772 55% 100%);
}

.bj-scenario-tabs {
    border-bottom: 1px solid rgba(217, 223, 235, .94);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow-x: auto;
}

.bj-scenario-tab {
    background: transparent;
    border: 0;
    border-bottom: 4px solid transparent;
    color: #7b8190;
    cursor: pointer;
    font: inherit;
    font-size: .98rem;
    font-weight: 850;
    min-width: 180px;
    padding: 20px 12px 16px;
    text-align: center;
    transition: color .18s ease, border-color .18s ease;
}

.bj-scenario-tab.is-active,
.bj-scenario-tab:hover {
    border-color: var(--bj-heading);
    color: var(--bj-heading);
}

.bj-home-portfolio {
    background:
        linear-gradient(180deg, #fff9e8 0%, #eef5ff 100%);
    overflow: hidden;
}

.bj-home-portfolio .bj-container {
    max-width: var(--bj-container);
    overflow: hidden;
}

.bj-portfolio-grid {
    display: grid;
    gap: clamp(16px, 2vw, 24px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    min-width: 0;
    width: 100%;
}

.bj-portfolio-card {
    align-items: end;
    aspect-ratio: 5 / 4;
    background: #101827;
    border: 1px solid rgba(255, 255, 255, .74);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(18, 54, 98, .14);
    display: flex;
    overflow: hidden;
    padding: clamp(16px, 2vw, 22px);
    position: relative;
    min-width: 0;
}

.bj-portfolio-card::before {
    content: "";
    inset: 0;
    position: absolute;
    z-index: 0;
}

.bj-portfolio-card span {
    color: #fff;
    display: -webkit-box;
    font-size: clamp(1rem, 1.35vw, 1.24rem);
    font-weight: 850;
    line-height: 1.22;
    overflow: hidden;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.bj-portfolio-card--wide::before {
    background:
        radial-gradient(circle at 20% 28%, #80c9ff 0 10%, transparent 11%),
        radial-gradient(circle at 36% 36%, #5eb8f4 0 13%, transparent 14%),
        radial-gradient(circle at 54% 25%, #7ccaff 0 12%, transparent 13%),
        radial-gradient(circle at 74% 38%, #a6dcff 0 13%, transparent 14%),
        linear-gradient(180deg, #245e88, #cfe9ff);
}

.bj-portfolio-card--gate::before {
    background:
        radial-gradient(circle at 48% 20%, #ff705d 0 8%, transparent 9%),
        radial-gradient(circle at 36% 28%, #ffd15b 0 9%, transparent 10%),
        radial-gradient(circle at 60% 34%, #36b678 0 9%, transparent 10%),
        linear-gradient(180deg, #c9edff, #2a455c);
}

.bj-portfolio-card--mascot::before {
    background:
        radial-gradient(circle at 50% 56%, #ffbd28 0 24%, transparent 25%),
        radial-gradient(circle at 42% 48%, #101827 0 3%, transparent 4%),
        radial-gradient(circle at 58% 48%, #101827 0 3%, transparent 4%),
        linear-gradient(180deg, #d9eefc, #fff);
}

.bj-step-line {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    position: relative;
}

.bj-step-line::before {
    background: #c8d8f1;
    content: "";
    height: 2px;
    left: 8%;
    position: absolute;
    right: 8%;
    top: 23px;
}

.bj-step-item {
    display: grid;
    gap: 8px;
    justify-items: center;
    position: relative;
    text-align: center;
}

.bj-step-item span {
    align-items: center;
    background: #fff;
    border: 2px solid #b9cef0;
    border-radius: 999px;
    color: var(--bj-primary);
    display: inline-flex;
    font-weight: 900;
    height: 48px;
    justify-content: center;
    width: 48px;
    z-index: 1;
}

.bj-step-item:first-child span {
    background: var(--bj-primary);
    border-color: var(--bj-primary);
    color: #fff;
}

.bj-step-item strong {
    color: var(--bj-heading);
}

.bj-step-item p {
    color: var(--bj-muted);
    font-size: .86rem;
    margin: 0;
}

.bj-home-faq-list {
    display: grid;
    gap: 12px;
    margin-inline: auto;
    max-width: 760px;
}

.bj-home-faq-list details {
    background: #fff;
    border: 1px solid rgba(217, 223, 235, .86);
    border-radius: 10px;
    box-shadow: var(--bj-shadow-sm);
}

.bj-home-faq-list summary {
    cursor: pointer;
    font-weight: 800;
    list-style: none;
    padding: 16px 18px;
}

.bj-home-faq-list summary::after {
    color: var(--bj-primary);
    content: "+";
    float: right;
}

.bj-home-faq-list details[open] summary::after {
    content: "-";
}

.bj-home-faq-list p {
    color: var(--bj-muted);
    margin: 0;
    padding: 0 18px 16px;
}

.bj-home-social {
    background: linear-gradient(180deg, #f6f8ff 0%, #fff 100%);
    padding-top: 18px;
}

.bj-social-panel {
    align-items: center;
    background:
        radial-gradient(circle at 7% 26%, rgba(255,194,10,.18), transparent 24%),
        linear-gradient(135deg, #fff, #eef5ff);
    border: 1px solid rgba(196, 209, 232, .72);
    border-radius: 20px;
    box-shadow: var(--bj-shadow-sm);
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.25fr);
    padding: clamp(24px, 4vw, 42px);
}

.bj-social-panel p {
    color: var(--bj-muted);
    margin: 10px 0 0;
    max-width: 560px;
}

.bj-social-links {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bj-social-link {
    align-items: center;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(217, 223, 235, .92);
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(15, 76, 180, .08);
    color: var(--bj-heading);
    display: inline-flex;
    font-size: .92rem;
    font-weight: 850;
    gap: 10px;
    min-height: 54px;
    padding: 12px 14px;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.bj-social-icon {
    align-items: center;
    background: linear-gradient(135deg, var(--bj-primary), #2f7ee8);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 30px;
    font-size: .74rem;
    font-weight: 900;
    height: 30px;
    justify-content: center;
    position: relative;
    text-transform: uppercase;
    width: 30px;
}

.bj-social-icon::before {
    content: "";
    display: block;
}

.bj-social-icon--facebook {
    background: #1877f2;
}

.bj-social-icon--facebook::before {
    content: "f";
    font-size: 1.08rem;
    line-height: 1;
}

.bj-social-icon--instagram {
    background: linear-gradient(135deg, #f9ce34, #ee2a7b 52%, #6228d7);
}

.bj-social-icon--instagram::before {
    border: 2px solid #fff;
    border-radius: 8px;
    height: 14px;
    position: relative;
    width: 14px;
}

.bj-social-icon--instagram::after {
    background: #fff;
    border-radius: 999px;
    content: "";
    height: 4px;
    position: absolute;
    width: 4px;
}

.bj-social-icon--tiktok {
    background: #111827;
}

.bj-social-icon--tiktok::before {
    border-bottom: 5px solid #fff;
    border-left: 4px solid transparent;
    border-radius: 2px 2px 7px 7px;
    box-shadow: 4px -3px 0 #25f4ee, -3px 3px 0 #fe2c55;
    height: 16px;
    transform: rotate(2deg);
    width: 9px;
}

.bj-social-icon--youtube {
    background: #ff0033;
}

.bj-social-icon--youtube::before {
    border-bottom: 6px solid transparent;
    border-left: 10px solid #fff;
    border-top: 6px solid transparent;
    margin-left: 2px;
}

.bj-social-icon--x {
    background: #111827;
}

.bj-social-icon--x::before {
    content: "X";
    font-size: .92rem;
    line-height: 1;
}

.bj-social-icon--threads {
    background: #111827;
}

.bj-social-icon--threads::before {
    content: "@";
    font-size: 1rem;
    line-height: 1;
}

a.bj-social-link:hover {
    border-color: rgba(15, 76, 180, .34);
    box-shadow: 0 20px 42px rgba(15, 76, 180, .14);
    color: var(--bj-primary);
    transform: translateY(-2px);
}

.bj-social-link--disabled {
    opacity: .86;
}

.bj-final-cta-card {
    background:
        radial-gradient(circle at 7% 78%, rgba(255,255,255,.18) 0 14%, transparent 15%),
        linear-gradient(135deg, #ffc20a, #f7b400);
    border-radius: 20px;
    box-shadow: 0 26px 58px rgba(247, 180, 0, .24);
    color: #5b4300;
    padding: clamp(34px, 6vw, 64px);
    text-align: center;
}

.bj-final-cta-card h2 {
    color: #614600;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    margin-bottom: 12px;
}

.bj-final-cta-card p {
    margin-inline: auto;
    max-width: 620px;
}

.bj-final-cta-card .bj-button {
    margin-top: 10px;
}

.bj-footer-support {
    border-top: 1px solid rgba(255,255,255,.12);
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
    padding-top: 30px;
}

.bj-logo-badge-group {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 20px;
}

.bj-logo-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bj-logo-badge {
    align-items: center;
    background: #fff;
    border-radius: 12px;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    min-width: 68px;
    padding: 8px 12px;
}

.bj-logo-badge img {
    max-height: 22px;
    max-width: 72px;
    object-fit: contain;
}

.bj-logo-badge--text {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.86);
    font-size: .84rem;
    font-weight: 850;
}

@media (max-width: 1180px) {
    .bj-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .bj-why-panel,
    .bj-social-panel,
    .bj-footer-support {
        grid-template-columns: 1fr;
    }

    .bj-service-grid,
    .bj-step-line {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bj-portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bj-step-line::before {
        display: none;
    }

    .bj-scenario-panel {
        aspect-ratio: auto;
        min-height: 500px;
    }

    .bj-scenario-arch {
        height: 42%;
        opacity: .92;
        right: -2%;
        top: 20%;
        width: 54%;
    }

    .bj-social-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .bj-home .bj-section {
        padding: 50px 0;
    }

    .bj-section-heading--split {
        align-items: start;
        flex-direction: column;
    }

    .bj-home-hero__visual {
        min-height: 270px;
    }

    .bj-scenario-panel {
        border-radius: 16px;
        min-height: 560px;
    }

    .bj-scenario-overlay {
        left: 22px;
        right: 22px;
        top: 30px;
    }

    .bj-scenario-product {
        align-items: flex-start;
        bottom: 22px;
        left: 22px;
        min-width: 0;
        right: 22px;
    }

    .bj-scenario-arch {
        height: 34%;
        right: -18%;
        top: 45%;
        width: 78%;
    }

    .bj-scenario-tabs {
        border-bottom: 0;
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 16px 0 0;
        overflow: visible;
        padding-inline: 0;
    }

    .bj-scenario-tab {
        align-items: center;
        background: rgba(255, 255, 255, .82);
        border: 1px solid rgba(0, 74, 175, .16);
        border-radius: 12px;
        color: var(--bj-muted);
        display: flex;
        font-size: .82rem;
        justify-content: center;
        line-height: 1.18;
        min-height: 54px;
        min-width: 0;
        padding: 10px 8px;
        text-align: center;
        white-space: normal;
        width: 100%;
    }

    .bj-scenario-tab:nth-child(5) {
        grid-column: 1 / -1;
    }

    .bj-scenario-tab.is-active,
    .bj-scenario-tab:hover {
        background: var(--bj-primary);
        border-color: var(--bj-primary);
        box-shadow: 0 12px 28px rgba(0, 74, 175, .16);
        color: #fff;
    }

    .bj-hero-bottle {
        bottom: 34px;
        width: 19%;
    }

    .bj-hero-bottle--left {
        left: 7%;
    }

    .bj-hero-bottle--right {
        right: 7%;
    }

    .bj-why-list,
    .bj-service-grid,
    .bj-portfolio-grid,
    .bj-social-links,
    .bj-step-line {
        grid-template-columns: 1fr;
    }

    .bj-why-panel {
        border-radius: 18px;
        padding: 26px;
    }

    .bj-why-image {
        min-height: 240px;
    }

    .bj-portfolio-card {
        aspect-ratio: 16 / 11;
        min-height: 240px;
    }
}

/* Light footer variant for Laksana Balon homepage style */
.bj-footer {
    background: #eef3ff;
    color: var(--bj-text);
    margin-top: 0;
}

.bj-footer .bj-logo {
    color: var(--bj-heading);
}

.bj-footer a {
    color: var(--bj-muted);
}

.bj-footer a:hover {
    color: var(--bj-primary);
}

.bj-footer p {
    color: var(--bj-muted);
}

.bj-footer h4 {
    color: var(--bj-heading);
}

.bj-footer .bj-badge {
    background: #fff;
    border-color: rgba(217, 223, 235, .95);
    color: var(--bj-muted);
}

.bj-footer a.bj-badge {
    color: var(--bj-muted);
    text-decoration-color: rgba(0, 64, 152, .22);
}

.bj-footer a.bj-badge:hover {
    color: var(--bj-primary);
    text-decoration-color: var(--bj-primary);
}

.bj-footer-policy {
    border-top-color: rgba(0, 64, 152, .12);
}

.bj-footer-policy a {
    color: var(--bj-muted);
}

.bj-footer-policy a:hover {
    color: var(--bj-primary);
}

.bj-footer-support {
    border-top-color: rgba(0, 64, 152, .1);
}

.bj-logo-badge-group {
    background: rgba(255,255,255,.68);
    border-color: rgba(217, 223, 235, .9);
}

.bj-logo-badge {
    box-shadow: 0 8px 22px rgba(17, 32, 57, .06);
}

.bj-logo-badge--text {
    background: #e9f2ff;
    color: var(--bj-primary);
}

.bj-footer-copy {
    border-top: 1px solid rgba(0, 64, 152, .12);
    margin-top: 32px;
    padding-top: 22px;
    text-align: center;
}

/* Inner pages refinement */
.bj-page {
    background: #fbf9ff;
}

.bj-page .bj-breadcrumb {
    margin: 18px auto 0;
    width: min(var(--bj-container), calc(100% - 48px));
}

.bj-inner-hero,
.bj-article-hero {
    background:
        radial-gradient(circle at 28% 18%, rgba(255,255,255,.82), transparent 28%),
        linear-gradient(180deg, #fbfaff 0%, #f4f6ff 100%);
    border-bottom: 1px solid rgba(217, 223, 235, .78);
    padding: clamp(72px, 9vw, 132px) 0 clamp(56px, 7vw, 104px);
    text-align: center;
}

.bj-inner-hero__content {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.bj-inner-hero h1,
.bj-article-hero h1 {
    color: var(--bj-heading);
    font-size: clamp(2.35rem, 5.2vw, 4.85rem);
    line-height: 1.05;
    margin: 0 0 22px;
    max-width: 940px;
}

.bj-inner-hero h1 span,
.bj-article-hero h1 span {
    color: var(--bj-primary);
}

.bj-inner-hero p,
.bj-article-hero p {
    color: var(--bj-muted);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.72;
    margin: 0;
    max-width: 760px;
}

.bj-page-badge {
    align-items: center;
    background: #e8f0ff;
    border: 1px solid rgba(0, 100, 216, .12);
    border-radius: 999px;
    color: var(--bj-primary);
    display: inline-flex;
    font-size: .76rem;
    font-weight: 850;
    gap: 8px;
    margin-bottom: 18px;
    padding: 6px 14px;
    text-transform: uppercase;
}

.bj-page-badge::before {
    background: var(--bj-primary);
    border-radius: 999px;
    content: "";
    height: 8px;
    width: 8px;
}

.bj-page-badge--yellow {
    background: #ffcf2f;
    color: #4d3a00;
}

.bj-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 30px;
}

.bj-button--light {
    background: #fff;
    color: var(--bj-primary);
}

.bj-button--accent {
    background: var(--bj-yellow);
    color: #3c2c00;
}

.bj-button--ghost-light {
    background: transparent;
    border: 1px solid rgba(255,255,255,.72);
    color: #fff;
}

.bj-about-intro__grid,
.bj-about-benefits__grid,
.bj-service-planning,
.bj-contact-grid,
.bj-contact-faq__grid {
    align-items: center;
    display: grid;
    gap: clamp(28px, 5vw, 64px);
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.bj-about-visual,
.bj-about-balloon {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    box-shadow: var(--bj-shadow);
    overflow: hidden;
    position: relative;
}

.bj-about-visual {
    background:
        radial-gradient(circle at 36% 32%, #0e84df 0 7%, transparent 8%),
        radial-gradient(circle at 49% 25%, #fff 0 8%, transparent 9%),
        radial-gradient(circle at 60% 35%, #f9bf23 0 7%, transparent 8%),
        linear-gradient(180deg, #9cc5e4 0 54%, #224766 55% 100%);
}

.bj-about-visual::before {
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.16) 0 2px, transparent 2px 58px),
        repeating-linear-gradient(0deg, transparent 0 52px, rgba(255,255,255,.14) 53px 55px);
    content: "";
    inset: 0;
    position: absolute;
}

.bj-about-visual span {
    background: #fff;
    border: 1px solid rgba(0, 64, 152, .24);
    border-radius: 10px;
    bottom: -1px;
    box-shadow: var(--bj-shadow-sm);
    color: var(--bj-primary);
    font-weight: 850;
    padding: 16px 22px;
    position: absolute;
    right: -1px;
}

.bj-about-copy p,
.bj-service-planning p {
    color: var(--bj-muted);
}

.bj-vision-card {
    background: #eef1fa;
    border-radius: 12px;
    margin-top: 24px;
    padding: 22px;
}

.bj-vision-card strong {
    color: var(--bj-primary);
    display: block;
    margin-bottom: 8px;
}

.bj-vision-card p {
    margin: 0;
}

.bj-about-focus__grid {
    display: grid;
    gap: 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: auto;
    max-width: 980px;
}

.bj-focus-card,
.bj-planning-grid > div,
.bj-contact-form-card,
.bj-contact-info {
    background: #fff;
    border: 1px solid rgba(217, 223, 235, .88);
    border-radius: 16px;
    box-shadow: var(--bj-shadow-sm);
}

.bj-focus-card {
    padding: 34px;
}

.bj-focus-card__icon,
.bj-value-item span {
    background: #e8f1ff;
    border-radius: 12px;
    display: inline-flex;
    height: 42px;
    margin-bottom: 18px;
    width: 42px;
}

.bj-focus-card__icon::before,
.bj-value-item span::before {
    background: var(--bj-primary);
    border-radius: 999px;
    content: "";
    height: 14px;
    margin: auto;
    width: 14px;
}

.bj-focus-card--warm .bj-focus-card__icon {
    background: #fff2cf;
}

.bj-focus-card--warm .bj-focus-card__icon::before {
    background: var(--bj-yellow);
}

.bj-focus-card h3,
.bj-process-card h3,
.bj-service-tile h2,
.bj-portfolio-work h2 {
    color: var(--bj-heading);
    margin: 0 0 12px;
}

.bj-focus-card p {
    color: var(--bj-muted);
    margin-bottom: 18px;
}

.bj-focus-card ul {
    color: var(--bj-muted);
    margin: 0;
    padding-left: 18px;
}

.bj-value-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    text-align: center;
}

.bj-value-item p {
    color: var(--bj-muted);
    font-size: .92rem;
    margin: 8px 0 0;
}

.bj-about-process {
    background:
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px),
        #161b25;
    background-size: 92px 92px;
    color: #fff;
}

.bj-about-process .bj-h2,
.bj-about-process p {
    color: #fff;
}

.bj-process-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bj-process-card {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: 28px;
}

.bj-process-card span {
    background: var(--bj-primary-2);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .82rem;
    font-weight: 850;
    margin-bottom: 18px;
    padding: 6px 9px;
}

.bj-process-card h3 {
    color: #fff;
}

.bj-process-card p {
    color: rgba(255,255,255,.78);
    font-size: .92rem;
    margin: 0;
}

.bj-benefit-list {
    display: grid;
    gap: 22px;
}

.bj-benefit-list div {
    padding-left: 50px;
    position: relative;
}

.bj-benefit-list div::before {
    background: #fff1c5;
    border-radius: 999px;
    content: "";
    height: 30px;
    left: 0;
    position: absolute;
    top: 3px;
    width: 30px;
}

.bj-benefit-list strong {
    color: var(--bj-primary);
}

.bj-benefit-list p {
    color: var(--bj-muted);
    margin: 6px 0 0;
}

.bj-about-balloon {
    background:
        radial-gradient(circle at 52% 30%, #294f8e 0 24%, transparent 25%),
        radial-gradient(circle at 44% 24%, rgba(255,255,255,.42) 0 5%, transparent 6%),
        linear-gradient(150deg, #ffd37a 0 18%, #8fd3ff 38%, #17375c 100%);
}

.bj-about-balloon::before {
    background: repeating-linear-gradient(90deg, rgba(255,255,255,.3) 0 2px, transparent 3px 38px);
    clip-path: ellipse(23% 34% at 52% 34%);
    content: "";
    inset: 0;
    position: absolute;
}

.bj-blue-cta,
.bj-cta-band {
    background:
        radial-gradient(circle at 88% 0%, rgba(255,255,255,.13) 0 18%, transparent 19%),
        radial-gradient(circle at 4% 100%, rgba(255,255,255,.13) 0 16%, transparent 17%),
        linear-gradient(135deg, var(--bj-primary), #0a5bd2);
    border-radius: 20px;
    box-shadow: var(--bj-shadow-strong);
    color: #fff;
    margin-inline: auto;
    max-width: 980px;
    padding: clamp(38px, 6vw, 74px);
    text-align: center;
}

.bj-blue-cta h2,
.bj-cta-band h2 {
    color: #fff;
    margin-bottom: 14px;
}

.bj-blue-cta p,
.bj-cta-band p {
    color: rgba(255,255,255,.76);
    margin-inline: auto;
    max-width: 680px;
}

.bj-service-catalog {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bj-service-tile {
    background: #fff;
    border: 1px solid rgba(217, 223, 235, .86);
    border-radius: 18px;
    box-shadow: var(--bj-shadow-sm);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
}

.bj-service-tile:hover {
    box-shadow: var(--bj-shadow);
    transform: translateY(-4px);
}

.bj-service-tile__media {
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(circle at 34% 36%, #0f80da 0 13%, transparent 14%),
        radial-gradient(circle at 58% 28%, #f9bf23 0 12%, transparent 13%),
        linear-gradient(180deg, #cde9ff, #f7fbff);
}

.bj-service-tile--2 .bj-service-tile__media {
    background:
        radial-gradient(ellipse at 50% 72%, transparent 0 25%, #0f6ed2 26% 30%, transparent 31%),
        linear-gradient(180deg, #dff2ff, #fff4d6);
}

.bj-service-tile--3 .bj-service-tile__media {
    background:
        radial-gradient(circle at 48% 34%, #168deb 0 26%, transparent 27%),
        linear-gradient(180deg, #c6e7ff, #f7fbff);
}

.bj-service-tile--4 .bj-service-tile__media {
    background:
        radial-gradient(circle at 52% 42%, #f9bf23 0 18%, transparent 19%),
        radial-gradient(circle at 34% 52%, #0f80da 0 14%, transparent 15%),
        linear-gradient(180deg, #f9fbff, #eaf2ff);
}

.bj-service-tile__body {
    padding: 24px;
}

.bj-service-tile__body span {
    color: var(--bj-primary);
    font-size: .78rem;
    font-weight: 900;
}

.bj-service-tile__body p,
.bj-portfolio-work__body p {
    color: var(--bj-muted);
}

.bj-service-tile__body a {
    color: var(--bj-primary);
    font-weight: 850;
}

.bj-planning-grid {
    display: grid;
    gap: 16px;
}

.bj-planning-grid > div {
    padding: 22px;
}

.bj-product-category-pills,
.bj-portfolio-filter .bj-container,
.bj-article-tabs .bj-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.bj-product-category-pills {
    margin-top: 28px;
}

.bj-product-category-pills a,
.bj-portfolio-filter button,
.bj-article-tabs a {
    background: #e7eaf3;
    border: 0;
    border-radius: 999px;
    color: var(--bj-heading);
    font-weight: 800;
    padding: 9px 22px;
    text-decoration: none;
}

.bj-product-category-pills a.is-active,
.bj-portfolio-filter button.is-active,
.bj-article-tabs a.is-active {
    background: var(--bj-primary);
    color: #fff;
}

.bj-catalog-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 26px;
}

.bj-portfolio-filter,
.bj-article-tabs {
    background: #fbf9ff;
    border-bottom: 1px solid rgba(217, 223, 235, .78);
    padding: 24px 0;
}

.bj-portfolio-masonry {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bj-portfolio-work {
    background: #fff;
    border: 1px solid rgba(217, 223, 235, .86);
    border-radius: 12px;
    box-shadow: var(--bj-shadow-sm);
    overflow: hidden;
}

.bj-portfolio-work__image {
    aspect-ratio: 4 / 5;
    background:
        radial-gradient(circle at 44% 38%, #0f80da 0 12%, transparent 13%),
        linear-gradient(180deg, #98d6ff, #f5fbff);
    padding: 18px;
    position: relative;
}

.bj-portfolio-work__image span {
    background: var(--bj-primary);
    border-radius: 999px;
    color: #fff;
    font-size: .74rem;
    font-weight: 900;
    padding: 6px 12px;
    text-transform: uppercase;
}

.bj-portfolio-work--gate .bj-portfolio-work__image {
    background:
        radial-gradient(ellipse at 50% 65%, transparent 0 24%, #0d66c8 25% 28%, transparent 29%),
        radial-gradient(ellipse at 50% 65%, transparent 0 35%, #fff 36% 39%, transparent 40%),
        linear-gradient(180deg, #bfdff4, #f9fbff);
}

.bj-portfolio-work--gala .bj-portfolio-work__image {
    background:
        radial-gradient(circle at 28% 64%, #d4a148 0 5%, transparent 6%),
        radial-gradient(circle at 42% 72%, #111827 0 6%, transparent 7%),
        linear-gradient(135deg, #2a211b, #d5a84e);
}

.bj-portfolio-work--dancer .bj-portfolio-work__image {
    background:
        linear-gradient(74deg, transparent 0 47%, #0f80da 48% 62%, transparent 63%),
        radial-gradient(circle at 72% 30%, #f9bf23 0 10%, transparent 11%),
        linear-gradient(180deg, #8ed6ff, #f6f9ff);
}

.bj-portfolio-work--air .bj-portfolio-work__image {
    background:
        radial-gradient(circle at 30% 38%, #0f80da 0 14%, transparent 15%),
        radial-gradient(circle at 60% 30%, #0f80da 0 18%, transparent 19%),
        linear-gradient(180deg, #83d1ff, #fff);
}

.bj-portfolio-work--release .bj-portfolio-work__image {
    background:
        radial-gradient(circle at 20% 24%, #60caff 0 3%, transparent 4%),
        radial-gradient(circle at 42% 16%, #fff 0 3%, transparent 4%),
        radial-gradient(circle at 62% 34%, #0f80da 0 4%, transparent 5%),
        radial-gradient(circle at 74% 20%, #60caff 0 3%, transparent 4%),
        linear-gradient(180deg, #ebfbff, #fff);
}

.bj-portfolio-work--conference .bj-portfolio-work__image {
    background:
        radial-gradient(circle at 55% 38%, rgba(67, 209, 255, .65) 0 18%, transparent 19%),
        linear-gradient(135deg, #0a2030, #0f7bad);
}

.bj-portfolio-work__body {
    padding: 24px;
}

.bj-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

.bj-cta-band {
    border-radius: 0;
    max-width: none;
    padding: clamp(64px, 8vw, 112px) 0;
}

.bj-contact-grid {
    align-items: start;
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.2fr);
}

.bj-contact-info,
.bj-contact-form-card {
    padding: clamp(24px, 4vw, 42px);
}

.bj-contact-info {
    background: #eff3ff;
}

.bj-contact-row {
    border-bottom: 1px solid rgba(196, 209, 232, .78);
    display: grid;
    gap: 16px;
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 18px 0;
}

.bj-contact-row span {
    background: var(--bj-primary);
    border-radius: 8px;
    height: 46px;
    width: 46px;
}

.bj-contact-row--warm span {
    background: var(--bj-yellow);
}

.bj-contact-row small {
    color: var(--bj-muted);
    display: block;
}

.bj-contact-row strong {
    color: var(--bj-heading);
    display: block;
    font-size: 1.02rem;
    line-height: 1.45;
}

.bj-fast-response {
    background:
        radial-gradient(circle at 88% 50%, rgba(255,255,255,.14) 0 24%, transparent 25%),
        #8c6900;
    border-radius: 12px;
    box-shadow: var(--bj-shadow-sm);
    color: #fff;
    display: block;
    margin-top: 28px;
    padding: 26px;
}

.bj-fast-response strong {
    display: block;
    font-size: 1.35rem;
}

.bj-contact-form {
    display: grid;
    gap: 22px;
}

.bj-form-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bj-contact-form label {
    color: var(--bj-heading);
    font-size: .88rem;
    font-weight: 800;
}

.bj-contact-form input,
.bj-contact-form select,
.bj-contact-form textarea,
.bj-newsletter-card input {
    background: #fff;
    border: 1px solid var(--bj-outline);
    border-radius: 8px;
    color: var(--bj-text);
    display: block;
    font: inherit;
    margin-top: 8px;
    min-height: 52px;
    padding: 13px 16px;
    width: 100%;
}

.bj-contact-form textarea {
    resize: vertical;
}

.bj-contact-form .bj-button {
    border-radius: 8px;
    width: 100%;
}

.bj-area-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.bj-area-card {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(217, 223, 235, .86);
    border-radius: 10px;
    box-shadow: var(--bj-shadow-sm);
    display: grid;
    gap: 12px;
    justify-items: center;
    min-height: 108px;
    padding: 18px;
}

.bj-area-card span {
    background: var(--bj-primary);
    border-radius: 4px;
    height: 18px;
    width: 18px;
}

.bj-map-visual {
    background:
        linear-gradient(32deg, transparent 0 46%, rgba(0,0,0,.09) 47% 49%, transparent 50%),
        linear-gradient(104deg, transparent 0 54%, rgba(0,0,0,.12) 55% 57%, transparent 58%),
        repeating-linear-gradient(0deg, #f5f5f5 0 58px, #e0e0e0 59px 61px),
        repeating-linear-gradient(90deg, transparent 0 92px, rgba(0,0,0,.08) 93px 96px),
        #efefef;
    min-height: 430px;
    position: relative;
}

.bj-map-pin {
    background: #333;
    border-radius: 8px;
    color: #fff;
    font-weight: 800;
    left: 50%;
    padding: 14px 18px;
    position: absolute;
    top: 46%;
    transform: translate(-50%, -50%);
}

.bj-map-card {
    background: rgba(255,255,255,.92);
    border-radius: 10px;
    bottom: 42px;
    box-shadow: var(--bj-shadow-sm);
    left: max(24px, calc((100% - var(--bj-container)) / 2 + 24px));
    padding: 22px;
    position: absolute;
    width: min(280px, calc(100% - 48px));
}

.bj-map-card small,
.bj-map-card span {
    color: var(--bj-muted);
    display: block;
}

.bj-map-card strong {
    display: block;
    margin: 6px 0;
}

.bj-contact-faq__grid {
    align-items: start;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
}

.bj-faq-stack {
    display: grid;
    gap: 16px;
}

.bj-faq-stack details {
    background: #f1f4ff;
    border: 1px solid rgba(217, 223, 235, .86);
    border-radius: 10px;
    padding: 20px 24px;
}

.bj-faq-stack summary {
    color: var(--bj-heading);
    cursor: pointer;
    font-weight: 850;
}

.bj-faq-stack p {
    color: var(--bj-muted);
    margin-bottom: 0;
}

.bj-scroll-note {
    align-items: center;
    color: var(--bj-muted-2);
    display: flex;
    font-size: .72rem;
    gap: 16px;
    letter-spacing: .16em;
    margin-top: 30px;
    text-transform: uppercase;
}

.bj-scroll-note span {
    background: var(--bj-outline-strong);
    height: 1px;
    width: 46px;
}

.bj-featured-article-grid {
    align-items: start;
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1.9fr) minmax(280px, .9fr);
}

.bj-featured-article {
    border-radius: 12px;
    box-shadow: var(--bj-shadow);
    min-height: 430px;
    overflow: hidden;
    position: relative;
}

.bj-featured-article__media {
    background:
        radial-gradient(circle at 22% 26%, #0f80da 0 16%, transparent 17%),
        radial-gradient(circle at 72% 22%, #fff 0 14%, transparent 15%),
        linear-gradient(180deg, #224766, #05121d);
    display: block;
    inset: 0;
    position: absolute;
}

.bj-featured-article__media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.bj-featured-article__media::after {
    background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.82));
    content: "";
    inset: 0;
    position: absolute;
}

.bj-featured-article__media span {
    background: #a67c00;
    border-radius: 4px;
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
    left: 28px;
    padding: 6px 10px;
    position: absolute;
    text-transform: uppercase;
    top: 48%;
    z-index: 2;
}

.bj-featured-article__content {
    bottom: 0;
    color: #fff;
    left: 0;
    padding: 30px;
    position: absolute;
    right: 0;
    z-index: 2;
}

.bj-featured-article__content h2 {
    color: #fff;
    font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.bj-featured-article__content p,
.bj-featured-article__content .bj-card-link {
    color: rgba(255,255,255,.9);
}

.bj-article-sidebar {
    display: grid;
    gap: 22px;
}

.bj-sidebar-cta,
.bj-newsletter-card,
.bj-write-card {
    border-radius: 10px;
    padding: 28px;
}

.bj-sidebar-cta {
    background: #eef2ff;
}

.bj-newsletter-card,
.bj-write-card {
    background: var(--bj-primary);
    color: #fff;
}

.bj-newsletter-card h3,
.bj-write-card h3 {
    color: #fff;
}

.bj-newsletter-card p,
.bj-write-card p {
    color: rgba(255,255,255,.78);
}

.bj-newsletter-card button {
    background: var(--bj-yellow);
    border: 0;
    border-radius: 8px;
    color: #3c2c00;
    cursor: pointer;
    font-weight: 850;
    margin-top: 10px;
    min-height: 46px;
    width: 100%;
}

.bj-article-modern-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bj-post-card {
    border-radius: 10px;
}

.bj-post-card__image {
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(circle at 38% 34%, #0f80da 0 14%, transparent 15%),
        radial-gradient(circle at 58% 26%, #8ee0ff 0 10%, transparent 11%),
        linear-gradient(180deg, #ccecff, #f8fbff);
    display: block;
    overflow: hidden;
}

.bj-post-card__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.bj-post-card__body {
    padding: 22px;
}

.bj-post-card__meta {
    color: var(--bj-primary);
    display: flex;
    flex-wrap: wrap;
    font-size: .74rem;
    font-weight: 850;
    gap: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.bj-post-card__body p {
    color: var(--bj-muted);
}

.bj-write-card {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
    text-align: center;
}

.bj-quote-card {
    background: #fff;
    border: 1px solid rgba(166, 124, 0, .28);
    border-left: 8px solid #a67c00;
    border-radius: 12px;
    box-shadow: var(--bj-shadow-sm);
    margin: 0;
    padding: clamp(34px, 6vw, 72px);
}

.bj-quote-card p {
    color: var(--bj-heading);
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.55;
    margin: 0 0 24px;
}

.bj-quote-card cite {
    color: var(--bj-muted);
    font-style: normal;
}

/* Single article detail */
.bj-single-article-page {
    background: #fbf9ff;
}

.bj-single-article-hero {
    background: #fbf9ff;
    padding: 44px 0 34px;
}

.bj-single-article-hero .bj-breadcrumb {
    margin: 0 0 24px;
}

.bj-single-article-hero h1 {
    color: var(--bj-heading);
    font-size: clamp(2.35rem, 5vw, 4.4rem);
    line-height: 1.08;
    margin: 0 0 28px;
    max-width: 880px;
}

.bj-single-article-meta {
    align-items: center;
    color: var(--bj-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    font-weight: 750;
}

.bj-single-article-meta > span {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.bj-single-article-meta > span::before {
    background: var(--bj-outline-strong);
    border-radius: 999px;
    content: "";
    height: 10px;
    width: 10px;
}

.bj-author-chip {
    align-items: center;
    display: inline-flex;
    gap: 12px;
}

.bj-author-chip img {
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(17, 32, 57, .12);
}

.bj-author-chip strong,
.bj-author-chip small {
    display: block;
    line-height: 1.2;
}

.bj-author-chip strong {
    color: var(--bj-heading);
}

.bj-author-chip small {
    color: var(--bj-muted);
    font-size: .82rem;
}

.bj-single-article-main {
    padding: 22px 0 76px;
}

.bj-single-article-grid {
    align-items: start;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
}

.bj-single-article-content {
    min-width: 0;
}

.bj-single-featured-image {
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(circle at 34% 34%, #0f80da 0 10%, transparent 11%),
        radial-gradient(circle at 52% 26%, #55c3ff 0 12%, transparent 13%),
        radial-gradient(circle at 68% 38%, #0f80da 0 8%, transparent 9%),
        linear-gradient(180deg, #203447, #07111c);
    border-radius: 12px;
    box-shadow: var(--bj-shadow);
    margin-bottom: 38px;
    overflow: hidden;
}

.bj-single-featured-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.bj-single-article-content .bj-post-content {
    max-width: none;
}

.bj-single-article-content .bj-post-content > :first-child {
    margin-top: 0;
}

.bj-single-article-content .bj-post-content p {
    color: #4d5668;
    font-size: 1.05rem;
    line-height: 1.78;
}

.bj-single-article-content .bj-post-content h2 {
    color: var(--bj-heading);
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    margin-top: 1.45em;
}

.bj-single-article-content .bj-post-content h3 {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    margin-top: 1.35em;
}

.bj-single-article-content .bj-post-content blockquote {
    background: #f1f4ff;
    border-left: 4px solid var(--bj-primary-2);
    border-radius: 10px;
    color: var(--bj-heading);
    font-size: clamp(1.18rem, 2vw, 1.5rem);
    font-style: italic;
    font-weight: 750;
    line-height: 1.55;
    margin: 34px 0;
    padding: 28px 34px;
}

.bj-single-article-content .bj-post-content ul,
.bj-single-article-content .bj-post-content ol {
    color: #4d5668;
    line-height: 1.75;
    padding-left: 1.25rem;
}

.bj-single-article-content .bj-post-content li::marker {
    color: var(--bj-primary);
}

.bj-single-sidebar {
    display: grid;
    gap: 28px;
    position: sticky;
    top: 104px;
}

.bj-sidebar-box {
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(217, 223, 235, .86);
    border-radius: 12px;
    box-shadow: var(--bj-shadow-sm);
    padding: 26px;
}

.bj-sidebar-box h2,
.bj-sidebar-article-cta h2 {
    color: var(--bj-heading);
    font-size: 1.45rem;
    margin: 0 0 18px;
}

.bj-search-box form {
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.bj-search-box input {
    background: #f3f5ff;
    border: 1px solid var(--bj-outline);
    border-radius: 8px;
    color: var(--bj-text);
    font: inherit;
    min-height: 48px;
    padding: 12px 14px;
    width: 100%;
}

.bj-search-box button {
    background: var(--bj-primary);
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-weight: 850;
    min-width: 58px;
    padding-inline: 14px;
}

.bj-popular-list {
    display: grid;
    gap: 16px;
}

.bj-popular-item {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: 74px minmax(0, 1fr);
}

.bj-popular-thumb {
    aspect-ratio: 1 / 1;
    background:
        radial-gradient(circle at 48% 38%, #0f80da 0 18%, transparent 19%),
        linear-gradient(135deg, #ffe2a4, #dcecff);
    border-radius: 8px;
    display: block;
    overflow: hidden;
}

.bj-popular-thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.bj-popular-item strong {
    color: var(--bj-heading);
    display: block;
    font-size: .95rem;
    line-height: 1.25;
}

.bj-popular-item small {
    color: var(--bj-muted);
    display: block;
    font-weight: 750;
    margin-top: 5px;
}

.bj-sidebar-article-cta {
    background:
        radial-gradient(circle at 92% 12%, rgba(255,255,255,.16) 0 20%, transparent 21%),
        linear-gradient(135deg, var(--bj-primary), #0d5dd8);
    border-radius: 14px;
    box-shadow: var(--bj-shadow);
    color: #fff;
    padding: 32px;
}

.bj-sidebar-article-cta h2 {
    color: #fff;
}

.bj-sidebar-article-cta p {
    color: rgba(255,255,255,.78);
    margin-bottom: 22px;
}

.bj-article-share-row {
    align-items: center;
    border-top: 1px solid rgba(217, 223, 235, .88);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
    margin-top: 54px;
    padding-top: 24px;
}

.bj-article-share,
.bj-article-tags {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bj-article-share strong {
    color: var(--bj-heading);
    margin-right: 4px;
}

.bj-article-share a {
    align-items: center;
    background: #eef3ff;
    border-radius: 999px;
    color: var(--bj-primary);
    display: inline-flex;
    font-size: .78rem;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    min-width: 34px;
    padding: 0 10px;
}

.bj-article-tags a {
    background: #fff1c7;
    border-radius: 999px;
    color: #7a5b00;
    font-size: .78rem;
    font-weight: 850;
    padding: 7px 13px;
}

.bj-related-article-section {
    background: #eef3ff;
}

@media (max-width: 1024px) {
    .bj-single-article-grid {
        grid-template-columns: 1fr;
    }

    .bj-single-sidebar {
        position: static;
    }
}

@media (max-width: 680px) {
    .bj-single-article-hero {
        padding-top: 34px;
    }

    .bj-single-article-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .bj-single-article-grid {
        gap: 34px;
    }

    .bj-single-featured-image {
        border-radius: 10px;
        margin-bottom: 28px;
    }

    .bj-sidebar-box,
    .bj-sidebar-article-cta {
        padding: 22px;
    }

    .bj-article-share-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    .bj-service-catalog,
    .bj-portfolio-masonry,
    .bj-article-modern-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bj-value-grid,
    .bj-process-grid,
    .bj-area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bj-featured-article-grid,
    .bj-contact-grid,
    .bj-contact-faq__grid {
        grid-template-columns: 1fr;
    }

    .bj-footer-policy ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .bj-page .bj-breadcrumb {
        width: min(var(--bj-container), calc(100% - 32px));
    }

    .bj-inner-hero,
    .bj-article-hero {
        padding: 58px 0 48px;
    }

    .bj-inner-hero h1,
    .bj-article-hero h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .bj-page-actions,
    .bj-product-category-pills,
    .bj-portfolio-filter .bj-container,
    .bj-article-tabs .bj-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .bj-about-intro__grid,
    .bj-about-benefits__grid,
    .bj-service-planning,
    .bj-about-focus__grid,
    .bj-service-catalog,
    .bj-portfolio-masonry,
    .bj-article-modern-grid,
    .bj-form-grid,
    .bj-value-grid,
    .bj-process-grid,
    .bj-area-grid {
        grid-template-columns: 1fr;
    }

    .bj-featured-article {
        min-height: 380px;
    }

    .bj-contact-row {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .bj-contact-row span {
        height: 38px;
        width: 38px;
    }

.bj-map-visual {
        min-height: 360px;
    }

    .bj-footer-policy ul {
        grid-template-columns: 1fr;
    }
}

/* Laksana Balon color pass */
body {
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 216, 92, .28), transparent 34%),
        linear-gradient(180deg, rgba(255, 240, 189, .88), rgba(255, 250, 237, 0) 460px),
        var(--bj-surface);
}

.bj-site-header {
    background: rgba(255, 250, 237, .93);
    border-bottom-color: rgba(214, 189, 121, .62);
    box-shadow: 0 10px 30px rgba(16, 24, 51, .06);
}

.bj-logo,
.bj-nav a:hover,
.bj-nav .current-menu-item > a,
.bj-nav .current_page_item > a,
.bj-nav a[aria-current="page"],
.bj-card-link,
.bj-price,
.bj-eyebrow,
.bj-service-tile__body span,
.bj-service-tile__body a,
.bj-benefit-list strong,
.bj-post-card__meta,
.bj-article-share a,
.bj-footer a:hover {
    color: var(--bj-primary);
}

.bj-button--primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.bj-search-box button,
.bj-product-category-pills a.is-active,
.bj-portfolio-filter button.is-active,
.bj-article-tabs a.is-active {
    background: linear-gradient(180deg, #0b63d8, #004aaf);
    box-shadow: 0 14px 30px rgba(0, 74, 175, .24);
    color: #fff;
}

.bj-button--outline {
    background: rgba(255, 250, 237, .9);
    border-color: rgba(0, 74, 175, .34);
    color: var(--bj-primary);
}

.bj-button--accent,
.bj-newsletter-card button {
    background: linear-gradient(180deg, #ffcf45, #f15a24);
    color: #24150a;
}

.bj-card,
.bj-sidebar-box,
.bj-contact-form-card,
.bj-contact-info,
.bj-service-tile,
.bj-portfolio-work,
.bj-post-card,
.bj-area-card,
.bj-focus-card,
.bj-planning-grid > div {
    border-color: rgba(214, 189, 121, .62);
}

.bj-card:hover,
.bj-service-tile:hover {
    border-color: rgba(241, 90, 36, .34);
    box-shadow: 0 22px 54px rgba(0, 74, 175, .13);
}

.bj-section--soft,
.bj-home-products,
.bj-related-article-section,
.bj-footer,
.bj-inner-hero,
.bj-article-hero {
    background:
        linear-gradient(135deg, rgba(255, 240, 189, .78), rgba(231, 240, 255, .72)),
        #fff9e8;
}

.bj-page,
.bj-home,
.bj-home-portfolio,
.bj-article-tabs,
.bj-portfolio-filter,
.bj-single-article-page,
.bj-single-article-hero {
    background: #fff9e8;
}

.bj-page-badge,
.bj-home-badge,
.bj-service-icon,
.bj-focus-card__icon,
.bj-value-item span,
.bj-article-share a,
.bj-product-category-pills a,
.bj-portfolio-filter button,
.bj-article-tabs a {
    background: #fff0bd;
}

.bj-page-badge--yellow,
.bj-article-tags a {
    background: #ffe38a;
    color: #6d3600;
}

.bj-eyebrow::before,
.bj-page-badge::before,
.bj-nav .current-menu-item > a::after,
.bj-nav .current_page_item > a::after,
.bj-nav a[aria-current="page"]::after,
.bj-area-card span,
.bj-contact-row span,
.bj-focus-card__icon::before,
.bj-value-item span::before {
    background: var(--bj-orange);
}

.bj-contact-row--warm span,
.bj-focus-card--warm .bj-focus-card__icon::before {
    background: var(--bj-yellow);
}

.bj-blue-cta,
.bj-cta-band,
.bj-newsletter-card,
.bj-write-card,
.bj-sidebar-article-cta,
.bj-why-panel {
    background:
        radial-gradient(circle at 88% 0%, rgba(255, 216, 92, .18) 0 18%, transparent 19%),
        radial-gradient(circle at 4% 100%, rgba(241, 90, 36, .16) 0 16%, transparent 17%),
        linear-gradient(135deg, #004aaf, #0b63d8);
}

.bj-final-cta-card {
    background:
        radial-gradient(circle at 7% 78%, rgba(255,255,255,.24) 0 14%, transparent 15%),
        linear-gradient(135deg, #ffd85c, #f15a24);
    box-shadow: 0 26px 58px rgba(241, 90, 36, .22);
    color: #2a1708;
}

.bj-final-cta-card h2 {
    color: #2a1708;
}

.bj-fast-response {
    background:
        radial-gradient(circle at 88% 50%, rgba(255,255,255,.16) 0 24%, transparent 25%),
        linear-gradient(135deg, #f15a24, #b9340f);
}

.bj-footer {
    color: var(--bj-text);
}

.bj-footer h4,
.bj-footer .bj-logo {
    color: var(--bj-heading);
}

.bj-footer-support,
.bj-footer-policy,
.bj-footer-copy {
    border-top-color: rgba(214, 189, 121, .6);
}

.bj-logo-badge-group,
.bj-footer .bj-badge {
    background: rgba(255, 255, 255, .72);
    border-color: rgba(214, 189, 121, .62);
}

.bj-logo-badge--text {
    background: #fff0bd;
    color: var(--bj-primary);
}

/* Dynamic Woo content and Laksana Balon UI pass */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bj-logo--image {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.bj-logo--image img {
    display: block;
    width: auto;
    height: clamp(48px, 6vw, 72px);
    max-width: min(220px, 46vw);
    object-fit: contain;
}

.bj-navbar {
    min-height: 86px;
    gap: clamp(18px, 3vw, 36px);
}

.bj-nav {
    flex: 1;
    align-items: center;
    justify-content: flex-end;
}

.bj-nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: clamp(8px, 2vw, 22px);
}

.bj-nav-search {
    display: inline-flex;
    align-items: center;
    width: min(210px, 18vw);
    min-width: 156px;
    height: 42px;
    padding: 4px 5px 4px 14px;
    border: 1px solid rgba(0, 74, 175, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.bj-nav-search input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--bj-heading);
    font: inherit;
    font-size: .88rem;
}

.bj-nav-search button,
.bj-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 0;
    border-radius: 999px;
    color: var(--bj-primary);
    background: #fff0bd;
    cursor: pointer;
}

.bj-nav-search button svg,
.bj-nav-icon svg {
    width: 19px;
    height: 19px;
}

.bj-nav-icon {
    position: relative;
    border: 1px solid rgba(0, 74, 175, .16);
    text-decoration: none;
}

.bj-cart-count {
    position: absolute;
    top: -7px;
    right: -6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--bj-orange);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    line-height: 1;
}

.bj-home .bj-section {
    padding-block: clamp(50px, 6.5vw, 82px);
}

.bj-home .bj-section-heading {
    margin-bottom: clamp(22px, 3.5vw, 36px);
}

.bj-home-hero {
    padding-block: clamp(54px, 8vw, 92px);
}

.bj-hero-product-collage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(120px, 1fr);
    gap: clamp(10px, 1.6vw, 16px);
    width: 100%;
    min-height: clamp(340px, 36vw, 480px);
    padding: clamp(14px, 2vw, 22px);
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 216, 92, .38), transparent 28%),
        linear-gradient(135deg, rgba(0, 74, 175, .92), rgba(11, 99, 216, .72) 52%, rgba(255, 240, 189, .76));
    box-shadow: 0 28px 70px rgba(0, 74, 175, .2);
    overflow: hidden;
}

.bj-hero-product-collage::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 22px;
    pointer-events: none;
}

.bj-hero-product-shot {
    position: relative;
    display: block;
    margin: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    color: #fff;
    box-shadow: 0 18px 38px rgba(16, 24, 51, .2);
    transform: translateZ(0);
}

.bj-hero-product-shot:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.bj-hero-product-shot:nth-child(2),
.bj-hero-product-shot:nth-child(5) {
    grid-column: span 2;
}

.bj-hero-product-shot img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 120px;
    object-fit: cover;
}

.bj-category-card {
    padding-top: 14px;
}

.bj-category-card__image {
    display: block;
    margin: 0 0 18px;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    background: #fff0bd;
}

.bj-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.bj-category-card:hover .bj-category-card__image img {
    transform: scale(1.04);
}

.bj-portfolio-card--dynamic {
    contain: paint;
    min-height: clamp(280px, 28vw, 360px);
}

.bj-portfolio-card--dynamic::before {
    background:
        linear-gradient(180deg, rgba(6, 15, 31, 0) 28%, rgba(6, 15, 31, .56) 68%, rgba(6, 15, 31, .88) 100%);
    pointer-events: none;
    z-index: 1;
}

.bj-portfolio-card--dynamic img {
    display: block;
    height: 100%;
    inset: 0;
    min-height: 100%;
    max-width: none;
    min-width: 100%;
    object-fit: cover;
    position: absolute;
    width: 100%;
    transition: transform .35s ease;
    z-index: 0;
}

.bj-portfolio-card--dynamic:hover img {
    transform: scale(1.04);
}

.bj-portfolio-card__body {
    display: grid;
    gap: 8px;
    max-width: 100%;
    position: relative;
    width: 100%;
    z-index: 2;
}

.bj-portfolio-card__body p {
    color: rgba(255, 255, 255, .82);
    display: -webkit-box;
    font-size: .88rem;
    line-height: 1.45;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.bj-portfolio-card--wide span,
.bj-portfolio-card--gate span,
.bj-portfolio-card--mascot span {
    align-self: end;
    background: rgba(255, 255, 255, .9);
    border-radius: 999px;
    color: var(--bj-primary);
    display: inline-flex;
    font-size: .85rem;
    line-height: 1.25;
    padding: 8px 12px;
    width: fit-content;
    z-index: 1;
}

.bj-stock-pill--instock {
    background: #e7f8ed;
    color: #126b35;
    border-color: rgba(18, 107, 53, .16);
}

.bj-stock-pill--instock::before {
    background: #20c766;
    box-shadow: 0 0 0 4px rgba(32, 199, 102, .14);
}

.bj-stock-pill--outofstock {
    background: #fff0ea;
    color: #a33110;
}

.bj-stock-pill--onbackorder {
    background: #fff7d4;
    color: #7b5200;
}

.bj-floating-wa {
    gap: 11px;
    right: clamp(16px, 2.6vw, 32px);
    bottom: clamp(16px, 2.6vw, 28px);
    padding: 12px 18px 12px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 18px 46px rgba(18, 140, 126, .28);
}

.bj-floating-wa__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 0;
}

.bj-floating-wa__icon svg {
    width: 25px;
    height: 25px;
}

.bj-floating-wa strong {
    color: #fff;
}

@media (max-width: 1180px) {
    .bj-nav-search {
        width: 44px;
        min-width: 44px;
        padding-inline: 5px;
    }

    .bj-nav-search input {
        width: 0;
        opacity: 0;
        pointer-events: none;
    }
}

@media (max-width: 1024px) {
    .bj-nav {
        align-items: stretch;
    }

    .bj-nav-actions {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 10px;
        margin-left: 0;
        padding-top: 10px;
    }

    .bj-nav-search {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
    }

    .bj-nav-search input {
        width: 100%;
        opacity: 1;
        pointer-events: auto;
    }

    .bj-nav-actions .bj-button {
        grid-column: 1 / 2;
        width: 100%;
    }

    .bj-nav-icon {
        grid-column: 2 / 3;
        width: 42px;
        height: 42px;
    }

    .bj-hero-product-collage {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .bj-navbar {
        min-height: 74px;
    }

    .bj-logo--image img {
        height: 50px;
        max-width: 190px;
    }

    .bj-home .bj-section {
        padding-block: 44px;
    }

    .bj-home-hero {
        padding-block: 42px 48px;
    }

    .bj-hero-product-collage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 130px;
        min-height: 0;
        border-radius: 22px;
    }

    .bj-hero-product-shot:nth-child(1),
    .bj-hero-product-shot:nth-child(2),
    .bj-hero-product-shot:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bj-floating-wa {
        right: 14px;
        bottom: 14px;
        padding: 10px;
    }

    .bj-floating-wa strong {
        display: none;
    }
}

@media (max-width: 430px) {
    .bj-logo--image img {
        height: 44px;
        max-width: 156px;
    }

    .bj-hero-product-collage {
        grid-auto-rows: 116px;
        gap: 9px;
        padding: 10px;
    }

    .bj-portfolio-card--dynamic,
    .bj-portfolio-card--dynamic img {
        min-height: 230px;
    }
}

/* WordPress primary menu dropdown hardening */
.bj-nav > .bj-nav-menu {
    flex: 0 1 auto;
}

.bj-nav > .bj-nav-menu > li {
    align-items: center;
    display: inline-flex;
    min-height: 42px;
}

.bj-nav > .bj-nav-menu > li > a {
    white-space: nowrap;
}

@media (min-width: 1025px) {
    .bj-nav .sub-menu {
        max-height: min(70vh, 520px);
        overflow-y: auto;
    }
}

@media (max-width: 1024px) {
    .bj-nav-menu {
        align-items: stretch;
        display: grid;
        gap: 6px;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .bj-nav > .bj-nav-menu > li {
        align-items: stretch;
        display: grid;
        min-height: 0;
    }

    .bj-nav .menu-item-has-children > a::before {
        margin-left: auto;
    }

    .bj-nav .sub-menu {
        background: rgba(0, 74, 175, .04);
        border: 1px solid rgba(0, 74, 175, .1);
        border-radius: 12px;
        box-shadow: none;
        display: grid;
        gap: 2px;
        left: auto;
        margin: 6px 0 0;
        max-height: 0;
        min-width: 0;
        opacity: 1;
        overflow: hidden;
        padding: 0 8px;
        pointer-events: none;
        position: static;
        top: auto;
        transform: none;
        transition: max-height .2s ease, padding .2s ease;
        visibility: visible;
        width: 100%;
    }

    .bj-nav .sub-menu::before {
        content: none;
    }

    .bj-nav li:hover > .sub-menu,
    .bj-nav li:focus-within > .sub-menu {
        max-height: 460px;
        padding-block: 8px;
        pointer-events: auto;
        transform: none;
    }

    .bj-nav .sub-menu a {
        padding: 9px 10px;
        white-space: normal;
    }
}

/* Single product refinement pass */
.bj-product-hero {
    align-items: stretch;
    gap: clamp(24px, 4vw, 46px);
    margin-bottom: 24px;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
    overflow: hidden;
}

.bj-product-hero__content {
    align-self: center;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.bj-product-hero__image {
    isolation: isolate;
    min-height: clamp(260px, 30vw, 390px);
    box-shadow: 0 18px 42px rgba(16, 24, 51, .16);
}

.bj-product-hero__shipping-badge {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: calc(100% - 32px);
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--bj-primary);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .04em;
    box-shadow: 0 12px 26px rgba(16, 24, 51, .14);
}

.bj-product-hero__shipping-badge svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: var(--bj-orange);
}

.bj-pill--sku {
    background: #fff7d4;
    color: #704800;
    border-color: rgba(241, 90, 36, .18);
}

.bj-product-hero__assurance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 8px;
}

.bj-product-hero__assurance span {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 54px;
    padding: 12px;
    border: 1px solid rgba(214, 189, 121, .58);
    border-radius: 16px;
    background: rgba(255, 255, 255, .76);
    color: var(--bj-heading);
    font-size: .84rem;
    line-height: 1.2;
}

.bj-product-hero__assurance svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: var(--bj-primary);
}

.bj-product-hero__actions {
    gap: 12px;
    margin-top: 18px;
}

.bj-product-hero__actions .bj-button {
    min-width: min(210px, 100%);
}

.bj-toc {
    position: fixed;
    right: clamp(16px, 2vw, 36px);
    top: 112px;
    z-index: 49;
    margin: 0;
    padding: 12px;
    background: rgba(255, 255, 255, .94);
}

.bj-toc:not(.is-open) {
    padding: 6px;
}

.bj-toc__list {
    gap: 7px;
    margin-top: 12px;
}

.bj-toc a {
    padding: 7px 10px;
    font-size: .78rem;
    border-radius: 10px;
}

@media (max-width: 980px) {
    .bj-toc {
        top: 98px;
    }
}

@media (max-width: 680px) {
    .bj-toc {
        right: 16px;
        top: 92px;
    }

    .bj-toc.is-open {
        max-height: calc(100vh - 116px);
    }
}

#keunggulan-produk,
#detail-layanan,
#layanan-fasilitas,
#spesifikasi-teknis,
#harga-ketersediaan,
#portfolio-layanan,
#alur-pemesanan,
#review-pelanggan,
#faq-layanan,
.bj-product-final-cta {
    padding-top: clamp(34px, 4.5vw, 58px);
    padding-bottom: clamp(34px, 4.5vw, 58px);
    margin-bottom: 22px;
}

.bj-product-info-card {
    padding: 22px !important;
}

.bj-product-info-card .bj-h3 {
    font-size: clamp(1rem, 1.2vw, 1.14rem);
}

.bj-product-info-card p {
    color: var(--bj-muted);
    font-size: .94rem;
    line-height: 1.65;
}

.bj-product-description-panel {
    position: relative;
    max-width: 100%;
}

.bj-description-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bj-description-content {
    position: relative;
}

.bj-description-content.is-collapsible {
    max-height: 560px;
    overflow: hidden;
}

.bj-description-content.is-collapsible::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;
    background: linear-gradient(180deg, rgba(255, 250, 237, 0), #fffaf0 72%);
    pointer-events: none;
}

.bj-description-toggle:checked + .bj-description-content.is-collapsible {
    max-height: none;
}

.bj-description-toggle:checked + .bj-description-content.is-collapsible::after {
    display: none;
}

.bj-description-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 10px 15px;
    border: 1px solid rgba(0, 74, 175, .2);
    border-radius: 999px;
    background: #fff;
    color: var(--bj-primary);
    cursor: pointer;
    font-size: .9rem;
    font-weight: 850;
    box-shadow: var(--bj-shadow-sm);
}

.bj-description-more__close {
    display: none;
}

.bj-description-toggle:checked ~ .bj-description-more .bj-description-more__open {
    display: none;
}

.bj-description-toggle:checked ~ .bj-description-more .bj-description-more__close {
    display: inline;
}

.bj-product-section-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.bj-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bj-services-grid .bj-product-info-card {
    border-color: rgba(0, 100, 216, .14);
    padding: 22px !important;
}

.bj-services-grid .bj-product-info-card::before {
    background: var(--bj-primary-3);
    border-radius: 999px;
    content: "";
    display: block;
    height: 9px;
    margin-bottom: 16px;
    width: 42px;
}

body.single-product {
    background:
        linear-gradient(180deg, rgba(238, 243, 250, .96), rgba(247, 249, 252, 0) 460px),
        #f6f8fb;
}

body.single-product .bj-site-header {
    background: rgba(255, 255, 255, .94);
    border-bottom-color: rgba(217, 223, 235, .86);
}

.single-product main.bj-container {
    display: grid;
    gap: 20px;
}

.single-product main.bj-container > .bj-section {
    border-radius: 24px;
}

.single-product main.bj-container > .bj-section--soft {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(241, 245, 251, .92));
    border: 1px solid rgba(217, 223, 235, .78);
    box-shadow: 0 18px 44px rgba(16, 24, 51, .06);
    padding-inline: clamp(18px, 3vw, 32px);
}

.single-product .bj-section .bj-h2 {
    line-height: 1.12;
    max-width: 860px;
}

.bj-product-intent-grid .bj-product-info-card,
.bj-benefit-card-grid .bj-product-info-card {
    min-height: 0;
    padding: 22px !important;
}

.bj-benefit-card-grid > .bj-card::before {
    display: none;
}

.bj-portfolio-documentation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bj-portfolio-documentation-card {
    overflow: hidden;
}

.bj-portfolio-documentation-card__image {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    margin: -4px -4px 18px;
    overflow: hidden;
}

.bj-portfolio-documentation-card__image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.bj-product-spec-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.bj-product-spec-list--section {
    gap: 14px;
    margin-top: 26px;
}

.bj-product-spec-list div {
    padding: 16px;
    border: 1px solid rgba(217, 223, 235, .9);
    border-radius: 16px;
    background: rgba(255, 255, 255, .86);
}

.bj-product-spec-list--section div {
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 253, .94));
    border-color: rgba(188, 200, 218, .74);
    min-height: 100%;
}

.bj-product-spec-list strong,
.bj-product-spec-list span {
    display: block;
}

.bj-product-spec-list strong {
    color: var(--bj-heading);
    font-size: .92rem;
}

.bj-product-spec-list span {
    margin-top: 6px;
    color: var(--bj-muted);
    font-size: .86rem;
    line-height: 1.55;
}

.bj-product-note {
    margin-top: 20px;
    padding: 18px 20px;
    border-left: 4px solid var(--bj-primary-2);
    border-radius: 16px;
    background: rgba(255, 255, 255, .9);
    color: var(--bj-text);
}

.bj-production-control-note ul {
    margin: 10px 0 0;
    padding-left: 1.2rem;
}

.bj-production-control-note li + li {
    margin-top: 6px;
}

.bj-pricing-card {
    align-items: start;
    background: linear-gradient(135deg, #fff, #f6f9fd) !important;
    border-color: rgba(188, 200, 218, .78) !important;
    display: grid;
    gap: 18px;
    padding: 28px !important;
}

.bj-pricing-card p {
    color: var(--bj-muted);
    margin: 0;
    max-width: 760px;
}

.bj-pricing-cta {
    margin-top: 16px;
}

.bj-pricing-card .bj-button,
.bj-pricing-cta {
    justify-self: start;
    white-space: normal;
}

.bj-pricing-card .bj-price-table {
    margin-top: 0;
    width: 100%;
}

.bj-price-table--factors table {
    min-width: 760px;
}

.bj-price-table--factors td:first-child {
    color: var(--bj-heading);
    width: 150px;
}

.bj-price-table--factors td:nth-child(2) {
    width: 45%;
}

.bj-price-table--reference table {
    min-width: 860px;
}

.bj-price-table--reference td:nth-child(2) {
    color: var(--bj-heading);
    font-weight: 800;
    white-space: nowrap;
}

.bj-spec-table {
    margin-top: 22px;
}

.bj-spec-table table {
    min-width: 560px;
}

.bj-spec-table td:first-child {
    color: var(--bj-heading);
    width: 220px;
}

.bj-feature-benefit-table {
    margin-top: 16px;
}

.bj-use-case-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bj-price-table {
    overflow-x: auto;
    margin-top: 18px;
    border: 1px solid rgba(188, 200, 218, .78);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--bj-shadow-sm);
}

.bj-price-table table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.bj-price-table th,
.bj-price-table td {
    padding: 15px 18px;
    border-bottom: 1px solid rgba(217, 223, 235, .76);
    text-align: left;
    vertical-align: top;
}

.bj-price-table th {
    background: #f1f5fb;
    color: var(--bj-heading);
    font-size: .84rem;
    text-transform: uppercase;
}

.bj-price-table tr:last-child td {
    border-bottom: 0;
}

.bj-product-card-meta {
    margin-top: auto;
    padding-top: 10px;
    color: var(--bj-primary) !important;
    font-weight: 750;
}

.bj-step-card {
    padding: 20px !important;
    gap: 10px;
}

#alur-pemesanan .bj-step-card {
    min-height: 0;
    padding: 20px !important;
}

#alur-pemesanan .bj-step-card::before {
    display: none;
}

.bj-step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: var(--bj-primary);
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
}

.bj-step-card strong {
    display: block;
    color: var(--bj-heading);
}

.bj-step-card p {
    margin: 8px 0 0;
    color: var(--bj-muted);
    font-size: .88rem;
    line-height: 1.55;
}

.bj-related-products-section .bj-h2,
.bj-related-articles-section .bj-h2 {
    font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.bj-related-product-grid {
    align-items: stretch;
    grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
    justify-content: start;
}

.bj-faq-list {
    display: grid;
    gap: 12px;
}

.bj-faq-list details.bj-card {
    border-color: rgba(188, 200, 218, .72);
    box-shadow: 0 10px 26px rgba(16, 24, 51, .05);
}

.bj-faq-list details.bj-card summary {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.bj-faq-list details.bj-card summary::after {
    flex: 0 0 auto;
    float: none;
}

.bj-faq-list details.bj-card > div {
    border-top-color: rgba(217, 223, 235, .86);
}

.bj-review-grid {
    align-items: stretch;
    margin-top: 24px;
}

.bj-review-card {
    padding: 22px !important;
}

.bj-review-card--consideration {
    background: linear-gradient(180deg, #fff, #f7f9fc);
    border-color: rgba(188, 200, 218, .74);
}

.bj-review-card--consideration .bj-h3 {
    font-size: 1.02rem;
}

.bj-review-card__rating {
    align-items: center;
    background: #f6f9fd;
    border: 1px solid rgba(188, 200, 218, .82);
    border-radius: 999px;
    color: var(--bj-heading);
    display: inline-flex;
    font-size: .82rem;
    font-weight: 900;
    gap: 8px;
    line-height: 1;
    margin-bottom: 14px;
    min-height: 30px;
    padding: 7px 12px;
}

.bj-review-card__stars {
    color: #d5dae3;
    display: inline-block;
    font-size: .95rem;
    letter-spacing: 1px;
    line-height: 1;
    position: relative;
    white-space: nowrap;
}

.bj-review-card__stars-fill {
    color: #f5b301;
    display: inline-block;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    white-space: nowrap;
    width: var(--bj-rating-percent, 0%);
}

.bj-review-card__score {
    color: var(--bj-heading);
    font-size: .78rem;
}

.bj-review-card p {
    color: var(--bj-muted);
    font-size: .94rem;
    line-height: 1.65;
    margin: 0 0 18px;
}

.bj-review-card strong {
    color: var(--bj-heading);
    display: block;
    margin-top: auto;
}

.bj-product-final-cta__card {
    padding: clamp(24px, 4vw, 36px) !important;
    background:
        radial-gradient(circle at 92% 20%, rgba(255, 216, 92, .22), transparent 28%),
        radial-gradient(circle at 4% 92%, rgba(241, 90, 36, .12), transparent 24%),
        linear-gradient(135deg, #fff, #fff8dc);
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
}

.bj-product-final-cta__content .bj-lead {
    margin-bottom: 0;
}

.bj-product-final-cta__actions {
    display: grid;
    gap: 12px;
}

.bj-product-final-cta__actions .bj-button,
.bj-design-preview .bj-button {
    border-radius: 14px;
    justify-content: center;
    min-height: 54px;
    text-align: center;
    width: 100%;
}

.bj-product-final-cta__actions .bj-button--primary::after,
.bj-design-preview .bj-button--primary::after {
    display: none;
}

.single-product .bj-design-studio {
    margin-top: 4px;
}

.single-product .bj-design-studio__intro .bj-h2 {
    font-size: clamp(1.55rem, 2.8vw, 2.35rem);
}

.single-product .bj-design-online--editor .bj-design-workspace .bj-design-canvas-wrap,
.single-product .bj-design-online--editor .bj-design-2d {
    min-height: 500px;
}

@media (max-width: 980px) {
    .bj-portfolio-documentation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bj-use-case-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bj-product-final-cta__card {
        grid-template-columns: 1fr;
    }

    .bj-product-final-cta__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .bj-portfolio-documentation-grid,
    .bj-use-case-list,
    .bj-product-final-cta__actions {
        grid-template-columns: 1fr;
    }
}

.bj-floating-wa {
    display: none !important;
}

@media (max-width: 900px) {
    .bj-product-hero {
        grid-template-columns: 1fr;
    }

    .bj-product-hero__assurance,
    .bj-product-spec-list {
        grid-template-columns: 1fr;
    }

    .bj-product-section-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .bj-product-hero {
        padding: 16px;
        border-radius: 24px;
    }

    .bj-product-hero__image {
        min-height: 230px;
        border-radius: 20px;
    }

    .bj-product-hero__shipping-badge {
        top: 12px;
        left: 12px;
        font-size: .66rem;
    }

    .bj-product-hero__actions .bj-button {
        width: 100%;
    }

    .bj-toc__list {
        display: none;
    }

    .bj-toc.is-open .bj-toc__list {
        display: flex;
    }
}

/* Single product hero layout guard */
.single-product .bj-product-hero {
    align-items: center;
    background:
        radial-gradient(circle at 88% 12%, rgba(11, 99, 216, .08), transparent 25%),
        linear-gradient(135deg, #ffffff 0%, #eef3f9 100%);
    border: 1px solid rgba(188, 200, 218, .82);
    border-radius: 28px;
    box-shadow: 0 22px 54px rgba(16, 24, 51, .1);
    display: grid;
    gap: clamp(24px, 4vw, 44px);
    grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
    margin: 28px 0 34px;
    overflow: hidden;
    padding: clamp(18px, 3vw, 30px);
}

.single-product .bj-product-hero__image {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(16, 24, 51, .14);
    min-height: 0;
    overflow: hidden;
    width: 100%;
}

.single-product .bj-product-hero__image img {
    display: block;
    height: 100%;
    max-width: none;
    object-fit: cover;
    width: 100%;
}

.single-product .bj-product-hero__image::after {
    background: linear-gradient(180deg, rgba(16, 24, 51, 0), rgba(16, 24, 51, .08));
}

.single-product .bj-product-hero__content {
    align-self: center;
    min-width: 0;
    padding-block: 4px;
}

.single-product .bj-product-hero .bj-eyebrow {
    margin-bottom: 10px;
}

.single-product .bj-product-hero .bj-h1 {
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: 16px;
    max-width: 720px;
    overflow-wrap: anywhere;
}

.single-product .bj-product-hero .bj-lead {
    font-size: clamp(.98rem, 1.2vw, 1.12rem);
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 680px;
}

.single-product .bj-product-hero .bj-meta-list {
    gap: 10px;
    margin: 16px 0;
}

.single-product .bj-product-hero .bj-pill {
    background: rgba(255, 255, 255, .92);
    border-color: rgba(188, 200, 218, .72);
    min-height: 40px;
}

.single-product .bj-price {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: clamp(1.8rem, 3.2vw, 3.1rem);
    margin: 12px 0 18px;
}

.single-product .bj-price del {
    font-size: .55em;
    margin-right: 0;
    opacity: .75;
}

.bj-product-hero__price {
    display: grid;
    gap: 4px;
    margin: 8px 0 2px;
}

.bj-product-hero__price > span {
    color: var(--bj-muted);
    font-size: .84rem;
    font-weight: 850;
    text-transform: uppercase;
}

.single-product .bj-product-hero__assurance {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 16px 0 6px;
}

.single-product .bj-product-hero__assurance span {
    background: rgba(255, 255, 255, .9);
    border-color: rgba(188, 200, 218, .72);
    min-width: 0;
}

.single-product .bj-product-hero__actions {
    margin-top: 18px;
}

@media (max-width: 980px) {
    .single-product .bj-product-hero {
        grid-template-columns: 1fr;
    }

    .single-product .bj-product-hero__image {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 680px) {
    .single-product .bj-product-hero {
        border-radius: 22px;
        margin-top: 20px;
        padding: 14px;
    }

    .single-product .bj-product-hero__image {
        aspect-ratio: 4 / 3;
        border-radius: 18px;
    }

    .single-product .bj-product-hero .bj-h1 {
        font-size: clamp(1.75rem, 9vw, 2.45rem);
    }

    .single-product .bj-product-hero__assurance {
        grid-template-columns: 1fr;
    }
}

/* Product design studio */
.bj-design-studio {
    background: #fff;
    border: 1px solid rgba(188, 200, 218, .82);
    border-radius: 22px;
    box-shadow: 0 22px 54px rgba(16, 24, 51, .08);
    margin: 0 0 30px;
    overflow: hidden;
}

.bj-design-studio__intro {
    background:
        radial-gradient(circle at 92% 0, rgba(11, 99, 216, .08), transparent 24%),
        linear-gradient(135deg, #fff, #f4f7fb);
    border-bottom: 1px solid rgba(0, 74, 175, .14);
    padding: clamp(18px, 2.4vw, 26px) clamp(18px, 3vw, 30px);
}

.bj-design-studio__intro .bj-h2 {
    font-size: clamp(1.5rem, 2.6vw, 2.35rem);
    margin-bottom: 10px;
}

.bj-design-studio__intro p {
    color: var(--bj-muted);
    line-height: 1.65;
    margin: 0;
    max-width: 980px;
}

.bj-design-studio__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bj-design-studio__tab {
    align-items: center;
    background: #f6f8fc;
    border: 0;
    border-bottom: 2px solid var(--bj-primary-2);
    color: #3b404a;
    cursor: pointer;
    display: inline-flex;
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    font-weight: 900;
    gap: 8px;
    justify-content: center;
    min-height: 62px;
    padding: 16px;
    text-transform: uppercase;
}

.bj-design-studio__tab + .bj-design-studio__tab {
    border-left: 2px solid var(--bj-primary-2);
}

.bj-design-studio__tab.is-active {
    background: #fff;
    border-bottom-color: transparent;
    color: #050912;
}

.bj-design-studio__tab span {
    align-items: center;
    border: 2px solid #8b929d;
    border-radius: 999px;
    color: #6b7280;
    display: inline-flex;
    font-size: .72rem;
    height: 22px;
    justify-content: center;
    text-transform: none;
    width: 22px;
}

.bj-design-studio__panel {
    padding: clamp(16px, 2.4vw, 24px);
}

.bj-design-assist__actions {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 26px;
}

.bj-design-upload,
.bj-design-template {
    align-items: center;
    background: #fff;
    border: 2px solid #ff2170;
    border-radius: 14px;
    color: var(--bj-heading);
    cursor: pointer;
    display: grid;
    gap: 6px;
    justify-items: center;
    min-height: 96px;
    padding: 18px;
    text-align: center;
}

.bj-design-upload input {
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}

.bj-design-upload strong,
.bj-design-template strong,
.bj-design-assist__field label {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.bj-design-upload span,
.bj-design-template span {
    color: var(--bj-muted);
    font-weight: 800;
}

.bj-design-assist__field {
    display: grid;
    gap: 8px;
}

.bj-design-assist__field label span {
    color: #ff2170;
}

.bj-design-assist__field textarea {
    border: 2px solid #ff2170;
    border-radius: 8px;
    color: var(--bj-heading);
    font: inherit;
    min-height: 150px;
    padding: 16px;
    resize: vertical;
    width: 100%;
}

.bj-design-assist__meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: space-between;
}

.bj-design-assist__meta em {
    color: var(--bj-muted);
    font-size: .92rem;
}

.bj-design-assist__buttons {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.bj-design-online {
    display: grid;
    gap: 18px;
    grid-template-columns: 260px minmax(0, 1fr);
}

.bj-design-tools {
    align-self: start;
    background: #f8fafc;
    border: 1px solid rgba(217, 223, 235, .9);
    border-radius: 16px;
    display: grid;
    gap: 12px;
    padding: 14px;
}

.bj-design-tool {
    display: grid;
    gap: 8px;
}

.bj-design-tool span {
    color: var(--bj-heading);
    font-size: .84rem;
    font-weight: 900;
}

.bj-design-tool input,
.bj-design-tool select {
    border: 1px solid rgba(0, 74, 175, .2);
    border-radius: 10px;
    font: inherit;
    min-height: 42px;
    padding: 9px 10px;
    width: 100%;
}

.bj-design-tool input[type="color"] {
    padding: 4px;
}

.bj-design-tool input[type="range"] {
    padding-inline: 0;
}

.bj-design-tool--inline {
    grid-template-columns: 1fr;
}

.bj-design-tool--inline button {
    background: #fff;
    border: 1px solid rgba(0, 74, 175, .22);
    border-radius: 10px;
    color: var(--bj-primary);
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    min-height: 40px;
    padding: 8px 10px;
}

.bj-design-workspace {
    min-width: 0;
}

.bj-design-mode {
    border: 1px solid var(--bj-heading);
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto 18px;
    max-width: 210px;
    overflow: hidden;
}

.bj-design-mode button {
    background: #fff;
    border: 0;
    color: var(--bj-heading);
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    min-height: 44px;
}

.bj-design-mode button.is-active {
    background: #050912;
    color: #fff;
}

.bj-design-canvas-wrap {
    background:
        linear-gradient(90deg, rgba(16, 24, 51, .06) 1px, transparent 1px) 0 0 / 42px 42px,
        linear-gradient(rgba(16, 24, 51, .06) 1px, transparent 1px) 0 0 / 42px 42px,
        #eef1f5;
    border-radius: 18px;
    min-height: 460px;
    overflow: hidden;
    position: relative;
}

.bj-design-2d,
.bj-design-3d {
    align-items: center;
    display: flex;
    height: 460px;
    justify-content: center;
    position: relative;
    width: 100%;
}

.bj-design-object {
    --design-color: #ef1f2d;
    --design-accent: #ffc107;
    background: var(--design-color);
    border: 3px solid rgba(16, 24, 51, .45);
    box-shadow: inset 12px 0 rgba(255, 255, 255, .16), inset -12px 0 rgba(0, 0, 0, .12), 0 18px 34px rgba(16, 24, 51, .18);
    color: #fff;
    position: relative;
}

.bj-design-object--tube {
    border-radius: 36px 36px 24px 24px;
    height: 360px;
    width: 116px;
}

.bj-design-object--sky-dancer {
    border-radius: 36px 36px 24px 24px;
    height: 340px;
    width: 104px;
}

.bj-design-object--sky-dancer::before,
.bj-design-object--sky-dancer::after {
    background: var(--design-accent);
    border: 3px solid rgba(16, 24, 51, .45);
    border-radius: 999px;
    content: "";
    height: 126px;
    position: absolute;
    top: 70px;
    transform-origin: bottom center;
    width: 30px;
}

.bj-design-object--sky-dancer::before {
    left: -40px;
    transform: rotate(-38deg);
}

.bj-design-object--sky-dancer::after {
    right: -40px;
    transform: rotate(38deg);
}

.bj-design-object--tube::before,
.bj-design-object--tube::after {
    background: var(--design-color);
    border: 3px solid rgba(16, 24, 51, .45);
    border-radius: 999px;
    content: "";
    height: 132px;
    position: absolute;
    top: 80px;
    transform-origin: bottom center;
    width: 34px;
}

.bj-design-object--tube::before {
    left: -44px;
    transform: rotate(-34deg);
}

.bj-design-object--tube::after {
    right: -44px;
    transform: rotate(34deg);
}

.bj-design-object--gate {
    background: var(--design-color);
    border: 3px solid rgba(16, 24, 51, .45);
    border-radius: 0;
    box-shadow: 0 18px 34px rgba(16, 24, 51, .14);
    clip-path: polygon(8% 0, 92% 0, 100% 20%, 100% 100%, 84% 100%, 84% 30%, 16% 30%, 16% 100%, 0 100%, 0 20%);
    height: 330px;
    width: min(560px, 88%);
}

.bj-design-object--gate::before {
    background:
        linear-gradient(90deg, transparent 0 46%, rgba(255,255,255,.18) 46% 54%, transparent 54%),
        var(--design-accent);
    bottom: 0;
    content: "";
    left: 0;
    opacity: .32;
    position: absolute;
    top: 0;
    width: 16%;
}

.bj-design-object--gate::after {
    background: var(--design-accent);
    bottom: 0;
    content: "";
    opacity: .24;
    position: absolute;
    right: 0;
    top: 0;
    width: 16%;
}

.bj-design-object--round {
    border-radius: 999px;
    height: 230px;
    width: 230px;
}

.bj-design-object--tepuk {
    border-radius: 18px;
    height: 330px;
    width: 86px;
}

.bj-design-object--tepuk::after {
    background: var(--design-accent);
    border-left: 3px solid rgba(16, 24, 51, .45);
    border-right: 3px solid rgba(16, 24, 51, .45);
    content: "";
    inset: 0 18px;
    position: absolute;
}

.bj-design-object--sablon {
    border-radius: 999px;
    height: 230px;
    width: 230px;
}

.bj-design-object--udara {
    border-radius: 55% 55% 48% 48%;
    height: 270px;
    width: 230px;
}

.bj-design-object--udara::after {
    background: var(--design-accent);
    border: 3px solid rgba(16, 24, 51, .45);
    border-radius: 0 0 18px 18px;
    bottom: -50px;
    content: "";
    height: 58px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 74px;
}

.bj-design-face {
    display: none;
    height: 76px;
    left: 18px;
    position: absolute;
    top: 34px;
    width: 76px;
}

.bj-design-logo,
.bj-design-text,
.bj-design-shape,
.bj-design-icon {
    align-items: center;
    display: flex;
    font-weight: 950;
    justify-content: center;
    line-height: 1.05;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    z-index: 2;
}

.bj-design-logo,
.bj-design-text,
.bj-design-shape,
.bj-design-icon {
    cursor: grab;
    left: var(--x, 50%);
    top: var(--y, 50%);
    transform: translate(-50%, -50%) rotate(var(--r, 0deg)) scale(var(--s, 1));
}

.bj-design-logo.is-selected,
.bj-design-text.is-selected,
.bj-design-shape.is-selected,
.bj-design-icon.is-selected {
    outline: 3px solid rgba(0, 74, 175, .65);
    outline-offset: 4px;
}

.bj-design-logo {
    background: rgba(255, 255, 255, .92);
    border-radius: 999px;
    color: #111827;
    font-size: .82rem;
    height: 72px;
    overflow: hidden;
    padding: 8px;
    width: 72px;
}

.bj-design-logo img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.bj-design-text {
    color: var(--text-color, #fff);
    font-size: 1.2rem;
    min-width: 90px;
    word-break: break-word;
}

.bj-design-object--gate .bj-design-logo,
.bj-design-object--round .bj-design-logo {
    transform: translate(-50%, -50%) rotate(var(--r, 0deg)) scale(var(--s, 1));
}

.bj-design-object--gate .bj-design-text {
    width: 220px;
}

.bj-design-object--round .bj-design-text {
    width: 160px;
}

.bj-design-shape {
    color: var(--shape-color, #ffffff);
    height: 70px;
    width: 70px;
}

.bj-design-shape--circle {
    background: currentColor;
    border-radius: 999px;
}

.bj-design-shape--star {
    background: currentColor;
    clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
}

.bj-design-shape--burst {
    background: currentColor;
    clip-path: polygon(50% 0, 59% 25%, 85% 15%, 75% 41%, 100% 50%, 75% 59%, 85% 85%, 59% 75%, 50% 100%, 41% 75%, 15% 85%, 25% 59%, 0 50%, 25% 41%, 15% 15%, 41% 25%);
}

.bj-design-shape--stripe {
    background: currentColor;
    border-radius: 999px;
    height: 18px;
    width: 140px;
}

.bj-design-icon {
    color: var(--icon-color, #ffffff);
    font-size: 2.2rem;
    height: 64px;
    width: 64px;
}

.bj-design-icon--sale {
    background: #111827;
    border-radius: 999px;
    color: #fff;
    font-size: 1rem;
}

.bj-design-icon--check {
    font-size: 2.8rem;
}

.bj-design-icon--map {
    font-size: 2.6rem;
}

.bj-design-3d canvas {
    display: block;
    height: 100%;
    cursor: grab;
    width: 100%;
}

.bj-design-3d__fallback {
    color: var(--bj-muted);
    font-weight: 800;
}

.bj-design-3d__hint {
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(0, 74, 175, .16);
    border-radius: 999px;
    color: var(--bj-muted);
    font-size: .78rem;
    font-weight: 850;
    padding: 7px 11px;
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 2;
}

.bj-design-footer {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
}

.bj-design-footer button {
    background: #fff;
    border: 1px solid rgba(0, 74, 175, .22);
    border-radius: 999px;
    color: var(--bj-primary);
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    min-height: 44px;
    padding: 10px 18px;
}

@media (max-width: 900px) {
    .bj-design-online {
        grid-template-columns: 1fr;
    }

    .bj-design-tools {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .bj-design-studio__tabs,
    .bj-design-assist__actions,
    .bj-design-tools {
        grid-template-columns: 1fr;
    }

    .bj-design-studio__tab + .bj-design-studio__tab {
        border-left: 0;
        border-top: 2px solid var(--bj-primary-2);
    }

    .bj-design-canvas-wrap,
    .bj-design-2d,
    .bj-design-3d {
        min-height: 390px;
        height: 390px;
    }

    .bj-design-object--tube {
        height: 300px;
        width: 96px;
    }
}

/* Design editor shell */
.bj-design-studio--editor {
    border: 2px solid var(--bj-primary-2);
    border-radius: 22px;
    box-shadow: 0 22px 54px rgba(0, 74, 175, .1);
    margin: 0 0 30px;
    overflow: hidden;
    width: 100%;
}

.bj-design-online--editor {
    background: #edf0f4;
    display: block;
    margin: -24px;
}

.bj-design-online--editor .bj-design-editor__top {
    align-items: center;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .1);
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(220px, 1fr) 180px minmax(170px, 1fr);
    min-height: 64px;
    padding: 10px clamp(16px, 2.4vw, 24px);
    position: relative;
    z-index: 3;
}

.bj-design-editor__brand {
    align-items: center;
    display: inline-flex;
    gap: 14px;
    min-width: 0;
}

.bj-design-editor__mark,
.bj-design-upload-logo {
    align-items: center;
    background: #ffc107;
    border-radius: 4px;
    color: #004aaf;
    display: inline-flex;
    font-size: .9rem;
    font-weight: 950;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.bj-design-editor__brand strong {
    color: #050912;
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: .02em;
}

.bj-design-online--editor .bj-design-mode {
    margin: 0;
    max-width: none;
}

.bj-design-save {
    background: #050505;
    border-radius: 10px;
    color: #fff;
    font-weight: 850;
    justify-self: end;
    padding: 12px 22px;
    text-decoration: none;
}

.bj-design-save:hover {
    color: #fff;
}

.bj-design-editor__body {
    display: grid;
    gap: 12px;
    grid-template-columns: 76px 270px minmax(360px, 1fr) 270px;
    min-height: 532px;
    padding: clamp(12px, 1.5vw, 20px);
}

.bj-design-rail {
    align-self: start;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .07);
    display: grid;
    gap: 4px;
    padding: 10px 6px;
    position: sticky;
    top: 120px;
}

.bj-design-rail button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 14px;
    color: #111827;
    cursor: pointer;
    display: grid;
    font: inherit;
    font-size: .68rem;
    gap: 5px;
    justify-items: center;
    min-height: 66px;
    padding: 7px 3px;
}

.bj-design-rail button.is-active {
    background: #f3f5f8;
    color: #000;
}

.bj-design-rail button span {
    align-items: center;
    border: 2px solid currentColor;
    border-radius: 8px;
    display: inline-flex;
    font-size: .92rem;
    font-weight: 950;
    height: 26px;
    justify-content: center;
    width: 26px;
}

.bj-design-online--editor .bj-design-tools {
    background: #fff;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 18px 34px rgba(15, 23, 42, .08);
    display: block;
    min-height: 500px;
    overflow: hidden;
    padding: 0;
}

.bj-design-tool-panel {
    display: grid;
    gap: 12px;
    max-height: 500px;
    overflow: auto;
    padding: 18px 16px;
}

.bj-design-tool-panel[hidden] {
    display: none;
}

.bj-design-tool-panel h3 {
    color: #1f232b;
    font-size: 1.08rem;
    font-weight: 750;
    margin: 0;
}

.bj-design-upload-card {
    background: #050505;
    border-radius: 7px;
    color: #fff;
    cursor: pointer;
    display: grid;
    gap: 10px;
    justify-items: center;
    min-height: 94px;
    padding: 16px;
    text-align: center;
}

.bj-design-upload-card input {
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}

.bj-design-upload-card strong {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bj-design-upload-card span,
.bj-design-tool-panel small {
    color: #8f939a;
    font-size: .92rem;
    line-height: 1.45;
}

.bj-design-upload-preview {
    align-items: center;
    background: #f3f3f6;
    border-radius: 8px;
    display: flex;
    height: 112px;
    justify-content: center;
    width: 112px;
}

.bj-design-add-large {
    background: #adadad;
    border: 0;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 1.05rem;
    font-weight: 900;
    min-height: 72px;
    padding: 14px;
}

.bj-design-remove {
    background: #fff5f5;
    border: 1px solid rgba(239, 31, 45, .28);
    border-radius: 10px;
    color: #c51626;
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    min-height: 44px;
}

.bj-design-tool-grid {
    display: grid;
    gap: 14px;
}

.bj-design-hidden-control {
    clip: rect(0 0 0 0);
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}

.bj-design-preset-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bj-design-preset-grid button {
    align-items: center;
    background: #f5f5f7;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    height: 104px;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
}

.bj-design-preset-grid button.is-active {
    background: #adadad;
}

.bj-design-preset-line,
.bj-design-preset-dash,
.bj-design-preset-square,
.bj-design-preset-round,
.bj-design-preset-pill,
.bj-design-preset-star {
    display: block;
}

.bj-design-preset-line {
    background: #111;
    height: 3px;
    width: 90px;
}

.bj-design-preset-dash {
    border-top: 3px dashed #111;
    width: 90px;
}

.bj-design-preset-square {
    align-items: center;
    border: 2px solid #111;
    color: #fff;
    display: flex;
    font-weight: 900;
    height: 76px;
    justify-content: center;
    width: 76px;
}

.bj-design-preset-round {
    border: 2px solid #111;
    border-radius: 22px;
    height: 76px;
    width: 76px;
}

.bj-design-preset-pill {
    border: 2px solid #111;
    border-radius: 999px;
    height: 52px;
    width: 92px;
}

.bj-design-preset-star {
    background: #cfd2d7;
    clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
    height: 86px;
    width: 86px;
}

.bj-design-inspo-smile,
.bj-design-inspo-badge,
.bj-design-inspo-check,
.bj-design-inspo-pin {
    align-items: center;
    color: #050912;
    display: flex;
    font-weight: 950;
    justify-content: center;
}

.bj-design-inspo-smile {
    background: #fff;
    border: 3px solid #050912;
    border-radius: 999px;
    height: 92px;
    width: 92px;
}

.bj-design-inspo-badge {
    background: #050912;
    border-radius: 999px;
    color: #fff;
    height: 92px;
    width: 92px;
}

.bj-design-inspo-check,
.bj-design-inspo-pin {
    font-size: 1.6rem;
}

.bj-design-color-input {
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}

.bj-design-color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.bj-design-color-swatches button {
    background: var(--swatch);
    border: 1px solid rgba(15, 23, 42, .2);
    border-radius: 999px;
    cursor: pointer;
    height: 36px;
    width: 36px;
}

.bj-design-color-swatches button.is-active {
    box-shadow: 0 0 0 4px #3a82ff;
}

.bj-design-online--editor .bj-design-workspace {
    min-height: 500px;
    position: relative;
}

.bj-design-online--editor .bj-design-canvas-wrap {
    background: transparent;
    border-radius: 0;
    min-height: 500px;
    overflow: visible;
}

.bj-design-online--editor .bj-design-2d {
    height: 500px;
}

.bj-design-online--editor .bj-design-object--gate {
    height: 332px;
    width: min(500px, 94%);
}

.bj-design-editor-toolbar {
    align-items: center;
    background: #fff;
    border-radius: 10px;
    bottom: 4px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .12);
    display: flex;
    gap: 10px;
    left: 50%;
    min-height: 56px;
    padding: 8px 18px;
    position: absolute;
    transform: translateX(-50%);
    z-index: 4;
}

.bj-design-editor-toolbar button {
    background: #f1f2f4;
    border: 0;
    border-radius: 10px;
    color: #1f232b;
    cursor: pointer;
    font: inherit;
    font-size: .86rem;
    font-weight: 850;
    min-height: 38px;
    min-width: 46px;
    padding: 7px 10px;
}

.bj-design-editor-toolbar span {
    background: #dadde3;
    height: 24px;
    width: 1px;
}

.bj-design-editor-toolbar strong {
    color: #1f232b;
    font-size: 1rem;
    min-width: 52px;
    text-align: center;
}

.bj-design-preview {
    align-self: start;
    display: grid;
    gap: 12px;
}

.bj-design-online--editor .bj-design-canvas-wrap--preview {
    background: linear-gradient(155deg, #c9c9cc, #f0f0f2);
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .04);
    height: 252px;
    min-height: 252px;
    overflow: hidden;
}

.bj-design-online--editor .bj-design-canvas-wrap--preview .bj-design-3d {
    height: 252px;
}

.bj-design-online--editor .bj-design-canvas-wrap--preview .bj-design-3d__hint {
    background: transparent;
    border: 0;
    color: #050912;
    font-size: 1.3rem;
    font-weight: 950;
    right: 26px;
    top: 18px;
}

.bj-design-preview .bj-design-footer {
    align-items: stretch;
    display: grid;
    gap: 10px;
    margin: 0;
}

.bj-design-preview .bj-button {
    justify-content: center;
    min-height: 46px;
    min-width: 0;
    width: 100%;
}

@media (max-width: 1100px) {
    .bj-design-editor__body {
        grid-template-columns: 82px 300px minmax(360px, 1fr);
    }

    .bj-design-preview {
        grid-column: 2 / -1;
        grid-template-columns: minmax(280px, 420px) minmax(220px, 1fr);
    }

    .bj-design-online--editor .bj-design-canvas-wrap--preview,
    .bj-design-online--editor .bj-design-canvas-wrap--preview .bj-design-3d {
        height: 280px;
        min-height: 280px;
    }
}

@media (max-width: 900px) {
    .bj-design-online--editor {
        margin: -16px;
    }

    .bj-design-online--editor .bj-design-editor__top {
        grid-template-columns: 1fr;
    }

    .bj-design-save {
        justify-self: stretch;
        text-align: center;
    }

    .bj-design-editor__body {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .bj-design-rail {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 8px;
        position: static;
    }

    .bj-design-rail button {
        flex: 0 0 92px;
        min-height: 74px;
    }

    .bj-design-online--editor .bj-design-tools,
    .bj-design-tool-panel {
        max-height: none;
        min-height: 0;
    }

    .bj-design-online--editor .bj-design-canvas-wrap,
    .bj-design-online--editor .bj-design-2d {
        height: 500px;
        min-height: 500px;
    }

    .bj-design-online--editor .bj-design-object--gate {
        height: 330px;
    }

    .bj-design-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .bj-design-preset-grid {
        grid-template-columns: 1fr;
    }

    .bj-design-editor-toolbar {
        flex-wrap: wrap;
        max-width: calc(100vw - 34px);
        padding: 10px;
    }

    .bj-design-editor-toolbar button {
        min-width: 44px;
    }
}
