@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

:root {
  --bg: #ffffff;
  --surface: #f5f9fd;
  --surface-2: #eef5fc;
  --text: #031930;
  --text-soft: #223A59;
  --muted: #758BA5;
  --line: rgba(34, 58, 89, 0.12);
  --primary: #3684DB;
  --primary-soft: #B3D6F9;
  --navy: #031930;
  --navy-2: #223A59;
  --hero-bar: rgba(3, 25, 48, 0.72);
  --maxw: 1180px;
  --radius: 22px;
  --shadow-soft: 0 18px 48px rgba(34, 58, 89, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lato", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(var(--maxw), calc(100% - 32px));
  margin: 0 auto;
}

/* ===== Shared header for inner pages ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.brand-text {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--navy);
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.menu a,
.menu-disabled {
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 700;
}

.menu a:hover {
  color: var(--primary);
}

.menu a.is-active {
  color: var(--navy);
}

.menu-disabled {
  color: var(--muted);
  cursor: default;
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #54a2ed 0%, #2f7fce 48%, #0e4f91 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow:
    0 16px 34px rgba(28, 109, 193, 0.34),
    0 4px 10px rgba(3, 25, 48, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #64adf1 0%, #2976c2 48%, #0b447e 100%);
  box-shadow:
    0 20px 42px rgba(28, 109, 193, 0.40),
    0 6px 14px rgba(3, 25, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.btn-secondary {
  background: #ffffff;
  color: var(--navy);
  border-color: rgba(54, 132, 219, 0.24);
}

.btn-secondary:hover {
  background: var(--surface);
}

.btn-ghost-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.17) 0%, rgba(255, 255, 255, 0.08) 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 10px 24px rgba(3, 25, 48, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-ghost-light:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.12) 100%);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 16px 30px rgba(3, 25, 48, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

/* ===== Shared sections/cards ===== */

.section {
  padding: 36px 0 78px;
}

.section-soft {
  background: var(--surface);
}

.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  color: var(--navy);
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.section-kicker,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--primary);
  margin: 0 0 14px;
  font-weight: 700;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.quick-card,
.notice-card,
.feature-card,
.post-card,
.kpi-card,
.doc-item,
.featured-post {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.info-card {
  padding: 26px;
}

.info-card h3,
.feature-body h3,
.post-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--navy);
}

.info-card p,
.feature-body p,
.post-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quick-links-two {
  grid-template-columns: repeat(2, 1fr);
}

.quick-card {
  display: block;
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-card:hover,
.post-card:hover,
.doc-item:hover {
  transform: translateY(-4px);
  border-color: rgba(54, 132, 219, 0.25);
  box-shadow: 0 22px 44px rgba(34, 58, 89, 0.12);
}

.quick-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.quick-text {
  display: block;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.95rem;
}

.notice-card {
  padding: 20px 22px;
  color: var(--text-soft);
  line-height: 1.8;
  border-left: 4px solid var(--primary);
}

.text-link,
.section-link {
  color: var(--navy-2);
  font-weight: 700;
}

.text-link:hover,
.section-link:hover {
  color: var(--primary);
}

/* ===== Home page ===== */

.home-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 42%, #ffffff 100%);
}

.home-hero {
  position: relative;
  min-height: 820px;
  padding-top: 120px;
  padding-bottom: 150px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-image: url("../images/halawan-home-hero.png");
  background-size: cover;
  background-position: center -96px;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 25, 48, 0.34) 0%,
      rgba(15, 67, 116, 0.12) 34%,
      rgba(3, 25, 48, 0.48) 100%
    ),
    linear-gradient(
      90deg,
      rgba(3, 25, 48, 0.16) 0%,
      rgba(54, 132, 219, 0.08) 52%,
      rgba(3, 25, 48, 0.18) 100%
    );
  z-index: 1;
}

.site-header--hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.nav-shell {
  width: 100%;
  min-height: 76px;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(34, 58, 89, 0.10);
  box-shadow: 0 8px 24px rgba(3, 25, 48, 0.08);
  transition:
    background 0.28s ease,
    backdrop-filter 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

body.is-scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(34, 58, 89, 0.07);
  box-shadow: 0 10px 28px rgba(3, 25, 48, 0.05);
}

.brand--hero {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo--hero {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.brand-text--hero {
  color: #031930;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.menu--hero {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}

.menu--hero a,
.menu--hero .menu-disabled {
  color: #223A59;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.menu--hero a.is-active {
  color: #031930;
  font-weight: 900;
}

.menu--hero a:hover {
  color: #3684DB;
}

.menu--hero .menu-disabled {
  color: #758BA5;
}

.nav-spacer {
  width: 100%;
}

/* hero content sits lower to avoid image wordmark */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 920px;
  margin: 0 auto;
  flex: 1;
  display: flex;
  text-align: center;
  align-items: flex-end;
  justify-content: center;
  transform: translateY(20px);
  padding: 0 24px 10px;
}

.hero-copy--bottom {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-statement {
  max-width: 720px;
  margin: 0 auto 12px;
  color: #ffffff;
  font-size: clamp(1.04rem, 1.55vw, 1.34rem);
  line-height: 1.46;
  text-shadow: 0 2px 14px rgba(3, 25, 48, 0.24);
}

.hero-statement strong {
  font-weight: 900;
}

.hero-description {
  max-width: 700px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  line-height: 1.66;
  text-shadow: 0 2px 14px rgba(3, 25, 48, 0.18);
}

.hero-actions,
.hero-actions-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions-center .btn {
  min-width: 160px;
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.94rem;
}

.section-angle {
  position: relative;
  overflow: hidden;
}

.section-angle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0 34%,
    rgba(179, 214, 249, 0.18) 34% 58%,
    transparent 58% 100%
  );
  pointer-events: none;
}

.info-card--premium {
  position: relative;
  z-index: 1;
}

.section-head--with-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.section-link {
  white-space: nowrap;
  padding-top: 22px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-card {
  overflow: hidden;
}

.feature-media {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.feature-media--one {
  background:
    linear-gradient(180deg, rgba(3, 25, 48, 0.1), rgba(3, 25, 48, 0.2)),
    url("../images/halawan-home-hero.png");
  background-size: cover;
  background-position: center;
}

.feature-media--two {
  background:
    linear-gradient(180deg, rgba(54, 132, 219, 0.08), rgba(34, 58, 89, 0.18)),
    linear-gradient(135deg, #B3D6F9 0%, #eef5fc 100%);
}

.feature-body {
  padding: 24px;
}

/* footer slim image only */
.home-footer-slim {
  background-image: url("../images/halawan-footer-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: none;
  width: 100%;
  aspect-ratio: 1600 / 168;
  min-height: 78px;
  max-height: 130px;
  padding: 0;
}

/* ===== Inner pages ===== */

.page-hero {
  padding: 88px 0 24px;
}

.page-title {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.02;
}

.page-lead {
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.75;
  margin: 0;
}

.featured-post {
  padding: 28px;
}

.featured-post h2 {
  margin: 0 0 10px;
  font-size: 1.9rem;
}

.featured-post p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.post-meta {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.post-card {
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.post-card p {
  margin: 0 0 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 36px;
  background: #ffffff;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-wrap strong {
  color: var(--navy);
}

.footer-wrap p,
.footer-meta {
  color: var(--muted);
  margin: 6px 0 0;
}

.footer-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== Responsive ===== */

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: 220px 1fr 220px;
    padding: 0 24px;
  }

  .menu--hero {
    gap: 28px;
  }
}

@media (max-width: 980px) {
  .nav,
  .footer-wrap,
  .section-head--with-link,
  .footer-brand-block {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu {
    gap: 14px;
  }

  .card-grid,
  .quick-links,
  .quick-links-two,
  .post-grid,
  .kpi-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .doc-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header:not(.site-header--hero) .nav {
    min-height: auto;
    padding: 16px 0;
  }

  .nav-shell {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 18px;
    min-height: auto;
  }

  .menu--hero {
    justify-self: start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-spacer {
    display: none;
  }

  .brand-logo--hero {
    width: 38px;
    height: 38px;
  }

  .brand-text--hero {
    font-size: 0.94rem;
  }

  .home-hero {
    min-height: 760px;
    padding-top: 92px;
    padding-bottom: 90px;
    background-image: url("../images/halawan-home-hero.png");
    background-size: cover;
    background-position: center -10px;
    background-repeat: no-repeat;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transform: translateY(18px);
    padding: 0 20px 8px;
  }

  .hero-copy--bottom {
    max-width: 92%;
  }

  .hero-statement {
    max-width: 620px;
    font-size: 1.02rem;
    line-height: 1.54;
    margin-bottom: 12px;
  }

  .hero-description {
    max-width: 620px;
    font-size: 0.92rem;
    line-height: 1.66;
    margin-bottom: 18px;
  }

  .hero-actions-center .btn {
    min-width: 152px;
    min-height: 46px;
  }

  .page-hero {
    padding-top: 72px;
  }

  .section-link {
    padding-top: 0;
  }

  .home-footer-slim {
    min-height: 64px;
    max-height: 96px;
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 700px;
    padding-top: 88px;
    padding-bottom: 68px;
    background-position: 54% -8px;
  }

  .hero-content {
    transform: translateY(8px);
    padding: 0 16px 4px;
  }

  .hero-copy--bottom {
    max-width: 94%;
  }

  .hero-statement {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.48;
    margin-bottom: 10px;
  }

  .hero-description {
    max-width: 100%;
    font-size: 0.86rem;
    line-height: 1.58;
    margin-bottom: 16px;
  }

  .hero-actions-center {
    gap: 10px;
  }

  .hero-actions-center .btn {
    min-width: 138px;
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.9rem;
  }
}

/* ===== Home Intro Section ===== */
.home-intro {
  position: relative;
  margin-top: -34px;
  padding: 0 0 84px;
  z-index: 3;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f8fe 100%);
}

.home-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(54, 132, 219, 0.08) 0%, rgba(54, 132, 219, 0) 28%),
    linear-gradient(270deg, rgba(179, 214, 249, 0.18) 0%, rgba(179, 214, 249, 0) 34%);
  pointer-events: none;
}

.home-intro-panel {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 250, 255, 0.98) 48%, rgba(229, 242, 255, 0.94) 100%);
  border: 1px solid rgba(54, 132, 219, 0.18);
  border-radius: 32px;
  box-shadow:
    0 28px 70px rgba(3, 25, 48, 0.12),
    0 12px 24px rgba(54, 132, 219, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.home-intro-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(54, 132, 219, 0) 0%,
    rgba(54, 132, 219, 0.58) 18%,
    rgba(179, 214, 249, 0.88) 48%,
    rgba(25, 111, 180, 0.46) 78%,
    rgba(54, 132, 219, 0) 100%
  );
}

.home-intro-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(54, 132, 219, 0.06) 100%),
    linear-gradient(135deg, rgba(34, 58, 89, 0.035) 0, rgba(34, 58, 89, 0.035) 1px, transparent 1px, transparent 100%);
  background-size: auto, 24px 24px;
  opacity: 0.72;
  pointer-events: none;
}

