/* ==========================================================================
   BPR RAGASAKTI - Stylesheet situs publik
   Ditulis ulang 2026. Tanpa framework; hanya CSS modern + variabel.
   ========================================================================== */

:root {
  --c-red: #e11d24;
  --c-red-600: #c4161c;
  --c-red-50: #fdecec;
  --c-navy: #0b1f3a;
  --c-navy-800: #12294a;
  --c-navy-700: #1b3763;
  --c-blue: #0f4c81;
  --c-blue-600: #0c3f6b;
  --c-blue-50: #eaf2fa;
  --c-blue-100: #d6e6f5;
  --c-yellow: #ffc20e;
  --c-yellow-50: #fff6d6;
  --c-green: #15803d;
  --c-green-50: #ecfdf3;
  --c-ink: #14213d;
  --c-text: #2b3648;
  --c-muted: #64748b;
  --c-line: #e2e8f0;
  --c-bg: #f5f7fb;
  --c-white: #ffffff;

  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
  --shadow-md: 0 6px 18px -6px rgba(15, 23, 42, .18);
  --shadow-lg: 0 24px 48px -20px rgba(11, 31, 58, .35);
  --container: 1180px;
  --header-h: 76px;
}

/* --------------------------------------------------------------------------
   Reset & dasar
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img, svg, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--c-blue); text-decoration: none; }
a:hover { color: var(--c-red); }
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .5em;
  color: var(--c-ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.12rem; }
h5 { font-size: 1rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
hr { border: 0; border-top: 1px solid var(--c-line); margin: 2rem 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }
[hidden] { display: none !important; }
.icon { width: 20px; height: 20px; flex: none; }
.icon.muted { color: var(--c-muted); }

/* --------------------------------------------------------------------------
   Layout utilities
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: 20px; }
.section { padding-block: 72px; }
.section-sm { padding-block: 48px; }
.section-tint { background: var(--c-bg); }
.section-navy { background: var(--c-navy); color: #dbe4f0; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-red); margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--c-red); }
.section-head.center .eyebrow::before { display: none; }
.section-head p { color: var(--c-muted); font-size: 1.05rem; margin: 0; }
.section-navy .section-head p { color: #b9c6d8; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; align-items: start; }
.layout-narrow { max-width: 820px; margin-inline: auto; }
.flex { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.between { justify-content: space-between; }
.text-center { text-align: center; }
.muted { color: var(--c-muted); }
.small { font-size: .9rem; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.stack > * + * { margin-top: 16px; }

/* --------------------------------------------------------------------------
   Tombol, badge, alert
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: .95rem; line-height: 1.2; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--c-red); color: #fff; box-shadow: 0 10px 20px -10px rgba(225, 29, 36, .7); }
.btn-primary:hover { background: var(--c-red-600); color: #fff; }
.btn-navy { background: var(--c-navy); color: #fff; }
.btn-navy:hover { background: var(--c-navy-700); color: #fff; }
.btn-outline { border-color: var(--c-line); color: var(--c-ink); background: #fff; }
.btn-outline:hover { border-color: var(--c-navy); color: var(--c-navy); }
.btn-light { background: #fff; color: var(--c-navy); }
.btn-light:hover { background: var(--c-yellow); color: var(--c-navy); }
.btn-ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn-ghost:hover { background: rgba(255, 255, 255, .2); color: #fff; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1fb457; color: #fff; }
.btn-sm { padding: 9px 16px; font-size: .85rem; }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .02em; white-space: nowrap;
  background: var(--c-blue-50); color: var(--c-blue);
}
.badge-red { background: var(--c-red-50); color: var(--c-red); }
.badge-yellow { background: var(--c-yellow-50); color: #8a6200; }
.badge-green { background: var(--c-green-50); color: var(--c-green); }
.badge-navy { background: var(--c-navy); color: #fff; }
.badge svg { width: 14px; height: 14px; }

.alert {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 18px; border-radius: var(--radius-sm); border: 1px solid;
  margin-bottom: 20px; font-size: .95rem;
}
.alert svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.alert p { margin: 0; }
.alert-success { background: var(--c-green-50); border-color: #bbf7d0; color: #14532d; }
.alert-danger { background: var(--c-red-50); border-color: #fecaca; color: #7f1d1d; }
.alert-info { background: var(--c-blue-50); border-color: var(--c-blue-100); color: var(--c-blue-600); }
.alert-warning { background: var(--c-yellow-50); border-color: #fde68a; color: #713f12; }

/* --------------------------------------------------------------------------
   Topbar & Header
   -------------------------------------------------------------------------- */
