/* ============================================================
   BPR SKA – Website Stylesheet
   Tone: Refined Financial / Executive Elegance
   Fonts: Playfair Display + DM Sans
   Colors: Navy #1a3a5c | Gold #c9a84c | Cream #f8f6f1 | White
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a3a5c;
  --navy-deep: #0f2236;
  --navy-mid: #254e7a;
  --gold: #c9a84c;
  --gold-light: #e8d08a;
  --gold-pale: #fdf8ed;
  --cream: #f8f6f1;
  --slate: #4a5568;
  --muted: #718096;
  --light: #e8ecf0;
  --border: #dde3ea;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26,58,92,.08);
  --shadow-lg: 0 12px 48px rgba(26,58,92,.14);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy-deep);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 20px rgba(26,58,92,.1); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 2rem;
}

.nav-brand { display: flex; align-items: center; gap: .75rem; cursor: pointer; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-main { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.brand-sub { font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: .25rem; }

.nav-link {
  display: flex; align-items: center; gap: .3rem;
  padding: .5rem .85rem; border-radius: 8px;
  font-size: .875rem; font-weight: 500; color: var(--slate);
  text-decoration: none; cursor: pointer; border: none; background: none;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--cream); }
.nav-link.active { font-weight: 600; }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + .5rem); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .5rem; min-width: 220px;
  box-shadow: var(--shadow-lg);
  animation: dropIn .2s ease;
}
@keyframes dropIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }
.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-item {
  display: flex; align-items: center; gap: .65rem;
  padding: .6rem .85rem; border-radius: 8px;
  font-size: .85rem; color: var(--slate); text-decoration: none;
  cursor: pointer; transition: all var(--transition);
}
.dropdown-item:hover { background: var(--cream); color: var(--navy); }
.dropdown-item svg { opacity: .7; flex-shrink: 0; }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none; flex-direction: column; gap: .25rem;
  position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1rem; box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }

/* ── PAGES ── */
.page { display: none; padding-top: 64px; min-height: 100vh; }
.page.active { display: block; }

/* ── PAGE HERO SM ── */
.page-hero-sm {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 3.5rem 0 3rem;
}
.page-hero-sm .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.page-hero-sm .section-tag { color: var(--gold); }
.page-hero-sm h1 {
  font-family: 'Playfair Display', serif; font-size: 2.25rem; font-weight: 700;
  color: var(--white); margin: .5rem 0 .75rem; line-height: 1.2;
}
.page-hero-sm p { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 520px; }

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--cream); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-tag {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; color: var(--gold); margin-bottom: .75rem;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title {
  font-family: 'Playfair Display', serif; font-size: 2.25rem; font-weight: 700;
  color: var(--navy); line-height: 1.2;
}
.section-title-sm {
  font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700;
  color: var(--navy); margin-bottom: 2rem; line-height: 1.2;
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 64px); display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
}
.hero-bg { position: absolute; inset: 0; }
.hero-grid {
  position: absolute; inset: 0; opacity: .06;
  background-image: linear-gradient(var(--white) 1px, transparent 1px), linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: .12;
}
.hero-orb.orb-1 { width: 600px; height: 600px; top: -150px; right: -100px; }
.hero-orb.orb-2 { width: 400px; height: 400px; bottom: -100px; left: 20%; }

.hero-content {
  position: relative; z-index: 2; flex: 1; padding: 4rem 2rem 4rem 10%;
  max-width: 700px;
}
.hero-badge {
  display: inline-block; padding: .35rem .85rem;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.4);
  border-radius: 999px; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 1.25rem;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-desc { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 460px; margin-bottom: 2.5rem; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-stats { display: flex; align-items: center; gap: 2rem; }
.stat-item { text-align: left; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* Hero card stack */
.hero-visual {
  position: relative; flex: 0 0 420px; padding: 2rem;
  display: flex; align-items: center; justify-content: center;
}
.hero-card-stack { position: relative; width: 300px; height: 340px; }
.hcard {
  position: absolute; background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  transition: transform var(--transition);
}
.hcard:hover { transform: translateY(-4px); }
.hcard-icon { color: var(--gold); flex-shrink: 0; }
.hcard-title { font-size: .75rem; color: rgba(255,255,255,.6); margin-bottom: .2rem; }
.hcard-val { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); }

.hcard-1 { top: 0; left: 0; right: 0; }
.hcard-2 { top: 110px; left: 20px; right: -20px; }
.hcard-3 { top: 220px; left: 0; right: 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.75rem; background: var(--gold); color: var(--navy-deep);
  border: none; border-radius: 8px; font-size: .9rem; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.75rem; background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.4); border-radius: 8px;
  font-size: .9rem; font-weight: 500; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* ── FEATURES ── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem;
}
.feature-card {
  padding: 2rem; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--white); transition: all var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold); }