.home-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  gap: 56px;
  padding: 54px 52px 52px;
  align-items: start;
}

.home-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding-top: 8px;
}

.home-intro-eyebrow {
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2d73bd;
}

.home-intro-title {
  margin: 0;
  max-width: 660px;
  font-size: clamp(2.05rem, 2.45vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: #061f3a;
  text-wrap: balance;
}

.home-intro-text {
  margin-top: 18px;
  max-width: 640px;
  font-size: 0.96rem;
  line-height: 1.78;
  color: #5e748d;
}

.home-intro-actions {
   display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.intro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.intro-btn:hover {
  transform: translateY(-1px);
}

.intro-btn-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #0f416f 0%, #031930 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 16px 34px rgba(3, 25, 48, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.intro-btn-primary:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #1a5c99 0%, #082746 100%);
  box-shadow:
    0 20px 42px rgba(3, 25, 48, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.intro-btn-secondary {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fe 100%);
  color: #223A59;
  border: 1px solid rgba(54, 132, 219, 0.18);
  box-shadow:
    0 10px 24px rgba(3, 25, 48, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.intro-btn-secondary:hover {
  border-color: rgba(54, 132, 219, 0.35);
  color: #031930;
  box-shadow: 0 8px 20px rgba(3, 25, 48, 0.06);
}

.home-intro-highlight {
  position: relative;
  max-width: 470px;
  margin-left: auto;
  background:
    linear-gradient(180deg, rgba(230, 242, 254, 0.98) 0%, rgba(255, 255, 255, 0.90) 100%);
  border: 1px solid rgba(54, 132, 219, 0.22);
  border-radius: 28px;
  padding: 30px 30px 26px;
  box-shadow:
    0 20px 42px rgba(3, 25, 48, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.70);
}

.home-intro-highlight::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #3684db 0%, #b3d6f9 55%, rgba(54, 132, 219, 0) 100%);
}

.intro-highlight-head {
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(34, 58, 89, 0.08);
}

.intro-highlight-kicker {
   display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3684DB;
}

.intro-highlight-title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 700;
  color: #031930;
}

.intro-highlight-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.intro-highlight-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0;
}

.intro-highlight-item + .intro-highlight-item {
  border-top: 1px solid rgba(34, 58, 89, 0.08);
}

.intro-highlight-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
  border: 1px solid rgba(54, 132, 219, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  color: #3684DB;
  box-shadow:
    0 8px 18px rgba(3, 25, 48, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.intro-highlight-content h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.35;
  color: #031930;
}

.intro-highlight-content p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.72;
  color: #758BA5;
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .home-intro {
    margin-top: -36px;
    padding-bottom: 72px;
  }

  .home-intro-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px;
  }

  .home-intro-title {
    max-width: none;
  }

  .home-intro-text {
    max-width: none;
  }
}

@media (min-width: 1180px) {
  .home-intro {
    margin-top: -26px;
    padding-bottom: 64px;
  }

  .home-intro-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
    gap: 34px;
    padding: 34px 38px 32px;
    align-items: start;
  }

  .home-intro-copy {
    justify-content: flex-start;
    padding-top: 2px;
  }

  .home-intro-eyebrow {
    margin-bottom: 12px;
    font-size: 0.76rem;
    letter-spacing: 0.15em;
  }

  .home-intro-title {
    max-width: 660px;
    font-size: clamp(2.15rem, 2.55vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
  }

  .home-intro-text {
    margin-top: 16px;
    max-width: 640px;
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .home-intro-actions {
    margin-top: 22px;
    gap: 12px;
  }

  .intro-btn {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .home-intro-highlight {
    max-width: none;
    padding: 24px 24px 18px;
    border-radius: 24px;
  }

  .intro-highlight-head {
    padding-bottom: 14px;
    margin-bottom: 4px;
  }

  .intro-highlight-kicker {
    margin-bottom: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

  .intro-highlight-title {
    font-size: 1.06rem;
    line-height: 1.35;
  }

  .intro-highlight-list {
    gap: 0;
  }

  .intro-highlight-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
    transition: transform 0.22s ease, background-color 0.22s ease;
  }

  .intro-highlight-item:hover {
    transform: translateX(2px);
  }

  .intro-highlight-number {
    width: 38px;
    height: 38px;
    font-size: 0.78rem;
  }

  .intro-highlight-content h3 {
    margin: 0 0 4px;
    font-size: 0.96rem;
    line-height: 1.25;
  }

  .intro-highlight-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #031930;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: color 0.24s ease, opacity 0.24s ease;
  }

  .intro-highlight-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(
      90deg,
      rgba(54, 132, 219, 0.18) 0%,
      rgba(54, 132, 219, 0.72) 50%,
      rgba(179, 214, 249, 0.95) 100%
    );
    transform: scaleX(0.18);
    transform-origin: left center;
    opacity: 0;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .intro-highlight-link::after {
     content: "↗";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(54, 132, 219, 0.08);
    color: #3684DB;
    font-size: 0.72rem;
    line-height: 1;
    opacity: 0;
    transform: translateX(-6px);
    transition:
      opacity 0.24s ease,
      transform 0.24s ease,
      background-color 0.24s ease;
  }

  .intro-highlight-link:hover {
    color: #223A59;
  }

  .intro-highlight-link:hover::before {
    transform: scaleX(1);
    opacity: 1; 
  }

  .intro-highlight-link:hover::after {
    opacity: 1;
    transform: translateX(0);
    background: rgba(54, 132, 219, 0.14);
  }

  .intro-highlight-link:focus-visible {
    outline: 2px solid rgba(54, 132, 219, 0.26);
    outline-offset: 4px;
    border-radius: 6px;
  }

  .intro-highlight-link:active {
    transform: translateY(1px);
  }

  .intro-highlight-content p {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}

/* =========================================================
   HOME - CAPAIAN REALISASI BELANJA TAHUNAN
   ========================================================= */

.home-belanja-realisasi-section {
  position: relative;
  padding: 2px 0 46px;
  background:
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 46%, #fbfdff 100%);
  overflow: hidden;
}

.home-belanja-realisasi-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(54, 132, 219, 0.055) 0, rgba(54, 132, 219, 0.055) 1px, transparent 1px, transparent 100%),
    linear-gradient(180deg, rgba(54, 132, 219, 0.038) 0, rgba(54, 132, 219, 0.038) 1px, transparent 1px, transparent 100%);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  pointer-events: none;
}

.home-belanja-realisasi-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(116deg, rgba(3, 25, 48, 0.055) 0%, rgba(3, 25, 48, 0.055) 18%, transparent 18.2%, transparent 100%),
    linear-gradient(296deg, rgba(179, 214, 249, 0.24) 0%, rgba(179, 214, 249, 0.24) 16%, transparent 16.2%, transparent 100%);
  pointer-events: none;
}

.home-belanja-realisasi-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.home-belanja-realisasi-head {
  margin-bottom: 16px;
}

.home-belanja-realisasi-copy {
  max-width: 860px;
}

