:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --brand: #f25a2b; /* orange */
  --brand-2: #0ea5e9; /* sky blue */
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: filter 0.3s ease;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    width: min(1100px, calc(100% - 20px));
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1100px, calc(100% - 16px));
  }
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
  .site-header {
    position: sticky;
  }
  .navwrap {
    position: relative;
  }
}

.topbar {
  background: var(--brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.topbar::after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 140px;
  height: 100%;
  background: rgba(255, 255, 255, 0.22);
  transform: skewX(-24deg);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.topbar a {
  color: #fff;
  opacity: 0.95;
}
.topbar a:hover {
  opacity: 1;
  text-decoration: underline;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 0.95rem;
}
.topbar-sep {
  opacity: 0.85;
}
.topbar-right {
  display: flex;
  gap: 10px;
  align-items: center;
}
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 800;
  border: none;
  cursor: pointer;
}

/* Mobile optimization for topbar */
@media (max-width: 768px) {
  .topbar-left {
    font-size: 0.8rem;
    gap: 6px;
    min-width: 0;
    overflow: hidden;
  }
  .topbar-left a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .topbar-right {
    gap: 6px;
    flex-shrink: 0;
  }
  .topbar .icon-link {
    width: 24px;
    height: 24px;
  }
  .topbar .icon-link svg {
    width: 14px;
    height: 14px;
  }
}
.icon-link svg {
  width: 18px;
  height: 18px;
  display: block;
}
.icon-link:hover {
  background: rgba(255, 255, 255, 0.22);
  text-decoration: none;
}

/* Topbar icon style: match the original look (no big circles) */
.topbar .icon-link {
  width: 28px;
  height: 28px;
  border-radius: 0;
  background: transparent;
  opacity: 0.95;
}
.topbar .icon-link:hover {
  background: transparent;
  opacity: 1;
}
.topbar .icon-link svg {
  width: 18px;
  height: 18px;
}

.navwrap {
  background: var(--surface);
}
.header-inner {
  display: flex;
  align-items: center;
  padding: 14px 0;
  gap: 20px;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
}
@media (max-width: 768px) {
  .brand-logo {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 480px) {
  .brand-logo {
    width: 40px;
    height: 40px;
  }
}
.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.nav a {
  padding: 8px 10px;
  border-radius: 10px;
  color: #334155;
  font-weight: 650;
}
.nav a.is-active {
  color: var(--brand);
}
.nav a:hover {
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
}

/* Nav dropdown (Informasi sub menu) */
.nav-dropdown {
  position: relative;
}
.nav-dropdown summary {
  list-style: none;
}
.nav-dropdown summary::-webkit-details-marker {
  display: none;
}
.nav-dropdown-toggle {
  padding: 8px 10px;
  border-radius: 10px;
  color: #334155;
  font-weight: 650;
  cursor: pointer;
  user-select: none;
}
.nav-dropdown.is-active .nav-dropdown-toggle {
  color: var(--brand);
}
.nav-dropdown-toggle:hover {
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-top: 3px solid var(--brand);
  box-shadow: var(--shadow);
  border-radius: 0;
  overflow: hidden;
  z-index: 80;
}
.nav-dropdown[open] .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: 14px 18px;
  color: rgba(15, 23, 42, 0.6);
  font-weight: 650;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.nav-dropdown-menu a:last-child {
  border-bottom: none;
}
.nav-dropdown-menu a:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.02);
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
  .nav-dropdown[open] .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-toggle::after {
    content: " \25BC";
    font-size: 0.7em;
    margin-left: 6px;
    transition: transform 0.2s ease;
  }

  .nav-dropdown[open] .nav-dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

@media (max-width: 900px) {
  .nav-dropdown-menu {
    left: 0;
    transform: none;
    width: min(320px, calc(100vw - 32px));
  }
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.inline {
  display: inline;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(15, 23, 42, 0.15);
  background: #fff;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
  flex-shrink: 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
  transition: all 0.3s ease;
}
.mobile-menu-toggle:hover {
  background: rgba(242, 90, 43, 0.05);
  border-color: var(--brand);
}
.mobile-menu-toggle:active {
  transform: scale(0.95);
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--text);
  margin: 3px auto;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.mobile-menu-toggle.is-open {
  background: var(--brand);
  border-color: var(--brand);
}
.mobile-menu-toggle.is-open span {
  background: #fff;
}
.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.mobile-menu-overlay.is-open {
  display: block;
  opacity: 1;
}

/* Mobile responsive navigation */
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop nav in mobile */
  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    z-index: 1000;
    padding: 80px 0 40px;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
  }

  .nav.is-open {
    right: 0;
  }

  .nav a,
  .nav-dropdown-toggle {
    color: var(--text);
    font-size: 1.05rem;
    padding: 14px 24px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }

  .nav a:hover,
  .nav-dropdown-toggle:hover {
    background: rgba(242, 90, 43, 0.08);
    color: var(--brand);
  }

  .nav a.is-active {
    color: var(--brand);
    background: rgba(242, 90, 43, 0.06);
    border-left: 4px solid var(--brand);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    border: none;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: none;
    background: rgba(15, 23, 42, 0.02);
    margin: 0;
  }

  .nav-dropdown-menu a {
    color: rgba(15, 23, 42, 0.75);
    background: transparent;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    font-size: 0.95rem;
    padding-left: 40px;
  }

  .nav-dropdown-menu a:hover {
    color: var(--brand);
    background: rgba(242, 90, 43, 0.05);
  }

  .header-inner,
  .navwrap > .container > div {
    flex-wrap: nowrap !important;
  }

  .brand {
    flex: 1;
  }

  .header-actions {
    order: 2;
    gap: 8px;
  }

  .header-actions .btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .mobile-menu-toggle {
    order: 3;
    margin-left: 10px;
  }

  /* Pastikan hamburger terlihat dengan jelas */
  .navwrap .container {
    position: relative;
  }

  .mobile-menu-toggle {
    order: 3;
    margin-left: 8px;
  }

  /* Close button in menu */
  .nav::before {
    content: "✕";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
  }

  .nav::before:hover {
    background: rgba(15, 23, 42, 0.08);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-size: 0.95rem;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .btn {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  .btn-primary {
    padding: 10px 16px;
  }
}
.btn-primary {
  border-color: rgba(242, 90, 43, 0.45);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(242, 90, 43, 0.22);
}
.btn-primary:hover {
  filter: brightness(0.98);
}
.btn-ghost {
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.06);
}

.site-main {
  padding: 24px 0 56px;
}

.alert {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  margin: 10px auto 0;
  width: min(1100px, calc(100% - 32px));
}
.alert-error {
  border-color: rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.08);
}
.alert-success {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.08);
}