.topbar { background: var(--c-navy); color: #c9d5e6; font-size: .8rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar a { color: #e6edf7; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar a:hover { color: var(--c-yellow); }
.topbar svg { width: 15px; height: 15px; }
.topbar .compliance { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar .compliance svg { color: var(--c-yellow); }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }
.brand img { height: 42px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 12px; }

.main-nav ul { list-style: none; margin: 0; padding: 0; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-list > li { position: relative; }
.nav-list > li > a, .nav-list > li > .nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 11px; border-radius: 10px; white-space: nowrap;
  color: var(--c-ink); font-weight: 600; font-size: .9rem;
  background: transparent; border: 0;
}
.nav-list > li > a:hover, .nav-list > li > .nav-link:hover,
.nav-list > li.active > a, .nav-list > li.active > .nav-link { color: var(--c-red); background: var(--c-red-50); }
.nav-list > li > .nav-link svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-list > li.open > .nav-link svg { transform: rotate(180deg); }
.sub-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--c-line); border-radius: 14px; padding: 8px;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.sub-menu.wide { min-width: 300px; columns: 2; column-gap: 4px; }
.nav-list > li:hover > .sub-menu, .nav-list > li.open > .sub-menu, .nav-list > li:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.sub-menu li { break-inside: avoid; }
.sub-menu a {
  display: block; padding: 9px 12px; border-radius: 9px; color: var(--c-text); font-size: .92rem; font-weight: 500;
}
.sub-menu a:hover, .sub-menu a.active { background: var(--c-blue-50); color: var(--c-blue); }
.sub-menu .sub-title { padding: 8px 12px 4px; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--c-line); background: #fff;
  align-items: center; justify-content: center; color: var(--c-ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-close { display: none; }

/* --------------------------------------------------------------------------
   Hero (beranda)
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(900px 500px at 85% -10%, rgba(15, 76, 129, .9), transparent 60%),
              radial-gradient(700px 400px at -10% 110%, rgba(225, 29, 36, .55), transparent 60%),
              linear-gradient(135deg, #0b1f3a 0%, #12294a 60%, #0f3a66 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 60% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 60% 40%, #000 20%, transparent 75%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .9fr); gap: 48px; align-items: center; padding-block: 84px 72px; }
.hero-copy h1 { color: #fff; margin-bottom: 18px; font-size: clamp(2.2rem, 4.6vw, 3.5rem); }
.hero-copy h1 span { color: var(--c-yellow); }
.hero-copy .lead { font-size: 1.12rem; color: #c9d5e6; max-width: 560px; margin-bottom: 28px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22); font-size: .8rem; font-weight: 600; margin-bottom: 20px; }
.hero-badge svg { width: 15px; height: 15px; color: var(--c-yellow); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-points { display: flex; gap: 26px; flex-wrap: wrap; padding: 0; margin: 0; list-style: none; }
.hero-points li { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: #dbe4f0; }
.hero-points svg { width: 18px; height: 18px; color: var(--c-yellow); }

.rate-card {
  background: #fff; color: var(--c-text); border-radius: 22px; padding: 26px; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.rate-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 140px; height: 140px; border-radius: 50%; background: var(--c-yellow-50); pointer-events: none; }
.rate-card > * { position: relative; }
.rate-card .rate-title { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--c-ink); font-size: 1.05rem; margin-bottom: 4px; }
.rate-card .rate-title svg { width: 22px; height: 22px; color: var(--c-blue); }
.rate-card .rate-period { font-size: .82rem; color: var(--c-muted); margin-bottom: 16px; }
.rate-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; margin-bottom: 14px; }
.rate-item { background: var(--c-bg); border-radius: 14px; padding: 14px 16px; }
.rate-item .label { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--c-muted); }
.rate-item .value { font-size: 1.7rem; font-weight: 800; color: var(--c-navy); line-height: 1.1; margin-top: 4px; }
.rate-item .value small { font-size: .9rem; font-weight: 700; color: var(--c-muted); }
.rate-note { font-size: .8rem; color: var(--c-muted); margin: 0; display: flex; gap: 8px; align-items: flex-start; }
.rate-note svg { width: 16px; height: 16px; flex: none; color: var(--c-green); margin-top: 2px; }

/* --------------------------------------------------------------------------
   Page header (halaman dalam)
   -------------------------------------------------------------------------- */
.page-header {
  background: linear-gradient(180deg, var(--c-blue-50), #fff);
  border-bottom: 1px solid var(--c-line);
  padding-block: 40px 36px;
  position: relative; overflow: hidden;
}
.page-header::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: linear-gradient(90deg, var(--c-red) 0 40%, var(--c-yellow) 40% 55%, var(--c-navy) 55%); }
.page-header h1 { margin: 8px 0 8px; font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.page-header .lead { color: var(--c-muted); font-size: 1.05rem; max-width: 720px; margin: 0; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; font-size: .85rem; color: var(--c-muted); }
.crumbs li { display: inline-flex; align-items: center; gap: 6px; }
.crumbs li + li::before { content: "/"; opacity: .5; }
.crumbs a { color: var(--c-blue); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.crumbs svg { width: 15px; height: 15px; }

/* --------------------------------------------------------------------------
   Kartu
   -------------------------------------------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-blue-100); }
.icon-box {
  width: 54px; height: 54px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-red-50); color: var(--c-red); margin-bottom: 18px;
}
.icon-box svg { width: 26px; height: 26px; }
.icon-box.blue { background: var(--c-blue-50); color: var(--c-blue); }
.icon-box.yellow { background: var(--c-yellow-50); color: #b07b00; }
.icon-box.green { background: var(--c-green-50); color: var(--c-green); }
.icon-box.navy { background: var(--c-navy); color: #fff; }
.card h3, .card h4 { margin-bottom: 8px; }
.card p { color: var(--c-muted); }
.card p:last-child { margin-bottom: 0; }
.card .link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--c-red); margin-top: 6px; }
.card .link svg { width: 16px; height: 16px; transition: transform .15s; }
.card .link:hover svg { transform: translateX(3px); }

.product-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.product-card .badge { position: absolute; top: 18px; right: 18px; }
.product-card ul { list-style: none; padding: 0; margin: 12px 0 16px; display: grid; gap: 6px; font-size: .9rem; color: var(--c-text); }
.product-card ul li { display: flex; gap: 8px; align-items: flex-start; }
.product-card ul svg { width: 16px; height: 16px; color: var(--c-green); flex: none; margin-top: 4px; }
.product-card .card-foot { margin-top: auto; }

.trust-strip { background: #fff; border: 1px solid var(--c-line); border-radius: 20px; box-shadow: var(--shadow-md); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: -34px; position: relative; z-index: 2; }
.trust-strip .item { padding: 22px 24px; display: flex; gap: 14px; align-items: center; border-right: 1px solid var(--c-line); }
.trust-strip .item:last-child { border-right: 0; }
.trust-strip .item svg { width: 30px; height: 30px; color: var(--c-red); flex: none; }
.trust-strip .item strong { display: block; color: var(--c-ink); font-size: .98rem; line-height: 1.2; }
.trust-strip .item span { font-size: .8rem; color: var(--c-muted); }

.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .icon-box { margin: 0; flex: none; width: 48px; height: 48px; border-radius: 14px; }
.feature .icon-box svg { width: 22px; height: 22px; }
.feature h4 { margin-bottom: 4px; }
.feature p { margin: 0; color: var(--c-muted); font-size: .95rem; }

.media-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.media-card .media { aspect-ratio: 16 / 9; background: var(--c-bg); overflow: hidden; }
.media-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.media-card:hover .media img { transform: scale(1.04); }
.media-card .body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.media-card .meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; font-size: .8rem; color: var(--c-muted); margin-bottom: 8px; }
.media-card .meta svg { width: 14px; height: 14px; }
.media-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.media-card h3 a { color: var(--c-ink); }
.media-card h3 a:hover { color: var(--c-red); }
.media-card .body p { font-size: .93rem; flex: 1; }
.media-card .body .link { margin-top: 10px; }

.testi-card { position: relative; }
.testi-card .quote { position: absolute; top: 18px; right: 22px; width: 36px; height: 36px; color: var(--c-yellow); opacity: .9; }
.testi-card .stars { display: flex; gap: 2px; margin-bottom: 12px; color: var(--c-yellow); }
.testi-card .stars svg { width: 16px; height: 16px; }
.testi-card .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testi-card .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi-card .who strong { display: block; color: var(--c-ink); }
.testi-card .who span { font-size: .82rem; color: var(--c-muted); }
.testi-card .says { color: var(--c-text); }
.testi-card .says p { color: var(--c-text); }

.report-list { display: grid; gap: 12px; }
.report-row {
  display: flex; align-items: center; gap: 18px; padding: 16px 20px;
  background: #fff; border: 1px solid var(--c-line); border-radius: 14px; transition: border-color .15s, box-shadow .15s;
}
.report-row:hover { border-color: var(--c-blue-100); box-shadow: var(--shadow-sm); }
.report-row .file-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--c-red-50); color: var(--c-red); display: flex; align-items: center; justify-content: center; flex: none; }
.report-row .file-icon svg { width: 22px; height: 22px; }
.report-row .info { flex: 1; min-width: 0; }
.report-row .info strong { display: block; color: var(--c-ink); font-size: 1rem; }
.report-row .info span { font-size: .82rem; color: var(--c-muted); }
.report-year { display: flex; align-items: center; gap: 12px; margin: 28px 0 12px; }
.report-year h3 { margin: 0; font-size: 1.1rem; }
.report-year::after { content: ""; flex: 1; height: 1px; background: var(--c-line); }

.office-card { display: flex; flex-direction: column; gap: 10px; height: 100%; }
.office-card .office-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.office-card .office-head > svg { width: 22px; height: 22px; margin-top: 4px; }
.office-card h3 { font-size: 1.05rem; margin: 0; }
.office-card .kota { font-size: .8rem; color: var(--c-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.office-card address { font-style: normal; color: var(--c-text); font-size: .95rem; line-height: 1.55; }
.office-card .contacts { display: grid; gap: 6px; font-size: .9rem; }
.office-card .contacts a, .office-card .contacts span { display: inline-flex; align-items: center; gap: 8px; color: var(--c-text); }
.office-card .contacts svg { width: 16px; height: 16px; color: var(--c-blue); flex: none; }
.office-card .actions { margin-top: auto; display: flex; gap: 8px; flex-wrap: wrap; padding-top: 6px; }
.office-card.is-pusat { border-color: var(--c-red); box-shadow: 0 0 0 4px var(--c-red-50); }

.stat { text-align: center; padding: 18px; }
.stat .num { font-size: 2.2rem; font-weight: 800; color: var(--c-navy); line-height: 1; }
.stat .lbl { font-size: .85rem; color: var(--c-muted); margin-top: 6px; }

.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; height: 420px; border: 0; }

.cta-band { border-radius: 26px; padding: 48px; color: #fff; display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
  background: linear-gradient(120deg, var(--c-red) 0%, #b8151a 100%); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255, 255, 255, .12); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #ffe3e4; margin: 0; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; position: relative; }

.partner-logos { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: center; }
.partner-logos img { height: 64px; width: auto; filter: grayscale(1); opacity: .7; transition: .2s; }
.partner-logos img:hover { filter: none; opacity: 1; }

.steps { counter-reset: step; display: grid; gap: 18px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step::before { counter-increment: step; content: counter(step); flex: none; width: 36px; height: 36px; border-radius: 50%; background: var(--c-navy); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step strong { display: block; color: var(--c-ink); }
.step p { margin: 2px 0 0; color: var(--c-muted); font-size: .95rem; }

.check-list { list-style: none; padding: 0; margin: 0 0 1em; display: grid; gap: 8px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list svg { width: 18px; height: 18px; color: var(--c-green); flex: none; margin-top: 4px; }

.info-box { border-left: 4px solid var(--c-yellow); background: var(--c-yellow-50); padding: 16px 20px; border-radius: 0 12px 12px 0; font-size: .95rem; }
.info-box.blue { border-color: var(--c-blue); background: var(--c-blue-50); }
.info-box p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Sidebar & widget
   -------------------------------------------------------------------------- */
.sidebar { position: sticky; top: calc(var(--header-h) + 16px); display: grid; gap: 20px; }
.widget { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 22px; }
.widget-title { font-size: 1rem; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.widget-title svg { width: 18px; height: 18px; color: var(--c-red); }
.product-nav { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.product-nav a { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-radius: 10px; color: var(--c-text); font-weight: 500; font-size: .93rem; }
.product-nav a svg { width: 16px; height: 16px; opacity: .5; }
.product-nav a:hover { background: var(--c-bg); color: var(--c-blue); }
.product-nav a.active { background: var(--c-red-50); color: var(--c-red); font-weight: 700; }
.product-nav a.active svg { opacity: 1; }
.widget.navy { background: var(--c-navy); color: #dbe4f0; border-color: var(--c-navy); }
.widget.navy .widget-title { color: #fff; }
.widget.navy .widget-title svg { color: var(--c-yellow); }
.widget.navy p { color: #c9d5e6; }
.widget.navy a:not(.btn) { color: #fff; }
.contact-lines { display: grid; gap: 10px; margin: 0 0 16px; padding: 0; list-style: none; font-size: .92rem; }
.contact-lines li { display: flex; gap: 10px; align-items: flex-start; }
.contact-lines svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--c-yellow); }
.widget .rate-card { box-shadow: none; padding: 0; border-radius: 0; }
.widget .rate-card::after { display: none; }

/* --------------------------------------------------------------------------
   Formulir
   -------------------------------------------------------------------------- */
.form-card { padding: 30px; }
.form-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--c-ink); }
.field label .req { color: var(--c-red); }
.input, .select, .textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--c-line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s, box-shadow .15s; font-size: .95rem;
}
.input:focus, .select:focus, .textarea:focus { outline: 0; border-color: var(--c-blue); box-shadow: 0 0 0 4px var(--c-blue-50); }
.input[type="file"] { padding: 9px 12px; }
.select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 38px; }
.textarea { min-height: 140px; resize: vertical; }
.help { font-size: .8rem; color: var(--c-muted); margin-top: 6px; }
.input-group { display: flex; align-items: stretch; }
.input-group .prefix { display: flex; align-items: center; padding: 0 14px; background: var(--c-bg); border: 1.5px solid var(--c-line); border-right: 0; border-radius: var(--radius-sm) 0 0 var(--radius-sm); font-weight: 700; color: var(--c-muted); }
.input-group .input { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--c-text); }
.checkbox input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--c-red); flex: none; }
.form-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
.validation-errors p { margin: 0; }