.feature-icon {
  width: 52px; height: 52px; background: var(--gold-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.feature-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* ── PRODUCTS PREVIEW ── */
.products-preview { }
.prod-tab-group { display: flex; gap: .5rem; margin-bottom: 2rem; }
.prod-tab {
  padding: .55rem 1.25rem; border-radius: 8px; font-size: .875rem; font-weight: 500;
  border: 1px solid var(--border); background: var(--white); color: var(--slate); cursor: pointer;
  transition: all var(--transition);
}
.prod-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.prod-content.hidden { display: none; }
.prod-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.5rem; }
.prod-card {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  background: var(--white); transition: all var(--transition);
}
.prod-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.prod-card-accent { height: 4px; background: var(--gold); }
.prod-card-body { padding: 1.5rem; }
.prod-badge {
  display: inline-block; padding: .2rem .6rem; background: var(--gold-pale);
  color: var(--gold); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; border-radius: 4px; margin-bottom: .75rem;
}
.prod-card-body h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.prod-card-body p { font-size: .825rem; color: var(--muted); margin-bottom: 1rem; }
.prod-rate { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.prod-rate span { font-size: .8rem; font-weight: 400; color: var(--muted); margin-left: .2rem; font-family: 'DM Sans', sans-serif; }
.prod-cta { margin-top: 2.5rem; text-align: center; }

/* ── OFFICES ── */
.offices-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.office-card {
  padding: 1.75rem; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--white); display: flex; gap: 1rem; transition: all var(--transition);
}
.office-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.office-card.office-main {
  grid-column: span 3; background: var(--navy);
  border-color: var(--navy);
}
.office-card.office-main .office-icon { background: rgba(201,168,76,.15); color: var(--gold); }
.office-card.office-main .office-type { color: var(--gold); }
.office-card.office-main h4 { color: var(--white); }
.office-card.office-main p { color: rgba(255,255,255,.7); }
.office-card.office-main .office-contacts span { color: rgba(255,255,255,.85); background: rgba(255,255,255,.1); }
.office-icon {
  width: 48px; height: 48px; background: var(--gold-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.office-type { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 600; margin-bottom: .25rem; }
.office-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.office-card p { font-size: .85rem; color: var(--muted); margin-bottom: .75rem; }
.office-contacts { display: flex; gap: .5rem; flex-wrap: wrap; }
.office-contacts span {
  font-size: .75rem; padding: .25rem .65rem; background: var(--cream);
  border-radius: 999px; color: var(--slate);
}

/* ── PROFIL PAGE ── */
.profil-block { margin-bottom: 4rem; }
.profil-block .profil-label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--gold); margin-bottom: .5rem; }
.profil-block h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--navy); margin-bottom: 2rem; line-height: 1.2; }

/* Timeline */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 0; width: 2px; background: var(--border); }
.tl-item { position: relative; margin-bottom: 2.5rem; }
.tl-dot {
  position: absolute; left: -2rem; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--gold);
  transform: translateX(-6px);
}
.tl-year { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 700; color: var(--gold); margin-bottom: .4rem; }
.tl-content h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.tl-content p { font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* Visi Misi */
.visi-misi-block { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.vm-card {
  padding: 2rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--white);
}
.vm-card.vm-visi { border-top: 4px solid var(--navy); }
.vm-card.vm-misi { border-top: 4px solid var(--gold); }
.vm-card.vm-motto { border-top: 4px solid var(--slate); text-align: center; background: var(--cream); }
.vm-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--gold-pale); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.vm-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .75rem; }
.vm-card p { font-size: .875rem; color: var(--slate); line-height: 1.8; }
.motto-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-style: italic; color: var(--navy); font-weight: 600; }
.vm-card.vm-motto .vm-icon { margin: 0 auto 1.25rem; }

/* Tujuan */
.tujuan-box {
  background: var(--cream); border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
}
.tujuan-box p { font-size: 1rem; color: var(--slate); line-height: 1.8; }