.home-belanja-realisasi-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(230, 243, 255, 0.94) 0%, rgba(211, 231, 250, 0.76) 100%);
  border: 1px solid rgba(54, 132, 219, 0.14);
  color: #235f9f;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-belanja-realisasi-copy h2 {
  max-width: 840px;
  margin: 0 0 10px;
  color: #061f3a;
  font-size: clamp(1.82rem, 2.55vw, 2.45rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.home-belanja-realisasi-copy p {
  max-width: 700px;
  margin: 0;
  color: #5f7893;
  font-size: 0.95rem;
  line-height: 1.68;
}

.home-belanja-realisasi-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(244, 250, 255, 0.98) 52%, rgba(225, 240, 255, 0.94) 100%);
  border: 1px solid rgba(54, 132, 219, 0.18);
  box-shadow:
    0 26px 62px rgba(3, 25, 48, 0.105),
    0 10px 24px rgba(54, 132, 219, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.home-belanja-realisasi-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(3, 25, 48, 0.86) 0%,
    rgba(54, 132, 219, 0.72) 34%,
    rgba(179, 214, 249, 0.95) 68%,
    rgba(54, 132, 219, 0) 100%
  );
}

.home-belanja-realisasi-card::after {
  content: "";
  position: absolute;
  inset: 4px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.home-belanja-realisasi-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.home-belanja-realisasi-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: linear-gradient(180deg, #123c67 0%, #031930 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 8px 16px rgba(3, 25, 48, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.home-belanja-realisasi-chip--soft {
  background: linear-gradient(180deg, rgba(54, 132, 219, 0.22) 0%, rgba(179, 214, 249, 0.34) 100%);
  color: #1b5a99;
  border: 1px solid rgba(54, 132, 219, 0.12);
}

.home-belanja-realisasi-chip--ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 255, 0.92) 100%);
  color: #5f7893;
  border: 1px solid rgba(34, 58, 89, 0.10);
}

.home-belanja-realisasi-chart-wrap {
  position: relative;
  z-index: 1;
  padding: 8px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(224, 239, 254, 0.96) 0%,
    rgba(249, 252, 255, 0.98) 100%
  );
  border: 1px solid rgba(54, 132, 219, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 12px 28px rgba(3, 25, 48, 0.045);
}

.home-belanja-realisasi-chart {
  min-height: 320px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(252, 253, 255, 0.99) 100%
  );
  border: 1px solid rgba(34, 58, 89, 0.08);
  box-shadow:
    0 8px 20px rgba(3, 25, 48, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.home-belanja-realisasi-foot {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(34, 58, 89, 0.07);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.home-belanja-realisasi-foot p {
  margin: 0;
  color: #6f86a2;
  font-size: 0.82rem;
  line-height: 1.65;
}

.home-belanja-tooltip {
  min-width: 230px;
  padding: 14px 15px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(34, 58, 89, 0.08);
  box-shadow: 0 18px 42px rgba(3, 25, 48, 0.12);
  font-family: "Lato", sans-serif;
}

.home-belanja-tooltip strong {
  display: block;
  margin-bottom: 8px;
  color: #031930;
  font-size: 0.98rem;
  font-weight: 900;
}

.home-belanja-tooltip div {
  color: #5f7893;
  font-size: 0.9rem;
  line-height: 1.68;
}

@media (max-width: 980px) {
  .home-belanja-realisasi-section {
    padding: 0 0 40px;
  }

  .home-belanja-realisasi-copy h2 {
    font-size: clamp(1.72rem, 4.7vw, 2.1rem);
  }

  .home-belanja-realisasi-chart {
    min-height: 292px;
  }
}

@media (max-width: 640px) {
  .home-belanja-realisasi-shell {
    width: min(1180px, calc(100% - 20px));
  }

  .home-belanja-realisasi-copy h2 {
    font-size: 1.58rem;
    line-height: 1.14;
  }

  .home-belanja-realisasi-copy p {
    font-size: 0.92rem;
  }

  .home-belanja-realisasi-card {
    padding: 12px;
    border-radius: 20px;
  }

  .home-belanja-realisasi-chart-wrap {
    padding: 6px;
    border-radius: 16px;
  }

  .home-belanja-realisasi-chart {
    min-height: 270px;
    border-radius: 12px;
  }
}

/* =========================================================
   HOME KPI SECTION
   ========================================================= */

.home-kpi-section {
  position: relative;
  padding: 42px 0 96px;
  background:
    linear-gradient(180deg, #fafdff 0%, #eef6ff 52%, #f8fbff 100%);
  overflow: hidden;
}

.home-kpi-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(3, 25, 48, 0.06) 0%, rgba(3, 25, 48, 0.06) 22%, transparent 22.2%, transparent 100%),
    linear-gradient(292deg, rgba(54, 132, 219, 0.12) 0%, rgba(54, 132, 219, 0.12) 18%, transparent 18.2%, transparent 100%);
  pointer-events: none;
}

.home-kpi-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.56) 42%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.home-kpi-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.home-kpi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.home-kpi-copy {
  max-width: 760px;
}

.home-kpi-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(208, 232, 254, 0.90) 100%);
  border: 1px solid rgba(54, 132, 219, 0.22);
  color: #235f9f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.home-kpi-copy h2 {
  margin: 0 0 14px;
  color: #061f3a;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.home-kpi-copy p {
  margin: 0;
  max-width: 680px;
  color: #758BA5;
  font-size: 1rem;
  line-height: 1.75;
}

.home-kpi-copy strong {
  color: #223A59;
  font-weight: 800;
}

.home-kpi-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(54, 132, 219, 0.24);
  background:
    linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
  color: #031930;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 14px 34px rgba(3, 25, 48, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.home-kpi-link:hover {
  transform: translateY(-2px);
  border-color: rgba(54, 132, 219, 0.42);
  box-shadow:
    0 20px 42px rgba(3, 25, 48, 0.13),
    0 6px 14px rgba(54, 132, 219, 0.08);
  color: #0f416f;
}

.home-kpi-board {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.96fr);
  gap: 22px;
  align-items: stretch;
}

.kpi-spotlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 32px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0, rgba(255, 255, 255, 0.10) 1px, transparent 1px, transparent 100%),
    linear-gradient(150deg, #031930 0%, #0b3159 42%, #1f6fb7 105%);
  background-size: 28px 28px, auto;
  border: 1px solid rgba(179, 214, 249, 0.24);
  box-shadow:
    0 34px 76px rgba(3, 25, 48, 0.26),
    0 12px 30px rgba(47, 126, 204, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.kpi-spotlight-card::before,
.kpi-spotlight-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.kpi-spotlight-card::before {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(179, 214, 249, 0.20) 0%, rgba(179, 214, 249, 0) 48%),
    linear-gradient(135deg, rgba(238, 198, 112, 0.14) 0%, rgba(238, 198, 112, 0) 24%);
}

.kpi-spotlight-card::after {
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  border-radius: 0;
  background: linear-gradient(90deg, #b3d6f9 0%, #3684db 42%, rgba(238, 198, 112, 0.76) 78%, rgba(238, 198, 112, 0) 100%);
}

.kpi-spotlight-top,
.kpi-spotlight-label,
.kpi-spotlight-value,
.kpi-spotlight-text,
.kpi-progress,
.kpi-spotlight-metrics {
  position: relative;
  z-index: 1;
}

.kpi-spotlight-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.kpi-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.10) 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.kpi-chip--ghost {
  background: linear-gradient(180deg, rgba(179, 214, 249, 0.24) 0%, rgba(179, 214, 249, 0.12) 100%);
}

.kpi-spotlight-label {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kpi-spotlight-value {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 5.6rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.kpi-spotlight-text {
  margin: 16px 0 22px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.75;
}

.kpi-progress {
  position: relative;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.11) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 5px rgba(3, 25, 48, 0.24),
    0 8px 20px rgba(3, 25, 48, 0.12);
  overflow: hidden;
  margin-bottom: 22px;
}

.kpi-progress-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(90deg, #6fb4f2 0%, #b3d6f9 48%, #ffffff 100%);
  box-shadow:
    0 0 18px rgba(179, 214, 249, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.70);
  transition: width 0.6s ease;
}

.kpi-spotlight-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.kpi-spotlight-item {
  padding: 16px 16px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(10px);
}

.kpi-spotlight-item span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
}

.kpi-spotlight-item strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.kpi-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.kpi-mini-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 188px;
  padding: 24px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 251, 255, 0.98) 100%);
  border: 1px solid rgba(54, 132, 219, 0.14);
  box-shadow:
    0 20px 46px rgba(3, 25, 48, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.kpi-mini-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(54, 132, 219, 0.78) 0%, rgba(179, 214, 249, 0.88) 100%);
}

.kpi-mini-card::after {
  content: "";
  position: absolute;
  inset: 4px 0 0;
  background: linear-gradient(135deg, rgba(54, 132, 219, 0.08) 0%, rgba(54, 132, 219, 0) 34%);
  pointer-events: none;
}

.kpi-mini-card:nth-child(1) {
  background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
}

.kpi-mini-card:nth-child(2)::before {
  background: linear-gradient(90deg, #3684db 0%, #7fc0f0 52%, rgba(238, 198, 112, 0.72) 100%);
}

.kpi-mini-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fc 100%);
}

