@charset "UTF-8";

:root {
  --app-bg: #f5f7fb;
  --app-card: #ffffff;
  --app-text: #0f172a;
  --app-muted: #64748b;
  --app-border: rgba(15, 23, 42, 0.08);
  --app-accent: #16a34a;
  --app-accent-2: #10b981;
  --app-shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.08);
  --app-shadow-md: 0 12px 34px rgba(15, 23, 42, 0.10);
  --app-radius: 16px;
  --app-radius-sm: 12px;
  --app-ring: 0 0 0 3px rgba(22, 163, 74, 0.25);
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--app-bg);
  color: var(--app-text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navbar-app {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--app-border);
}
@media (max-width: 991.98px) {
  body.is-offcanvas-open .navbar-app .navbar-toggler {
    opacity: 0;
    pointer-events: none;
  }
  body.is-offcanvas-open {
    overflow: hidden;
  }
  .offcanvas,
  .offcanvas .offcanvas-body {
    background: #fff;
  }
  .offcanvas {
    height: 100dvh;
    overscroll-behavior: contain;
  }
  .offcanvas .offcanvas-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .offcanvas.offcanvas-start {
    border-right: 1px solid var(--app-border);
    box-shadow: var(--app-shadow-md);
  }
  .offcanvas-header {
    border-bottom: 1px solid var(--app-border);
  }
  .offcanvas-body .nav-link {
    padding: .6rem .75rem;
    border-radius: 12px;
  }
  .offcanvas-body .nav-link.active::after {
    display: none;
  }
  .offcanvas-body .nav-link.active {
    background: rgba(22, 163, 74, .08);
    border: 1px solid rgba(22, 163, 74, .18);
  }
}
.navbar .navbar-brand {
  letter-spacing: -0.01em;
}
.navbar-title {
  display: inline-block;
  max-width: 52vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 992px) {
  .navbar-title {
    max-width: none;
  }
}
.navbar .nav-link {
  color: rgba(15, 23, 42, 0.78);
}
.navbar .nav-link:hover {
  color: rgba(15, 23, 42, 1);
}
.profil-hero .wave,
.stats-hero .wave,
.news-hero .wave,
.umkm-hero .wave,
.layanan-hero .wave {
  display: none;
}
.nav-link.active {
  color: rgba(15, 23, 42, 1);
  font-weight: 600;
  position: relative;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: .5rem;
  right: .5rem;
  bottom: .25rem;
  height: 2px;
  background: var(--app-accent);
  border-radius: 999px;
  opacity: .9;
}

.app-shell {
  min-height: calc(100vh - 72px);
}

.card {
  border-color: var(--app-border);
  background: var(--app-card);
  border-radius: var(--app-radius);
}
.card-hover {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: var(--app-shadow-md);
  border-color: rgba(15, 23, 42, 0.12);
}

.cover-placeholder {
  background: radial-gradient(1200px 300px at 20% 20%, rgba(13,110,253,.20), transparent 55%),
              radial-gradient(900px 300px at 80% 10%, rgba(20,184,166,.16), transparent 55%),
              linear-gradient(135deg, rgba(15,23,42,.06), rgba(15,23,42,.02));
}

.btn {
  border-radius: 999px;
}
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--app-ring);
}

.btn-accent {
  background: var(--app-accent);
  border-color: var(--app-accent);
  color: #fff;
}
.btn-accent:hover {
  background: #15803d;
  border-color: #15803d;
  color: #fff;
}
.btn-accent-outline {
  border-color: rgba(22, 163, 74, .35);
  color: rgba(15, 23, 42, .9);
  background: #fff;
}
.btn-accent-outline:hover {
  border-color: rgba(22, 163, 74, .6);
  background: rgba(22, 163, 74, .06);
  color: rgba(15, 23, 42, 1);
}

.badge-accent {
  background: rgba(22, 163, 74, .1);
  color: #166534;
  border: 1px solid rgba(22, 163, 74, .2);
}