.hero {
  padding: 24px 0 10px;
  background: linear-gradient(
    180deg,
    rgba(14, 165, 233, 0.22),
    rgba(14, 165, 233, 0.02)
  );
}
.hero.hero-banner {
  padding: 0;
  background: none;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}
.hero-banner-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.55) 55%,
      rgba(255, 255, 255, 0.14) 100%
    ),
    radial-gradient(
      800px 380px at 30% 10%,
      rgba(14, 165, 233, 0.35),
      transparent 55%
    ),
    radial-gradient(
      800px 380px at 85% 35%,
      rgba(242, 90, 43, 0.22),
      transparent 55%
    ),
    url("../images/hero-bg1.jpg");
  background-repeat: no-repeat;
  background-position: center, center, center, center;
  background-size: cover, auto, auto, cover;
}
.hero-banner-bg::after {
  content: "";
  position: absolute;
  inset: -40px -40px 0 -40px;
  background: url("../images/logo.jpg") no-repeat;
  background-position: 75% 50%;
  background-size: min(780px, 80vw);
  opacity: 0.06;
  transform: rotate(-3deg);
  pointer-events: none;
}
.hero-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: center;
  min-height: 420px;
  padding: 28px 0;
}
.hero-eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.65);
  font-size: 0.78rem;
}
.hero-title {
  margin: 10px 0 10px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
}
.hero-stats {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.stat {
  min-width: 150px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
}
.stat-num {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}
.stat-label {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.cta-card {
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 18px;
  justify-self: end;
  width: min(360px, 100%);
}
.cta-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(242, 90, 43, 0.35),
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(14, 165, 233, 0.35),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(242, 90, 43, 0.2);
}
.cta-title {
  margin-top: 12px;
  font-weight: 900;
  font-size: 1.25rem;
}
.cta-text {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}
.cta-btn {
  margin-top: 14px;
  width: 100%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}
.lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.hero-card {
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 16px;
}
.kpi {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}
.kpi:last-child {
  border-bottom: none;
}
.kpi-num {
  font-size: 1.6rem;
  font-weight: 800;
}
.kpi-label {
  color: var(--muted);
}

.section {
  padding: 18px 0;
}

/* Extra spacing for Info Kegiatan listing so the cards sit lower under the hero */
.section-kegiatan {
  padding-top: 44px;
}
.section-alt {
  background: rgba(15, 23, 42, 0.03);
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.about {
  padding: 54px 0;
}
.about-copy {
  max-width: 920px;
}
.about-overline {
  display: inline-block;
  position: relative;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--brand);
  font-size: 0.82rem;
  padding-bottom: 10px;
}
.about-overline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0.95;
}
.about-title {
  margin: 16px 0 0;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.06;
}
.about-text {
  margin: 18px 0 0;
  font-size: 1.02rem;
  line-height: 1.85;
  max-width: 980px;
}
.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.about-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-stat-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  color: #0b0f1a;
}
.about-stat-icon svg {
  width: 84px;
  height: 84px;
  display: block;
}
.about-stat-num {
  font-size: 3.2rem;
  font-weight: 950;
  line-height: 1;
}
.about-stat-label {
  margin-top: 6px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
}
.about-actions {
  margin-top: 22px;
}
.section-title {
  display: grid;
  gap: 10px;
}
.section-title.center {
  text-align: center;
  justify-items: center;
}
.section-overline {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--brand);
  font-size: 0.78rem;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.section-head a {
  color: var(--brand);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.center {
  text-align: center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.news-grid.is-single {
  grid-template-columns: 1fr;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.news-grid.is-single .news-card {
  display: grid;
  grid-template-columns: 320px 1fr;
}
.news-grid.is-single .news-media {
  aspect-ratio: auto;
  min-height: 220px;
}
.news-grid.is-single .news-body {
  padding: 18px 18px 18px;
}
.news-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 0.98rem;
}
.news-meta span + span {
  position: relative;
  padding-left: 12px;
}
.news-meta span + span::before {
  content: "•";
  position: absolute;
  left: 0;
  opacity: 0.6;
}
.news-card {
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}
.news-card.is-placeholder {
  opacity: 0.92;
}
.news-card.is-placeholder .news-media::before {
  background: rgba(15, 23, 42, 0.42);
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
}
.news-media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.12),
    rgba(242, 90, 43, 0.08)
  );
}
.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-date {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  gap: 2px;
  background: var(--brand);
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(242, 90, 43, 0.28);
}
.news-date-top {
  font-weight: 950;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.news-date-bottom {
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.92;
}
.news-body {
  padding: 18px 18px 22px;
}
.news-category {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.72rem;
  color: rgba(15, 23, 42, 0.42);
}
.news-title {
  margin: 12px 0 0;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.news-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  color: var(--brand);
  font-weight: 750;
}
.news-link:hover {
  text-decoration: underline;
}
.news-actions {
  margin-top: 18px;
}
.news-actions.center {
  display: grid;
  justify-items: center;
}

@media (max-width: 760px) {
  .news-grid.is-single .news-card {
    grid-template-columns: 1fr;
  }
  .news-grid.is-single .news-media {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }
}

.skema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.skema-card {
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 16px;
  overflow: hidden;
}
.skema-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  background-color: rgba(15, 23, 42, 0.22);
  background-size: cover;
  background-position: center;
}
.skema-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.56);
}
.skema-media-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.skema-mark {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
}
.skema-mark-top {
  font-size: 1.1rem;
}
.skema-mark-bottom {
  font-size: 0.9rem;
  opacity: 0.8;
}
.skema-title {
  margin: 0;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.skema-sub {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 750;
}
.skema-footer {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  background: #fff;
}
.skema-fee {
  color: rgba(15, 23, 42, 0.55);
  font-weight: 700;
}
.skema-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 40px;
  color: var(--brand);
  font-size: 1.7rem;
  font-weight: 900;
  border-radius: 12px;
}
.skema-arrow:hover {
  background: rgba(242, 90, 43, 0.08);
}
.card {
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 16px;
  overflow: hidden;
}
.card-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.12),
    rgba(242, 90, 43, 0.08)
  );
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-person {
  text-align: center;
}
.person-media {
  padding: 18px 18px 0;
}
.person-media img {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}
.card-body {
  padding: 14px;
}
.card-title {
  margin: 6px 0 8px;
  font-size: 1.05rem;
}
@media (max-width: 480px) {
  .card {
    border-radius: 12px;
  }
  .card-img {
    border-radius: 10px;
  }
  .card-body {
    padding: 12px;
  }
  .card-title {
    font-size: 0.95rem;
  }
}
.card-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--brand-2);
  font-weight: 650;
}

