:root {
    --wa-radius-sm: 6px;
    --wa-radius-md: 12px;
    --wa-radius-lg: 18px;
    --wa-tap-min: 44px;
    --wa-space-inline: clamp(1rem, 2.8vw, 3rem);
    --wa-space-section-y: clamp(4rem, 7vw, 6.5rem);
    --wa-motion-fast: 180ms;
    --wa-motion-base: 260ms;
    --wa-focus-ring: 0 0 0 3px rgba(184, 148, 95, 0.32);
    --wa-shadow-soft: 0 14px 38px rgba(17, 24, 39, 0.08);
    --wa-shadow-hover: 0 22px 52px rgba(17, 24, 39, 0.14);
}

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

body {
    text-wrap: pretty;
}

body.has-sticky-cta {
    padding-bottom: calc(var(--wa-sticky-safe-area, 7rem) + env(safe-area-inset-bottom, 0px));
}

#navbar {
    padding-left: var(--wa-space-inline);
    padding-right: var(--wa-space-inline);
}

#navbar.scrolled {
    padding-left: var(--wa-space-inline);
    padding-right: var(--wa-space-inline);
}

.section-wrap {
    padding: var(--wa-space-section-y) var(--wa-space-inline);
}

.partners-bg {
    background:
        radial-gradient(circle at 10% 15%, rgba(184, 148, 95, 0.1), transparent 45%),
        linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(249, 243, 233, 0.9));
}

.partners-head {
    text-align: center;
    margin-bottom: clamp(1.2rem, 2.6vw, 2rem);
}

.partners-bg .partners-head .section-tag,
.partners-bg .partners-head .section-title,
.partners-bg .partners-head .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.partners-bg .partners-head .section-subtitle {
    max-width: 760px;
}

.partners-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(.65rem, 1.5vw, 1rem);
    align-items: stretch;
}

.partners-logo-item {
    flex: 0 1 clamp(150px, 18vw, 200px);
    min-width: 150px;
    max-width: 200px;
    min-height: 112px;
    border: 1px solid rgba(46, 37, 32, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(.45rem, 1.4vw, .8rem);
    transition: transform var(--wa-motion-fast) ease, box-shadow var(--wa-motion-fast) ease, border-color var(--wa-motion-fast) ease;
}

.partners-logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(46, 37, 32, 0.1);
    border-color: rgba(184, 148, 95, 0.36);
}

.partners-logo-media {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-logo-item img {
    width: auto;
    height: auto;
    max-width: min(160px, 92%);
    max-height: 54px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform var(--wa-motion-fast) ease, filter var(--wa-motion-fast) ease;
}

.partners-logo-item:hover img {
    transform: translateY(-1px);
    filter: saturate(1.05) contrast(1.02);
}

@media (max-width: 767.98px) {
    .partners-bg .partners-head .section-title {
        font-size: clamp(2rem, 10vw, 2.6rem);
        line-height: 1.14;
    }
    .partners-bg .partners-head .section-subtitle {
        font-size: .86rem;
        line-height: 1.58;
        max-width: 320px;
    }
    .partners-logo-item {
        flex: 0 1 calc(50% - .5rem);
        min-width: 140px;
        max-width: none;
        min-height: 80px;
        padding: .5rem;
    }
    .partners-logo-item img {
        max-width: min(132px, 92%);
        max-height: 36px;
    }

    footer {
        padding: 3rem 1rem 1.15rem;
    }
    .footer-top {
        gap: 1rem;
        padding-bottom: 1.2rem;
    }
    .footer-brand-name {
        font-size: 1.38rem;
    }
    .footer-tagline {
        font-size: .82rem;
        line-height: 1.58;
        max-width: none;
    }
    .footer-socials {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: .2rem;
        margin-top: 1rem;
    }
    .footer-socials::-webkit-scrollbar {
        height: 4px;
    }
    [data-footer-accordion-item] {
        border-top: 1px solid rgba(250, 246, 240, .1);
        padding-top: 0;
    }
    .footer-accordion-toggle {
        width: 100%;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: .65rem;
        border: 0;
        background: transparent;
        padding: .72rem 0 .66rem;
        text-align: left;
        cursor: pointer;
        color: inherit;
    }
    .footer-accordion-toggle::after {
        content: "+";
        font-size: 1.03rem;
        line-height: 1;
        color: rgba(250,246,240,.74);
        flex-shrink: 0;
        font-weight: 700;
    }
    .footer-accordion-toggle[aria-expanded="true"]::after {
        content: "-";
    }
    .footer-accordion-toggle .footer-col-title {
        margin-bottom: 0;
        font-size: .66rem;
    }
    .footer-accordion-panel {
        padding: 0 0 .56rem;
    }
    .footer-accordion-panel[hidden] {
        display: none !important;
    }
    .footer-links li {
        margin-bottom: .45rem;
    }
    .footer-links a {
        font-size: .84rem;
        line-height: 1.45;
    }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: .55rem;
        padding-top: 1rem;
    }
    .footer-copy,
    .footer-legal a {
        font-size: .73rem;
        line-height: 1.45;
    }
}

