:root {
    --ink: #333333;
    --ink-2: #555555;
    --ink-3: #8a8a8a;
    --line: #e5e7eb;
    --paper: #ffffff;
    --panel: #ffffff;
    --soft: #f5f5f5;
    --gold: #cda93f;
    --gold-2: #b8942f;
    --gold-soft: #f7f0dc;
    --radius: 6px;
    --radius-lg: 12px;
    --shadow: 0 1px 2px rgba(21, 21, 21, .04), 0 8px 24px rgba(21, 21, 21, .06);
    --shadow-lg: 0 20px 48px rgba(21, 21, 21, .12);
    --ease: cubic-bezier(.22, .61, .36, 1);
    --font: 'Poppins', 'Rubik', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --wrap: 100%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -.01em; line-height: 1.15; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.page { width: 100%; margin: 0 auto; padding: 0 5vw; }
.panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); }

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 32px 64px;
    align-items: end;
    margin-bottom: 36px;
}
.section-head h1, .section-head h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 500;
}
.section-head .lede { color: var(--ink-3); font-size: 14px; max-width: 360px; }
.section-head .tools { justify-self: end; display: flex; gap: 8px; }
.eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: var(--radius);
    border: 2px solid var(--gold);
    background: var(--gold);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: transform .18s var(--ease), background .18s, color .18s, border-color .18s, box-shadow .18s;
}
.btn:hover { transform: translateY(-1px); background: var(--gold-2); border-color: var(--gold-2); box-shadow: 0 8px 20px rgba(205, 169, 63, .35); }
.btn--ghost { background: #fff; color: var(--gold-2); border-color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: #fff; }
.btn--dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; border-color: #000; box-shadow: 0 8px 20px rgba(0, 0, 0, .2); }
.btn--white { background: #fff; border-color: #fff; color: var(--ink); }
.btn--white:hover { background: var(--soft); border-color: var(--soft); box-shadow: none; }
.btn--gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn--sm { padding: 8px 12px; font-size: 12px; }
.btn--icon { width: 36px; height: 36px; padding: 0; justify-content: center; border-radius: 50%; }

.navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: #fff;
    border-bottom: 1px solid var(--line);
    transition: border-color .2s, box-shadow .2s;
}
.navbar.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 20px rgba(21, 21, 21, .05); }
.navbar .nav-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 12px 5vw;
    display: flex;
    align-items: center;
    gap: 32px;
}
.navbar .logoo { display: flex; align-items: center; gap: 10px; }
.navbar .logoo img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.navbar .logoo p { font-weight: 700; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; line-height: 1.1; }
.navbar .logoo span { color: var(--gold-2); }
.navbar .nav-link { display: flex; align-items: center; gap: 4px; margin-left: 8px; flex: 1; }
.navbar .nav-link li a {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-2);
    border-radius: var(--radius);
    letter-spacing: .01em;
    transition: color .15s, background .15s;
}
.navbar .nav-link li a:hover, .navbar .nav-link li a.is-active { color: var(--gold-2); background: var(--soft); }
.navbar .button { display: flex; align-items: center; gap: 12px; }
.navbar .Register {
    padding: 9px 16px;
    border: 2px solid var(--gold);
    background: var(--gold);
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .18s var(--ease), box-shadow .18s, background .18s;
}
.navbar .Register:hover { transform: translateY(-1px); background: var(--gold-2); box-shadow: 0 8px 20px rgba(205, 169, 63, .35); }
.navbar .user-menu, .navbar .button-responsif { position: relative; }
.navbar .user-icon { width: 34px; height: 34px; cursor: pointer; border-radius: 50%; }
.navbar .user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 160px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 6px;
    z-index: 950;
}
.navbar .user-dropdown.active { display: block; }
.navbar .user-dropdown a { display: block; padding: 9px 12px; font-size: 13px; border-radius: 4px; cursor: pointer; }
.navbar .user-dropdown a:hover { background: var(--soft); }
.navbar .button-responsif { display: none; }
.navbar .menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; margin-left: auto; }
.navbar .menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.language-section { position: relative; }
.language-section .custom-select-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 4px 8px 4px 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
}
.language-section .custom-select-btn img { width: 26px; height: 26px; border-radius: 50%; }
.language-section .custom-select-btn .arrow { font-size: 10px; color: var(--ink-3); }
.language-section .modal { display: none; position: absolute; right: 0; top: calc(100% + 10px); z-index: 950; }
.language-section .modal-content {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); padding: 6px; width: 200px; max-height: 300px; overflow-y: auto;
}
.language-section .modal-content li { display: flex; align-items: center; gap: 10px; padding: 8px 10px; font-size: 13px; border-radius: 4px; cursor: pointer; }
.language-section .modal-content li:hover { background: var(--soft); }
.language-section .modal-content li img { width: 22px; height: 22px; border-radius: 50%; }
.language-section .close-btn { display: none; }