.asesor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.asesor-carousel {
  position: relative;
  margin-top: 22px;
}
.asesor-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 52px 18px;
}
.asesor-carousel.is-autoscrolling .asesor-viewport {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.asesor-viewport:focus {
  outline: none;
}
.asesor-track {
  display: flex;
  gap: 18px;
  align-items: stretch;
}
.asesor-slide {
  scroll-snap-align: start;
  flex: 0 0 230px;
}
.asesor-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.8);
}
.asesor-nav:hover {
  border-color: rgba(242, 90, 43, 0.35);
  color: rgba(242, 90, 43, 0.95);
}
.asesor-nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.asesor-nav-prev {
  left: 6px;
}
.asesor-nav-next {
  right: 6px;
}

/* Hide scrollbar (still scrollable) */
.asesor-viewport::-webkit-scrollbar {
  height: 10px;
}
.asesor-viewport::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.12);
  border-radius: 999px;
}

@media (max-width: 720px) {
  .asesor-viewport {
    padding: 6px 42px 18px;
  }
  .asesor-slide {
    flex-basis: 78vw;
    max-width: 340px;
  }
}
.asesor-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  overflow: hidden;
}
.asesor-link {
  display: block;
  color: inherit;
}
.asesor-card:hover {
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}
.asesor-card .person-media {
  padding: 22px 18px 0;
  display: grid;
  justify-items: center;
  position: relative;
}
.asesor-card .person-media img {
  width: 170px;
  height: 170px;
  border-radius: 999px;
  object-fit: cover;
  border: none;
  box-shadow: none;
}
.asesor-avatar {
  width: 170px;
  height: 170px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.08);
  color: rgba(15, 23, 42, 0.72);
  font-weight: 950;
  font-size: 2rem;
  letter-spacing: 0.06em;
}
.asesor-wave {
  position: absolute;
  left: 18px;
  bottom: 8px;
  width: 84px;
  height: auto;
  color: var(--brand);
}
.asesor-body {
  padding: 18px 18px 22px;
}
.asesor-name {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.asesor-meta {
  margin-top: 10px;
  font-size: 0.98rem;
}

/* Asesor list (Informasi > Asesor Kompetensi) */
.asesor-list {
  margin-top: 26px;
  display: grid;
  gap: 22px;
}
.asesor-row-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 6px;
  overflow: hidden;
}
.asesor-row-link {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  gap: 28px;
  color: inherit;
  padding: 28px;
}
.asesor-row-card:hover {
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
}
.asesor-row-media {
  display: grid;
  justify-items: center;
}
.asesor-row-photo,
.asesor-row-avatar {
  width: 280px;
  height: 280px;
  border-radius: 999px;
  object-fit: cover;
  background: rgba(15, 23, 42, 0.06);
}
.asesor-row-avatar {
  display: grid;
  place-items: center;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 950;
  font-size: 3rem;
  letter-spacing: 0.06em;
}
.asesor-row-name {
  margin: 0;
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.asesor-row-met {
  margin-top: 8px;
  font-weight: 650;
}
.asesor-row-desc {
  margin: 18px 0 0;
  line-height: 1.85;
  max-width: 760px;
}
.asesor-row-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 750;
}