/* Target */
.target-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.target-item {
  display: flex; align-items: flex-start; gap: .75rem; padding: 1rem 1.25rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  font-size: .875rem; color: var(--slate);
}
.target-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Strategi */
.strategi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; }
.strategi-card {
  padding: 1.75rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  transition: all var(--transition);
}
.strategi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.strategi-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--border); margin-bottom: .75rem; }
.strategi-card h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.strategi-card p { font-size: .825rem; color: var(--muted); line-height: 1.7; }

/* Pengurus */
.pengurus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.pengurus-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  transition: all var(--transition);
}
.pengurus-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.pengurus-avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--gold-pale);
  color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pengurus-info h4 { font-size: .9rem; font-weight: 700; color: var(--navy); }
.pengurus-info span { font-size: .75rem; color: var(--muted); }
.pemegang-saham {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 1.5rem 2rem; border-radius: var(--radius);
}
.ps-label { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.pemegang-saham h4 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--white); }

/* ── LAPORAN PAGE ── */
.laporan-menu { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.5rem; }
.laporan-menu-card {
  padding: 2rem; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); cursor: pointer; transition: all var(--transition);
  position: relative; overflow: hidden;
}
.laporan-menu-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.laporan-menu-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold); }
.laporan-menu-card:hover::before { transform: scaleX(1); }
.lm-icon { width: 52px; height: 52px; background: var(--gold-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 1.25rem; }
.laporan-menu-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.laporan-menu-card p { font-size: .8rem; color: var(--muted); }
.lm-arrow { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.1rem; color: var(--border); transition: all var(--transition); }
.laporan-menu-card:hover .lm-arrow { color: var(--gold); transform: translateX(4px); }

/* ── REPORT DETAIL PAGE ── */
.back-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.8); padding: .4rem .85rem; border-radius: 6px;
  font-size: .8rem; cursor: pointer; margin-bottom: 1.25rem;
  transition: all var(--transition); font-family: 'DM Sans', sans-serif;
}
.back-btn:hover { background: rgba(255,255,255,.2); color: var(--white); }

/* Upload */
.upload-section {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem; margin-bottom: 2.5rem;
}
.upload-header {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--slate); margin-bottom: 1.25rem;
}
.upload-drop {
  border: 2px dashed var(--border); border-radius: 10px; padding: 2.5rem;
  text-align: center; cursor: pointer; transition: all var(--transition);
  background: var(--white);
}
.upload-drop:hover { border-color: var(--gold); background: var(--gold-pale); }
.upload-drop.dragover { border-color: var(--gold); background: var(--gold-pale); }
.upload-icon { color: var(--muted); margin-bottom: .75rem; }
.upload-drop p { font-size: .9rem; color: var(--slate); }
.upload-drop small { font-size: .75rem; color: var(--muted); }
.upload-browse-btn { background: none; border: none; color: var(--gold); font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: .9rem; text-decoration: underline; }
.upload-input-row { display: flex; gap: .75rem; margin-top: 1rem; flex-wrap: wrap; }
.upload-input {
  flex: 1; padding: .65rem 1rem; border: 1px solid var(--border);
  border-radius: 8px; font-size: .875rem; font-family: 'DM Sans', sans-serif;
  color: var(--navy-deep); background: var(--white);
  outline: none; transition: border-color var(--transition);
}
.upload-input:focus { border-color: var(--gold); }

/* Files List */
.files-section { }
.files-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem;
}
.files-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.year-select {
  padding: .5rem .85rem; border: 1px solid var(--border); border-radius: 8px;
  font-size: .85rem; font-family: 'DM Sans', sans-serif; color: var(--slate);
  background: var(--white); outline: none; cursor: pointer;
}
.files-list { display: flex; flex-direction: column; gap: .75rem; }
.files-empty { text-align: center; padding: 3rem; color: var(--muted); }
.files-empty svg { margin-bottom: 1rem; opacity: .4; }
.files-empty p { font-size: .9rem; }

.file-item {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  transition: all var(--transition);
  animation: fadeIn .3s ease;
}
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }
.file-item:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.file-type-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--gold-pale);
  color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.file-info { flex: 1; }