.kpi-mini-card:nth-child(3)::before {
  background: linear-gradient(90deg, #223a59 0%, #8fb6dc 100%);
}

.kpi-mini-card:nth-child(4) {
  background: linear-gradient(180deg, #ffffff 0%, #f0f8fb 100%);
}

.kpi-mini-card:nth-child(4)::before {
  background: linear-gradient(90deg, #2f7fce 0%, #74b8cf 100%);
}

.kpi-mini-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 50px rgba(3, 25, 48, 0.10),
    0 6px 16px rgba(54, 132, 219, 0.06);
  border-color: rgba(54, 132, 219, 0.22);
}

.kpi-mini-card--accent {
  background: linear-gradient(180deg, rgba(220, 239, 255, 0.70) 0%, rgba(255, 255, 255, 0.98) 74%);
  border-color: rgba(54, 132, 219, 0.22);
}

.kpi-mini-label {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #758BA5;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kpi-mini-value {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #031930;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.kpi-mini-note {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #758BA5;
  font-size: 0.96rem;
  line-height: 1.65;
}

.home-kpi-footer {
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(54, 132, 219, 0.08) 0%, rgba(255, 255, 255, 0.88) 100%);
  border: 1px solid rgba(54, 132, 219, 0.10);
}

.home-kpi-footer p {
  margin: 0;
  color: #758BA5;
  font-size: 0.96rem;
  line-height: 1.7;
}

.home-kpi-footer strong {
  color: #223A59;
  font-weight: 800;
}

@media (max-width: 980px) {
  .home-kpi-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-kpi-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-kpi-section {
    padding: 28px 0 72px;
  }

  .home-kpi-shell {
    width: min(1180px, calc(100% - 20px));
  }

  .home-kpi-copy h2 {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .home-kpi-copy p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .home-kpi-link {
    width: 100%;
  }

  .kpi-spotlight-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .kpi-spotlight-value {
    font-size: 3.4rem;
  }

  .kpi-spotlight-text {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .kpi-spotlight-metrics {
    grid-template-columns: 1fr;
  }

  .kpi-mini-grid {
    grid-template-columns: 1fr;
  }

  .kpi-mini-card {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .home-kpi-footer {
    padding: 16px 18px;
    border-radius: 18px;
  }
}

/* =========================================================
   HOME HALAWAN TOOLS SECTION
   ========================================================= */

.home-tools-section {
  position: relative;
  padding: 62px 0 74px;
  background:
    linear-gradient(180deg, #f5faff 0%, #e8f2fc 52%, #f7fbff 100%);
  overflow: hidden;
  isolation: isolate;
}

.home-tools-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(54, 132, 219, 0.14) 0%, rgba(54, 132, 219, 0) 46%),
    linear-gradient(118deg, rgba(3, 25, 48, 0.05) 0%, rgba(3, 25, 48, 0.05) 20%, transparent 20.2%, transparent 100%);
  pointer-events: none;
  z-index: -3;
}

.home-tools-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg,
      transparent 0%,
      transparent 23%,
      rgba(179, 214, 249, 0.20) 23.1%,
      rgba(179, 214, 249, 0.20) 36%,
      transparent 36.2%,
      transparent 49%,
      rgba(54, 132, 219, 0.10) 49.1%,
      rgba(54, 132, 219, 0.10) 63%,
      transparent 63.2%,
      transparent 100%);
  pointer-events: none;
  z-index: -2;
}

.home-tools-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.home-tools-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: start;
}

.home-tools-intro {
  position: relative;
  padding: 4px 0 0;
}

.home-tools-intro::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 58, 89, 0.24), rgba(34, 58, 89, 0));
}

.home-tools-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  color: #235f9f;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-tools-intro h2 {
  margin: 0 0 18px;
  max-width: 600px;
  color: #061f3a;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.home-tools-lead {
  margin: 0 0 22px;
  max-width: 600px;
  color: #405c78;
  font-size: 1rem;
  line-height: 1.9;
}

.home-tools-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
  max-width: 680px;
}

.home-tools-meta-item {
  padding: 15px 16px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 248, 255, 0.82) 100%);
  border: 1px solid rgba(54, 132, 219, 0.13);
  box-shadow:
    0 12px 28px rgba(3, 25, 48, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
}

.home-tools-meta-label {
  display: block;
  margin-bottom: 5px;
  color: #758BA5;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-tools-meta-item strong {
  color: #031930;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.home-tools-actions {
  margin-bottom: 18px;
}

.home-tools-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(135deg, #123f6d 0%, #031930 100%);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 36px rgba(3, 25, 48, 0.22),
    0 5px 14px rgba(54, 132, 219, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.home-tools-btn:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(135deg, #1a609e 0%, #0b3159 100%);
  box-shadow:
    0 22px 46px rgba(3, 25, 48, 0.26),
    0 8px 18px rgba(54, 132, 219, 0.14);
}

.home-tools-footnote {
  margin: 0;
  max-width: 620px;
  color: #5f7893;
  font-size: 0.93rem;
  line-height: 1.72;
}

/* GRID */
.home-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* CARD LOOK */
.home-tool-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(242, 249, 255, 0.94) 100%);
  border: 1px solid rgba(54, 132, 219, 0.20);
  box-shadow:
    0 20px 46px rgba(3, 25, 48, 0.085),
    0 6px 14px rgba(54, 132, 219, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease,
    background 0.26s ease;
}

.home-tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, rgba(54, 132, 219, 0.13) 0%, rgba(54, 132, 219, 0) 38%);
  pointer-events: none;
}

.home-tool-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, #3684db 0%, #b3d6f9 100%);
  pointer-events: none;
}

.home-tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(54, 132, 219, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 255, 0.98) 100%);
  box-shadow:
    0 26px 56px rgba(3, 25, 48, 0.12),
    0 8px 18px rgba(54, 132, 219, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.home-tool-card--featured {
  background:
    linear-gradient(180deg, rgba(217, 237, 255, 0.94) 0%, rgba(255, 255, 255, 0.96) 50%),
    linear-gradient(135deg, rgba(238, 198, 112, 0.14) 0%, rgba(238, 198, 112, 0) 36%);
  border-color: rgba(54, 132, 219, 0.32);
  box-shadow:
    0 24px 54px rgba(3, 25, 48, 0.12),
    0 8px 20px rgba(54, 132, 219, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.home-tool-card--featured::after {
  background: linear-gradient(90deg, #031930 0%, #3684db 54%, rgba(238, 198, 112, 0.82) 100%);
}

.home-tool-card:nth-child(2)::after {
  background: linear-gradient(90deg, #2f7fce 0%, #74b8cf 100%);
}

.home-tool-card:nth-child(3)::after {
  background: linear-gradient(90deg, #223a59 0%, #8fb6dc 100%);
}

.home-tool-card:nth-child(4)::after {
  background: linear-gradient(90deg, #3684db 0%, #b3d6f9 62%, rgba(117, 139, 165, 0.42) 100%);
}

.home-tool-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(238, 249, 252, 0.95) 100%);
}

.home-tool-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(244, 248, 252, 0.95) 100%);
}

.home-tool-card:nth-child(4) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(239, 247, 255, 0.95) 100%);
}

.home-tool-card-top {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.home-tool-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(54, 132, 219, 0.20) 0%, rgba(179, 214, 249, 0.34) 100%);
  border: 1px solid rgba(54, 132, 219, 0.18);
  color: #235f9f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-tool-card--featured .home-tool-badge {
  background: linear-gradient(180deg, rgba(54, 132, 219, 0.20) 0%, rgba(179, 214, 249, 0.34) 100%);
  border: 1px solid rgba(54, 132, 219, 0.18);
  color: #235f9f;
  box-shadow: none;
}


.home-tool-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #031930;
  font-size: 1.08rem;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.025em;
  max-width: 95%;
}

.home-tool-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: #35506f;
  font-size: 0.95rem;
  line-height: 1.75;
  flex: 1;
}

.home-tool-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #031930;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.25s ease;
}

.home-tool-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: rgba(3, 25, 48, 0.20);
  transition: background 0.25s ease, transform 0.25s ease;
}

.home-tool-link:hover {
  color: #3684DB;
}

.home-tool-link:hover::after {
  background: rgba(54, 132, 219, 0.5);
  transform: scaleX(1.02);
}

@media (max-width: 1180px) {
  .home-tools-intro h2 {
    font-size: clamp(1.95rem, 3.2vw, 2.8rem);
  }
}

@media (max-width: 1040px) {
  .home-tools-layout {
    grid-template-columns: 1fr;
  }

  .home-tools-intro::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .home-tools-section {
    padding: 54px 0 68px;
  }

  .home-tools-shell {
    width: min(1180px, calc(100% - 20px));
  }

  .home-tools-intro h2 {
    font-size: 1.92rem;
    line-height: 1.04;
  }

  .home-tools-lead {
    font-size: 0.97rem;
    line-height: 1.8;
  }

  .home-tools-meta {
    grid-template-columns: 1fr;
  }

  .home-tools-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-tool-card {
    min-height: auto;
    padding: 20px 18px;
    border-radius: 22px;
  }

  .home-tools-btn {
    width: 100%;
  }
}