@media (max-width: 900px) {
  .asesor-row-link {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
    text-align: center;
  }
  .asesor-row-desc {
    max-width: 680px;
  }
}

@media (max-width: 1100px) {
  .asesor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .asesor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .asesor-grid {
    grid-template-columns: 1fr;
  }
}

.asesor-detail-hero {
  padding: 54px 0 72px;
}
.asesor-detail-inner {
  width: min(920px, calc(100% - 32px));
}
.asesor-detail-photo {
  display: grid;
  justify-items: center;
}
.asesor-detail-photo img,
.asesor-detail-avatar {
  width: min(360px, 70vw);
  height: min(360px, 70vw);
  border-radius: 999px;
  object-fit: cover;
  background: #fff;
}
.asesor-detail-avatar {
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.08);
  color: rgba(15, 23, 42, 0.72);
  font-weight: 950;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  letter-spacing: 0.08em;
}
.asesor-detail-name {
  margin: 18px 0 0;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  letter-spacing: -0.02em;
}
.asesor-detail-met {
  margin-top: 6px;
}
.asesor-detail-bio {
  margin: 18px 0 0;
  line-height: 1.9;
}
.asesor-detail-info {
  margin-top: 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 18px;
}
.asesor-info-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 12px;
  padding: 8px 0;
}
.asesor-info-label {
  font-weight: 850;
  color: rgba(15, 23, 42, 0.6);
}
.asesor-info-value {
  color: rgba(15, 23, 42, 0.86);
}
.asesor-detail-actions {
  margin-top: 24px;
}