.result-box { background: var(--c-bg); border-radius: 14px; padding: 18px 20px; margin-top: 18px; }
.result-box table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.result-box td { padding: 6px 0; }
.result-box td:last-child { text-align: right; font-weight: 800; color: var(--c-navy); }
.result-box .big td:last-child { font-size: 1.3rem; color: var(--c-red); }

/* --------------------------------------------------------------------------
   Konten dari editor (DB)
   -------------------------------------------------------------------------- */
.prose { font-size: 1.02rem; color: var(--c-text); }
.prose > *:first-child { margin-top: 0; }
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 { color: var(--c-ink) !important; margin-top: 1.4em; }
.prose h1 { font-size: 1.6rem; } .prose h2 { font-size: 1.4rem; } .prose h3 { font-size: 1.25rem; } .prose h4 { font-size: 1.1rem; } .prose h5 { font-size: 1rem; }
.prose h1 *, .prose h2 *, .prose h3 *, .prose h4 *, .prose h5 * { color: inherit !important; }
.prose p, .prose li { color: var(--c-text); }
.prose p[style], .prose span[style], .prose li[style] { color: var(--c-text) !important; padding-left: 0 !important; }
.prose a { color: var(--c-blue) !important; text-decoration: underline; }
.prose img { border-radius: 12px; margin: 1em 0; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: .35em; }
.prose table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.prose td, .prose th { border: 1px solid var(--c-line); padding: 8px 10px; }
.prose .orange, .prose .red, .prose .green, .prose .blue, .prose .black { display: inline-block; min-width: 1.6em; color: var(--c-red) !important; }
.prose iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; border-radius: 12px; }

