html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: #0f172a;
  background: radial-gradient(1000px 600px at 10% 10%, #eef2ff 0%, rgba(238,242,255,0) 60%), radial-gradient(800px 500px at 90% 0%, #dcfce7 0%, rgba(220,252,231,0) 60%), radial-gradient(900px 600px at 30% 100%, #e0f2fe 0%, rgba(224,242,254,0) 60%), #f8fafc;
}

a { color: #0b5ed7; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 24px 24px;
}
@media (max-width: 900px) {
  .container { padding-top: 110px; }
}
@media (max-width: 600px) {
  .container { padding-top: 96px; }
}

.nav {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  padding: 6px 16px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 2000;
  background: #ffffff;
  backdrop-filter: none;
  border: 1px solid rgba(226,232,240,.8);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15,23,42,.04), inset 0 1px 0 rgba(255,255,255,.6);
}

.admin-nav {
  flex-wrap: nowrap;
  gap: 10px;
}
.admin-nav-scroll {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.admin-nav-scroll a { flex: 0 0 auto; font-size: 13px; padding: 8px 9px; }
.admin-nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.admin-nav-actions a {
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(226,232,240,.9);
  background: #f8fafc;
  color: #0f172a;
  font-weight: 800;
  white-space: nowrap;
}
.admin-nav-actions a:hover { text-decoration: none; background: #eef2ff; transform: translateY(-1px); }
.admin-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  display: none;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
  padding: 8px;
  z-index: 2100;
}
.admin-submenu.open { display: block; }
.admin-submenu a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.admin-submenu a:hover {
  background: #f8fafc;
  border-color: #e2e8f0;
  text-decoration: none;
}

.nav .brand {
  font-weight: 900;
  letter-spacing: .4px;
  margin-right: 6px;
  font-size: 18px;
  line-height: 1;
  background: linear-gradient(90deg, #0b5ed7, #0ea5e9 60%, #22c55e);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: auto;
  height: 64px;
  display: inline-block;
  border-radius: 6px;
}
@media (max-width: 900px) {
  .brand-logo { height: 52px; }
}
@media (max-width: 600px) {
  .brand-logo { height: 44px; }
}

.nav a {
  color: #0f172a;
  padding: 8px 10px;
  border-radius: 10px;
  transition: all .2s ease;
  border: 1px solid transparent;
}
.nav a.active, .nav a:hover {
  background: #eef2ff;
  border-color: #e2e8f0;
  text-decoration: none;
  transform: translateY(-1px);
}
.nav a.nav-login {
  background: #c79d3a;
  color: #0f172a;
  border-color: rgba(15,23,42,.14);
  font-weight: 900;
}
.nav a.nav-login:hover,
.nav a.nav-login.active {
  background: #c79d3a;
  color: #0f172a;
  border-color: rgba(15,23,42,.18);
  transform: translateY(-1px);
}
.menu {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.menu-item {
  position: relative;
}
.menu-item > a {
  display: inline-block;
}
.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  display: none;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
  padding: 8px;
}
.submenu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}
.submenu .menu-item a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}
.submenu .menu-item a:hover {
  background: #f8fafc;
  border-color: #e2e8f0;
}
.menu-item:hover > .submenu {
  display: block;
}
.menu-item:focus-within > .submenu {
  display: block;
}
.submenu .submenu {
  left: 100%;
  top: -8px;
}
.submenu .submenu::before {
  top: 0;
  left: -10px;
  width: 10px;
  height: 100%;
}

.nav-toggle {
  display: none;
  margin-left: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(15,23,42,.06);
  cursor: pointer;
}
@media (max-width: 900px) {
  .nav { flex-wrap: wrap; }
  .nav-toggle { display: inline-block; }
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    gap: 6px;
  }
  .menu.open { display: flex; }
  .menu-item { width: 100%; }
  .menu-item > a {
    display: block;
    width: 100%;
  }
  .submenu {
    position: static;
    display: block;
    margin-left: 10px;
    margin-top: 6px;
    box-shadow: none;
  }
  .submenu::before { display: none; }
  .submenu .submenu::before { display: none; }
  .submenu .submenu { margin-left: 10px; }
}