.hero { width: 100%; }
.hero .hero-swiper {
    width: 100%;
    height: 78vh;
    min-height: 480px;
    max-height: 820px;
    background: #111;
}
.hero .hero-swiper .swiper-slide { position: relative; overflow: hidden; }
.hero .hero-swiper img { width: 100%; height: 100%; object-fit: cover; scale: 1.14; will-change: transform; }
.hero .hero-swiper .swiper-slide::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .28) 55%, rgba(0, 0, 0, .1) 100%);
    z-index: 1;
}
.hero .hero-swiper .slide-caption {
    position: absolute;
    left: 5vw;
    right: 5vw;
    top: 50%;
    transform: translateY(-50%);
    max-width: 680px;
    color: #fff;
    z-index: 2;
}
.hero .hero-swiper .slide-caption .eyebrow { color: var(--gold); margin-bottom: 14px; }
.hero .hero-swiper .slide-caption .slide-title {
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.05;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}
.hero .hero-swiper .slide-caption .slide-text { font-size: 15px; line-height: 1.7; opacity: .92; margin-top: 18px; max-width: 520px; }
.hero .hero-swiper .slide-caption .slide-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero .hero-swiper .swiper-pagination { bottom: 22px; z-index: 2; text-align: left; padding-left: 5vw; }
.hero .hero-swiper .swiper-pagination-bullet { background: #fff; opacity: .5; width: 8px; height: 8px; }
.hero .hero-swiper .swiper-pagination-bullet-active { opacity: 1; width: 24px; border-radius: 4px; background: var(--gold); }
.hero .hero-swiper .swiper-button-prev, .hero .hero-swiper .swiper-button-next {
    width: 40px;
    height: 72px;
    margin-top: -36px;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    z-index: 3;
    transition: width .3s var(--ease), background .25s, border-color .25s, transform .3s var(--ease);
}
.hero .hero-swiper .swiper-button-prev {
    left: 0;
    border-left: 0;
    border-radius: 0 72px 72px 0;
    transform-origin: left center;
}
.hero .hero-swiper .swiper-button-next {
    right: 0;
    border-right: 0;
    border-radius: 72px 0 0 72px;
    transform-origin: right center;
}
.hero .hero-swiper .swiper-button-prev::after, .hero .hero-swiper .swiper-button-next::after {
    font-size: 15px;
    font-weight: 700;
    transition: transform .3s var(--ease);
}
.hero .hero-swiper .swiper-button-prev::after { margin-left: -6px; }
.hero .hero-swiper .swiper-button-next::after { margin-right: -6px; }
.hero .hero-swiper .swiper-button-prev:hover, .hero .hero-swiper .swiper-button-next:hover {
    width: 52px;
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.12);
}
.hero .hero-swiper .swiper-button-prev:hover::after { transform: translateX(-4px); }
.hero .hero-swiper .swiper-button-next:hover::after { transform: translateX(4px); }
.hero .hero-swiper .swiper-button-disabled { opacity: .35; }