@media (max-width: 720px) {
  .asesor-info-row {
    grid-template-columns: 1fr;
  }
}
.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: #334155;
  background: rgba(242, 90, 43, 0.08);
  border-color: rgba(242, 90, 43, 0.22);
  font-size: 0.85rem;
}
.price {
  margin-top: 10px;
  font-weight: 700;
}

.list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.list-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}
.list-title {
  font-weight: 750;
  margin-bottom: 4px;
}

.tuk-accordion {
  margin-top: 26px;
  display: grid;
  gap: 22px;
}
.tuk-item {
  border: none;
}
.tuk-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  font-weight: 850;
}
.tuk-summary::-webkit-details-marker {
  display: none;
}
.tuk-name {
  font-size: 1.05rem;
  color: #0b0f1a;
}
.tuk-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-weight: 900;
  border-radius: 12px;
  color: #0b0f1a;
}
.tuk-toggle::before {
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
}
.tuk-item[open] .tuk-toggle::before {
  content: "−";
}

.tuk-body {
  margin-top: 10px;
  padding: 16px 28px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}
.tuk-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
@media (max-width: 600px) {
  .tuk-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .tuk-summary {
    padding: 18px 16px;
  }
  .tuk-body {
    padding: 14px 16px 18px;
  }
}
.tuk-row:last-child {
  border-bottom: none;
}
.tuk-label {
  font-weight: 800;
  color: rgba(15, 23, 42, 0.6);
}
.tuk-value {
  color: rgba(15, 23, 42, 0.88);
}