.card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, .06);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover {
  box-shadow: 0 24px 50px rgba(15, 23, 42, .09);
  transform: translateY(-1px);
  border-color: #e5e7eb;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 900px) {
  .grid.two { grid-template-columns: 1fr 1fr; }
  .grid.three { grid-template-columns: 1fr 1fr 1fr; }
}

.testimonial-head {
  margin-top: 26px;
  text-align: center;
}
.testimonial-head .kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  color: rgba(15,23,42,.72);
}
.testimonial-head .title {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
}
.testimonial-grid { margin-top: 18px; }
.testimonial-card {
  background: #f1f5f9;
  border-color: #e2e8f0;
  position: relative;
  overflow: hidden;
}
.testimonial-quote {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 56px;
  line-height: 1;
  color: rgba(15,23,42,.18);
  font-weight: 900;
}
.testimonial-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 16px;
}
.testimonial-name { margin-top: 10px; font-weight: 900; }
.testimonial-title { margin-top: 2px; color: #64748b; font-weight: 700; font-size: 13px; }
.testimonial-text { margin-top: 10px; color: #0f172a; line-height: 1.7; }

.closing-section { margin-top: 34px; }
.closing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .closing-grid { grid-template-columns: 1fr; }
}
.closing-kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  color: rgba(15,23,42,.7);
}
.closing-title {
  margin-top: 6px;
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
}
.closing-text {
  margin-top: 12px;
  color: rgba(15,23,42,.82);
  line-height: 1.75;
  font-weight: 700;
  max-width: 720px;
}
.closing-tagline {
  margin-top: 22px;
  font-weight: 900;
  font-size: 18px;
  color: #0f172a;
  line-height: 1.35;
}
.closing-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(226,232,240,.9);
  box-shadow: 0 22px 50px rgba(15,23,42,.10);
  background: #0f172a;
}
.closing-video iframe { width: 100%; height: 100%; display: block; }

.home-slider {
  margin-top: 14px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(226,232,240,.9);
  box-shadow: 0 22px 50px rgba(15,23,42,.10);
  background: #0f172a;
}
.home-slider-track {
  display: flex;
  width: 100%;
  transform: translateX(0);
  transition: transform .5s ease;
}
.home-slide { min-width: 100%; height: 320px; position: relative; }
.home-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) { .home-slide { height: 270px; } }
@media (max-width: 600px) { .home-slide { height: 230px; } }

.home-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(2,6,23,.35);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.home-slider-btn:hover { filter: brightness(1.06); }
.home-slider-btn.prev { left: 12px; }
.home-slider-btn.next { right: 12px; }
@media (max-width: 600px) { .home-slider-btn { display: none; } }