.stats { margin-top: 0; }
.stats .stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat {
    padding: 22px 24px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.stat .stat-label { font-size: 12px; color: var(--ink-3); }
.stat .stat-value { font-size: 30px; font-weight: 500; margin-top: 6px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
/* Harga ditampilkan Rupiah utuh (Rp 1.250.000.000 = 16 karakter). Di grid 4
   kolom layar ~1100px, 30px membuat harga miliar tumpah keluar kotak. Ukurannya
   mengikuti lebar kotak (cqi) dengan batas atas 30px, jadi angka jutaan tetap
   sebesar statistik lain dan hanya mengecil saat memang tidak muat. */
.stat { container-type: inline-size; }
.stat .stat-value[data-stat="min-price"] { white-space: nowrap; font-size: min(30px, 12cqi); }
.stat .stat-bars { display: flex; gap: 4px; align-items: flex-end; height: 26px; margin-top: 14px; }
.stat .stat-bars i { flex: 1; background: var(--line); border-radius: 2px; }
.stat .stat-bars i:nth-child(odd) { background: var(--gold-soft); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card, .card1 {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card:hover, .card1:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-lg); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: #e9e7e1; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img, .card1:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.card-title { font-size: 15px; font-weight: 600; }
.card-price { font-size: 15px; font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }
.card-sub { font-size: 12px; color: var(--ink-3); }
.card-chips { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 4px; }
.card-chips span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-2); }
.card-chips i { font-size: 12px; color: var(--ink-3); }
.card-foot { margin-top: auto; padding-top: 10px; display: flex; justify-content: space-between; align-items: center; }
.card-tag { font-size: 11px; padding: 4px 8px; border-radius: 999px; background: var(--gold-soft); color: var(--gold-2); font-weight: 500; }
.card-tag--muted { background: var(--soft); color: var(--ink-3); }
.card-link { display: block; height: 100%; }
.card-content, .card-content-kavling { display: contents; }

.residence-swiper { overflow: hidden; border-radius: var(--radius-lg); }
.residence-swiper .swiper-slide { height: auto; }
.swiper-nav { display: flex; gap: 8px; }
.residence-nav { margin-top: 18px; align-items: center; }
.residence-pagination { display: flex; gap: 6px; }
.residence-pagination .swiper-pagination-bullet { width: 8px; height: 8px; margin: 0; background: var(--line); opacity: 1; transition: width .2s, background .2s; }
.residence-pagination .swiper-pagination-bullet-active { width: 24px; border-radius: 4px; background: var(--gold); }
.card--wide { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); height: auto; }
.card--wide:hover { transform: none; }
.card--wide .card-media { aspect-ratio: auto; min-height: 420px; }
.card--wide .card-media img { scale: 1.1; }
.card--wide .card-body { padding: 40px 44px; justify-content: center; gap: 12px; }
.card--wide .card-title--lg { font-size: clamp(26px, 3vw, 38px); font-weight: 500; letter-spacing: -.02em; line-height: 1.1; }
.card--wide .card-sub { font-size: 14px; display: flex; align-items: center; gap: 8px; }
.card--wide .card-sub i { color: var(--gold-2); }
.card--wide .card-chips span { font-size: 13px; }
.card--wide .card-foot { margin-top: 10px; justify-content: flex-start; gap: 10px; flex-wrap: wrap; }

.steps { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 16px; }
.steps .steps-panel { padding: 32px; display: flex; flex-direction: column; }
.steps .steps-panel h3 { font-size: 26px; font-weight: 500; }
.steps .steps-panel p { color: var(--ink-3); font-size: 13px; margin-top: 12px; max-width: 320px; }
.steps .steps-panel .btn { align-self: flex-start; margin-top: 20px; }
.steps .step-list { margin-top: auto; padding-top: 40px; display: grid; gap: 8px; }
.steps .step-list li { font-size: 12px; color: var(--ink-3); cursor: pointer; transition: color .2s; display: flex; gap: 10px; align-items: center; }
.steps .step-list li::before { content: ''; width: 16px; height: 1px; background: var(--line); transition: background .2s, width .2s; }
.steps .step-list li.is-active { color: var(--ink); font-weight: 600; }
.steps .step-list li.is-active::before { background: var(--gold); width: 28px; }
.steps .steps-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 380px; background: #e9e7e1; }
.steps .steps-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; scale: 1.14; transition: opacity .5s var(--ease); }
.steps .steps-media img.is-active { opacity: 1; }
.steps .steps-media .steps-badge {
    position: absolute; right: 20px; bottom: 20px;
    background: rgba(255, 255, 255, .94); backdrop-filter: blur(8px);
    padding: 12px 14px; border-radius: var(--radius); font-size: 12px; max-width: 240px;
    box-shadow: var(--shadow);
}
.steps .steps-media .steps-badge strong { display: block; font-size: 13px; margin-bottom: 2px; }