.hero-bg {
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: var(--app-radius);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,.72), rgba(15,23,42,.22) 55%, rgba(15,23,42,.58));
}
.glass-panel {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
.feature-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.feature-item:hover {
  background: rgba(255, 255, 255, 0.12);
}

.content img,
.content iframe,
.content video {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.app-footer {
  border-top: 1px solid var(--app-border);
  background: rgba(255, 255, 255, 0.7);
}
.app-footer-badge {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 163, 74, .12);
  color: #166534;
  border: 1px solid rgba(22, 163, 74, .18);
}
.app-footer-head {
  font-weight: 700;
  font-size: .875rem;
  margin-bottom: 10px;
  color: rgba(15, 23, 42, .92);
}
.app-footer-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.app-footer-link {
  color: rgba(15, 23, 42, .72);
  text-decoration: none;
}
.app-footer-link:hover {
  color: rgba(15, 23, 42, 1);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.app-footer-subscribe {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.app-footer-input {
  flex: 1 1 auto;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255,255,255,.92);
  padding: .7rem .95rem;
}
.app-footer-input:focus {
  outline: none;
  box-shadow: var(--app-ring);
  border-color: rgba(22, 163, 74, 0.35);
}
.app-footer-send {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(22, 163, 74, .25);
  background: rgba(22, 163, 74, .12);
  color: #166534;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.app-footer-send:hover {
  background: rgba(22, 163, 74, .18);
  border-color: rgba(22, 163, 74, .35);
}
.app-footer-contact {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(15, 23, 42, .72);
  font-size: .9rem;
}
.app-footer-contact li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}
.app-footer-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,.88);
  color: rgba(15, 23, 42, .72);
}
.app-footer-icon svg {
  width: 16px;
  height: 16px;
}
.app-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.app-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,.88);
  color: rgba(15, 23, 42, .72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.app-social-btn:hover {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.25);
  color: rgba(15, 23, 42, 1);
}
.app-social-btn svg {
  width: 18px;
  height: 18px;
}
.app-footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(245, 247, 251, 0.65);
}

.app-backtotop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(22, 163, 74, 0.22);
  background: rgba(255,255,255,.92);
  color: rgba(15, 23, 42, .78);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, background .16s ease, border-color .16s ease;
  z-index: 80;
}
.app-backtotop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.app-backtotop:hover {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.35);
  color: rgba(15, 23, 42, 1);
}
.app-backtotop:focus-visible {
  outline: none;
  box-shadow: var(--app-ring);
}

.text-muted {
  color: var(--app-muted) !important;
}

.icon-16 {
  width: 16px;
  height: 16px;
}

.breadcrumb-item a {
  color: rgba(15, 23, 42, .8);
}
.breadcrumb-item a:hover {
  color: rgba(15, 23, 42, 1);
}

.section-title {
  letter-spacing: .08em;
  font-weight: 700;
  font-size: .75rem;
  color: rgba(22, 163, 74, 0.95);
}

@media (max-width: 575.98px) {
  .display-6 {
    font-size: 1.9rem;
  }
  .navbar .nav-link.active::after {
    left: .75rem;
    right: .75rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.sticky-chips {
  position: sticky;
  top: calc(var(--app-navbar-h, 72px) + 10px);
  z-index: 30;
  background: rgba(245, 247, 251, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--app-radius);
  padding: 10px;
}

.pagination-circle {
  --pager-size: 42px;
  --pager-gap: 10px;
  --pager-border: rgba(15, 23, 42, 0.14);
  --pager-text: rgba(15, 23, 42, 0.72);
  --pager-bg: #fff;
  --pager-active-bg: var(--app-accent);
  --pager-active-border: var(--app-accent);
  --pager-active-text: #fff;
  gap: var(--pager-gap);
}
.pagination-circle .page-item {
  margin: 0;
}
.pagination-circle .page-link {
  width: var(--pager-size);
  height: var(--pager-size);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--pager-border);
  background: var(--pager-bg);
  color: var(--pager-text);
  box-shadow: none;
}
.pagination-circle .page-link:hover {
  background: rgba(22, 163, 74, 0.06);
  border-color: rgba(22, 163, 74, 0.28);
  color: rgba(15, 23, 42, 1);
}
.pagination-circle .page-link:focus {
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.22);
}
.pagination-circle .page-item.active .page-link {
  background: var(--pager-active-bg);
  border-color: var(--pager-active-border);
  color: var(--pager-active-text);
}
.pagination-circle .page-item.disabled .page-link {
  opacity: 0.45;
}
.pagination-circle .pager-icon {
  width: 18px;
  height: 18px;
}
@media (max-width: 575.98px) {
  .pagination-circle {
    --pager-size: 38px;
    --pager-gap: 8px;
  }
}