/* =========================================================
   HALAWAN WEB FOOTER — IMAGE ONLY
   ========================================================= */

.site-footer.home-footer-image {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}

.home-footer-image-banner {
  display: block;
  width: 100%;
  max-height: 96px;
  object-fit: cover;
  object-position: center;
}

/* =========================================================
   INFORMASI PAGE
   ========================================================= */

.informasi-hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 100px 0 100px;
  background:
    linear-gradient(
      90deg,
      rgba(3, 25, 48, 0.92) 0%,
      rgba(8, 45, 80, 0.78) 24%,
      rgba(34, 58, 89, 0.44) 50%,
      rgba(54, 132, 219, 0.14) 74%,
      rgba(3, 25, 48, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 25, 48, 0.18) 0%,
      rgba(54, 132, 219, 0.06) 44%,
      rgba(3, 25, 48, 0.30) 100%
    ),
    url("../images/halawan-informasi-hero.png") center center / cover no-repeat;
}

.informasi-hero__overlay {
  display: block;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(179, 214, 249, 0.16) 0%, rgba(179, 214, 249, 0) 26%),
    linear-gradient(90deg, rgba(238, 198, 112, 0.10) 0%, rgba(238, 198, 112, 0) 18%);
  pointer-events: none;
}

.informasi-hero .container {
  position: relative;
  z-index: 1;
}

.informasi-hero__content {
  max-width: 620px;
  padding-top: 18px;
}

.section-kicker--light {
  color: rgba(214, 234, 255, 0.98);
  text-shadow: 0 4px 16px rgba(3, 25, 48, 0.24);
}

.informasi-hero__content h1 {
  margin: 0 0 18px;
  font-size: clamp(3.9rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(3, 25, 48, 0.22);
}

.informasi-hero__content p {
  margin: 0;
  max-width: 31ch;
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 980px) {
  .informasi-hero {
    min-height: 500px;
    padding: 148px 0 170px;
    background-position: 62% center;
  }

  .informasi-hero__content h1 {
    font-size: clamp(3rem, 10vw, 5rem);
  }
}

@media (max-width: 768px) {
  .informasi-hero {
    min-height: 400px;
    padding: 124px 0 120px;
    background-position: 68% center;
  }

  .informasi-hero__content h1 {
    margin-bottom: 14px;
    line-height: 0.96;
  }

  .informasi-hero__content p {
    font-size: 0.98rem;
    line-height: 1.74;
    max-width: 28ch;
  }
}

/*=========================================================
    3 PILLAR INFORMASI
  =========================================================*/

.informasi-pillars {
  position: relative;
  margin-top: -72px;
  padding: 0 0 96px;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f4f9fe 55%, #fbfdff 100%);
}

.pillars-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(244, 250, 255, 0.98) 52%, rgba(230, 242, 255, 0.94) 100%);
  border: 1px solid rgba(54, 132, 219, 0.18);
  border-radius: 38px;
  padding: 36px 28px 26px;
  box-shadow:
    0 30px 72px rgba(3, 25, 48, 0.12),
    0 12px 28px rgba(54, 132, 219, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.pillars-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(3, 25, 48, 0.88) 0%,
    rgba(54, 132, 219, 0.72) 34%,
    rgba(179, 214, 249, 0.92) 68%,
    rgba(54, 132, 219, 0) 100%
  );
}

.pillars-shell::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -110px;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(179, 214, 249, 0.28) 0%, rgba(179, 214, 249, 0) 72%);
  pointer-events: none;
}

.pillars-shell .section-kicker {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  color: #3684DB;
}

.pillars-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.pillars-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(54, 132, 219, 0.18) 0%,
    rgba(209, 221, 237, 0.42) 100%
  );
}

.pillar-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pillar-card {
  --card-bg-top: rgba(255, 255, 255, 0.99);
  --card-bg-bottom: rgba(248, 251, 255, 0.99);
  --card-tint: rgba(179, 214, 249, 0.14);
  --card-glow: rgba(179, 214, 249, 0.10);
  --card-line: rgba(54, 132, 219, 0.20);
  --card-border: rgba(54, 132, 219, 0.16);
  --card-link-line: rgba(34, 58, 89, 0.24);

  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 248px;
  padding: 26px 22px 20px;
  border-radius: 30px;
  text-decoration: none;
  background:
    linear-gradient(180deg, var(--card-bg-top) 0%, var(--card-bg-bottom) 100%);
  border: 1px solid var(--card-border);
  box-shadow:
    0 18px 42px rgba(3, 25, 48, 0.07),
    0 6px 14px rgba(54, 132, 219, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.pillar-card:nth-child(1) {
  --card-bg-bottom: rgba(243, 249, 255, 0.99);
  --card-tint: rgba(179, 214, 249, 0.22);
  --card-glow: rgba(179, 214, 249, 0.14);
  --card-line: rgba(54, 132, 219, 0.26);
  --card-border: rgba(54, 132, 219, 0.22);
}

.pillar-card:nth-child(2) {
  --card-bg-bottom: rgba(246, 250, 255, 0.99);
  --card-tint: rgba(209, 221, 237, 0.28);
  --card-glow: rgba(117, 139, 165, 0.10);
  --card-line: rgba(117, 139, 165, 0.22);
  --card-border: rgba(117, 139, 165, 0.16);
}

.pillar-card:nth-child(3) {
  --card-bg-bottom: rgba(247, 252, 255, 0.99);
  --card-tint: rgba(198, 225, 248, 0.20);
  --card-glow: rgba(54, 132, 219, 0.10);
  --card-line: rgba(34, 58, 89, 0.16);
  --card-border: rgba(54, 132, 219, 0.14);
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--card-line) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
}

.pillar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      180deg,
      var(--card-tint) 0%,
      rgba(255, 255, 255, 0) 38%
    ),
    radial-gradient(
      circle at 100% 0%,
      var(--card-glow) 0%,
      rgba(255, 255, 255, 0) 42%
    );
  pointer-events: none;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(54, 132, 219, 0.30);
  box-shadow:
    0 26px 56px rgba(3, 25, 48, 0.12),
    0 8px 18px rgba(54, 132, 219, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.pillar-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-size: clamp(1.48rem, 2vw, 1.86rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #031930;
}

.pillar-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 24ch;
  font-size: 0.98rem;
  line-height: 1.78;
  color: #5d7691;
}

.pillar-card__link {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(209, 221, 237, 0.66);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #18395d;
}

.pillar-card__link::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--card-link-line);
  transition:
    width 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.pillar-card:hover .pillar-card__link {
  color: #3684DB;
  border-top-color: rgba(179, 214, 249, 0.82);
}

.pillar-card:hover .pillar-card__link::after {
  width: 58px;
  background: rgba(54, 132, 219, 0.56);
  transform: translateX(2px);
}

@media (max-width: 1100px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: auto;
  }

  .pillar-card p {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .informasi-pillars {
    margin-top: -46px;
    padding-bottom: 74px;
  }

  .pillars-shell {
    border-radius: 30px;
    padding: 26px 18px 18px;
  }

  .pillars-heading {
    margin-bottom: 16px;
  }

  .pillar-card {
    padding: 22px 18px 18px;
    border-radius: 24px;
  }

  .pillar-card::before {
    left: 18px;
    right: 18px;
  }

  .pillar-card h3 {
    font-size: 1.34rem;
  }

  .pillar-card p {
    font-size: 0.96rem;
  }
}

/* =========================================================
   INFORMASI - NAVBAR SCROLL BEHAVIOR
   ========================================================= */

.site-header.site-header--hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    backdrop-filter 0.28s ease,
    -webkit-backdrop-filter 0.28s ease;
}

/* =========================================================
   ISI HALAMAN INFORMASI - INFO HUB
   ========================================================= */