@media (max-width: 560px) {
    .wa-sticky-cta.wa-sticky-mobile {
        width: calc(100% - .8rem);
        bottom: .45rem;
        padding: .66rem .66rem .7rem;
        gap: .48rem;
        border-radius: 16px;
        grid-template-columns: 1fr;
    }
    .wa-sticky-cta.wa-sticky-mobile .wa-sticky-cta-copy {
        display: none;
        padding-right: 0;
        gap: .2rem;
    }
    .wa-sticky-cta.wa-sticky-mobile .wa-sticky-cta-kicker {
        font-size: .62rem;
        letter-spacing: .13em;
    }
    .wa-sticky-cta.wa-sticky-mobile .wa-sticky-cta-title {
        font-size: .85rem;
        line-height: 1.4;
    }
    .wa-sticky-cta.wa-sticky-mobile .wa-sticky-cta-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: .42rem;
    }
    .wa-sticky-cta.wa-sticky-mobile .wa-sticky-cta-btn {
        width: 100%;
        min-height: 42px;
        font-size: .93rem;
        border-radius: 10px;
    }
    .wa-sticky-cta.wa-sticky-mobile .wa-sticky-cta-btn.is-secondary {
        display: inline-flex;
    }
}

.hero-actions :where(.btn-primary-hero, .btn-ghost-hero),
.nav-links .nav-cta,
.wa-sticky-cta-btn {
    min-height: var(--wa-tap-min);
    border-radius: var(--wa-radius-sm);
}

.prod-card,
.svc-card,
.wa-sticky-cta,
.wa-lead-modal-dialog,
.project-modal-dialog,
.product-lightbox-dialog {
    border-radius: var(--wa-radius-md);
    box-shadow: var(--wa-shadow-soft);
}

.mobile-menu-open {
    overflow: hidden;
}

[data-media-root] {
    position: relative;
}

[data-media-root].is-media-pending::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.48) 50%, rgba(255, 255, 255, 0) 80%);
    transform: translateX(-100%);
    animation: wa-shimmer 1.15s linear infinite;
    pointer-events: none;
    z-index: 3;
}

[data-media-root].is-media-pending :where(img, .gi-ph) {
    filter: blur(1.2px);
    opacity: 0.88;
}

[data-media-root].is-media-ready::after {
    opacity: 0;
    transition: opacity var(--wa-motion-fast) ease;
}

@keyframes wa-shimmer {
    100% { transform: translateX(100%); }
}

.homepage-article-thumb-ph {
    width: 100%;
    height: 100%;
    min-height: 220px;
    background: linear-gradient(135deg, rgba(184, 148, 95, 0.16), rgba(46, 37, 32, 0.1));
}

:where(.prod-card, .svc-card, .gallery-item, .testi-card, .career-card) {
    transform: translateZ(0);
    transition:
        transform var(--wa-motion-base) var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
        box-shadow var(--wa-motion-base) var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}

:where(.prod-card, .svc-card, .gallery-item, .testi-card, .career-card):hover {
    box-shadow: var(--wa-shadow-hover);
}

.wa-lead-field :where(input, textarea, select) {
    min-height: var(--wa-tap-min);
    border-radius: var(--wa-radius-sm);
}

.wa-lead-field textarea {
    min-height: 110px;
    resize: vertical;
}

.wa-lead-form[data-sending="1"] .wa-sticky-cta-btn.is-primary {
    opacity: .76;
    pointer-events: none;
    cursor: wait;
}

[data-listing-form].is-submitting button[type="submit"] {
    opacity: .76;
    cursor: wait;
    pointer-events: none;
}

.wa-listing-tools {
    margin-top: 1.5rem;
    display: grid;
    gap: .75rem;
    align-items: end;
}

.wa-listing-field {
    display: grid;
    gap: .35rem;
}

.wa-listing-label {
    display: block;
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--taupe);
}

.wa-listing-input,
.wa-listing-select {
    width: 100%;
    min-height: var(--wa-tap-min);
    border: 1px solid rgba(46, 37, 32, .14);
    background: #fff;
    border-radius: var(--wa-radius-sm);
    padding: .72rem .8rem;
    color: var(--espresso);
}

.wa-listing-submit {
    min-height: var(--wa-tap-min);
    border: 0;
    border-radius: var(--wa-radius-sm);
    padding: 0 1rem;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--espresso);
    color: var(--linen);
}

.wa-listing-tools--dark .wa-listing-label {
    color: rgba(250, 246, 240, .65);
}

.wa-listing-tools--dark .wa-listing-input,
.wa-listing-tools--dark .wa-listing-select {
    border-color: rgba(250, 246, 240, .2);
    background: rgba(250, 246, 240, .08);
    color: var(--linen);
}

.wa-listing-tools--dark .wa-listing-submit {
    background: var(--brass);
    color: var(--espresso);
}

.wa-empty-state {
    margin-top: 1.8rem;
    border: 1px dashed rgba(46, 37, 32, .18);
    border-radius: var(--wa-radius-md);
    background: #fff;
    color: var(--taupe);
    padding: 1rem;
    display: grid;
    gap: .55rem;
}

.wa-empty-state p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.55;
}

.wa-empty-state-cta {
    width: fit-content;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--wa-radius-sm);
    padding: .5rem .85rem;
    text-decoration: none;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .72rem;
    background: var(--espresso);
    color: var(--linen);
}