.file-info strong { display: block; font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: .15rem; }
.file-info small { font-size: .75rem; color: var(--muted); }
.file-meta { font-size: .75rem; color: var(--muted); text-align: right; flex-shrink: 0; }
.file-actions { display: flex; gap: .5rem; }
.file-btn {
  display: flex; align-items: center; gap: .3rem; padding: .4rem .8rem;
  border-radius: 6px; font-size: .75rem; font-weight: 600; cursor: pointer;
  border: none; font-family: 'DM Sans', sans-serif; transition: all var(--transition);
}
.file-btn-dl { background: var(--navy); color: var(--white); }
.file-btn-dl:hover { background: var(--navy-mid); }
.file-btn-del { background: var(--light); color: var(--slate); }
.file-btn-del:hover { background: #fee; color: #c00; }

/* ── PRODUK FULL PAGE ── */
.produk-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.produk-full-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--white); transition: all var(--transition); }
.produk-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.produk-full-card--wide { grid-column: span 2; }
.pf-header { padding: 1.5rem; color: var(--white); }
.pf-header.pf-gold { background: linear-gradient(135deg, #a07820 0%, var(--gold) 100%); }
.pf-header.pf-navy { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%); }
.pf-header.pf-slate { background: linear-gradient(135deg, #3d5270 0%, #5a7095 100%); }
.pf-header.pf-green { background: linear-gradient(135deg, #1a5c38 0%, #2c8a55 100%); }
.pf-tag { font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; opacity: .75; margin-bottom: .3rem; }
.pf-header h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; }
.pf-body { padding: 1.5rem; }
.pf-rate-big { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: .75rem; }
.pf-rate-big span { font-size: .9rem; font-weight: 400; color: var(--muted); margin-left: .3rem; font-family: 'DM Sans', sans-serif; }
.pf-body ul { list-style: none; }
.pf-body ul li { font-size: .85rem; color: var(--slate); padding: .35rem 0; border-bottom: 1px solid var(--light); display: flex; align-items: center; gap: .5rem; }
.pf-body ul li::before { content: '—'; color: var(--gold); font-weight: 700; }
.pf-body p { font-size: .875rem; color: var(--muted); margin-bottom: 1rem; }
.depo-rates { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.depo-rate-item { padding: .75rem 1rem; background: var(--cream); border-radius: 8px; }
.dr-period { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .2rem; }
.dr-val { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); }

/* ── KONTAK PAGE ── */
.kontak-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.kontak-info h3, .kontak-form-box h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 1.75rem; }
.kontak-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.kontak-icon { width: 44px; height: 44px; background: var(--gold-pale); border-radius: 10px; color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kontak-item strong { display: block; font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.kontak-item p { font-size: .875rem; color: var(--muted); }
.kantor-list { margin-top: 1.5rem; }
.kantor-list h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 700; margin-bottom: 1rem; }
.kantor-kas-item { margin-bottom: 1rem; padding: 1rem; background: var(--cream); border-radius: 8px; }
.kantor-kas-item strong { font-size: .9rem; color: var(--navy); }
.kantor-kas-item p { font-size: .825rem; color: var(--muted); margin-top: .2rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--slate); margin-bottom: .4rem; }
.form-input {
  width: 100%; padding: .7rem 1rem; border: 1px solid var(--border);
  border-radius: 8px; font-size: .9rem; font-family: 'DM Sans', sans-serif;
  color: var(--navy-deep); background: var(--white); outline: none;
  transition: border-color var(--transition);
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1); }
.form-textarea { min-height: 130px; resize: vertical; }

/* ── FOOTER ── */
.footer {
  background: var(--navy-deep); padding: 4rem 0 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem 3rem;
  display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start;
}
.footer-tagline { font-family: 'Playfair Display', serif; font-style: italic; color: rgba(255,255,255,.5); font-size: .9rem; margin-top: 1rem; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer-col h5 { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); font-weight: 700; margin-bottom: 1rem; }
.footer-col a, .footer-col span {
  display: block; font-size: .85rem; color: rgba(255,255,255,.55);
  text-decoration: none; margin-bottom: .5rem; cursor: pointer;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 2rem;
  max-width: 1200px; margin: 0 auto;
  font-size: .75rem; color: rgba(255,255,255,.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .office-card.office-main { grid-column: span 2; }
  .hero-visual { display: none; }
  .hero-content { padding: 3rem 2rem; max-width: 100%; }
  .visi-misi-block { grid-template-columns: 1fr; }
  .kontak-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .produk-full-card--wide { grid-column: span 1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.2rem; }
  .offices-grid { grid-template-columns: 1fr; }
  .office-card.office-main { grid-column: span 1; }
  .target-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat-divider { display: none; }
  .upload-input-row { flex-direction: column; }
  .laporan-menu { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .nav-inner { padding: .75rem 1rem; }
  .section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
  .laporan-menu { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .depo-rates { grid-template-columns: 1fr; }
}