.halawan-info-hub {
  position: relative;
  padding: 24px 0 96px;
  background:
    linear-gradient(180deg, #fbfdff 0%, #eef6ff 48%, #f8fbff 100%);
}

.halawan-info-hub::before {
  content: "";
  display: block;
  width: min(1260px, calc(100% - 48px));
  height: 1px;
  margin: 0 auto 22px;
  background: linear-gradient(
    90deg,
    rgba(34, 58, 89, 0) 0%,
    rgba(34, 58, 89, 0.08) 10%,
    rgba(54, 132, 219, 0.32) 50%,
    rgba(34, 58, 89, 0.08) 90%,
    rgba(34, 58, 89, 0) 100%
  );
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.info-hub-wrap {
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

.info-premium-section {
  position: relative;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: 540px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(179, 214, 249, 0.22) 0%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 251, 255, 0.98) 56%, rgba(232, 244, 255, 0.95) 100%);
  border: 1px solid rgba(54, 132, 219, 0.16);
  box-shadow:
    0 28px 68px rgba(3, 25, 48, 0.10),
    0 10px 24px rgba(54, 132, 219, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.info-premium-section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #031930 0%, #3684db 46%, #b3d6f9 100%);
  z-index: 2;
}

.info-premium-section::after {
  content: "";
  position: absolute;
  inset: 4px 0 0;
  background:
    linear-gradient(135deg, rgba(54, 132, 219, 0.08) 0%, rgba(54, 132, 219, 0) 34%),
    linear-gradient(135deg, rgba(34, 58, 89, 0.035) 0, rgba(34, 58, 89, 0.035) 1px, transparent 1px, transparent 100%);
  background-size: auto, 24px 24px;
  opacity: 0.60;
  pointer-events: none;
  z-index: 1;
}

.info-premium-section:nth-child(2)::before {
  background: linear-gradient(90deg, #223a59 0%, #3684db 52%, #74b8cf 100%);
}

.info-premium-section:nth-child(3)::before {
  background: linear-gradient(90deg, #031930 0%, #2f7fce 54%, rgba(238, 198, 112, 0.72) 100%);
}

.info-section-left {
  position: relative;
  z-index: 2;
  min-width: 0;
  height: 100%;
  border-right: 1px solid rgba(34, 58, 89, 0.08);
  background: linear-gradient(180deg, #e8f3fd 0%, #d9e8f7 100%);
}

.info-section-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #e8f3fd 0%, #d9e8f7 100%);
}

.info-section-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 25, 48, 0.02) 0%, rgba(3, 25, 48, 0.10) 100%),
    linear-gradient(135deg, rgba(54, 132, 219, 0.16) 0%, rgba(54, 132, 219, 0) 36%);
  pointer-events: none;
}

.info-section-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.info-section-right {
  position: relative;
  z-index: 2;
  min-width: 0;
  height: 100%;
  padding: 14px 12px 14px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 251, 255, 0.96) 100%);
}

.info-section-scroll {
  height: 100%;
  max-height: 512px;
  overflow-y: auto;
  padding: 2px 14px 2px 30px;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin;
  scrollbar-color: rgba(54, 132, 219, 0.32) transparent;
}

.info-section-scroll::-webkit-scrollbar {
  width: 8px;
}

.info-section-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.info-section-scroll::-webkit-scrollbar-thumb {
  background: rgba(54, 132, 219, 0.30);
  border-radius: 999px;
}

.info-section-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(54, 132, 219, 0.42);
}

.info-item {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 28px 14px 28px 0;
  border-bottom: 1px solid rgba(34, 58, 89, 0.09);
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.info-item::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 24px;
  bottom: 24px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(54, 132, 219, 0) 0%, rgba(54, 132, 219, 0.58) 48%, rgba(179, 214, 249, 0) 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item:hover {
  transform: translateX(4px);
  border-bottom-color: rgba(54, 132, 219, 0.18);
}

.info-item:hover::before {
  opacity: 1;
}

.info-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(232, 244, 255, 0.98) 0%, rgba(204, 229, 252, 0.94) 100%);
  border: 1px solid rgba(54, 132, 219, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 6px 14px rgba(54, 132, 219, 0.08);
  font-family: "Lato", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #235f9f;
}

.info-date {
  font-family: "Lato", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #7189a6;
}

.info-item h3 {
  margin: 0 0 12px;
  font-family: "Lato", sans-serif;
  font-size: clamp(1.22rem, 1.52vw, 1.72rem);
  line-height: 1.34;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #061f3a;
}

.info-item p {
  margin: 0;
  max-width: 860px;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
  color: #617b97;
}

@media (max-width: 1180px) {
  .info-premium-section {
    grid-template-columns: 300px minmax(0, 1fr);
    min-height: 500px;
  }

  .info-section-image {
    min-height: 500px;
    padding: 16px;
  }

  .info-section-scroll {
    max-height: 472px;
    padding: 2px 12px 2px 26px;
  }

  .info-item {
    padding: 26px 10px 26px 0;
  }
}

@media (max-width: 980px) {
  .halawan-info-hub {
    padding: 18px 0 72px;
  }

  .halawan-info-hub::before {
    width: min(100%, calc(100% - 24px));
    margin: 0 auto 18px;
  }

  .info-hub-wrap {
    width: min(100%, calc(100% - 24px));
    gap: 24px;
  }

  .info-premium-section {
    grid-template-columns: 1fr;
    min-height: unset;
    border-radius: 28px;
  }

  .info-section-left {
    height: 270px;
    border-right: none;
    border-bottom: 1px solid rgba(34, 58, 89, 0.08);
  }

  .info-section-image {
    min-height: 270px;
    padding: 16px;
  }

  .info-section-right {
    padding: 10px 8px 12px 0;
  }

  .info-section-scroll {
    max-height: 380px;
    padding: 2px 10px 2px 22px;
  }

  .info-item {
    padding: 22px 8px 22px 0;
  }
}

@media (max-width: 640px) {
  .halawan-info-hub {
    padding: 18px 0 72px;
  }

  .info-premium-section {
    border-radius: 24px;
  }

  .info-section-left {
    height: 220px;
  }

  .info-section-image {
    min-height: 220px;
    padding: 12px;
  }

  .info-section-scroll {
    max-height: 340px;
    padding: 2px 8px 2px 18px;
  }

  .info-item {
    padding: 20px 6px 20px 0;
  }

  .info-item-top {
    margin-bottom: 14px;
  }

  .info-badge {
    min-height: 34px;
    padding: 0 16px;
    font-size: 0.8rem;
  }

  .info-date {
    font-size: 0.86rem;
  }

  .info-item h3 {
    font-size: 1.08rem;
    line-height: 1.38;
  }

  .info-item p {
    font-size: 0.94rem;
    line-height: 1.64;
  }
}

/* =========================================================
   DATA KEUANGAN — HERO + KPI BLOCK LOCK
   ========================================================= */

.page-data-keuangan--fullbleed {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 150px 0 118px;
  background:
    linear-gradient(
      90deg,
      rgba(2, 18, 38, 0.96) 0%,
      rgba(8, 45, 80, 0.88) 22%,
      rgba(34, 58, 89, 0.62) 46%,
      rgba(54, 132, 219, 0.24) 72%,
      rgba(3, 25, 48, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 10, 28, 0.24) 0%,
      rgba(54, 132, 219, 0.08) 42%,
      rgba(3, 25, 48, 0.30) 100%
    ),
    url("../images/halawan-data-keuangan-hero.png") center center / cover no-repeat;
}

.page-data-keuangan--fullbleed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 108px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.22) 42%,
    rgba(255, 255, 255, 0.88) 78%,
    #ffffff 100%
  );
  pointer-events: none;
}

.page-data-keuangan__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 73% 28%, rgba(54, 132, 219, 0.36) 0%, rgba(54, 132, 219, 0) 22%),
    radial-gradient(circle at 86% 30%, rgba(179, 214, 249, 0.22) 0%, rgba(179, 214, 249, 0) 20%),
    linear-gradient(135deg, rgba(238, 198, 112, 0.10) 0%, rgba(238, 198, 112, 0) 20%);
  pointer-events: none;
}

.page-data-keuangan--fullbleed .container {
  position: relative;
  z-index: 1;
}

.page-data-keuangan__content {
  max-width: 620px;
  padding-top: 4px;
}

.section-kicker--light {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(54, 132, 219, 0.98);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-data-keuangan__content h1 {
  margin: 0 0 20px;
  font-size: clamp(3.5rem, 6.8vw, 6.1rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(3, 25, 48, 0.22);
}

.page-data-keuangan__content p {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(1rem, 1.18vw, 1.08rem);
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 4px 18px rgba(3, 25, 48, 0.14);
}

/* KPI BLOCK */
.data-dashboard-section {
  position: relative;
  margin-top: -56px;
  padding: 0 0 90px;
  background:
    linear-gradient(180deg, #ffffff 0%, #eef6ff 56%, #fbfdff 100%);
  z-index: 3;
}

.data-dashboard-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(179, 214, 249, 0.28) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 255, 0.98) 52%, rgba(230, 242, 255, 0.94) 100%);
  border: 1px solid rgba(54, 132, 219, 0.18);
  box-shadow:
    0 32px 78px rgba(3, 25, 48, 0.14),
    0 12px 28px rgba(54, 132, 219, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.data-dashboard-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    #031930 0%,
    rgba(54, 132, 219, 0.84) 38%,
    rgba(179, 214, 249, 0.94) 72%,
    rgba(54, 132, 219, 0) 100%
  );
}

.data-dashboard-shell::after {
  content: "";
  position: absolute;
  inset: 5px 0 0;
  background:
    linear-gradient(135deg, rgba(54, 132, 219, 0.08) 0%, rgba(54, 132, 219, 0) 34%),
    linear-gradient(135deg, rgba(34, 58, 89, 0.035) 0, rgba(34, 58, 89, 0.035) 1px, transparent 1px, transparent 100%);
  background-size: auto, 24px 24px;
  opacity: 0.58;
  pointer-events: none;
}

.data-dashboard-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.data-dashboard-copy {
  max-width: 760px;
}

.data-dashboard-kicker {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #235f9f;
}

