:root {
    --bj-surface: #fbf8f1;
    --bj-surface-card: #ffffff;
    --bj-surface-soft: #f1f6ff;
    --bj-surface-blue: #eaf2ff;
    --bj-surface-warm: #fff4d6;
    --bj-text: #172033;
    --bj-heading: #101827;
    --bj-muted: #5c6475;
    --bj-muted-2: #7b8496;
    --bj-outline: #d9dfeb;
    --bj-outline-strong: #bac8dc;
    --bj-primary: #003f98;
    --bj-primary-2: #0064d8;
    --bj-primary-3: #dceaff;
    --bj-yellow: #f9bf23;
    --bj-orange: #f1883c;
    --bj-green: #1fa463;
    --bj-radius-sm: 10px;
    --bj-radius: 18px;
    --bj-radius-lg: 26px;
    --bj-shadow-sm: 0 8px 24px rgba(17, 32, 57, .07);
    --bj-shadow: 0 20px 52px rgba(0, 64, 152, .12);
    --bj-shadow-strong: 0 28px 70px rgba(0, 64, 152, .18);
    --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--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 a {
    color: var(--bj-muted);
    font-size: .94rem;
    font-weight: 750;
    line-height: 1.2;
}

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

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

.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: 14px;
    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, .88);
    border: 1px solid rgba(217, 223, 235, .9);
    border-radius: 20px;
    box-shadow: var(--bj-shadow-sm);
    margin: 0 0 34px;
    padding: 14px;
    position: sticky;
    top: 92px;
    z-index: 2;
}

.bj-toc__toggle {
    background: none;
    border: 0;
    color: var(--bj-heading);
    display: none;
    font-weight: 850;
    padding: 4px 0;
}

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

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

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

/* Product content sections */
#kebutuhan-pengguna,
#detail-layanan,
#benefit-layanan,
#harga-ketersediaan,
#galeri-produk,
#portfolio-layanan,
#trust-portfolio,
#alur-pemesanan,
#faq-layanan {
    border-radius: 30px;
    margin: 0 0 28px;
    padding-left: clamp(22px, 4vw, 44px);
    padding-right: clamp(22px, 4vw, 44px);
}

#kebutuhan-pengguna,
#benefit-layanan,
#trust-portfolio,
#faq-layanan {
    background: rgba(255, 255, 255, .56);
}

#detail-layanan,
#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;
}

#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-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 {
        position: static;
    }

    .bj-toc__toggle {
        align-items: center;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .bj-toc__toggle::after {
        content: "+";
        font-size: 1.2rem;
    }

    .bj-toc.is-open .bj-toc__toggle::after {
        content: "-";
    }

    .bj-toc__list {
        display: none;
        margin-top: 12px;
    }

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

@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 a {
        width: 100%;
    }

    #kebutuhan-pengguna,
    #detail-layanan,
    #benefit-layanan,
    #harga-ketersediaan,
    #galeri-produk,
    #portfolio-layanan,
    #trust-portfolio,
    #alur-pemesanan,
    #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-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;
}

.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 {
    color: var(--bj-primary);
    font-size: .9rem;
    font-weight: 850;
    margin-top: auto;
}

.bj-card-link::after {
    content: " ->";
}

.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: #fbf9ff;
}

.bj-portfolio-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1.5fr .72fr .72fr;
}

.bj-portfolio-card {
    align-items: end;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    box-shadow: var(--bj-shadow-sm);
    display: flex;
    overflow: hidden;
    padding: 18px;
    position: relative;
}

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

.bj-portfolio-card span {
    background: rgba(255,255,255,.88);
    border-radius: 999px;
    color: var(--bj-primary);
    font-size: .85rem;
    font-weight: 850;
    padding: 8px 12px;
    position: relative;
}

.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-portfolio-grid,
    .bj-step-line {
        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 {
        margin-inline: -16px;
        padding-inline: 16px;
    }

    .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 / 10;
    }
}

/* Light footer variant for Balon Jakarta 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 span,
.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;
}

.bj-product-category-pills span:first-child,
.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;
    }
}