[data-testi-preview-modal][hidden] { display: none !important; }
[data-testi-preview-modal] {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999 !important;
    display: none !important;
    place-items: center !important;
    padding: 1rem !important;
}
[data-testi-preview-modal].is-open { display: grid !important; }
[data-testi-preview-modal] .testi-capture-modal-backdrop {
    position: absolute !important;
    inset: 0 !important;
    border: 0 !important;
    background: rgba(12, 10, 8, .76) !important;
    backdrop-filter: blur(2px) !important;
    cursor: pointer !important;
}
[data-testi-preview-modal] .testi-capture-modal-dialog {
    position: relative !important;
    z-index: 1 !important;
    width: min(96vw, 1100px) !important;
    max-height: 90vh !important;
    padding: .9rem !important;
    border-radius: 14px !important;
    border: 1px solid rgba(250,246,240,.24) !important;
    background: rgba(28,22,18,.84) !important;
    box-shadow: 0 26px 54px rgba(0,0,0,.35) !important;
}
[data-testi-preview-modal] .testi-capture-modal-image {
    width: 100% !important;
    max-height: calc(90vh - 1.8rem) !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 10px !important;
    display: block !important;
    background: #111 !important;
}
[data-testi-preview-modal] .testi-capture-modal-close {
    position: absolute !important;
    top: .4rem !important;
    right: .4rem !important;
    width: 38px !important;
    height: 38px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.18) !important;
    color: #fff !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    cursor: pointer !important;
}

.wa-empty-state--dark {
    border-color: rgba(250, 246, 240, .28);
    background: rgba(250, 246, 240, .04);
    color: rgba(250, 246, 240, .78);
}

.wa-empty-state--dark .wa-empty-state-cta {
    background: var(--brass);
    color: var(--espresso);
}

.section-intro--center,
.section-intro--center .section-tag,
.section-intro--center .section-subtitle {
    text-align: center;
}

.section-intro--center .section-tag {
    justify-content: center;
}

.youtube-intro--center,
.process-intro--center {
    text-align: center;
}

.youtube-intro--center .section-tag,
.process-intro--center .section-tag {
    justify-content: center;
}

.youtube-intro--center .section-subtitle,
.process-intro--center .section-subtitle {
    text-align: center;
}

.svc-card--last .svc-icon {
    background: rgba(184, 148, 95, .2);
}

.svc-card--last .svc-icon svg {
    fill: var(--brass-lt);
}

.svc-card--last .svc-link {
    color: var(--brass);
}

.promo-splash-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-wa-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.wa-translate-widget--left {
    left: 18px;
    right: auto;
}

.wa-translate-widget--left .wa-translate-panel {
    left: 0;
    right: auto;
}

@media (max-width: 768px) {
    .wa-translate-widget--left {
        left: 12px;
    }
}

.wa-translate-sandbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.nav-inline-icon {
    flex-shrink: 0;
}

.mobile-menu-link.is-cta {
    color: var(--brass);
}

.mobile-member-menu,
.mobile-auth-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.mobile-auth-link {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.mobile-auth-link.is-secondary {
    color: var(--brass);
    border: 2px solid var(--brass);
}

.mobile-auth-link.is-primary {
    background: var(--brass);
    color: #fff;
}

#navbar .nav-logo img {
    display: block;
    height: var(--nav-logo-height, 42px);
    width: auto;
    transition: filter .3s, height .3s;
    filter: var(--nav-logo-filter-normal, none);
}

#navbar.scrolled .nav-logo img,
body.theme-homepage-digital #navbar.nav--digital-agency.scrolled .nav-logo img,
body.theme-homepage-craft #navbar.nav--craft-studio.scrolled .nav-logo img,
.theme-homepage-wisata #navbar.scrolled .nav-logo img {
    filter: var(--nav-logo-filter-scrolled, none) !important;
    height: var(--nav-logo-height-scrolled, 38px);
}

body.theme-homepage-bold #navbar .nav-logo img {
    height: 52px;
}

body.theme-homepage-bold #navbar.scrolled .nav-logo img {
    height: 44px;
}

#navbar .nav-logo.nav-logo--brand-plate {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .42rem .95rem;
    border-radius: 16px;
    border: 1px solid rgba(111, 178, 236, .34);
    background:
        radial-gradient(circle at 36% 48%, rgba(223, 236, 255, .34) 0%, rgba(223, 236, 255, .07) 28%, transparent 58%),
        linear-gradient(120deg, rgba(7, 22, 40, .72) 0%, rgba(8, 30, 56, .58) 44%, rgba(12, 44, 78, .52) 100%);
    box-shadow:
        0 10px 28px rgba(6, 16, 31, .34),
        inset 0 0 0 1px rgba(255, 255, 255, .06);
}

#navbar .nav-logo.nav-logo--brand-plate.nav-logo--brand-plate-clean {
    border-color: rgba(118, 177, 229, .28);
    background:
        linear-gradient(126deg, rgba(8, 26, 47, .62) 0%, rgba(11, 36, 63, .48) 50%, rgba(16, 47, 81, .42) 100%);
    box-shadow:
        0 8px 20px rgba(8, 20, 36, .24),
        inset 0 0 0 1px rgba(255, 255, 255, .05);
}