.data-dashboard-copy h2 {
  margin: 0 0 12px;
  color: #031930;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.data-dashboard-copy p {
  margin: 0;
  max-width: 62ch;
  color: #5f7893;
  font-size: 1rem;
  line-height: 1.78;
}

.data-dashboard-actions {
  flex: 0 0 auto;
}

.data-dashboard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease;
}

.data-dashboard-btn:hover {
  transform: translateY(-2px);
}

.data-dashboard-btn--primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(135deg, #123f6d 0%, #031930 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 36px rgba(3, 25, 48, 0.22),
    0 5px 14px rgba(54, 132, 219, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.data-dashboard-btn--secondary {
  background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
  color: #031930;
  border: 1px solid rgba(54, 132, 219, 0.20);
  box-shadow:
    0 12px 26px rgba(3, 25, 48, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.data-dashboard-btn--secondary:hover {
  background: #ffffff;
  border-color: rgba(54, 132, 219, 0.20);
}

.data-dashboard-frame-wrap {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(224, 239, 254, 0.96) 0%, rgba(248, 251, 255, 0.98) 100%);
  border: 1px solid rgba(54, 132, 219, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 36px rgba(3, 25, 48, 0.07);
}

.data-dashboard-frame-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.data-dashboard-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #123c67 0%, #031930 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 8px 16px rgba(3, 25, 48, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.data-dashboard-chip--soft {
  background: linear-gradient(180deg, rgba(54, 132, 219, 0.22) 0%, rgba(179, 214, 249, 0.34) 100%);
  color: #1b5a99;
  border: 1px solid rgba(54, 132, 219, 0.12);
}

.data-dashboard-chip--ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 255, 0.92) 100%);
  color: #5f7893;
  border: 1px solid rgba(34, 58, 89, 0.10);
}

.data-dashboard-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(34, 58, 89, 0.08);
  box-shadow:
    0 18px 40px rgba(3, 25, 48, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.data-dashboard-frame iframe {
  display: block;
  width: 100%;
  height: 760px;
  min-height: 760px;
  border: 0;
  background: #ffffff;
}

.data-dashboard-foot {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 18px 2px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(34, 58, 89, 0.08);
}

.data-dashboard-foot p {
  margin: 0;
  max-width: 58ch;
  color: #7389a3;
  font-size: 0.93rem;
  line-height: 1.72;
}

@media (max-width: 980px) {
  .page-data-keuangan--fullbleed {
    min-height: 360px;
    padding: 138px 0 98px;
    background-position: 62% center;
  }

  .page-data-keuangan__content h1 {
    font-size: clamp(2.8rem, 9vw, 4.8rem);
  }

  .data-dashboard-section {
    margin-top: -38px;
    padding-bottom: 74px;
  }

  .data-dashboard-shell {
    padding: 22px;
    border-radius: 28px;
  }

  .data-dashboard-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .data-dashboard-actions {
    width: 100%;
  }

  .data-dashboard-btn {
    width: 100%;
  }

  .data-dashboard-frame iframe {
    height: 620px;
    min-height: 620px;
  }

  .data-dashboard-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-data-keuangan--fullbleed {
    min-height: 320px;
    padding: 122px 0 82px;
    background-position: 68% center;
  }

  .page-data-keuangan--fullbleed::after {
    height: 80px;
  }

  .page-data-keuangan__content h1 {
    margin-bottom: 16px;
    line-height: 0.94;
  }

  .page-data-keuangan__content p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .data-dashboard-section {
    margin-top: -22px;
    padding-bottom: 66px;
  }

  .data-dashboard-shell {
    padding: 16px;
    border-radius: 22px;
  }

  .data-dashboard-frame-wrap {
    padding: 12px;
    border-radius: 20px;
  }

  .data-dashboard-frame {
    border-radius: 18px;
  }

  .data-dashboard-frame iframe {
    height: 540px;
    min-height: 540px;
  }
}

/* =========================================================
   DATA KEUANGAN - DOWNLOAD DATA KEUANGAN
   ========================================================= */

.dq-download-section {
  position: relative;
  padding: 76px 0 92px;
  background: linear-gradient(180deg, #fbfdff 0%, #edf6ff 52%, #f8fbff 100%);
  overflow: hidden;
}

.dq-download-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(54, 132, 219, 0.12) 0%, rgba(54, 132, 219, 0) 34%),
    linear-gradient(292deg, rgba(179, 214, 249, 0.22) 0%, rgba(179, 214, 249, 0) 22%),
    repeating-linear-gradient(
      -45deg,
      rgba(54, 132, 219, 0.045) 0,
      rgba(54, 132, 219, 0.045) 1px,
      transparent 1px,
      transparent 24px
    );
  pointer-events: none;
}

.dq-download-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 34px 34px;
  border: 1px solid rgba(54, 132, 219, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 250, 255, 0.98) 54%, rgba(230, 242, 255, 0.94) 100%);
  box-shadow:
    0 30px 72px rgba(3, 25, 48, 0.12),
    0 12px 28px rgba(54, 132, 219, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
}

.dq-download-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #031930 0%, #3684db 42%, #b3d6f9 78%, rgba(179, 214, 249, 0) 100%);
}

.dq-download-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.dq-download-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(54, 132, 219, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(208, 232, 254, 0.90) 100%);
  color: #2f6eb0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dq-download-title {
  margin: 0;
  color: #031930;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.dq-download-copy {
  margin: 14px 0 0;
  max-width: 720px;
  color: #556b82;
  font-size: 16px;
  line-height: 1.8;
}

.dq-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.dq-doc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 248px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(54, 132, 219, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(242, 249, 255, 0.96) 100%);
  box-shadow:
    0 18px 42px rgba(3, 25, 48, 0.08),
    0 6px 14px rgba(54, 132, 219, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.dq-doc-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3684db 0%, #90c2f3 68%, rgba(238, 198, 112, 0.62) 100%);
}

.dq-doc-card::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(54, 132, 219, 0.15) 0%, rgba(54, 132, 219, 0) 72%);
  pointer-events: none;
}

.dq-doc-card:nth-child(2)::before {
  background: linear-gradient(90deg, #223a59 0%, #8fb6dc 100%);
}

.dq-doc-card:nth-child(3)::before {
  background: linear-gradient(90deg, #2f7fce 0%, #74b8cf 100%);
}

.dq-doc-card:nth-child(4)::before {
  background: linear-gradient(90deg, #031930 0%, #3684db 54%, #b3d6f9 100%);
}

.dq-doc-card:hover {
  transform: translateY(-7px);
  border-color: rgba(54, 132, 219, 0.34);
  background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
  box-shadow:
    0 28px 58px rgba(3, 25, 48, 0.13),
    0 8px 20px rgba(54, 132, 219, 0.10);
}

.dq-doc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.dq-doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dq-doc-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(34, 58, 89, 0.10);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 255, 0.92) 100%);
  color: #697d92;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dq-doc-badge--pdf {
  border-color: rgba(54, 132, 219, 0.22);
  background: linear-gradient(180deg, rgba(54, 132, 219, 0.18) 0%, rgba(179, 214, 249, 0.30) 100%);
  color: #184f89;
}

.dq-doc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, #e5f2ff 0%, #cfe6fb 100%);
  color: #225f9e;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 10px 22px rgba(54, 132, 219, 0.14);
  flex-shrink: 0;
}

.dq-doc-icon svg {
  width: 22px;
  height: 22px;
}

.dq-doc-body {
  flex: 1 1 auto;
}

.dq-doc-title {
  margin: 0 0 10px;
  color: #031930;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.dq-doc-text {
  margin: 0;
  color: #60758c;
  font-size: 15px;
  line-height: 1.78;
}

.dq-doc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(34, 58, 89, 0.08);
}