.tuk-item.is-placeholder {
  opacity: 0.92;
}
.tuk-empty-note {
  margin-top: 6px;
}

/* Struktur Organisasi */
.org-section {
  padding-top: 0;
}
.org-accordion {
  margin-top: -36px;
  display: grid;
  gap: 34px;
}
.org-item {
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 8px;
  width: 100%;
}
.org-summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  padding: 64px 64px 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 340px;
  box-sizing: border-box;
}
.org-summary::-webkit-details-marker {
  display: none;
}
.org-name {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 860px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.org-role {
  margin-top: 6px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.86rem;
  color: rgba(15, 23, 42, 0.55);
  max-width: 860px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.org-role-v {
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}
.org-email {
  margin-top: 30px;
  font-size: 0.98rem;
  color: rgba(15, 23, 42, 0.55);
  max-width: 860px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.org-email-k {
  white-space: nowrap;
}
.org-email-v {
  white-space: nowrap;
}
.org-email-v {
  color: rgba(15, 23, 42, 0.65);
}
.org-email-v:hover {
  color: var(--brand);
}
.org-more {
  margin-top: auto;
  color: var(--brand);
  font-weight: 750;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.org-more-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
}
.org-item[open] .org-more-icon {
  transform: rotate(225deg);
  margin-top: 2px;
}

.org-body {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 22px 64px 34px;
  background: rgba(15, 23, 42, 0.01);
}
.org-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.org-row:last-child {
  border-bottom: none;
}
.org-k {
  font-weight: 850;
  color: rgba(15, 23, 42, 0.6);
}
.org-v {
  color: rgba(15, 23, 42, 0.88);
}

@media (max-width: 720px) {
  .org-summary {
    padding: 38px 22px 28px;
    min-height: 300px;
  }
  .org-body {
    padding: 16px 22px 24px;
  }
  .org-row {
    grid-template-columns: 1fr;
  }
}

/* Jadwal Kegiatan accordion (Informasi > Jadwal Kegiatan) */
.jadwal-accordion {
  margin-top: 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  overflow: hidden;
  border-radius: 0;
}
.jadwal-item {
  border: none;
}
.jadwal-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  font-weight: 950;
}
.jadwal-summary::-webkit-details-marker {
  display: none;
}
.jadwal-title {
  font-size: 1.02rem;
  color: #0b0f1a;
}
.jadwal-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: #0b0f1a;
}
.jadwal-toggle::before {
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
}

.jadwal-item[open] .jadwal-summary {
  background: var(--brand);
  border-bottom-color: rgba(255, 255, 255, 0.18);
}
.jadwal-item[open] .jadwal-title,
.jadwal-item[open] .jadwal-toggle {
  color: #fff;
}
.jadwal-item[open] .jadwal-toggle::before {
  content: "×";
}

.jadwal-body {
  padding: 18px 28px 22px;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.jadwal-line {
  display: flex;
  gap: 8px;
  align-items: baseline;
  flex-wrap: wrap;
  color: rgba(15, 23, 42, 0.88);
}
.jadwal-k {
  color: rgba(15, 23, 42, 0.62);
}
.jadwal-sub {
  margin-top: 10px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.75);
}
.jadwal-desc {
  margin-top: 6px;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.78);
}

.jadwal-item.is-placeholder {
  opacity: 0.92;
}