/* --------------------------------------------------------------------------
   Tabs, pagination, modal, tabel
   -------------------------------------------------------------------------- */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.tab { padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--c-line); background: #fff; color: var(--c-text); font-weight: 600; font-size: .9rem; }
.tab:hover { border-color: var(--c-blue); color: var(--c-blue); }
.tab.active { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }

.pagination { display: flex; gap: 6px; list-style: none; padding: 0; margin: 32px 0 0; flex-wrap: wrap; }
.pagination li a { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 10px; border: 1.5px solid var(--c-line); color: var(--c-text); font-weight: 600; font-size: .9rem; }
.pagination li a:hover { border-color: var(--c-blue); color: var(--c-blue); }
.pagination li.active a { background: var(--c-red); border-color: var(--c-red); color: #fff; }

.table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.table th, .table td { padding: 12px 14px; border-bottom: 1px solid var(--c-line); text-align: left; }
.table th { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--c-muted); }

.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(11, 31, 58, .6); backdrop-filter: blur(3px); }
.modal-panel { position: relative; background: #fff; border-radius: 20px; width: 100%; max-width: 560px; max-height: calc(100vh - 40px); overflow: auto; padding: 28px; box-shadow: var(--shadow-lg); }
.modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; border: 0; background: var(--c-bg); display: flex; align-items: center; justify-content: center; }
.modal-close svg { width: 18px; height: 18px; }