.home-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(2,6,23,.28);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
}
.home-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  padding: 0;
}
.home-slider-dots .dot.active { background: #ffffff; }

.site-footer {
  margin: 46px -24px 0;
  padding: 44px 24px 26px;
  background: radial-gradient(1000px 500px at 10% 0%, rgba(59,130,246,.20) 0%, rgba(59,130,246,0) 60%),
              radial-gradient(800px 500px at 90% 0%, rgba(34,197,94,.18) 0%, rgba(34,197,94,0) 55%),
              #0b1220;
  border-radius: 22px;
  border: 1px solid rgba(148,163,184,.22);
  color: #e2e8f0;
  box-shadow: 0 30px 80px rgba(2,6,23,.35);
}
@media (max-width: 600px) {
  .site-footer { margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
}

.footer-cta {
  background: linear-gradient(180deg, #0b5ed7 0%, #0a58ca 100%);
  border-radius: 18px;
  padding: 22px 22px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 45px rgba(11,94,215,.35);
}
.footer-kicker {
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 900;
  color: rgba(255,255,255,.8);
}
.footer-cta-title {
  margin-top: 8px;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.2;
  color: #ffffff;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.footer-cta-btn:hover { text-decoration: none; filter: brightness(1.04); }
@media (max-width: 900px) {
  .footer-cta { flex-direction: column; align-items: stretch; }
  .footer-cta-btn { justify-content: center; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 22px;
  margin-top: 28px;
  align-items: start;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(148,163,184,.22);
  padding: 10px;
}
.footer-logo.placeholder { width: 110px; height: 110px; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(148,163,184,.22); }
.footer-brand-name { font-weight: 900; letter-spacing: .3px; color: #e2e8f0; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.footer-social-link {
  color: rgba(226,232,240,.9);
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(148,163,184,.22);
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(2,6,23,.18);
  text-decoration: none;
}
.footer-social-link:hover { text-decoration: none; border-color: rgba(226,232,240,.35); }

.footer-col-title { font-weight: 900; color: #e2e8f0; margin-bottom: 12px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: rgba(226,232,240,.85); text-decoration: none; font-weight: 700; }
.footer-links a:hover { text-decoration: underline; }

.footer-contact { display: grid; gap: 12px; }
.footer-contact-label { font-weight: 900; color: #e2e8f0; }
.footer-contact-val { color: rgba(226,232,240,.85); margin-top: 4px; line-height: 1.6; font-weight: 700; }

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(148,163,184,.22);
  color: rgba(226,232,240,.8);
  font-weight: 700;
  text-align: center;
}

.btn {
  background: linear-gradient(180deg, #0b5ed7 0%, #0a58ca 100%);
  color: white;
  border: 0;
  padding: 11px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 8px 18px rgba(11, 94, 215, .35), inset 0 1px 0 rgba(255,255,255,.3);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.btn.sm {
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
}
.btn.secondary {
  background: linear-gradient(180deg, #334155 0%, #1f2937 100%);
  box-shadow: 0 8px 18px rgba(31, 41, 55, .25), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn.danger {
  background: linear-gradient(180deg, #dc2626 0%, #b91c1c 100%);
  box-shadow: 0 8px 18px rgba(185, 28, 28, .3), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}
.btn.whatsapp {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 8px 18px rgba(34, 197, 94, .35), inset 0 1px 0 rgba(255,255,255,.25);
}

.muted {
  color: #64748b;
  font-size: 14px;
  margin-top: 8px;
}

.form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

input[type="text"], input[type="email"], input[type="password"], textarea, select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  box-sizing: border-box;
  font-size: 15px;
  background: #ffffff;
  transition: box-shadow .12s ease, border-color .12s ease;
  outline: none;
}
input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="password"]::placeholder, textarea::placeholder {
  color: #9ca3af;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 4px rgba(14,165,233,.15);
}

textarea { min-height: 120px; }

.choice-list {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
}
.choice-group {
  margin-top: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
  padding: 10px 12px;
}
.choice-group-title {
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 8px;
}
.choice-subgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.choice-subgrid .choice-item { margin: 0; }
.choice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #0f172a;
  user-select: none;
}
.choice-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #0b5ed7;
}
.choice-other {
  margin-top: 10px;
}
@media (min-width: 900px) {
  .choice-subgrid { grid-template-columns: 1fr 1fr; }
}

.alert {
  padding: 10px 12px;
  border-radius: 12px;
  margin: 12px 0;
  border: 1px solid transparent;
}
.alert-danger {
  background: #fee2e2;
  border-color: #fecaca;
  color: #7f1d1d;
}
.alert-success {
  background: #dcfce7;
  border-color: #bbf7d0;
  color: #14532d;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table th, .table td {
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  padding: 10px 8px;
  vertical-align: top;
}
.table th { background: #f1f5f9; font-weight: 700; }
.table tbody tr:hover td { background: #f8fafc; }
.table tbody tr:nth-child(even) td { background: #fcfdff; }

.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e2e8f0;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
}
.badge.success {
  background: #dcfce7;
  color: #166534;
}
.badge.danger {
  background: #fee2e2;
  color: #991b1b;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.post-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(15,23,42,.06);
}
.post-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.post-card .inner {
  padding: 10px;
}
.post-title {
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 0 0 6px 0;
}
.post-meta {
  font-size: 12px;
  color: #64748b;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 24px rgba(15,23,42,.06);
}
.carousel-track {
  display: flex;
  transition: transform .3s ease;
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
}
.carousel-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 6px;
}
.carousel-btn {
  background: rgba(255,255,255,.9);
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(15,23,42,.1);
}
.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.1);
}
.carousel-dot.active {
  background: #0b5ed7;
}

.news-hero {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  margin: 10px 0;
  display: block;
}
@media (max-width: 600px) {
  .carousel-slide img,
  .news-hero { height: 220px; }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: none;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  z-index: 30000;
}
.lightbox.lightbox-bottom {
  align-items: flex-end;
  padding: 24px 16px;
}
.lightbox.open { display: flex; pointer-events: auto; }
.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox .close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255,255,255,.9);
  border: 0;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,.2);
}

.hero {
  padding: clamp(24px, 6vw, 40px);
  border-radius: 20px;
  background: radial-gradient(100% 200% at 100% 0%, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 50%), linear-gradient(135deg, #0b5ed7 0%, #0ea5e9 50%, #0f172a 100%);
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(2, 6, 23, .25), inset 0 1px 0 rgba(255,255,255,.3);
  margin-top: 12px;
}
.hero h1 { margin: 0 0 10px 0; font-size: clamp(26px, 4vw, 36px); font-weight: 900; letter-spacing: .2px; }
.hero p { margin: 0; opacity: .92; line-height: 1.5; }

.content img { max-width: 100%; height: auto; }
.content { overflow-x: auto; }
.content table { width: 100%; min-width: 720px; border-collapse: collapse; border: 1px solid #94a3b8; }
.content td, .content th { border: 1px solid #cbd5e1; padding: 10px; }
.content thead th { background: #f1f5f9; border-bottom: 2px solid #94a3b8; }
.content tbody tr:nth-child(even) td { background: #f8fafc; }
.content tbody tr:hover td { background: #f1f5f9; }
.content h1, .content h2, .content h3 { margin-top: 18px; }
/* Jarak ekstra elemen pertama setelah header agar tidak menyatu */
.container > .card:first-of-type { margin-top: 12px; }
.container > .banner:first-of-type { margin-top: 12px; }
@media (max-width: 768px) {
  .content table { min-width: 600px; }
  .content td, .content th { padding: 8px; }
}
@media (max-width: 520px) {
  .content table { min-width: 520px; }
  .content td, .content th { padding: 7px; font-size: 14px; }
}

/* Separator per penjelasan di dalam sel */
.content td p {
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}
.content td p + p { margin-top: 0; }
.content td p:last-child { border-bottom: 0; }
.content td ul, .content td ol {
  margin: 6px 0;
  padding-left: 18px;
}
.content td li {
  padding: 6px 0;
  border-bottom: 1px dashed #e2e8f0;
}
.content td li:last-child { border-bottom: 0; }

.banner {
  margin: 12px 0 18px 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15,23,42,.06);
}
.banner img {
  width: 100%;
  height: auto;
  display: block;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.stat {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(15,23,42,.06);
}
.stat .num {
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
}
.stat .label {
  color: #64748b;
  font-size: 13px;
}

.section {
  margin: 16px 0;
}
.section-title {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 12px 0;
  color: #0f172a;
}
.app-process-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.app-process-badges { display: inline-flex; gap: 8px; flex-wrap: wrap; }
.app-steps {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.app-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 900;
  color: #0f172a;
}
.app-step .num {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e2e8f0;
  color: #0f172a;
  font-size: 12px;
}
.app-step.active { background: #eef2ff; border-color: #c7d2fe; }
.app-step.active .num { background: #0b5ed7; color: #ffffff; }
.app-step.done { background: #dcfce7; border-color: #bbf7d0; }
.app-step.done .num { background: #16a34a; color: #ffffff; }
.app-process-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.app-process-main {
  display: grid;
  gap: 16px;
  align-content: start;
}
.app-step-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.app-subtitle {
  margin-top: 14px;
  margin-bottom: 8px;
  font-weight: 900;
  font-size: 14px;
  color: #0f172a;
}
.app-actions-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.app-actions-row form { margin: 0; }
.app-actions-row .btn { white-space: nowrap; }
.app-actions-row .btn.btn-block { width: 100%; white-space: normal; }
.app-actions-bottom { justify-content: space-between; width: 100%; }
.app-actions-bottom .app-actions-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.app-process-main .section { margin: 12px 0; }
.app-process-main .section-title { font-size: 16px; margin-bottom: 10px; }
@media (min-width: 1000px) {
  .app-process-grid { grid-template-columns: 420px 1fr; }
}
.gallery-event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.gallery-event-card { color: inherit; text-decoration: none; padding: 0; overflow: hidden; }
.gallery-event-card:hover { text-decoration: none; }
.gallery-cover {
  position: relative;
  width: 100%;
  height: 180px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}
.gallery-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(15,23,42,.86);
  color: #ffffff;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}
.gallery-meta { padding: 10px 12px; }
.gallery-title { font-weight: 900; color: #0f172a; line-height: 1.25; }
.gallery-date { margin-top: 4px; color: #64748b; font-size: 12px; font-weight: 700; }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  padding: 0 12px 12px 12px;
}
.gallery-thumb {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  aspect-ratio: 1 / 1;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.gallery-photo {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}
.gallery-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .gallery-cover { height: 160px; }
  .gallery-photo img { height: 160px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
}

.scope-wrap { margin-top: 18px; }
.scope-head { text-align: center; margin: 16px 0 14px 0; }
.scope-kicker { font-weight: 900; letter-spacing: .5px; font-size: 12px; color: #0f172a; opacity: .9; }
.scope-title { margin-top: 6px; font-weight: 900; font-size: clamp(18px, 2.6vw, 28px); color: #0f172a; }
.scope-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 12px; }
.scope-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(226,232,240,.9);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15,23,42,.06);
}
.scope-img { height: 240px; background: #e2e8f0; }
.scope-img-sipil { background: linear-gradient(135deg, rgba(59,130,246,.25), rgba(34,197,94,.2)); }
.scope-img-teknik { background: linear-gradient(135deg, rgba(14,165,233,.25), rgba(99,102,241,.2)); }
.scope-img-nontek { background: linear-gradient(135deg, rgba(245,158,11,.22), rgba(239,68,68,.15)); }
.scope-body {
  width: min(92%, 420px);
  margin: -64px auto 18px auto;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 18px;
  padding: 16px 16px 14px 16px;
  box-shadow: 0 14px 30px rgba(15,23,42,.08);
}
.scope-card-title { text-align: center; font-weight: 900; font-size: 13px; letter-spacing: .3px; color: #0f172a; }
.scope-list { margin: 12px 0 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.scope-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #0f172a;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.35;
}
.scope-list li::before { content: "✓"; font-weight: 900; color: #0f172a; opacity: .85; }
@media (min-width: 900px) {
  .scope-grid { grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
  .scope-img { height: 220px; }
}
.columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
}
@media (min-width: 900px) {
  .columns.two { grid-template-columns: 1fr 1fr; }
  .columns.three { grid-template-columns: 1fr 1fr 1fr; }
}
.pill {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 12px 24px rgba(15,23,42,.06), inset 0 1px 0 rgba(255,255,255,.4);
}
.pill h3 {
  margin: 4px 0 10px 0;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}
.pill h4 {
  margin: 8px 0 8px 0;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}
.pill ul {
  margin: 0;
  padding-left: 16px;
  color: #334155;
  line-height: 1.5;
}
.pill li { margin: 6px 0; }
.pill p { margin: 6px 0; color: #334155; }

.tabs { margin-top: 8px; }
.tab-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(15,23,42,.06);
}
.tab-btn.active {
  background: #eef2ff;
  border-color: #e2e8f0;
}
.tab-panel {
  margin-top: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 12px 24px rgba(15,23,42,.06);
  position: relative;
}

.autocomplete-wrapper {
  position: relative;
  width: 100%;
}

.autocomplete-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 320px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(15,23,42,.12);
  z-index: 5000;
  display: none;
  margin-top: 4px;
}

.autocomplete-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  border-bottom: 1px solid #f1f5f9;
  color: #0f172a;
  line-height: 1.4;
}
.autocomplete-item:last-child { border-bottom: 0; }
.autocomplete-item:hover { background: #f8fafc; }
.autocomplete-item strong { color: #0b5ed7; }
.autocomplete-item .meta { display: block; font-size: 12px; color: #64748b; margin-top: 2px; }

.hidden { display: none; }
