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

:root {
  --navy:     #0f2640;
  --navy2:    #1a3a5c;
  --navy3:    #1e4878;
  --gold:     #c8973a;
  --gold2:    #e8b84b;
  --gold-lt:  #fdf3e3;
  --blue-lt:  #e6f1fb;
  --white:    #ffffff;
  --light:    #f0f4f8;
  --surface:  #f7f9fc;
  --text:     #1a2332;
  --muted:    #5a6a7a;
  --border:   #dde5ee;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

[id] { scroll-margin-top: 96px; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--light);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===================== TOP BAR ===================== */
.topbar {
  background: #0a1e33;
  color: #8fb3d4;
  font-size: 12px;
  padding: 7px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar span { display: flex; align-items: center; gap: 5px; }
.topbar i { font-size: 13px; color: var(--gold); }

/* ===================== NAVBAR ===================== */
.navbar {
  background: linear-gradient(110deg, #071a2d 0%, var(--navy) 42%, var(--navy3) 100%);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 24px rgba(0,0,0,0.28);
  border-bottom: 1px solid rgba(232,184,75,.18);
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  flex: 1;
}
.logo-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px;
}
.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-img i { font-size: 26px; color: var(--navy); }
.logo-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.logo-text p { font-size: 11px; color: #8fb3d4; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a,
.nav-drop-toggle {
  color: #adc5dd;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-drop-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-links a:hover,
.nav-links a.active,
.nav-dropdown.open .nav-drop-toggle,
.nav-drop-toggle:hover {
  background: rgba(200,151,58,.15);
  color: var(--gold2);
}
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 180px;
  max-height: 180px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  padding: 8px;
  z-index: 120;
}
.nav-dropdown.open .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 7px;
}
.dropdown-menu a:hover {
  background: var(--gold-lt);
  color: var(--navy);
}
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold2) !important; color: var(--navy) !important; }

.hamburger { display: none; cursor: pointer; color: #fff; font-size: 24px; padding: 8px; }
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--navy);
  padding: 16px 24px 20px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.mobile-menu a { color: #adc5dd; padding: 10px 14px; border-radius: 6px; display: block; font-size: 14px; }
.mobile-menu a:hover { background: rgba(200,151,58,.15); color: var(--gold2); }

/* ===================== HERO ===================== */
.hero {
  background: url("../assets/hero2.png") center / cover no-repeat;
  min-height: calc(100vh - 116px);
  padding: 72px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-deco1 {
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(200,151,58,.06);
  border-radius: 50%;
}
.hero-deco2 {
  position: absolute;
  bottom: -100px; right: 60px;
  width: 250px; height: 250px;
  background: rgba(200,151,58,.04);
  border-radius: 50%;
}
.hero-deco1, .hero-deco2, .hero-deco3 { z-index: 0; }
.hero-deco3 {
  position: absolute;
  top: 20px; left: 30%;
  width: 1px; height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.05), transparent);
}
.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.82);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(15,38,64,.14);
}
.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero h2 span { color: #8a5c13; }
.hero p {
  color: #23384f;
  font-size: 16px;
  line-height: 1.75;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
.hero-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-gold {
  background: var(--navy);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .2s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { background: var(--navy3); color: var(--white); }
.btn-ghost {
  background: rgba(255,255,255,.76);
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid rgba(15,38,64,.24);
  transition: all .2s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); background: var(--white); }

/* ===================== STATS ===================== */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--surface); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}
.stat-label { font-size: 12px; color: var(--muted); margin-top: 3px; }
.stat-note { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ===================== QUICK LINKS ===================== */
.quick-links {
  background: linear-gradient(135deg, var(--gold-lt), var(--blue-lt));
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
}
.quick-links-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.quick-link {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,38,64,.08);
  border-radius: 12px;
  color: var(--navy);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s;
}
.quick-link:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 8px 18px rgba(15,38,64,.1);
}
.quick-link i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ===================== LAYANAN ===================== */
.section { padding: 56px 32px; }
.section-alt { padding: 56px 32px; background: var(--white); }
.section-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
.section-hdr-left {}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 6px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}
.see-all {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
  white-space: nowrap;
}
.see-all:hover { color: var(--navy); }