@media (max-width: 760px) {
  .jadwal-summary,
  .jadwal-body {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.page-head {
  padding: 10px 0 0;
}

.form {
  width: min(520px, 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 16px;
}
@media (max-width: 600px) {
  .form {
    border-radius: 12px;
    padding: 14px;
  }
  .form input,
  .form select,
  .form textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}
.form label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.form input {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
}

.prose {
  line-height: 1.75;
  color: var(--text);
}

.informasi-cover {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: rgba(15, 23, 42, 0.03);
}
.informasi-cover img {
  width: 100%;
  height: min(440px, 56vh);
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .informasi-cover img {
    height: min(300px, 40vh);
  }
}
@media (max-width: 480px) {
  .informasi-cover {
    border-radius: 12px;
  }
  .informasi-cover img {
    height: min(220px, 35vh);
  }
}
.informasi-excerpt {
  margin: 0 0 16px;
  font-size: 1.02rem;
  line-height: 1.85;
}

.skema-detail-hero {
  position: relative;
  padding: 54px 0 92px;
  background: rgba(15, 23, 42, 0.05);
  overflow: hidden;
}
.skema-detail-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.breadcrumbs {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: rgba(15, 23, 42, 0.55);
}
.breadcrumbs a {
  color: var(--brand);
}
.breadcrumbs-sep {
  opacity: 0.55;
}
.breadcrumbs-current {
  color: rgba(15, 23, 42, 0.55);
}
.skema-detail-title {
  margin: 14px auto 0;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: 980px;
}
.skema-detail-wave {
  position: absolute;
  left: -6vw;
  right: -6vw;
  bottom: -2px;
  height: 170px;
  background: #fff;
  clip-path: polygon(
    0% 55%,
    18% 62%,
    36% 78%,
    52% 70%,
    68% 58%,
    84% 66%,
    100% 58%,
    100% 100%,
    0% 100%
  );
  opacity: 0.95;
}

.profile-hero {
  position: relative;
  padding: 64px 0 92px;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.02),
    rgba(15, 23, 42, 0)
  );
  overflow: hidden;
}
.profile-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.profile-title {
  margin: 14px auto 0;
  font-size: clamp(2.6rem, 4.2vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.06;
  max-width: 980px;
}
.profile-wave {
  position: absolute;
  left: -6vw;
  right: -6vw;
  bottom: -2px;
  height: 170px;
  background: rgba(15, 23, 42, 0.04);
  clip-path: polygon(
    0% 60%,
    18% 68%,
    36% 84%,
    52% 76%,
    68% 64%,
    84% 72%,
    100% 64%,
    100% 100%,
    0% 100%
  );
  opacity: 0.85;
}

.profile-content {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
  align-items: start;
  padding-top: 10px;
}
.profile-heading {
  margin: 0;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.profile-lead {
  margin: 18px 0 0;
  font-size: 1.02rem;
  line-height: 1.85;
  max-width: 820px;
}

.profile-contact {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.profile-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: rgba(15, 23, 42, 0.9);
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.profile-contact-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.profile-contact-label {
  font-weight: 800;
  font-size: 0.92rem;
}
.profile-contact-value {
  display: inline-block;
  margin-top: 4px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.profile-contact-value:hover {
  color: var(--brand);
  text-decoration: underline;
}

.profile-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
}
.profile-card-title {
  font-weight: 950;
  font-size: 1.05rem;
}
.profile-card-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.12);
}
.profile-card-row:last-child {
  border-bottom: none;
}
.profile-card-k {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.6);
}
.profile-card-v {
  color: rgba(15, 23, 42, 0.92);
}
.profile-card a {
  color: var(--brand);
  font-weight: 800;
}
.profile-card a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .profile-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .profile-card-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .profile-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .profile-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }
}

.skema-detail-desc {
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}
.skema-detail-desc-title {
  font-weight: 950;
  margin-bottom: 10px;
}

.skema-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
  margin-top: 10px;
}
.skema-detail-visual {
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background-color: rgba(15, 23, 42, 0.08);
  background-size: cover;
  background-position: center;
  position: relative;
}
.skema-detail-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.18);
}
.skema-detail-visual-inner {
  position: relative;
  z-index: 1;
  padding: 26px;
  height: 100%;
}
.skema-detail-mark {
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.7);
}
.skema-detail-mark-top {
  font-size: 1.7rem;
  line-height: 1;
}
.skema-detail-mark-bottom {
  margin-top: 6px;
  font-size: 1.1rem;
  opacity: 0.8;
}
.skema-detail-visual-name {
  margin-top: 22px;
  font-size: 1.1rem;
  font-weight: 850;
  color: rgba(15, 23, 42, 0.8);
}
.skema-detail-visual-sub {
  margin-top: 8px;
}