.cta { padding: 0 0 72px; }
.cta .cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    padding: 48px;
    overflow: hidden;
    position: relative;
}
.cta h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 500; }
.cta p { color: var(--ink-3); font-size: 13px; margin-top: 12px; max-width: 420px; }
.cta .cta-actions { display: flex; gap: 10px; margin-top: 22px; }
.cta .cta-art { position: relative; height: 240px; }
.cta .cta-art img { position: absolute; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow-lg); }
.cta .cta-art img:nth-child(1) { left: 0; top: 30px; width: 55%; height: 180px; opacity: .85; }
.cta .cta-art img:nth-child(2) { right: 0; top: 0; width: 58%; height: 240px; }

.page-hero {
    position: relative;
    width: 100%;
    min-height: 360px;
    height: 46vh;
    max-height: 520px;
    overflow: hidden;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-hero .page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; scale: 1.14; will-change: transform; }
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(20, 18, 12, .42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}
.page-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, .25));
    z-index: 1;
    pointer-events: none;
}
.page-hero .page-head {
    position: relative;
    z-index: 2;
    margin: 0 5vw;
    max-width: 760px;
    text-align: center;
    color: #fff;
}
.page-hero .page-head .eyebrow { color: var(--gold); }
.page-hero .page-head h1 { font-size: clamp(30px, 4vw, 48px); font-weight: 600; letter-spacing: -.02em; line-height: 1.08; text-shadow: 0 4px 20px rgba(0, 0, 0, .3); }
.page-hero .page-head .lede { color: rgba(255, 255, 255, .88); font-size: 14px; max-width: 560px; margin: 12px auto 0; line-height: 1.7; }
.page-hero .page-head .lede strong { color: var(--gold); font-weight: 600; }
.page-hero + .page { padding-top: 32px; }
.filter-bar {
    display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
    padding: 14px; background: var(--panel); border-radius: var(--radius-lg); box-shadow: var(--shadow);
    margin-bottom: 24px;
}
.filter-bar .search-container { flex: 1; min-width: 220px; display: flex; align-items: center; gap: 8px; padding: 0 12px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.filter-bar .search-input { flex: 1; border: 0; outline: 0; padding: 10px 0; font: inherit; font-size: 13px; background: transparent; }
.filter-bar .search-button { border: 0; background: transparent; color: var(--ink-3); cursor: pointer; display: flex; }
.filter-bar .dropdown { position: relative; }
.filter-bar .dropdown-summary { list-style: none; cursor: pointer; padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--radius); font-size: 13px; background: #fff; display: flex; align-items: center; gap: 8px; }
.filter-bar .dropdown-summary::-webkit-details-marker { display: none; }
.filter-bar .dropdown-arrow { font-size: 9px; color: var(--ink-3); }
.filter-bar .dropdown-content { position: absolute; top: calc(100% + 8px); left: 0; min-width: 180px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 6px; z-index: 20; }
.filter-bar .dropdown-content li a { display: block; padding: 8px 10px; font-size: 13px; border-radius: 4px; }
.filter-bar .dropdown-content li a:hover { background: var(--soft); }
.filter-bar .filter-chip { padding: 9px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; font-size: 13px; cursor: pointer; }
.filter-bar .filter-chip.is-active { border-color: var(--gold); background: var(--gold); color: #fff; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid:empty::before {
    content: '';
    grid-column: 1 / -1;
    height: 240px;
    border-radius: var(--radius-lg);
    background: linear-gradient(90deg, #ececea 25%, #f5f5f3 37%, #ececea 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s infinite;
}
@keyframes shimmer { from { background-position: 100% 0; } to { background-position: -100% 0; } }

.detail { padding-block: 32px 72px; }
/* Ritme vertikal halaman detail: satu jarak (24px) antar blok utama, lebih
   longgar (48px) sebelum "Properti lainnya". Sebelumnya 28/22/0/32/56 dan
   galeri menempel langsung ke chip fitur. */
.detail .gallery { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; margin-top: 24px; }
/* 16:9 selebar halaman = 683px di layar 1366 — satu layar penuh, jadi yang
   terlihat pertama kali hanya gambar. Tingginya dibatasi; object-fit: cover
   pada img memotong rapi, bukan meregangkan. */
.detail .main-slide { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16 / 9; max-height: min(440px, 55vh); width: 100%; background: #e9e7e1; }
.detail .main-slide img { width: 100%; height: 100%; object-fit: cover; scale: 1.14; transition: opacity .3s; }
.detail .thumbnail-container { display: flex; align-items: center; gap: 10px; }
.detail .thumbnails { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex: 1; }
.detail .thumbnails::-webkit-scrollbar { display: none; }
.detail .thumb { width: 96px; height: 68px; object-fit: cover; border-radius: var(--radius); cursor: pointer; flex: none; border: 2px solid transparent; transition: border-color .2s, opacity .2s; }
.detail .thumb:hover { border-color: var(--gold); }
.detail .thumbnail-container .prev, .detail .thumbnail-container .next {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 14px; flex: none;
}
.detail .product { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-top: 8px; }
.detail .product-name { font-size: clamp(26px, 3.4vw, 40px); font-weight: 500; letter-spacing: -.02em; }
.detail .product-sub { color: var(--ink-3); font-size: 13px; margin-top: 6px; }
.detail .product-price { font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }
.detail .feature { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; margin-top: 20px; }
.detail .features { padding: 14px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); display: grid; gap: 4px; }
.detail .features i { color: var(--gold-2); font-size: 16px; }
.detail .features p:nth-of-type(1) { font-size: 11px; color: var(--ink-3); }
.detail .features p:nth-of-type(2) { font-size: 15px; font-weight: 600; }
.detail .description { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; margin-top: 24px; }
.detail .paragraph, .detail .layout-section { display: grid; gap: 16px; align-content: start; }
.detail .layout-details, .detail .details, .detail .denah, .detail .video { padding: 24px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.detail h3 { font-size: 16px; margin-bottom: 12px; }
.detail .layout-details ul { display: grid; gap: 8px; }
.detail .layout-details li { font-size: 13px; color: var(--ink-2); display: flex; justify-content: space-between; gap: 12px; padding-bottom: 8px; border-bottom: 1px dashed var(--line); }
.detail .layout-details li strong { font-weight: 500; color: var(--ink-3); }
.detail .details p { font-size: 13px; color: var(--ink-2); }
.detail .layout-image { border-radius: var(--radius); width: 100%; }
.detail .video iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; border-radius: var(--radius); }
.detail .other { margin-top: 48px; }
.detail .other h3 { font-size: 22px; font-weight: 500; margin-bottom: 20px; }
.detail .order {
    position: fixed; right: 24px; bottom: 92px; z-index: 800;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 20px; border-radius: 999px;
    background: var(--gold); color: #fff; font-weight: 600; font-size: 14px;
    box-shadow: 0 14px 34px rgba(205, 169, 63, .45);
    transition: transform .18s var(--ease), box-shadow .18s;
}
.detail .order:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(205, 169, 63, .55); }
.detail .order i { font-size: 18px; }
.modal-order { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(21, 21, 21, .55); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 20px; }
.modal-order .modal-content { position: relative; width: 100%; max-width: 480px; background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); }
.modal-order .close { position: absolute; right: 16px; top: 10px; font-size: 26px; cursor: pointer; color: var(--ink-3); }
.modal-order h2 { font-size: 20px; font-weight: 600; margin-bottom: 16px; }
.modal-order .form-group { margin-bottom: 14px; }
.modal-order label { display: block; font-size: 12px; color: var(--ink-3); margin-bottom: 6px; }
.modal-order .form-group > div { display: flex; gap: 16px; align-items: center; font-size: 13px; }
.modal-order .form-group > div label { margin: 0 0 0 4px; color: var(--ink); font-size: 13px; }
.modal-order .select2-container { width: 100% !important; }
.modal-order .select2-selection--single { height: 40px !important; border-color: var(--line) !important; border-radius: var(--radius) !important; }
.modal-order .select2-selection__rendered { line-height: 38px !important; font-size: 13px; }
.modal-order .select2-selection__arrow { height: 38px !important; }
.modal-order .btn-create { width: 100%; padding: 12px; border: 0; border-radius: var(--radius); background: var(--gold); color: #fff; font-weight: 600; font-size: 13px; cursor: pointer; margin-top: 6px; }
.modal-order .notification-box { margin-top: 12px; font-size: 13px; }

.sim { padding-block: 32px 72px; }
.sim .sim-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 16px; align-items: start; }
.sim .sim-form { padding: 28px; }
.sim .sim-form .desc { font-size: 12px; color: var(--ink-3); display: grid; gap: 6px; margin-bottom: 20px; }
.sim .form-sim { display: grid; gap: 16px; }
.sim .form-group label { display: block; font-size: 12px; color: var(--ink-3); margin-bottom: 6px; }
.sim .form-group .input { display: flex; align-items: center; gap: 10px; }
.sim .inputan { flex: 1; min-width: 0; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius); font: inherit; font-size: 14px; background: #fff; outline: 0; transition: border-color .15s; }
.sim .inputan:focus { border-color: var(--gold); }
.sim .inputan:disabled { background: var(--soft); color: var(--ink-3); }
.sim .form-group .input p { font-size: 12px; color: var(--ink-3); white-space: nowrap; }
.sim .form-group .input .eq { font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; }
.sim .form-group .sub { font-size: 11px; color: var(--ink-3); margin-top: 4px; }
.sim .button-simulasi .btn { width: 100%; justify-content: center; padding: 13px; }
.sim .hasil-simulasi { display: grid; gap: 16px; }
.sim .card1, .sim .card2 { padding: 22px 24px; }
.sim .card-header { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 12px; }
.sim table { width: 100%; border-collapse: collapse; font-size: 13px; }
.sim td { padding: 8px 0; border-bottom: 1px dashed var(--line); vertical-align: top; }
.sim td:first-child { color: var(--ink-3); width: 46%; }
.sim td:last-child { font-weight: 500; font-variant-numeric: tabular-nums; }
.sim tr:last-child td { border-bottom: 0; }
.sim .subtext { font-size: 11px; color: var(--ink-3); font-weight: 400; }
.sim .sim-highlight { padding: 22px 24px; background: var(--gold); color: #fff; border-radius: var(--radius-lg); }
.sim .sim-highlight .card-header { color: rgba(255, 255, 255, .85); }
.sim .sim-highlight .big { font-size: clamp(26px, 3vw, 34px); font-weight: 500; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.sim .sim-highlight small { color: rgba(255, 255, 255, .8); font-size: 12px; display: block; margin-top: 4px; }
.sim .articles { margin-top: 56px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.sim .article { padding: 28px 32px; font-size: 14px; color: var(--ink-2); }
.sim .article h2 { font-size: 24px; font-weight: 500; color: var(--ink); margin-bottom: 14px; }
.sim .article h3 { font-size: 15px; color: var(--ink); margin: 22px 0 8px; }
.sim .article p { margin-bottom: 10px; }
.sim .article ul { list-style: disc; padding-left: 20px; display: grid; gap: 6px; }
.sim .article ul ul { margin-top: 6px; }
.sim .article b { color: var(--ink); font-weight: 600; }

.contact { padding-block: 32px 72px; }
.contact .contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 16px; align-items: start; }
.contact .content1, .contact .content2 { padding: 28px; }
.contact .content1 h2 { font-size: 20px; font-weight: 600; margin-bottom: 14px; }
.contact .content1 p { font-size: 13px; color: var(--ink-2); margin-bottom: 8px; }
.contact .content1 p span { display: block; font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em; }
.contact .content1 iframe { width: 100%; height: 300px; border: 0; border-radius: var(--radius); margin-top: 16px; }
.contact .content2 h3 { font-size: 20px; font-weight: 600; margin-bottom: 14px; }
.contact .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.contact .form-control { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: var(--radius); font: inherit; font-size: 13px; outline: 0; transition: border-color .15s; background: #fff; }
.contact .form-control:focus { border-color: var(--gold); }
.contact textarea.form-control { min-height: 140px; resize: vertical; margin-bottom: 10px; }
.contact .btn-submit { margin-top: 14px; padding: 12px 20px; border: 0; border-radius: var(--radius); background: var(--gold); color: #fff; font-weight: 600; font-size: 13px; cursor: pointer; }
.contact .alert { margin-top: 12px; padding: 10px 12px; border-radius: var(--radius); font-size: 13px; }
.contact .alert-success { background: #e8f5ea; color: #1f6b34; }
.contact .alert-danger { background: #fdecec; color: #a12a2a; }

.article-page { padding-block: 32px 72px; }
.article-page .page-content { padding: 32px 36px; }
.article-page .page-content img { border-radius: var(--radius); }

footer#footer {
    margin-top: 0;
    background-color: #1e1a0f;
    background-size: cover;
    background-position: center;
    color: #fff;
}
footer#footer .content {
    width: 100%; margin: 0 auto; padding: 56px 5vw 32px;
    display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px;
}
footer#footer .logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
footer#footer .logo img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
footer#footer .logo h2 { font-size: 16px; letter-spacing: .04em; text-transform: uppercase; }
footer#footer .logo span { color: var(--gold); }
footer#footer .head p { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .5); margin-bottom: 12px; }
footer#footer .lokasi p { font-size: 13px; color: rgba(255, 255, 255, .78); margin-bottom: 4px; }
footer#footer .lokasi p span { color: #fff; font-weight: 500; }
footer#footer .lokasi iframe { width: 100%; height: 150px; border: 0; border-radius: var(--radius); margin-top: 14px; filter: grayscale(1) contrast(1.05); opacity: .85; }
footer#footer .menu ul, footer#footer .media ul { display: grid; gap: 8px; }
footer#footer .menu a { font-size: 13px; color: rgba(255, 255, 255, .78); transition: color .15s; }
footer#footer .menu a:hover { color: var(--gold); }
footer#footer .media ul { grid-auto-flow: column; justify-content: start; gap: 10px; }
footer#footer .media img { width: 30px; height: 30px; filter: brightness(0) invert(1); opacity: .8; transition: opacity .15s; }
footer#footer .media a:hover img { opacity: 1; }
footer#footer .footer {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 18px 5vw; text-align: center;
    font-size: 12px; color: rgba(255, 255, 255, .5);
}
footer#footer .content .lokasi { grid-column: 1; }
footer#footer .content .logo { grid-column: 1 / -1; }

.floating { display: none; }

[data-aos] { will-change: transform, opacity; }

@media (max-width: 992px) {
    .section-head, .steps, .cta .cta-panel, .sim .sim-grid, .contact .contact-grid, .detail .description, .sim .articles { grid-template-columns: 1fr; }
    .section-head .tools { justify-self: start; }
    .cards, .grid { grid-template-columns: repeat(2, 1fr); }
    .stats .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .card--wide { grid-template-columns: 1fr; }
    .card--wide .card-media { min-height: 260px; aspect-ratio: 16 / 9; }
    .card--wide .card-body { padding: 24px; }
    .cta .cta-art { display: none; }
    footer#footer .content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .section { padding: 48px 0; }
    .cards, .grid, .stats .stat-grid { grid-template-columns: 1fr; }
    .hero .hero-swiper { height: 68vh; min-height: 420px; }
    .page-hero { min-height: 300px; height: auto; padding: 56px 0; }
    .hero .hero-swiper .slide-caption .slide-text { font-size: 14px; }
    .hero .hero-swiper .swiper-button-prev, .hero .hero-swiper .swiper-button-next { width: 30px; height: 56px; margin-top: -28px; }
    .detail .product { flex-direction: column; align-items: flex-start; }
    .navbar .nav-wrap { flex-wrap: wrap; gap: 12px; }
    .navbar .menu-toggle { display: flex; }
    .navbar .nav-link { display: none; flex-direction: column; align-items: stretch; width: 100%; gap: 2px; margin: 8px 0 0; }
    .navbar .nav-link.active { display: flex; }
    .navbar .nav-link li a { padding: 12px; }
    .navbar .button { display: none; }
    .navbar .button-responsif { display: block; padding: 12px; }
    .contact .form-row { grid-template-columns: 1fr; }
    footer#footer .content { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
    .hero .hero-swiper img { scale: 1; }
}

.wa-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 800;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 12px 28px rgba(205, 169, 63, .45);
    transition: transform .18s var(--ease);
}
.wa-float:hover { transform: translateY(-2px) scale(1.04); }
.notification-box { display: none; padding: 10px 12px; border-radius: var(--radius); font-size: 13px; color: #fff; }
.notification-box.is-success { background: #1f8a4c; }
.notification-box.is-error { background: #c0392b; }
.sim .sim-articles-right { display: grid; gap: 16px; align-content: start; }
.swal2-popup { font-family: var(--font) !important; border-radius: var(--radius-lg) !important; }
.swal2-styled { border-radius: var(--radius) !important; font-size: 13px !important; }
.section-head .lede { color: var(--ink-2); }

.skiptranslate, #goog-gt-tt, .VIpgJd-ZVi9od-aZ2wEe-wOHMyf { display: none !important; }
.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q { background-color: transparent !important; box-shadow: none !important; }
body { top: 0 !important; }