.job-card { padding: 26px; }
.job-card .job-head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; margin-bottom: 12px; }
.job-card h3 { margin: 0; }
.job-card details { border-top: 1px solid var(--c-line); margin-top: 14px; padding-top: 12px; }
.job-card summary { cursor: pointer; font-weight: 700; color: var(--c-blue); }
.job-card .prose { font-size: .95rem; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-bottom: 24px; }
.gallery a { display: block; border-radius: 12px; overflow: hidden; border: 1px solid var(--c-line); aspect-ratio: 4 / 3; background: var(--c-bg); }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery a:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 8; }

.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }

.share-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.article-media { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; border: 1px solid var(--c-line); }
.article-media img { width: 100%; max-height: 460px; object-fit: cover; }
.article-meta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; color: var(--c-muted); font-size: .88rem; margin-bottom: 20px; }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-meta svg { width: 15px; height: 15px; }

.announce-images { display: grid; gap: 16px; }
.announce-images img { width: 100%; border-radius: 12px; border: 1px solid var(--c-line); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--c-navy); color: #b9c6d8; margin-top: 0; }
.footer-main { padding-block: 64px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-brand img { height: 46px; width: auto; background: #fff; padding: 8px 12px; border-radius: 12px; }
.footer-brand p { font-size: .92rem; margin-top: 16px; }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: .93rem; }
.footer-links a { color: #c9d5e6; }
.footer-links a:hover { color: var(--c-yellow); }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: .92rem; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; flex: none; color: var(--c-yellow); margin-top: 2px; }
.footer-contact a { color: #e6edf7; }
.footer-contact a:hover { color: var(--c-yellow); }
.socials { display: flex; gap: 8px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, .08); color: #fff; }
.socials a:hover { background: var(--c-red); color: #fff; }
.socials svg { width: 18px; height: 18px; }
.footer-compliance { border-top: 1px solid rgba(255, 255, 255, .1); border-bottom: 1px solid rgba(255, 255, 255, .1); padding-block: 22px; }
.footer-compliance .container { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.footer-compliance .item { display: flex; gap: 12px; align-items: flex-start; font-size: .85rem; }
.footer-compliance .item svg { width: 22px; height: 22px; color: var(--c-yellow); flex: none; }
.footer-compliance .item strong { display: block; color: #fff; font-size: .9rem; }
.footer-bottom { padding-block: 18px; font-size: .82rem; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom a { color: #c9d5e6; }
.footer-bottom a:hover { color: var(--c-yellow); }

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px 12px 14px; border-radius: 999px;
  background: #25d366; color: #fff; font-weight: 700; box-shadow: 0 12px 24px -8px rgba(37, 211, 102, .6);
}
.wa-float:hover { background: #1fb457; color: #fff; }
.wa-float svg { width: 22px; height: 22px; }

/* --------------------------------------------------------------------------
   Animasi reveal
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Responsif
   -------------------------------------------------------------------------- */
@media (max-width: 1240px) {
  .header-cta { display: none; }
  .topbar-right .compliance { display: none; }
  .topbar-left .compliance span { display: none; }
}
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip .item:nth-child(2) { border-right: 0; }
  .trust-strip .item:nth-child(-n+2) { border-bottom: 1px solid var(--c-line); }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer-compliance .container { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto; width: min(360px, 88vw); background: #fff; z-index: 80;
    transform: translateX(100%); visibility: hidden; transition: transform .25s ease, visibility 0s linear .25s; overflow-y: auto; padding: 20px; box-shadow: var(--shadow-lg);
  }
  .main-nav.open { transform: translateX(0); visibility: visible; transition: transform .25s ease, visibility 0s; }
  .nav-close { display: flex; margin-left: auto; margin-bottom: 8px; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list > li > a, .nav-list > li > .nav-link { width: 100%; justify-content: space-between; padding: 12px 14px; font-size: 1rem; }
  .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 6px 10px; display: none; min-width: 0; }
  .sub-menu.wide { columns: 1; }
  .nav-list > li.open > .sub-menu { display: block; }
  .nav-list > li:hover > .sub-menu { display: none; }
  .nav-list > li.open:hover > .sub-menu { display: block; }
  .nav-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: rgba(11, 31, 58, .5); z-index: 70; }
  .header-cta { display: none; }
  .layout { grid-template-columns: minmax(0, 1fr); }
  .sidebar { position: static; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); padding-block: 56px 48px; }
  .cta-band { grid-template-columns: minmax(0, 1fr); padding: 36px; }
  .cta-band .actions { justify-content: flex-start; }
  .topbar-left .compliance span { display: none; }
}
@media (max-width: 768px) {
  .section { padding-block: 52px; }
  .grid-2, .grid-3 { grid-template-columns: minmax(0, 1fr); }
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .topbar .container { justify-content: center; }
  .topbar-right { display: none; }
  .header-inner { min-height: 66px; }
  .brand img { height: 40px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .report-row { flex-wrap: wrap; }
  .report-row .btn { width: 100%; }
  .map-frame iframe { height: 320px; }
}
@media (max-width: 560px) {
  .grid-4, .trust-strip { grid-template-columns: minmax(0, 1fr); }
  .trust-strip .item { border-right: 0; border-bottom: 1px solid var(--c-line); }
  .trust-strip .item:last-child { border-bottom: 0; }
  .hero-actions .btn { width: 100%; }
  .rate-grid { grid-template-columns: minmax(0, 1fr); }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; }
  .form-card { padding: 22px; }
  .modal-panel { padding: 22px; }
}

/* --------------------------------------------------------------------------
   Deposito Sakti (program deposito berhadiah)
   -------------------------------------------------------------------------- */
.sakti-band { border-radius: 26px; overflow: hidden; color: #fff; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); align-items: center; position: relative;
  background: radial-gradient(500px 300px at 90% 0%, rgba(255, 194, 14, .35), transparent 60%), linear-gradient(120deg, #7a0c10 0%, #c4161c 55%, #e11d24 100%); }
.sakti-band .copy { padding: 44px; }
.sakti-band .eyebrow { color: var(--c-yellow); }
.sakti-band .eyebrow::before { background: var(--c-yellow); }
.sakti-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.sakti-band h2 span { color: var(--c-yellow); }
.sakti-band p { color: #ffe3e4; }
.sakti-band .visual { padding: 24px 28px; display: flex; align-items: center; justify-content: center; }
.sakti-band .visual img { max-height: 240px; width: auto; max-width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(0, 0, 0, .4)); }
.sakti-chips { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 22px; }
.sakti-chips span { background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .3); padding: 6px 12px; border-radius: 999px; font-size: .8rem; font-weight: 600; }
.prize-featured { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); align-items: center; gap: 24px; background: linear-gradient(135deg, var(--c-navy), #1b3763); color: #fff; border-radius: var(--radius); padding: 28px; }
.prize-featured img { width: 100%; height: auto; }
.prize-card { padding: 0; overflow: hidden; }
.prize-card .media { aspect-ratio: 4 / 3; background: var(--c-bg); overflow: hidden; }
.prize-card .media img { width: 100%; height: 100%; object-fit: cover; }
.prize-card .media.contain img { object-fit: contain; padding: 18px; }
.prize-card .body { padding: 16px 18px 18px; }
.prize-card .body h4 { margin-bottom: 2px; }
.prize-card .body p { margin: 0; font-size: .9rem; }
.kode-table { width: 100%; border-collapse: collapse; min-width: 420px; }
.kode-table th, .kode-table td { padding: 12px 10px; border-bottom: 1px solid var(--c-line); text-align: left; vertical-align: middle; }
.kode-table th { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--c-muted); }
.kode-table .bar { height: 10px; border-radius: 999px; background: var(--c-blue-50); overflow: hidden; }
.kode-table .bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--c-red), var(--c-yellow)); border-radius: 999px; }
.kode-table tr.hl td { background: var(--c-yellow-50); }
.kode-table .num { font-weight: 800; color: var(--c-navy); white-space: nowrap; }
.rekening-list { display: grid; gap: 10px; }
.rekening { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border: 1px solid var(--c-line); border-radius: 12px; flex-wrap: wrap; }
.rekening .bank { min-width: 110px; font-weight: 700; color: var(--c-ink); }
.rekening .no { font-family: ui-monospace, Consolas, monospace; font-size: 1.05rem; font-weight: 700; color: var(--c-navy); letter-spacing: .04em; }
.rekening .an { font-size: .8rem; color: var(--c-muted); margin-left: auto; }
.home-sakti { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 32px; align-items: center; }
.home-sakti .prizes-mini { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.home-sakti .prizes-mini div { background: #fff; border: 1px solid var(--c-line); border-radius: 14px; padding: 10px; text-align: center; font-size: .8rem; font-weight: 600; color: var(--c-ink); }
.home-sakti .prizes-mini img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; margin-bottom: 6px; }
.home-sakti .prizes-mini img.contain { object-fit: contain; background: var(--c-bg); padding: 6px; }
@media (max-width: 960px) {
  .sakti-band, .prize-featured, .home-sakti { grid-template-columns: minmax(0, 1fr); }
  .sakti-band .copy { padding: 30px 24px; }
}

/* --------------------------------------------------------------------------
   Properti dijual / lelang aset
   -------------------------------------------------------------------------- */
.prop-header { padding-bottom: 28px; }
.prop-filter { display: flex; gap: 10px; flex-wrap: wrap; align-items: end; margin-top: 22px; background: #fff; border: 1px solid var(--c-line); border-radius: 16px; padding: 14px; box-shadow: var(--shadow-sm); }
.prop-filter .field { flex: 1 1 160px; }
.prop-filter .field.grow { flex: 2 1 260px; }
.prop-filter .btn { flex: 0 0 auto; }
.prop-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.prop-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; color: var(--c-text); }
.prop-card:hover { color: var(--c-text); }
.prop-media { position: relative; aspect-ratio: 4 / 3; background: var(--c-bg); overflow: hidden; }
.prop-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .35s ease; }
.prop-card:hover .prop-media img { transform: scale(1.04); }
.prop-media .badge { position: absolute; top: 12px; left: 12px; box-shadow: var(--shadow-sm); }
.prop-media .badge.st { left: auto; right: 12px; }
.prop-media .badge.feat { top: auto; bottom: 12px; left: 12px; }
.prop-card.is-terjual .prop-media img { filter: grayscale(.6); opacity: .8; }
.prop-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; }
.prop-price { font-weight: 800; color: var(--c-red); font-size: 1.15rem; letter-spacing: -.01em; }
.prop-price small { font-size: .72rem; font-weight: 700; color: var(--c-muted); }
.prop-price.big { font-size: 1.9rem; }
.prop-body h3 { font-size: 1.02rem; margin: 0; color: var(--c-ink); line-height: 1.35; }
.prop-loc { display: flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--c-muted); }
.prop-loc svg { width: 15px; height: 15px; color: var(--c-red); }
.prop-specs { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.prop-specs li { background: var(--c-bg); border: 1px solid var(--c-line); border-radius: 8px; padding: 3px 9px; font-size: .78rem; font-weight: 600; color: var(--c-text); }
.prop-price-row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.spec-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.spec { background: var(--c-bg); border-radius: 12px; padding: 12px 14px; }
.spec .lbl { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--c-muted); }
.spec .val { display: block; font-weight: 800; color: var(--c-navy); font-size: 1.05rem; }
.gallery-box { border-radius: var(--radius); overflow: hidden; }
.gal-main { display: block; width: 100%; padding: 0; background: var(--c-bg); position: relative; cursor: zoom-in; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); }
.gal-main img { width: 100%; height: auto; max-height: 560px; object-fit: contain; background: #0b1f3a; display: block; }
.gal-count { position: absolute; right: 12px; bottom: 12px; background: rgba(11, 31, 58, .75); color: #fff; padding: 5px 10px; border-radius: 999px; font-size: .78rem; font-weight: 600; display: inline-flex; gap: 6px; align-items: center; }
.gal-count svg { width: 14px; height: 14px; }
.gal-thumbs { display: flex; gap: 8px; overflow-x: auto; padding: 10px 2px 4px; scrollbar-width: thin; }
.gal-thumbs button { flex: 0 0 96px; height: 72px; padding: 0; border: 2px solid transparent; border-radius: 10px; overflow: hidden; background: var(--c-bg); cursor: pointer; }
.gal-thumbs button.active { border-color: var(--c-red); }
.gal-thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 120; background: rgba(5, 12, 24, .94); display: flex; align-items: center; justify-content: center; }
.lightbox img { max-width: 94vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox button { position: absolute; background: rgba(255, 255, 255, .12); color: #fff; border: 0; width: 48px; height: 48px; border-radius: 50%; font-size: 30px; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.lightbox button:hover { background: rgba(255, 255, 255, .25); }
.lightbox .lb-close { top: 16px; right: 16px; }
.lightbox .lb-close svg { width: 22px; height: 22px; }
.lightbox .lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 12px; top: 50%; transform: translateY(-50%); }
.faq { border-top: 1px solid var(--c-line); padding: 12px 0; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--c-ink); list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::after { content: "+"; color: var(--c-red); font-weight: 800; }
.faq[open] summary::after { content: "\2013"; }
.faq p { margin: 10px 0 0; color: var(--c-muted); }
.prop-cta-mobile { display: none; }
@media (max-width: 960px) {
  .prop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .prop-cta-mobile { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; background: #fff; border-top: 1px solid var(--c-line); padding: 10px 16px; justify-content: space-between; align-items: center; gap: 12px; box-shadow: 0 -8px 24px -12px rgba(11, 31, 58, .3); }
  .prop-cta-mobile strong { display: block; color: var(--c-red); font-size: 1.05rem; }
  .has-prop-cta .wa-float { bottom: 78px; }
}
@media (max-width: 560px) {
  .prop-grid { grid-template-columns: minmax(0, 1fr); }
  .prop-filter .field, .prop-filter .btn { flex-basis: 100%; }
  .prop-filter .btn { width: 100%; }
}