#navbar .nav-logo.nav-logo--brand-plate img {
    filter: var(--nav-logo-filter-normal, none) drop-shadow(0 2px 9px rgba(7,16,31,.45));
    height: 46px;
}

#navbar .nav-logo.nav-logo--brand-plate.nav-logo--brand-plate-clean img {
    filter: var(--nav-logo-filter-normal, none) drop-shadow(0 1px 4px rgba(7,16,31,.28));
}

#navbar.scrolled .nav-logo.nav-logo--brand-plate {
    border-color: rgba(26, 62, 95, .26);
    background:
        radial-gradient(circle at 35% 48%, rgba(248, 251, 255, .84) 0%, rgba(248, 251, 255, .45) 34%, rgba(236, 244, 252, .72) 100%);
    box-shadow:
        0 8px 22px rgba(14, 31, 50, .14),
        inset 0 0 0 1px rgba(255, 255, 255, .6);
}

#navbar.scrolled .nav-logo.nav-logo--brand-plate.nav-logo--brand-plate-clean {
    border-color: rgba(52, 85, 115, .22);
    background: linear-gradient(126deg, rgba(247, 251, 255, .92) 0%, rgba(236, 245, 253, .88) 100%);
    box-shadow:
        0 6px 16px rgba(14, 31, 50, .11),
        inset 0 0 0 1px rgba(255, 255, 255, .56);
}

#navbar.scrolled .nav-logo.nav-logo--brand-plate img,
body.theme-homepage-digital #navbar.nav--digital-agency.scrolled .nav-logo.nav-logo--brand-plate img,
body.theme-homepage-craft #navbar.nav--craft-studio.scrolled .nav-logo.nav-logo--brand-plate img,
.theme-homepage-wisata #navbar.scrolled .nav-logo.nav-logo--brand-plate img {
    filter: var(--nav-logo-filter-scrolled, none) drop-shadow(0 1px 6px rgba(14,31,50,.2)) !important;
    height: 40px;
}

#navbar.scrolled .nav-logo.nav-logo--brand-plate.nav-logo--brand-plate-clean img,
body.theme-homepage-digital #navbar.nav--digital-agency.scrolled .nav-logo.nav-logo--brand-plate.nav-logo--brand-plate-clean img,
body.theme-homepage-craft #navbar.nav--craft-studio.scrolled .nav-logo.nav-logo--brand-plate.nav-logo--brand-plate-clean img,
.theme-homepage-wisata #navbar.scrolled .nav-logo.nav-logo--brand-plate.nav-logo--brand-plate-clean img {
    filter: var(--nav-logo-filter-scrolled, none) drop-shadow(0 1px 3px rgba(14,31,50,.12)) !important;
}

@media (max-width: 480px) {
    #navbar .nav-logo img { height: 34px; }
    #navbar.scrolled .nav-logo img { height: 30px; }
    body.theme-homepage-bold #navbar .nav-logo img { height: 42px; }
    body.theme-homepage-bold #navbar.scrolled .nav-logo img { height: 36px; }
    #navbar .nav-logo.nav-logo--brand-plate {
        padding: .34rem .72rem;
        border-radius: 12px;
    }
    #navbar .nav-logo.nav-logo--brand-plate img { height: 38px; }
    #navbar.scrolled .nav-logo.nav-logo--brand-plate img { height: 34px; }
}