.skema-detail-panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 14px;
}
.skema-detail-panel-block {
  display: grid;
  gap: 10px;
}
.skema-detail-panel-title {
  font-weight: 950;
  font-size: 1.2rem;
}
.skema-detail-panel-divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.1);
}
.skema-detail-fee {
  font-size: 2rem;
  font-weight: 950;
}
.skema-detail-download {
  border-color: rgba(242, 90, 43, 0.45);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(242, 90, 43, 0.22);
}
.skema-detail-download:hover {
  filter: brightness(0.98);
}
.skema-detail-download.is-disabled {
  opacity: 0.6;
  pointer-events: none;
  background: #fff;
  color: var(--muted);
  border-color: var(--border);
  box-shadow: none;
}
.skema-detail-note {
  font-size: 0.95rem;
}
.skema-detail-back {
  margin-top: 22px;
}

@media (max-width: 900px) {
  .skema-detail-hero {
    padding: 40px 0 76px;
  }
  .skema-detail-grid {
    grid-template-columns: 1fr;
  }
  .skema-detail-visual {
    min-height: 260px;
  }
}

@media (max-width: 600px) {
  .skema-detail-hero {
    padding: 30px 0 60px;
  }
  .skema-detail-title {
    font-size: clamp(1.8rem, 6vw, 2.3rem);
    line-height: 1.2;
  }
  .skema-detail-wave {
    height: 100px;
  }
  .skema-detail-visual {
    min-height: 200px;
  }
  .skema-detail-visual-inner {
    padding: 18px;
  }
  .skema-detail-mark-top {
    font-size: 1.3rem;
  }
  .skema-detail-mark-bottom {
    font-size: 0.9rem;
  }
  .skema-detail-visual-name {
    font-size: 0.95rem;
  }
  .skema-detail-panel {
    padding: 14px;
  }
  .skema-detail-panel-title {
    font-size: 1rem;
  }
  .skema-detail-fee {
    font-size: 1.6rem;
  }
  .breadcrumbs {
    font-size: 0.65rem;
    gap: 6px;
  }
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px 0 18px;
  background: #3f3f3f;
  color: #eef2f7;
}

.footer-titlebar {
  padding: 0 0 10px;
}
.footer-heading {
  margin: 0 0 10px;
  font-size: 2rem;
  letter-spacing: 0.2px;
}
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 42px;
  padding-top: 22px;
}
.footer-about {
  opacity: 0.95;
}
.footer-logo img {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: #fff;
  padding: 6px;
}
.footer-text {
  margin: 16px 0 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.95;
}
.footer-social-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}
.footer-social-btn:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.07);
}

.footer-col-title {
  font-weight: 800;
  letter-spacing: 0.6px;
  margin: 6px 0 14px;
}
.footer-contact-list {
  display: grid;
  gap: 14px;
}
.footer-contact-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.88);
}
.footer-icon {
  opacity: 0.95;
}

.footer-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
}
.footer-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 28px;
}
.footer-copyright {
  text-align: center;
  padding: 18px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero.hero-banner {
    border-radius: 14px;
  }
  .hero-banner-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px 0;
  }
  .about {
    padding: 38px 0;
  }
  .about-title {
    line-height: 1.12;
  }
  .about-stat-icon {
    width: 72px;
    height: 72px;
  }
  .about-stat-icon svg {
    width: 72px;
    height: 72px;
  }
  .cta-card {
    justify-self: stretch;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .skema-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .header-inner {
    flex-direction: row;
    gap: 12px;
  }
  .nav {
    justify-content: center;
    gap: 8px;
  }
  .topbar-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .footer-logo img {
    width: 70px;
    height: 70px;
  }
  .footer-heading {
    font-size: 1.5rem;
  }
  .footer-text {
    font-size: 0.9rem;
  }
  .site-footer {
    padding: 24px 0 14px;
  }
}