.dq-doc-footleft {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dq-doc-linktext {
  color: #0b3159;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.dq-doc-subtext {
  color: #7b8fa4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.dq-doc-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, #0b3159 0%, #031930 100%);
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  box-shadow:
    0 12px 22px rgba(3, 25, 48, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.dq-doc-card:hover .dq-doc-arrow {
  transform: translate(2px, -2px);
  background: linear-gradient(180deg, #0b3d6e 0%, #0a2f56 100%);
  box-shadow: 0 14px 24px rgba(10, 47, 86, 0.22);
}

@media (max-width: 1024px) {
  .dq-download-section {
    padding: 64px 0 80px;
  }

  .dq-download-shell {
    width: min(1180px, calc(100% - 28px));
    padding: 32px 24px 24px;
  }

  .dq-download-grid {
    gap: 18px;
  }

  .dq-doc-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .dq-download-grid {
    grid-template-columns: 1fr;
  }

  .dq-download-copy {
    font-size: 15px;
    line-height: 1.72;
  }

  .dq-doc-card {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .dq-download-section {
    padding: 54px 0 68px;
  }

  .dq-download-shell {
    width: min(1180px, calc(100% - 20px));
    padding: 24px 16px 18px;
    border-radius: 22px;
  }

  .dq-download-head {
    margin-bottom: 22px;
  }

  .dq-download-title {
    font-size: 26px;
  }

  .dq-doc-card {
    padding: 18px 16px 16px;
    border-radius: 22px;
  }

  .dq-doc-title {
    font-size: 20px;
  }

  .dq-doc-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .dq-doc-foot {
    margin-top: 20px;
    padding-top: 14px;
  }

  .dq-doc-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}

/* =========================================================
   DATA KEUANGAN - SHOWCASE LAPORAN KEUANGAN
   ========================================================= */

.dq-lk-section {
  position: relative;
  padding: 74px 0 92px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 50%, #fbfdff 100%);
  overflow: hidden;
}

.dq-lk-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(54, 132, 219, 0.11) 0%, rgba(54, 132, 219, 0) 34%),
    linear-gradient(292deg, rgba(179, 214, 249, 0.18) 0%, rgba(179, 214, 249, 0) 22%),
    repeating-linear-gradient(
      -45deg,
      rgba(54, 132, 219, 0.04) 0,
      rgba(54, 132, 219, 0.04) 1px,
      transparent 1px,
      transparent 26px
    );
  pointer-events: none;
}

.dq-lk-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.dq-lk-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.dq-lk-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(54, 132, 219, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(208, 232, 254, 0.90) 100%);
  color: #2f6eb0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dq-lk-title {
  margin: 0;
  color: #031930;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.dq-lk-copy {
  margin: 14px 0 0;
  max-width: 700px;
  color: #556b82;
  font-size: 16px;
  line-height: 1.8;
}

.dq-lk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.dq-lk-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(54, 132, 219, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(242, 249, 255, 0.98) 100%);
  box-shadow:
    0 22px 50px rgba(3, 25, 48, 0.09),
    0 7px 16px rgba(54, 132, 219, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  overflow: hidden;
  transition:
    transform 0.30s ease,
    box-shadow 0.30s ease,
    border-color 0.30s ease;
}

.dq-lk-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #031930 0%, #3684db 54%, #9dc8f2 100%);
  opacity: 0.92;
  z-index: 2;
}

.dq-lk-card:hover {
  transform: translateY(-6px);
  border-color: rgba(54, 132, 219, 0.34);
  box-shadow:
    0 30px 64px rgba(3, 25, 48, 0.13),
    0 10px 24px rgba(54, 132, 219, 0.10);
}

.dq-lk-cover-link {
  position: relative;
  display: block;
  background: linear-gradient(180deg, #e8f3fd 0%, #d9e8f7 100%);
  text-decoration: none;
  overflow: hidden;
}

.dq-lk-cover-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(3, 25, 48, 0) 58%, rgba(3, 25, 48, 0.16) 100%),
    linear-gradient(135deg, rgba(54, 132, 219, 0.12) 0%, rgba(54, 132, 219, 0) 38%);
  z-index: 1;
  pointer-events: none;
}

.dq-lk-cover-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 58, 89, 0.04) 0%, rgba(34, 58, 89, 0.14) 50%, rgba(34, 58, 89, 0.04) 100%);
  z-index: 2;
  pointer-events: none;
}

.dq-lk-cover {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5.6;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.55s ease;
}

.dq-lk-card:hover .dq-lk-cover {
  transform: scale(1.035);
}

.dq-lk-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 20px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 250, 255, 0.98) 100%);
}

.dq-lk-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 58, 89, 0.03) 0%, rgba(34, 58, 89, 0.10) 50%, rgba(34, 58, 89, 0.03) 100%);
}

.dq-lk-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dq-lk-badge,
.dq-lk-year {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dq-lk-badge--audited {
  border: 1px solid rgba(54, 132, 219, 0.22);
  background: linear-gradient(180deg, rgba(54, 132, 219, 0.18) 0%, rgba(179, 214, 249, 0.30) 100%);
  color: #184f89;
}

.dq-lk-badge--review {
  border: 1px solid rgba(34, 58, 89, 0.16);
  background: linear-gradient(180deg, rgba(34, 58, 89, 0.12) 0%, rgba(117, 139, 165, 0.22) 100%);
  color: #3b556f;
}

.dq-lk-year {
  border: 1px solid rgba(34, 58, 89, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 255, 0.92) 100%);
  color: #697d92;
}

.dq-lk-name {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.dq-lk-name a {
  display: inline-block;
  color: #031930;
  text-decoration: none;
  background-image: linear-gradient(rgba(10, 78, 142, 0.55), rgba(10, 78, 142, 0.55));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition:
    color 0.24s ease,
    background-size 0.28s ease,
    opacity 0.24s ease;
}

.dq-lk-name a:hover {
  color: #0a4e8e;
  background-size: 100% 1px;
}

.dq-lk-note {
  margin: 0;
  color: #60758c;
  font-size: 15px;
  line-height: 1.72;
}

@media (max-width: 1100px) {
  .dq-lk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .dq-lk-section {
    padding: 62px 0 78px;
  }

  .dq-lk-shell {
    width: min(1180px, calc(100% - 28px));
  }

  .dq-lk-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dq-lk-copy {
    font-size: 15px;
    line-height: 1.72;
  }

  .dq-lk-card:hover {
    transform: translateY(-4px);
  }

  .dq-lk-card:hover .dq-lk-cover {
    transform: scale(1.02);
  }
}

@media (max-width: 480px) {
  .dq-lk-section {
    padding: 54px 0 68px;
  }

  .dq-lk-shell {
    width: min(1180px, calc(100% - 20px));
  }

  .dq-lk-title {
    font-size: 26px;
  }

  .dq-lk-card {
    border-radius: 22px;
  }

  .dq-lk-body {
    padding: 18px 16px 18px;
  }

  .dq-lk-body::before {
    left: 16px;
    right: 16px;
  }

  .dq-lk-name {
    font-size: 21px;
  }

  .dq-lk-note {
    font-size: 14px;
    line-height: 1.68;
  }
}

/* =========================================================
   LK 2025 DISABLED STATE
   ========================================================= */

.dq-lk-card--disabled {
  border-color: rgba(34, 58, 89, 0.09);
}

.dq-lk-card--disabled:hover {
  transform: none;
  border-color: rgba(34, 58, 89, 0.09);
  box-shadow:
    0 18px 42px rgba(3, 25, 48, 0.06),
    0 4px 12px rgba(3, 25, 48, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.dq-lk-cover-link--disabled {
  cursor: default;
}

.dq-lk-card--disabled:hover .dq-lk-cover {
  transform: none;
}

.dq-lk-name-text {
  display: inline-block;
  color: #031930;
}

/* =========================================================
   PENATAUSAHAAN KEUANGAN - ATURAN 2026
   ========================================================= */

.dq-rules-section {
  position: relative;
  padding: 72px 0 88px;
  background: linear-gradient(180deg, #fbfdff 0%, #edf6ff 100%);
}

.dq-rules-shell {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 30px 28px;
  border: 1px solid rgba(54, 132, 219, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(179, 214, 249, 0.24) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 250, 255, 0.98) 54%, rgba(230, 242, 255, 0.94) 100%);
  box-shadow:
    0 30px 72px rgba(3, 25, 48, 0.12),
    0 12px 28px rgba(54, 132, 219, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.dq-rules-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #031930 0%, #3684db 48%, #b3d6f9 100%);
}

.dq-rules-head {
  margin-bottom: 24px;
}

.dq-rules-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(54, 132, 219, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(208, 232, 254, 0.90) 100%);
  color: #2f6eb0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dq-rules-title {
  margin: 0;
  color: #031930;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.dq-rules-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dq-rule-item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(54, 132, 219, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(242, 249, 255, 0.96) 100%);
  box-shadow:
    0 14px 32px rgba(3, 25, 48, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.dq-rule-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #3684db 0%, #b3d6f9 100%);
}

.dq-rule-item:hover {
  transform: translateY(-3px);
  border-color: rgba(54, 132, 219, 0.30);
  background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
  box-shadow:
    0 22px 44px rgba(3, 25, 48, 0.10),
    0 8px 20px rgba(54, 132, 219, 0.08);
}

.dq-rule-text {
  color: #031930;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.dq-rule-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, #0b3159 0%, #031930 100%);
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  box-shadow:
    0 12px 22px rgba(3, 25, 48, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.dq-rule-item:hover .dq-rule-arrow {
  transform: translate(2px, -2px);
  background: linear-gradient(180deg, #0b3d6e 0%, #0a2f56 100%);
  box-shadow: 0 14px 22px rgba(10, 47, 86, 0.20);
}

@media (max-width: 768px) {
  .dq-rules-shell {
    width: min(1180px, calc(100% - 28px));
    padding: 26px 18px 18px;
    border-radius: 22px;
  }

  .dq-rule-item {
    grid-template-columns: 1fr 38px;
    padding: 16px;
  }

  .dq-rule-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .dq-rule-arrow {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .dq-rules-section {
    padding: 54px 0 68px;
  }

  .dq-rules-shell {
    width: min(1180px, calc(100% - 20px));
    padding: 22px 14px 16px;
  }

  .dq-rules-title {
    font-size: 25px;
  }

  .dq-rule-item {
    gap: 12px;
    padding: 14px;
  }

  .dq-rule-text {
    font-size: 0.92rem;
  }
}