.vj-bisnis-section {
    padding: 5rem 1.5rem;
    background: var(--linen, #EEF2FF);
}

.vj-bisnis-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.vj-bisnis-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.vj-bisnis-title {
    font-size: clamp(1.65rem, 3.2vw, 2.2rem);
    font-family: var(--font-display, 'Plus Jakarta Sans', system-ui, sans-serif);
    font-weight: 700;
    color: var(--charcoal, #0F172A);
    line-height: 1.25;
    margin: .6rem 0 .8rem;
    letter-spacing: -.02em;
}

.vj-bisnis-title em {
    font-style: normal;
    color: var(--brass, #F59E0B);
}

.vj-bisnis-sub {
    color: var(--taupe, #64748B);
    font-size: .95rem;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

.vj-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brass, #F59E0B);
    font-weight: 700;
    margin-bottom: .75rem;
    background: rgba(245, 158, 11, .1);
    padding: .3rem .9rem;
    border-radius: 99px;
    border: 1px solid rgba(245, 158, 11, .25);
}

.vj-bisnis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.vj-bisnis-card {
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, .07);
    border-radius: 14px;
    padding: 1.35rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    text-decoration: none;
    color: inherit;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.vj-bisnis-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--seg-bg, rgba(245, 158, 11, .06));
    opacity: 0;
    transition: opacity .18s ease;
    border-radius: inherit;
}

.vj-bisnis-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    border-color: var(--seg-color, #F59E0B);
}

.vj-bisnis-card:hover::before {
    opacity: 1;
}

.vj-bisnis-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--seg-bg, rgba(245, 158, 11, .1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--seg-color, #F59E0B);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.vj-bisnis-card-icon svg {
    width: 22px;
    height: 22px;
}

.vj-bisnis-card-body {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.vj-bisnis-card-label {
    font-size: .95rem;
    font-weight: 700;
    color: var(--charcoal, #0F172A);
    line-height: 1.3;
}

.vj-bisnis-card-contoh {
    font-size: .75rem;
    color: var(--taupe, #64748B);
    line-height: 1.45;
}

.vj-bisnis-card-hook {
    font-size: .78rem;
    color: var(--mocha, #334E6F);
    line-height: 1.45;
    margin-top: .15rem;
    font-style: italic;
}

.vj-bisnis-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, .06);
    padding-top: .7rem;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.vj-bisnis-card-harga {
    font-size: .82rem;
    font-weight: 700;
    color: var(--seg-color, #F59E0B);
}

.vj-bisnis-card-detail {
    font-size: .78rem;
    font-weight: 700;
    color: var(--seg-color, #F59E0B);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .18s;
    position: relative;
    z-index: 1;
}

.vj-bisnis-card-detail:hover {
    border-color: var(--seg-color, #F59E0B);
}

.vj-bisnis-card-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .6rem 1rem;
    border-radius: 8px;
    background: #25D366;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s, transform .15s;
    position: relative;
    z-index: 1;
    margin-top: .15rem;
}

.vj-bisnis-card-wa:hover {
    background: #1ebe59;
    transform: translateY(-1px);
}

.vj-bisnis-card-wa svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.vj-bisnis-note {
    text-align: center;
    margin-top: 2rem;
    font-size: .88rem;
    color: var(--taupe, #64748B);
}

.vj-bisnis-note a {
    color: var(--brass, #F59E0B);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 158, 11, .35);
    transition: border-color .18s;
}

.vj-bisnis-note a:hover {
    border-color: var(--brass, #F59E0B);
}

.vj-faq-section {
    padding: 5rem 1.5rem;
    background: var(--linen, #f5efe3);
}

.vj-faq-inner {
    max-width: 860px;
    margin: 0 auto;
}

.vj-faq-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.vj-faq-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-family: 'Playfair Display', serif;
    color: var(--espresso, #2c1a0e);
    line-height: 1.25;
    margin: 0 0 .85rem;
}

.vj-faq-title em {
    font-style: italic;
    color: var(--brass, #c8a96e);
}

.vj-faq-desc {
    color: var(--taupe, #7a6555);
    font-size: .95rem;
}

.vj-faq-desc a {
    color: var(--brass, #c8a96e);
    text-decoration: underline;
}

.vj-faq-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.vj-faq-item {
    background: #fff;
    border-radius: 10px;
    border: 1.5px solid var(--linen-dk, #e8ddd2);
    overflow: hidden;
    transition: border-color .2s;
}

.vj-faq-item.is-open {
    border-color: var(--brass, #c8a96e);
}

.vj-faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.1rem 1.3rem;
    font-size: .97rem;
    font-weight: 600;
    color: var(--espresso, #2c1a0e);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    line-height: 1.4;
}

.vj-faq-q:hover {
    background: color-mix(in srgb, var(--brass, #c8a96e) 5%, #fff);
}

.vj-faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--linen, #f5efe3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background .2s, transform .2s;
}

.vj-faq-icon::before,
.vj-faq-icon::after {
    content: '';
    position: absolute;
    background: var(--brass, #c8a96e);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

.vj-faq-icon::before {
    width: 10px;
    height: 2px;
}

.vj-faq-icon::after {
    width: 2px;
    height: 10px;
}

.vj-faq-item.is-open .vj-faq-icon {
    background: var(--brass, #c8a96e);
    transform: rotate(45deg);
}

.vj-faq-item.is-open .vj-faq-icon::before,
.vj-faq-item.is-open .vj-faq-icon::after {
    background: #fff;
}

.vj-faq-a {
    padding: 0 1.3rem;
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease, padding .3s ease;
}

.vj-faq-a.is-open {
    max-height: 400px;
    padding: .1rem 1.3rem 1.1rem;
}

.vj-faq-a p {
    color: var(--taupe, #7a6555);
    font-size: .92rem;
    line-height: 1.7;
    margin: 0;
}

.vj-faq-footer {
    text-align: center;
    margin-top: 2rem;
}

.vj-faq-more {
    color: var(--brass, #c8a96e);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    border-bottom: 1.5px solid transparent;
    transition: border-color .2s;
}

.vj-faq-more:hover {
    border-color: var(--brass, #c8a96e);
}

.hzp-bg {
    background: linear-gradient(180deg, #fff9f2 0%, #fff4e8 100%);
    padding: 5rem 2rem;
}

.hzp-wrap {
    max-width: 1280px;
    margin: 0 auto;
}

.hzp-head {
    text-align: center;
    margin-bottom: 2.8rem;
}

.hzp-head .section-tag,
.hzp-head .section-title,
.hzp-head .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hzp-head .section-subtitle {
    max-width: 580px;
}

.hzp-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.hzp-card {
    flex: 0 0 180px;
    background: #fff;
    border: 1px solid rgba(90,44,59,.1);
    border-radius: 12px;
    padding: 1.2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hzp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(245,158,11,.15);
    border-color: rgba(245,158,11,.4);
}

.hzp-card img {
    width: auto;
    height: auto;
    max-width: 140px;
    max-height: 72px;
    object-fit: contain;
    display: block;
}

.hzp-strip {
    display: none;
}

.vj-porto-section {
    padding: 5rem 1.5rem;
    background: var(--charcoal, #0F172A);
}

.vj-porto-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.vj-porto-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.vj-porto-title {
    font-size: clamp(1.65rem, 3.2vw, 2.2rem);
    font-family: var(--font-display, 'Plus Jakarta Sans', system-ui, sans-serif);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: .6rem 0 .8rem;
    letter-spacing: -.02em;
}

.vj-porto-title em {
    font-style: normal;
    color: var(--brass, #F59E0B);
}

.vj-porto-sub {
    color: rgba(255,255,255,.55);
    font-size: .95rem;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

.vj-porto-tabs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.vj-porto-tab {
    padding: .45rem 1rem;
    border-radius: 99px;
    border: 1.5px solid rgba(255,255,255,.15);
    background: transparent;
    color: rgba(255,255,255,.6);
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s, color .18s, border-color .18s;
    font-family: inherit;
    line-height: 1;
}

.vj-porto-tab:hover {
    border-color: rgba(245,158,11,.5);
    color: var(--brass, #F59E0B);
}

.vj-porto-tab.is-active {
    background: var(--brass, #F59E0B);
    border-color: var(--brass, #F59E0B);
    color: var(--espresso, #1E3A5F);
}

.vj-porto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.vj-porto-card {
    background: rgba(255,255,255,.04);
    border: 1.5px solid rgba(255,255,255,.08);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.vj-porto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,.4);
    border-color: rgba(245,158,11,.4);
}

.vj-porto-mock {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 10px 10px 0 0;
    transition: transform .35s ease;
    background: linear-gradient(135deg, #1E3A5F, #2D5A8E);
}

.vj-porto-card:hover .vj-porto-mock {
    transform: scale(1.02);
}

.vj-porto-mock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .35s ease;
}

.vj-porto-card:hover .vj-porto-mock img {
    transform: scale(1.03);
}

.vj-porto-mock--fallback {
    background: linear-gradient(135deg, #1E3A5F, #2D5A8E);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vj-porto-mock-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .65rem;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(6px);
    z-index: 2;
}

.vj-porto-mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.vj-porto-mock-dot--red {
    background: #FF5F57;
}

.vj-porto-mock-dot--yellow {
    background: #FFBD2E;
}

.vj-porto-mock-dot--green {
    background: #28C840;
}

.vj-porto-mock-url {
    flex: 1;
    background: rgba(255,255,255,.12);
    border-radius: 4px;
    padding: .15rem .5rem;
    font-size: .58rem;
    color: rgba(255,255,255,.8);
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vj-porto-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30,58,95,.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s ease;
}

.vj-porto-card:hover .vj-porto-card-overlay {
    opacity: 1;
}

.vj-porto-visit {
    font-size: .85rem;
    font-weight: 700;
    color: var(--espresso, #1E3A5F);
    background: var(--brass, #F59E0B);
    padding: .55rem 1.2rem;
    border-radius: 8px;
}

.vj-porto-card-body {
    padding: 1rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    flex: 1;
}

.vj-porto-card-tag {
    display: inline-flex;
    align-items: center;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .2rem .65rem;
    border-radius: 99px;
    width: fit-content;
}

.vj-porto-card-nama {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.vj-porto-card-desc {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
    flex: 1;
}

.vj-porto-card-domain {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .75rem;
    color: var(--brass, #F59E0B);
    font-weight: 600;
    margin-top: .2rem;
}

.vj-porto-card-domain svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.vj-porto-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1.5rem;
    color: rgba(255,255,255,.45);
    font-size: .9rem;
}

.vj-porto-empty a {
    color: var(--brass, #F59E0B);
    font-weight: 600;
    text-decoration: none;
}

.map-canvas {
    width: 100%;
    height: 400px;
}

.vj-pricing-section {
    padding: 5.5rem 1.5rem;
    background: var(--ivory, #FAFBFF);
}

.vj-pricing-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.vj-pricing-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.vj-pricing-title {
    font-size: clamp(1.65rem, 3.2vw, 2.2rem);
    font-family: var(--font-display, 'Plus Jakarta Sans', system-ui, sans-serif);
    font-weight: 700;
    color: var(--charcoal, #0F172A);
    line-height: 1.25;
    margin: .6rem 0 .8rem;
    letter-spacing: -.02em;
}

.vj-pricing-title em {
    font-style: normal;
    color: var(--brass, #F59E0B);
}

.vj-pricing-sub {
    color: var(--taupe, #64748B);
    font-size: .95rem;
    margin: 0;
}

.vj-pricing-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(135deg, color-mix(in srgb, var(--espresso, #1E3A5F) 96%, var(--brass, #F59E0B) 4%), var(--espresso, #1E3A5F));
    border: 1px solid rgba(245, 158, 11, .25);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.vj-pricing-entry::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, .12), transparent 70%);
    pointer-events: none;
}

.vj-pricing-entry-left {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    flex: 1;
}

.vj-pricing-entry-badge {
    display: inline-flex;
    align-items: center;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brass, #F59E0B);
    background: rgba(245, 158, 11, .12);
    border: 1px solid rgba(245, 158, 11, .3);
    padding: .2rem .75rem;
    border-radius: 99px;
    width: fit-content;
    margin-bottom: .1rem;
}

.vj-pricing-entry-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-display, 'Plus Jakarta Sans', system-ui, sans-serif);
}

.vj-pricing-entry-desc {
    font-size: .83rem;
    color: rgba(255,255,255,.7);
    line-height: 1.5;
    max-width: 480px;
}

.vj-pricing-entry-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .75rem;
    flex-shrink: 0;
}

.vj-pricing-entry-price {
    display: flex;
    align-items: baseline;
    gap: .35rem;
}

.vj-pricing-entry-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brass, #F59E0B);
    font-family: var(--font-display, 'Plus Jakarta Sans', system-ui, sans-serif);
}

.vj-pricing-entry-period {
    font-size: .8rem;
    color: rgba(255,255,255,.6);
}

.vj-pricing-entry-cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1.25rem;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    background: var(--brass, #F59E0B);
    color: var(--espresso, #1E3A5F);
    transition: background .18s, transform .18s;
    white-space: nowrap;
}

.vj-pricing-entry-cta:hover {
    background: var(--brass-lt, #FCD34D);
    transform: translateX(2px);
}

.vj-pricing-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.vj-pricing-divider::before,
.vj-pricing-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--linen-dk, #E0E7FF);
}

.vj-pricing-divider span {
    font-size: .78rem;
    color: var(--taupe, #64748B);
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: .02em;
}

.vj-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.vj-pricing-card {
    background: #fff;
    border: 1.5px solid var(--linen-dk, #E0E7FF);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: box-shadow .2s, border-color .2s;
}

.vj-pricing-card:hover {
    box-shadow: 0 8px 32px rgba(30,58,95,.1);
    border-color: var(--sage-lt, #A5B4FC);
}

.vj-pricing-card.is-highlight {
    border-color: var(--brass, #F59E0B);
    background: linear-gradient(155deg, #FAFBFF 60%, rgba(245,158,11,.05));
    box-shadow: 0 6px 24px rgba(245,158,11,.15);
}

.vj-pricing-card.is-highlight:hover {
    box-shadow: 0 10px 36px rgba(245,158,11,.22);
}

.vj-pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brass, #F59E0B);
    color: var(--espresso, #1E3A5F);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem 1rem;
    border-radius: 99px;
    white-space: nowrap;
}

.vj-pricing-card-head {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.vj-pricing-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal, #0F172A);
    font-family: var(--font-display, 'Plus Jakarta Sans', system-ui, sans-serif);
}

.vj-pricing-coret {
    font-size: .75rem;
    color: var(--taupe, #64748B);
    text-decoration: line-through;
    font-weight: 500;
    display: block;
    margin-bottom: -.1rem;
}

.vj-pricing-entry-coret {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    text-decoration: line-through;
    font-weight: 500;
    align-self: center;
}

.vj-pricing-price {
    display: flex;
    align-items: baseline;
    gap: .35rem;
    flex-wrap: wrap;
}

.vj-pricing-amount {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--espresso, #1E3A5F);
    font-family: var(--font-display, 'Plus Jakarta Sans', system-ui, sans-serif);
}

.vj-pricing-card.is-highlight .vj-pricing-amount {
    color: var(--brass, #F59E0B);
}

.vj-pricing-period {
    font-size: .8rem;
    color: var(--taupe, #64748B);
    font-weight: 500;
}

.vj-pricing-desc {
    font-size: .85rem;
    color: var(--taupe, #64748B);
    line-height: 1.5;
    margin: 0;
}

.vj-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    flex: 1;
}

.vj-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .875rem;
    color: var(--charcoal, #0F172A);
    line-height: 1.5;
}

.vj-pricing-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: 1px;
    background: rgba(245, 158, 11, .1);
    border: 1.5px solid var(--brass, #F59E0B);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vj-pricing-check::after {
    content: '';
    display: block;
    width: 5px;
    height: 8px;
    border-right: 2px solid var(--brass, #F59E0B);
    border-bottom: 2px solid var(--brass, #F59E0B);
    transform: rotate(45deg) translate(-1px, -1px);
}

.vj-pricing-cta {
    display: block;
    text-align: center;
    padding: .82rem 1.5rem;
    border-radius: 9px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid var(--espresso, #1E3A5F);
    color: var(--espresso, #1E3A5F);
    transition: background .18s, color .18s, border-color .18s;
}

.vj-pricing-cta:hover {
    background: var(--espresso, #1E3A5F);
    color: #fff;
}

.vj-pricing-cta.is-primary {
    background: var(--brass, #F59E0B);
    color: var(--espresso, #1E3A5F);
    border-color: var(--brass, #F59E0B);
    box-shadow: 0 4px 14px rgba(245,158,11,.3);
}

.vj-pricing-cta.is-primary:hover {
    background: var(--brass-lt, #FCD34D);
    border-color: var(--brass-lt, #FCD34D);
    box-shadow: 0 6px 20px rgba(245,158,11,.4);
}

.vj-pricing-footer {
    text-align: center;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.vj-pricing-footer-note {
    font-size: .88rem;
    color: var(--taupe, #64748B);
    margin: 0;
}

.vj-pricing-footer-note a {
    color: var(--brass, #F59E0B);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 158, 11, .35);
    transition: border-color .18s;
}

.vj-pricing-footer-note a:hover {
    border-color: var(--brass, #F59E0B);
}

.vj-pricing-detail-link {
    color: var(--espresso, #1E3A5F);
    font-weight: 600;
    font-size: .88rem;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(30,58,95,.25);
    transition: border-color .18s;
}

.vj-pricing-detail-link:hover {
    border-color: var(--espresso, #1E3A5F);
}

.home-spa-hero {
    padding-top: 5.8rem;
}

.home-spa-host {
    margin-top: .95rem;
}

.home-spa-host .home-spa-empty {
    margin-top: .8rem;
    border: 1px dashed rgba(46,37,32,.18);
    border-radius: 8px;
    background: #fff;
    color: var(--taupe);
    padding: .9rem;
}

@media (max-width: 768px) {
    .home-spa-hero {
        padding-top: 4.8rem;
    }
}

@media (max-width: 640px) {
    .vj-pricing-entry {
        flex-direction: column;
        align-items: flex-start;
    }

    .vj-pricing-entry-right {
        align-items: flex-start;
        width: 100%;
    }

    .vj-pricing-entry-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 1023px) {
    .hzp-card {
        flex: 0 0 160px;
        min-height: 100px;
    }

    .hzp-card img {
        max-width: 120px;
        max-height: 62px;
    }
}

@media (max-width: 767px) {
    .hzp-bg {
        padding: 3.5rem 1.2rem;
    }

    .hzp-grid {
        display: none;
    }

    .hzp-strip {
        display: flex;
        gap: .75rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: .5rem;
    }

    .hzp-strip::-webkit-scrollbar {
        display: none;
    }

    .hzp-strip-card {
        flex: 0 0 auto;
        scroll-snap-align: start;
        background: #fff;
        border: 1px solid rgba(90,44,59,.1);
        border-radius: 10px;
        width: 120px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: .7rem;
    }

    .hzp-strip-card img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 52px;
        object-fit: contain;
        display: block;
    }

    .vj-bisnis-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vj-faq-section,
    .vj-bisnis-section,
    .vj-porto-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .vj-porto-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vj-faq-title,
    .vj-porto-title,
    .vj-bisnis-title {
        font-size: clamp(1.45rem, 6vw, 2rem);
    }
}

@media (max-width: 520px) {
    .vj-bisnis-grid,
    .vj-porto-grid {
        grid-template-columns: 1fr;
    }
}

.wa-filter-chips {
    margin-top: .9rem;
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.wa-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    min-height: 32px;
    border: 1px solid rgba(46, 37, 32, .16);
    border-radius: 999px;
    background: #fff;
    color: var(--espresso);
    padding: .35rem .68rem;
    font-size: .7rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    line-height: 1;
}

.wa-filter-chip strong {
    font-weight: 700;
}

.wa-filter-chip a {
    color: var(--brass);
    text-decoration: none;
    font-weight: 600;
}

.wa-filter-chips--dark .wa-filter-chip {
    border-color: rgba(250, 246, 240, .24);
    background: rgba(250, 246, 240, .06);
    color: var(--linen);
}

.wa-filter-chips--dark .wa-filter-chip a {
    color: var(--brass-lt);
}

.wa-pagination {
    margin-top: 1.6rem;
    display: flex;
    gap: .55rem;
    flex-wrap: wrap;
}

.wa-pagination a,
.wa-pagination span {
    min-width: 38px;
    height: 36px;
    border-radius: var(--wa-radius-sm);
    border: 1px solid rgba(46, 37, 32, .14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 .65rem;
    font-size: .78rem;
    background: #fff;
    color: var(--espresso);
    text-decoration: none;
}

.wa-pagination .is-current,
.wa-pagination .is-active {
    background: var(--espresso);
    border-color: var(--espresso);
    color: var(--linen);
}

.wa-pagination--dark a,
.wa-pagination--dark span {
    border-color: rgba(250, 246, 240, .2);
    background: rgba(250, 246, 240, .04);
    color: var(--linen);
}

.wa-pagination--dark .is-current,
.wa-pagination--dark .is-active {
    background: var(--brass);
    border-color: var(--brass);
    color: var(--espresso);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    box-shadow: var(--wa-focus-ring);
}

@supports (content-visibility: auto) {
    .about-bg,
    .services-bg,
    .featured-bg,
    .gallery-bg,
    .trust-bg,
    .process-bg,
    .testi-bg,
    .cta-bg,
    .career-bg,
    .map-bg,
    .article-bg {
        content-visibility: auto;
        contain-intrinsic-size: 1px 920px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 72px;
    }

    .hero-left,
    .wa-hero-carousel-copy,
    .wa-hero-editorial-copy {
        padding-left: var(--wa-space-inline);
        padding-right: var(--wa-space-inline);
    }
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee-inner {
        animation: none !important;
    }

    [data-media-root].is-media-pending::after {
        animation: none !important;
        transform: none !important;
    }
}