.layanan-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.layanan-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all .2s;
  cursor: pointer;
}
.layanan-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(200,151,58,.12);
}
.layanan-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.layanan-icon i { font-size: 26px; }
.ic-blue  { background: #e6f1fb; } .ic-blue  i { color: #185fa5; }
.ic-green { background: #eaf5e8; } .ic-green i { color: #3b6d11; }
.ic-amber { background: #fdf3e3; } .ic-amber i { color: #ba7517; }
.ic-purple{ background: #eeeffe; } .ic-purple i { color: #534ab7; }
.ic-red   { background: #fdeaea; } .ic-red   i { color: #a32d2d; }
.ic-teal  { background: #e3f5f0; } .ic-teal  i { color: #0f6e56; }
.ic-navy  { background: #e6f1fb; } .ic-navy  i { color: var(--navy); }
.ic-pink  { background: #fbe8f0; } .ic-pink  i { color: #993556; }
.layanan-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}
.layanan-desc {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.5;
}

/* ===================== BERITA ===================== */
.berita-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.berita-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .2s;
  cursor: pointer;
}
.berita-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border-color: #b5c8dc;
}
.berita-thumb {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
}
.bt1 { background: #e6f1fb; }
.bt2 { background: #eaf5e8; }
.bt3 { background: var(--gold-lt); }
.btblue { background: #e6f1fb; }
.btgreen { background: #eaf5e8; }
.btamber { background: var(--gold-lt); }
.btblue i { color: #185fa5; }
.btgreen i { color: #3b6d11; }
.btamber i { color: #ba7517; }
.berita-body { padding: 14px 16px; }
.berita-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.tag-blue   { background: #e6f1fb; color: #185fa5; }
.tag-green  { background: #eaf5e8; color: #3b6d11; }
.tag-amber  { background: #fdf3e3; color: #ba7517; }
.berita-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 8px;
}
.berita-summary {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin-bottom: 10px;
}
.berita-date {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.berita-date i { font-size: 12px; }

/* ===================== PENGUMUMAN ===================== */
.pgm-list { list-style: none; }
.pgm-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.pgm-item:last-child { border-bottom: none; }
.pgm-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}
.pgm-content {}
.pgm-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.pgm-date { font-size: 11px; color: var(--muted); }

/* ===================== VISI MISI ===================== */
.visi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.visi-card {
  background: var(--white);
  border-radius: 12px;
  padding: 26px;
  border: 1px solid var(--border);
}
.visi-card.featured {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-color: transparent;
  color: var(--white);
}
.visi-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gold);
  margin-bottom: 12px;
}
.visi-card.featured .visi-label { color: var(--gold2); }
.visi-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--navy);
}
.visi-card.featured .visi-text { color: var(--white); }
.misi-list { list-style: none; margin-top: 4px; }
.misi-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
.misi-list li i { color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

/* ===================== PROFIL DETAIL & PPID ===================== */
.profil-detail {
  background: linear-gradient(180deg, var(--surface) 0%, var(--gold-lt) 100%);
}
.profil-note {
  background: var(--navy);
  color: #cfe0ef;
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.08);
}
.detail-grid,
.struktur-grid,
.history-grid,
.ppid-grid {
  display: grid;
  gap: 16px;
}
.detail-grid { grid-template-columns: .95fr 1.35fr; margin-bottom: 22px; }
.struktur-grid { grid-template-columns: repeat(2, 1fr); }
.history-grid { grid-template-columns: .9fr 1.1fr; margin-top: 16px; }
.ppid-grid { grid-template-columns: repeat(3, 1fr); }
.struktur-wrap { margin-top: 8px; }
.small-title { font-size: 22px; margin-bottom: 14px; }
.detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  min-width: 0;
}
.detail-card.primary {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-color: transparent;
  color: var(--white);
}
.detail-card h3 {
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 8px;
}
.detail-card.primary h3,
.detail-card.primary p { color: var(--white); }
.detail-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.detail-card p:last-child { margin-bottom: 0; }
.doc-link {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}
.doc-link:hover { color: var(--navy); }
.detail-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.detail-list,
.history-list {
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.detail-list li,
.history-list li { margin-bottom: 6px; }
.detail-list li::marker,
.history-list li::marker { color: var(--gold); }
.uptd-table-wrap {
  margin-top: 12px;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.uptd-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 13px;
}
.uptd-table th,
.uptd-table td {
  border-bottom: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.uptd-table th {
  background: var(--navy);
  color: var(--gold2);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.uptd-table td:first-child,
.uptd-table th:first-child {
  width: 54px;
  text-align: center;
}
.uptd-table tr:last-child td { border-bottom: none; }
.uptd-table tbody tr:nth-child(even) { background: var(--surface); }
.uptd-table td:nth-child(2) {
  color: var(--navy);
  font-weight: 600;
}
.uptd-table td:nth-child(3) {
  color: var(--muted);
}
.uptd-extra-row {
  display: none;
}
.uptd-table.show-all .uptd-extra-row {
  display: table-row;
}
.uptd-toggle {
  margin-top: 14px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.uptd-toggle:hover {
  background: var(--navy3);
  transform: translateY(-1px);
}

/* ===================== INFO BAR ===================== */
.info-bar {
  background: linear-gradient(135deg, #0a1e33, var(--navy));
  padding: 50px 32px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.info-block h3 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gold2);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.info-block p {
  font-size: 13px;
  color: #8fb3d4;
  line-height: 1.9;
}
.info-block a { color: #8fb3d4; transition: color .2s; }
.info-block a:hover { color: var(--gold2); }
.sosmed { display: flex; gap: 10px; margin-top: 12px; }
.sosmed a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8fb3d4;
  font-size: 16px;
  transition: all .2s;
}
.sosmed a:hover { border-color: var(--gold2); color: var(--gold2); }
.map-block {
  grid-column: 1 / -1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.map-block iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  color: var(--gold2) !important;
  font-size: 13px;
  font-weight: 600;
}

/* ===================== FOOTER ===================== */
footer {
  background: #0a1427;
  padding: 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  inset: -12px;
  background:
    linear-gradient(90deg, rgba(6,18,32,.96) 0%, rgba(10,30,51,.9) 46%, rgba(10,30,51,.78) 100%),
    url("../assets/footer.png") center / cover no-repeat;
  filter: blur(6px);
  transform: scale(1.03);
  z-index: 0;
}
footer > * {
  position: relative;
  z-index: 1;
}
.footer-main {
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr 1fr;
  gap: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 4px;
}
.footer-col h4 {
  color: var(--gold2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
}
.footer-col p,
.footer-col a {
  color: #d8e6f2;
  font-size: 13px;
  line-height: 1.8;
}
.footer-col a {
  display: block;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold2); }
.footer-bottom {
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
footer p { font-size: 12px; color: #3a5a7a; }
footer a { color: #c8d9e8; transition: color .2s; }
footer a:hover { color: var(--gold); }
.footer-bottom p { color: #b7cadb; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  html { scroll-padding-top: 16px; }
  [id] { scroll-margin-top: 16px; }
  .topbar { display: none; }
  .navbar { padding: 0 16px; position: relative; flex-wrap: wrap; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .mobile-menu.open { display: flex; }
  .hero { min-height: calc(100vh - 76px); padding: 56px 16px; }
  .hero h2 { font-size: 28px; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .quick-links { padding: 20px 16px; }
  .quick-links-inner { grid-template-columns: 1fr; }
  .section, .section-alt { padding: 36px 16px; }
  .layanan-grid { grid-template-columns: repeat(2,1fr); }
  .berita-grid { grid-template-columns: 1fr; }
  .visi-grid { grid-template-columns: 1fr; }
  .detail-grid, .struktur-grid, .history-grid, .ppid-grid { grid-template-columns: 1fr; }
  .history-grid,
  .history-grid > .detail-card {
    min-width: 0;
    max-width: 100%;
  }
  .history-list {
    padding-left: 16px;
    font-size: 13px;
  }
  .uptd-table {
    min-width: 560px;
    font-size: 12px;
  }
  .uptd-table th,
  .uptd-table td {
    padding: 9px 10px;
  }
  .uptd-table-wrap {
    width: 100%;
  }
  .info-bar { grid-template-columns: 1fr; padding: 32px 16px; }
  .section-hdr { flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer-main { grid-template-columns: 1fr; padding: 28px 16px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; padding: 16px; }
}

@media (max-width: 480px) {
  .layanan-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .detail-card {
    padding: 16px;
  }
  .uptd-table {
    min-width: 500px;
  }
  .uptd-toggle {
    width: 100%;
    justify-content: center;
  }
}
