/* ==================================================
   Design tokens and base
   ================================================== */
:root {
  --navy: #063a69;
  --blue: #0e73bf;
  --dark-blue: #0e222b;
  --footer-blue: #263b91;
  --gold: #f8a50b;
  --yellow: #f9ca24;
  --red: #e52b24;
  --off-white: #f4f7fb;
  --white: #ffffff;
  --text: #1d2939;
  --muted: #667085;
  --border: #e4eaf1;
  --footer-bg: #263b91;
  --footer-panel: rgba(255, 255, 255, 0.09);
  --footer-panel-border: rgba(255, 255, 255, 0.13);
  --footer-text: rgba(255, 255, 255, 0.78);
  --footer-heading: #ffffff;
  --footer-accent: #f9ca24;
  --shadow-sm: 0 8px 24px rgba(6, 58, 105, 0.07);
  --shadow-md: 0 18px 46px rgba(6, 34, 43, 0.12);
  --transition: 180ms ease;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
  font-family: "Plus Jakarta Sans", sans-serif;
}

img,
svg,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

a,
button,
input,
select {
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  z-index: 1100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--dark-blue);
  background: var(--yellow);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.btn {
  --bs-btn-border-radius: 10px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn-lg {
  min-height: 50px;
  padding: 12px 22px;
  font-size: 0.96rem;
}

.btn-sm {
  min-height: 38px;
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 0.82rem;
}

.btn-gold {
  --bs-btn-color: var(--dark-blue);
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-color: var(--dark-blue);
  --bs-btn-hover-bg: var(--yellow);
  --bs-btn-hover-border-color: var(--yellow);
  --bs-btn-focus-shadow-rgb: 249, 202, 36;
  --bs-btn-active-color: var(--dark-blue);
  --bs-btn-active-bg: var(--yellow);
  --bs-btn-active-border-color: var(--yellow);
}

.btn-navy {
  --bs-btn-color: var(--white);
  --bs-btn-bg: var(--navy);
  --bs-btn-border-color: var(--navy);
  --bs-btn-hover-color: var(--white);
  --bs-btn-hover-bg: var(--blue);
  --bs-btn-hover-border-color: var(--blue);
  --bs-btn-focus-shadow-rgb: 14, 115, 191;
  --bs-btn-active-color: var(--white);
  --bs-btn-active-bg: var(--blue);
  --bs-btn-active-border-color: var(--blue);
}

.btn-outline-navy {
  --bs-btn-color: var(--navy);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: rgba(6, 58, 105, 0.3);
  --bs-btn-hover-color: var(--white);
  --bs-btn-hover-bg: var(--navy);
  --bs-btn-hover-border-color: var(--navy);
  --bs-btn-focus-shadow-rgb: 6, 58, 105;
  --bs-btn-active-color: var(--white);
  --bs-btn-active-bg: var(--navy);
  --bs-btn-active-border-color: var(--navy);
}

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 680px;
}

.section-label,
.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-label::before {
  display: inline-block;
  width: 26px;
  height: 2px;
  margin-right: 10px;
  background: var(--gold);
  content: "";
  vertical-align: middle;
}

.section-title {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.045em;
}

.section-description {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
}

/* ==================================================
   Utility bar
   ================================================== */
.utility-bar {
  min-height: 36px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--dark-blue);
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
}

.utility-content {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.utility-content > a,
.utility-socials a,
.language-switcher a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.utility-content > a:hover,
.utility-socials a:hover,
.language-switcher a:hover,
.language-switcher a.active {
  color: var(--white);
}

.utility-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}

.utility-socials {
  align-items: center;
  gap: 10px;
}

.utility-socials a {
  justify-content: center;
  font-size: 0.8rem;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
}

.language-switcher a.active {
  color: var(--yellow);
  font-weight: 700;
}

/* ==================================================
   Main navigation
   ================================================== */
.main-header {
  position: sticky;
  z-index: 1030;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 58, 105, 0.92);
  box-shadow: 0 8px 24px rgba(3, 29, 48, 0.12);
  backdrop-filter: blur(10px);
}

.main-header.home-header {
  position: sticky;
  top: -16px;
  right: 0;
  left: 0;
  height: 0;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-header .navbar {
  min-height: 0;
  padding: 16px 0 0;
}

.home-header .navbar > .container {
  width: calc(100% - 40px);
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(6, 58, 105, 0.78);
  box-shadow: 0 12px 32px rgba(1, 24, 43, 0.18);
  backdrop-filter: blur(9px);
}

.home-header .brand-lockup > .brand-logo-surface {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.home-header .brand-lockup > .brand-separator {
  background: rgba(255, 255, 255, 0.24);
}

.home-header .brand-lockup > .brand-copy,
.home-header .brand-lockup > .brand-copy strong,
.home-header .brand-lockup > .brand-copy small {
  color: var(--white);
}

.home-header .desktop-nav .nav-link {
  color: rgba(255, 255, 255, 0.88);
}

.home-header .desktop-nav .nav-link:hover,
.home-header .desktop-nav .nav-link:focus,
.home-header .desktop-nav .nav-link.active {
  color: var(--yellow);
}

.home-header .desktop-nav .nav-link.active::after {
  background: var(--yellow);
}

.home-header .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
  background: var(--white);
}

.home-header .brand-stripe {
  display: none;
}

.navbar {
  min-height: 82px;
  padding: 8px 0;
}

.brand-lockup {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  margin-right: 16px;
  padding: 0;
}

.brand-logo-surface {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.brand-logo-surface img {
  display: block;
  width: 126px;
  height: auto;
  filter: drop-shadow(0 2px 5px rgba(1, 24, 43, 0.2));
}

.brand-separator {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.25);
}

.brand-copy {
  display: flex;
  color: var(--white);
  line-height: 1;
  flex-direction: column;
}

.brand-copy strong {
  margin-bottom: 5px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-shadow: 0 1px 8px rgba(1, 24, 43, 0.2);
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.94);
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.006em;
  text-shadow: 0 1px 6px rgba(1, 24, 43, 0.18);
}

.navbar-toggler {
  width: 46px;
  height: 46px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 7px;
  background: var(--white);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(249, 202, 36, 0.35);
}

.navbar-toggler-icon {
  background-image: var(--bs-navbar-toggler-icon-bg);
}

.desktop-nav {
  min-width: 0;
  gap: 5px;
}

.desktop-nav .nav-link {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link:focus,
.desktop-nav .nav-link.active {
  color: var(--yellow);
}

.desktop-nav .nav-link.active::after {
  position: absolute;
  right: 8px;
  bottom: 1px;
  left: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.desktop-nav .dropdown-toggle::after {
  margin-left: 5px;
  vertical-align: 0.15em;
}

.desktop-nav .icon-link {
  width: 44px;
  justify-content: center;
  font-size: 0.92rem;
}

.desktop-nav .nav-cta {
  min-height: 42px;
  padding: 8px 12px;
  font-size: 0.7rem;
  white-space: nowrap;
}

.dropdown-menu {
  --bs-dropdown-min-width: 220px;
  --bs-dropdown-padding-y: 8px;
  --bs-dropdown-border-color: rgba(6, 58, 105, 0.1);
  --bs-dropdown-border-radius: 12px;
  margin-top: 0;
  box-shadow: var(--shadow-md);
}

.dropdown-menu-wide {
  min-width: 280px;
}

.dropdown-item {
  min-height: 46px;
  padding: 10px 16px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .desktop-nav .dropdown:hover > .dropdown-menu,
  .desktop-nav .dropdown:focus-within > .dropdown-menu {
    display: block;
    animation: dropdown-reveal 160ms ease-out both;
  }

  .desktop-nav .dropdown-menu {
    top: calc(100% - 2px);
  }
}

@keyframes dropdown-reveal {
  from {
    opacity: 0;
    transform: translateY(7px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--navy);
  background: #eef7fd;
}

.brand-stripe {
  display: flex;
  height: 2px;
  background: var(--yellow);
}

.brand-stripe span {
  width: 28%;
  margin-left: auto;
  background: var(--red);
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%);
}

.offcanvas {
  --bs-offcanvas-bg: #063a69;
  --bs-offcanvas-color: var(--white);
  --bs-offcanvas-width: min(88vw, 370px);
}

.offcanvas-header {
  min-height: 74px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.offcanvas-header .btn-close {
  filter: invert(1) grayscale(1) brightness(2);
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.08em;
}

.mobile-brand .brand-logo-surface img {
  width: 112px;
}

.mobile-navigation {
  padding-bottom: 20px;
}

.mobile-nav-link {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--yellow);
}

.mobile-nav-toggle i {
  transition: transform var(--transition);
}

.mobile-nav-toggle:not(.collapsed) i {
  transform: rotate(180deg);
}

.mobile-submenu {
  padding: 7px 0 7px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-submenu a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-submenu a:hover {
  color: var(--yellow);
}

/* ==================================================
   Hero
   ================================================== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 700px;
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy);
  background-image: linear-gradient(90deg, rgba(5, 35, 62, 0.96) 0%, rgba(6, 58, 105, 0.85) 48%, rgba(6, 58, 105, 0.34) 100%), url("../images/hero-ppid.png");
  background-position: center bottom;
  background-size: cover;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -135px;
  bottom: -225px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.025), 0 0 0 100px rgba(255, 255, 255, 0.018);
  content: "";
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.075;
  background-image: linear-gradient(rgba(255, 255, 255, 0.65) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.65) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-container {
  display: flex;
  min-height: 700px;
  align-items: center;
  padding-top: 126px;
  padding-bottom: 64px;
}

.hero-content {
  width: min(100%, 730px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--yellow);
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  background: var(--yellow);
  content: "";
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 4.65rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.hero-description {
  max-width: 665px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-search {
  display: grid;
  max-width: 690px;
  min-height: 64px;
  align-items: center;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 38px rgba(3, 29, 48, 0.22);
  grid-template-columns: 42px 1fr auto;
}

.hero-search > i {
  color: var(--blue);
  font-size: 1.05rem;
  text-align: center;
}

.hero-search input {
  width: 100%;
  min-width: 0;
  height: 48px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 0.92rem;
}

.hero-search input::placeholder {
  color: #7b8796;
}

.hero-search input:focus-visible {
  outline: 0;
}

/* ==================================================
   Quick services
   ================================================== */
.quick-services {
  position: relative;
  z-index: 2;
  margin-top: -58px;
  padding-bottom: 28px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 180px;
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 15px;
  color: var(--text);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  text-decoration: none;
}

.service-card:hover {
  border-color: rgba(14, 115, 191, 0.26);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(6, 58, 105, 0.12);
  transform: translateY(-4px);
}

.service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 12px;
  color: var(--blue);
  background: #e9f6ff;
  font-size: 1.3rem;
}

.service-copy {
  display: flex;
  flex-direction: column;
}

.service-copy strong {
  padding-right: 22px;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.3;
}

.service-copy small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.55;
}

.service-arrow {
  position: absolute;
  top: 26px;
  right: 23px;
  color: var(--blue);
}

/* ==================================================
   Profile
   ================================================== */
.profile-section {
  padding-top: 88px;
  background: #f7f9fb;
}

.profile-showcase {
  display: grid;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid #dce5ed;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 20px 54px rgba(16, 48, 78, 0.08);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.profile-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 5vw, 72px);
  flex-direction: column;
}

.profile-copy .section-title {
  max-width: 510px;
  margin-bottom: 20px;
}

.profile-copy .section-description {
  max-width: 560px;
  margin-bottom: 30px;
  color: #5f6f80;
  line-height: 1.75;
}

.profile-primary-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 14px;
  padding: 3px 0;
  border-bottom: 1px solid rgba(6, 58, 105, 0.35);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.profile-primary-link i {
  transition: transform var(--transition);
}

.profile-primary-link:hover,
.profile-primary-link:focus {
  border-bottom-color: var(--gold);
  color: var(--blue);
}

.profile-primary-link:hover i,
.profile-primary-link:focus i {
  transform: translateX(4px);
}

.profile-directory {
  display: flex;
  padding: clamp(38px, 4.2vw, 60px);
  color: var(--white);
  background: var(--navy);
  flex-direction: column;
}

.cta-panel::after {
  position: absolute;
  z-index: -1;
  right: -80px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.025), 0 0 0 76px rgba(255, 255, 255, 0.018);
  content: "";
}

.profile-directory-header {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-directory-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: var(--yellow);
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.profile-directory-kicker::before {
  width: 22px;
  height: 2px;
  background: var(--yellow);
  content: "";
}

.profile-directory h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.profile-directory-list {
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}

.profile-directory-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.profile-directory-list li:last-child {
  border-bottom: 0;
}

.profile-directory-list a {
  display: grid;
  min-height: 58px;
  align-items: center;
  padding: 9px 2px;
  color: rgba(255, 255, 255, 0.92);
  gap: 13px;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  text-decoration: none;
}

.profile-directory-number {
  color: rgba(255, 255, 255, 0.48);
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.profile-directory-title {
  font-size: 0.91rem;
  font-weight: 600;
}

.profile-directory-list i {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 0.82rem;
}

.profile-directory-list a:hover,
.profile-directory-list a:focus {
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
}

.profile-directory-list a:hover i,
.profile-directory-list a:focus i {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--navy);
  transform: translate(2px, -2px);
}

/* ==================================================
   Information categories
   ================================================== */
.categories-section {
  background: var(--off-white);
}

.information-directory {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid #d8e1ea;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(6, 58, 105, 0.05);
}

.information-row {
  display: grid;
  min-height: 112px;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  gap: 22px;
  grid-template-columns: 46px minmax(0, 1fr) max-content;
  text-decoration: none;
}

.information-row:last-child {
  border-bottom: 0;
}

.information-row:hover,
.information-row:focus {
  color: var(--text);
  background: #f8fafc;
}

.information-number {
  color: #98a2b3;
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.information-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.information-copy strong {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 750;
}

.information-copy small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.information-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 10px;
  padding: 9px 15px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 5px 14px rgba(6, 58, 105, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.information-action i {
  transition: transform var(--transition);
}

.information-row:hover .information-action,
.information-row:focus .information-action {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 7px 18px rgba(14, 115, 191, 0.2);
}

.information-row:hover .information-action i,
.information-row:focus .information-action i {
  transform: translateX(3px);
}

/* ==================================================
   Public information statistics
   ================================================== */
.statistics-section {
  padding: 0 0 72px;
  background: var(--off-white);
}

.statistics-panel {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.statistics-heading {
  max-width: 680px;
  margin: 0 auto 24px;
  text-align: center;
}

.statistics-heading h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.statistics-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.statistic-card {
  height: 100%;
  min-height: 104px;
  padding: 14px 18px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.statistics-panel .row > div:last-child .statistic-card {
  border-right: 0;
}

.statistic-card > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.statistic-card h3 {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.statistics-note {
  margin: 16px 0 0;
  color: #98a2b3;
  font-size: 0.68rem;
  text-align: center;
}

/* ==================================================
   Public information list
   ================================================== */
.information-section {
  background: var(--white);
}

.document-count {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  background: var(--off-white);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
}

.filter-toolbar {
  display: grid;
  align-items: center;
  margin-bottom: 22px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--off-white);
  gap: 10px;
  grid-template-columns: minmax(260px, 1.35fr) minmax(180px, 0.7fr) minmax(145px, 0.55fr) auto;
}

.filter-toolbar .form-control,
.filter-toolbar .form-select {
  min-height: 48px;
  border-color: var(--border);
  border-radius: 9px;
  color: var(--text);
  background-color: var(--white);
  font-size: 0.86rem;
}

.filter-toolbar .form-control:focus,
.filter-toolbar .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14, 115, 191, 0.12);
}

.filter-search {
  position: relative;
}

.filter-search > i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 15px;
  color: var(--blue);
  transform: translateY(-50%);
}

.filter-search .form-control {
  padding-left: 43px;
}

.document-table-wrap {
  width: 100%;
}

.document-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  table-layout: fixed;
}

.document-table thead th {
  padding: 0 17px 5px;
  border: 0;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-align: left;
  text-transform: uppercase;
}

.document-table th:nth-child(1) {
  width: 16%;
}

.document-table th:nth-child(2) {
  width: 43%;
}

.document-table th:nth-child(3) {
  width: 14%;
}

.document-table th:nth-child(4) {
  width: 12%;
}

.document-table th:nth-child(5) {
  width: 15%;
}

.document-table tbody tr {
  filter: drop-shadow(0 5px 9px rgba(6, 58, 105, 0.035));
}

.document-table tbody tr:hover td {
  border-color: rgba(14, 115, 191, 0.23);
  background: #fbfdff;
}

.document-table tbody td {
  padding: 17px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  background: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  vertical-align: middle;
}

.document-table tbody td:first-child {
  border-left: 1px solid var(--border);
  border-radius: 12px 0 0 12px;
}

.document-table tbody td:last-child {
  border-right: 1px solid var(--border);
  border-radius: 0 12px 12px 0;
}

.info-badge {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
  line-height: 1.25;
}

.info-badge.berkala {
  color: #075985;
  background: #e0f2fe;
}

.info-badge.setiap-saat {
  color: #365314;
  background: #ecfccb;
}

.info-badge.serta-merta {
  color: #9a3412;
  background: #ffedd5;
}

.document-title-cell {
  white-space: nowrap;
}

.pdf-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--red);
  background: #fff0ef;
  font-size: 1.15rem;
  vertical-align: middle;
}

.document-title-cell > span:last-child {
  display: inline-block;
  width: calc(100% - 59px);
  min-width: 0;
  margin-left: 12px;
  vertical-align: middle;
  white-space: normal;
}

.document-title-cell strong,
.document-title-cell small {
  display: block;
  font-family: "Inter", sans-serif;
}

.document-title-cell strong {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 0.91rem;
  line-height: 1.35;
}

.document-title-cell small {
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.45;
}

.file-meta {
  white-space: nowrap;
}

.document-actions {
  white-space: nowrap;
}

.document-actions .btn + .btn {
  margin-left: 4px;
}

.btn-download {
  --bs-btn-color: var(--navy);
  --bs-btn-bg: #edf6fc;
  --bs-btn-border-color: #edf6fc;
  --bs-btn-hover-color: var(--white);
  --bs-btn-hover-bg: var(--blue);
  --bs-btn-hover-border-color: var(--blue);
  width: 38px;
  padding-right: 0;
  padding-left: 0;
}

.document-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 20px;
}

.pagination {
  --bs-pagination-color: var(--navy);
  --bs-pagination-bg: var(--white);
  --bs-pagination-border-color: var(--border);
  --bs-pagination-hover-color: var(--navy);
  --bs-pagination-hover-bg: var(--off-white);
  --bs-pagination-hover-border-color: var(--border);
  --bs-pagination-focus-color: var(--navy);
  --bs-pagination-focus-bg: var(--off-white);
  --bs-pagination-focus-box-shadow: 0 0 0 3px rgba(14, 115, 191, 0.12);
  --bs-pagination-active-color: var(--white);
  --bs-pagination-active-bg: var(--navy);
  --bs-pagination-active-border-color: var(--navy);
  --bs-pagination-disabled-color: #98a2b3;
  gap: 5px;
}

.page-link {
  display: flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 8px;
}

/* ==================================================
   Information request flow
   ================================================== */
.flow-section {
  background: #ebf6fc;
}

.flow-figure {
  max-width: 1120px;
  margin: 30px auto 0;
  overflow: hidden;
  border: 1px solid rgba(14, 115, 191, 0.16);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.flow-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.flow-figure figcaption {
  padding: 15px 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: var(--white);
  font-size: 0.84rem;
  text-align: center;
}

/* ==================================================
   Closing CTA
   ================================================== */
.closing-cta {
  padding: 80px 0;
  background: var(--white);
}

.cta-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 280px;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  padding: 54px 58px;
  border-radius: 18px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow-md);
  gap: 40px;
}

.section-label-light {
  color: var(--yellow);
}

.cta-copy {
  max-width: 680px;
}

.cta-copy h2 {
  margin-bottom: 13px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.cta-copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
}

/* ==================================================
   Footer
   ================================================== */
.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--footer-text);
  background: var(--footer-bg);
}

.site-footer::before {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.025), 0 0 0 110px rgba(255, 255, 255, 0.015);
  content: "";
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-identity {
  max-width: 215px;
}

.footer-logo-surface {
  display: inline-flex;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-brand-logo {
  display: block;
  width: 195px;
  height: auto;
  filter: drop-shadow(0 3px 7px rgba(9, 24, 67, 0.26));
}

.affiliation-label {
  margin: 20px 0 9px;
  color: rgba(255, 255, 255, 0.63);
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.affiliation-panel {
  display: flex;
  width: 100%;
  min-height: 68px;
  align-items: center;
  justify-content: space-around;
  padding: 12px 14px;
  border: 1px solid var(--footer-panel-border);
  border-radius: 9px;
  background: var(--footer-panel);
}

.affiliation-panel img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.affiliation-panel img:last-child {
  height: 44px;
}

.affiliation-panel > span {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.23);
}

.footer-heading {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 11px;
  color: var(--footer-heading);
  font-family: "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--footer-accent);
  content: "";
}

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

.contact-panel {
  display: flex;
  min-height: 50px;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border: 1px solid var(--footer-panel-border);
  border-radius: 7px;
  color: var(--white);
  background: var(--footer-panel);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-panel:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.contact-panel-wide {
  grid-column: 1 / -1;
}

.contact-icon {
  display: inline-flex;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.1);
}

.address-panel {
  display: flex;
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--footer-panel-border);
  border-left: 3px solid var(--footer-accent);
  border-radius: 8px;
  color: var(--footer-text);
  background: var(--footer-panel);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 600;
  gap: 10px;
}

.address-panel i {
  flex: 0 0 auto;
  color: var(--yellow);
}

.map-frame {
  position: relative;
  height: 245px;
  margin-top: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 6px 16px rgba(6, 34, 43, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
}

.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-nav a {
  display: flex;
  min-height: 44px;
  align-items: flex-start;
  gap: 6px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--footer-text);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-nav i {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--yellow);
  font-size: 0.68rem;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-content {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--footer-panel-border);
  border-radius: 50%;
  color: var(--white);
  background: var(--footer-panel);
  text-decoration: none;
}

.footer-socials a:hover {
  color: var(--navy);
  border-color: var(--yellow);
  background: var(--yellow);
}

/* ==================================================
   Responsive
   ================================================== */
@media (max-width: 1199.98px) {
  .navbar > .container {
    max-width: 100%;
    padding-right: 22px;
    padding-left: 22px;
  }

  .home-header .navbar > .container {
    width: calc(100% - 32px);
    padding: 8px 14px;
  }

  .brand-logo-surface img {
    width: 120px;
  }

  .brand-copy small {
    display: block;
  }

  .brand-separator {
    height: 42px;
  }

  .desktop-nav .nav-link {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 0.76rem;
  }

  .desktop-nav .nav-cta {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.64rem;
  }

  .document-table th:nth-child(1) {
    width: 16%;
  }

  .document-table th:nth-child(2) {
    width: 39%;
  }

  .document-table th:nth-child(3) {
    width: 14%;
  }

  .document-table th:nth-child(4) {
    width: 12%;
  }

  .document-table th:nth-child(5) {
    width: 19%;
  }

  .cta-panel {
    padding: 48px;
  }

  .cta-actions {
    min-width: 205px;
  }

  .statistic-card {
    border-right: 0;
    border-radius: 10px;
    background: #f8fafc;
  }
}

@media (max-width: 991.98px) {
  .section {
    padding: 64px 0;
  }

  .navbar {
    min-height: 74px;
  }

  .main-header.home-header {
    top: -12px;
  }

  .home-header .navbar {
    padding-top: 12px;
  }

  .brand-logo-surface img {
    width: 114px;
  }

  .brand-copy strong {
    margin-bottom: 0;
    font-size: 1.16rem;
  }

  .hero,
  .hero-container {
    min-height: 620px;
  }

  .hero-container {
    padding-top: 112px;
    padding-bottom: 54px;
  }

  .hero {
    background-image: linear-gradient(90deg, rgba(5, 35, 62, 0.96) 0%, rgba(6, 58, 105, 0.85) 66%, rgba(6, 58, 105, 0.58) 100%), url("../images/hero-ppid.png");
    background-position: center bottom;
  }

  .quick-services {
    margin-top: -50px;
  }

  .profile-section {
    padding-top: 64px;
  }

  .profile-showcase {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .profile-copy,
  .profile-directory {
    padding: 44px;
  }

  .filter-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .filter-search {
    grid-column: 1 / -1;
  }

  .filter-toolbar .btn {
    width: 100%;
  }

  .document-table thead th,
  .document-table tbody td {
    padding-right: 12px;
    padding-left: 12px;
  }

  .document-title-cell {
    gap: 9px;
  }

  .pdf-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .document-actions .btn-outline-navy {
    min-width: 55px;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    width: 100%;
    min-width: 0;
    flex-direction: row;
  }

  .footer-identity {
    max-width: none;
  }

  .footer-logo-surface {
    max-width: 215px;
  }

  .affiliation-panel {
    max-width: 215px;
  }
}

@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 82px;
  }

  .section {
    padding: 56px 0;
  }

  .main-header.home-header {
    top: -10px;
  }

  .home-header .navbar {
    padding-top: 10px;
  }

  .home-header .navbar > .container {
    width: calc(100% - 20px);
    padding: 7px 10px;
  }

  .brand-copy small {
    display: none;
  }

  .section-title {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }

  .utility-content {
    min-height: 44px;
    justify-content: space-between;
    gap: 9px;
  }

  .utility-bar {
    min-height: 44px;
  }

  .utility-content > a,
  .language-switcher a {
    min-height: 44px;
  }

  .utility-content > a {
    gap: 5px;
  }

  .utility-content > a:nth-child(2) span {
    display: none;
  }

  .hero,
  .hero-container {
    min-height: 590px;
  }

  .hero-container {
    justify-content: center;
    padding-top: 110px;
    padding-bottom: 40px;
  }

  .hero {
    background-image: linear-gradient(rgba(5, 35, 62, 0.87), rgba(6, 58, 105, 0.88)), url("../images/hero-ppid.png");
    background-position: 58% bottom;
  }

  .hero-grid {
    mask-image: linear-gradient(to bottom, black, transparent);
  }

  .hero-content {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
    font-size: 0.64rem;
    line-height: 1.45;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
    line-height: 1.07;
  }

  .hero-description {
    margin-right: auto;
    margin-left: auto;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .hero-actions {
    justify-content: center;
    margin-bottom: 22px;
  }

  .statistics-section {
    padding-bottom: 56px;
  }

  .statistics-panel {
    padding: 26px 22px;
  }

  .information-directory {
    margin-top: 24px;
  }

  .information-row {
    min-height: 0;
    padding: 20px;
    gap: 6px 14px;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-areas:
      "number copy"
      "number action";
  }

  .information-number {
    padding-top: 2px;
    grid-area: number;
  }

  .information-copy {
    grid-area: copy;
  }

  .information-action {
    min-height: 38px;
    justify-content: flex-start;
    justify-self: start;
    margin-top: 7px;
    grid-area: action;
  }

  .quick-services {
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 0;
    background: var(--off-white);
  }

  .service-card {
    min-height: 150px;
  }

  .profile-section {
    padding-top: 56px;
  }

  .profile-showcase {
    border-radius: 16px;
  }

  .profile-copy,
  .profile-directory {
    padding: 34px 28px;
  }

  .profile-copy .section-description {
    margin-bottom: 22px;
  }

  .profile-directory-header {
    padding-bottom: 22px;
  }

  .filter-toolbar {
    padding: 12px;
    grid-template-columns: 1fr;
  }

  .filter-search {
    grid-column: auto;
  }

  .document-table-wrap {
    overflow: visible;
  }

  .document-table,
  .document-table tbody {
    display: block;
    width: 100%;
  }

  .document-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .document-table tbody {
    display: grid;
    gap: 14px;
  }

  .document-table tbody tr {
    display: grid;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    filter: none;
    gap: 13px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "title title"
      "category updated"
      "format format"
      "actions actions";
  }

  .document-table tbody tr:hover {
    border-color: rgba(14, 115, 191, 0.23);
  }

  .document-table tbody td {
    display: flex;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.7rem;
    flex-direction: column;
    gap: 4px;
  }

  .document-table tbody tr:hover td {
    border-color: transparent;
    background: transparent;
  }

  .document-table tbody td:first-child,
  .document-table tbody td:last-child {
    border: 0;
    border-radius: 0;
  }

  .document-table tbody td::before {
    color: #7b8794;
    content: attr(data-label);
    font-family: "Inter", sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .document-table tbody td:nth-child(1) {
    grid-area: category;
  }

  .document-table tbody td:nth-child(2) {
    grid-area: title;
  }

  .document-table tbody td:nth-child(3) {
    grid-area: updated;
  }

  .document-table tbody td:nth-child(4) {
    grid-area: format;
  }

  .document-table tbody td:nth-child(5) {
    grid-area: actions;
  }

  .document-title-cell {
    display: flex;
    align-items: flex-start;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    flex-direction: row;
    white-space: normal;
  }

  .document-title-cell::before {
    display: none;
  }

  .document-title-cell strong {
    font-size: 0.92rem;
  }

  .document-title-cell > span:last-child {
    width: auto;
    margin-left: 0;
    flex: 1 1 auto;
  }

  .document-title-cell small {
    font-size: 0.72rem;
  }

  .document-actions {
    display: grid;
    padding-top: 3px;
    white-space: normal;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
  }

  .document-actions::before {
    display: none;
  }

  .document-actions .btn {
    width: 100%;
    min-height: 44px;
    margin: 0;
  }

  .document-actions .btn + .btn {
    margin-left: 0;
  }

  .document-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .document-footer .pagination {
    justify-content: center;
  }

  .flow-figure {
    margin-top: 30px;
    border-radius: 13px;
  }

  .flow-figure figcaption {
    font-size: 0.74rem;
  }

  .closing-cta {
    padding: 56px 0;
  }

  .cta-panel {
    min-height: 0;
    padding: 38px 28px;
    border-radius: 16px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .footer-main {
    padding-top: 42px;
    padding-bottom: 40px;
  }

  .map-frame {
    height: 220px;
  }

  .footer-bottom-content {
    align-items: flex-start;
    padding-top: 22px;
    padding-bottom: 22px;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .container {
    --bs-gutter-x: 40px;
  }

  .navbar > .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .utility-bar .container {
    --bs-gutter-x: 28px;
  }

  .brand-lockup {
    gap: 9px;
    margin-right: 8px;
  }

  .brand-logo-surface {
    padding: 0;
  }

  .brand-logo-surface img {
    width: 102px;
  }

  .home-header .brand-lockup > .brand-logo-surface img {
    width: 98px;
  }

  .brand-separator {
    height: 29px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .hero,
  .hero-container {
    min-height: 580px;
  }

  .hero-container {
    padding-top: 104px;
    padding-bottom: 28px;
  }

  .statistics-panel {
    padding: 22px 16px;
  }

  .hero h1 {
    margin-bottom: 11px;
  }

  .hero-description {
    margin-bottom: 14px;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-bottom: 14px;
    gap: 8px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 44px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .hero-search {
    min-height: 100px;
    padding: 6px;
    gap: 6px 0;
    grid-template-columns: 36px 1fr;
    grid-template-rows: 40px 44px;
  }

  .hero-search input {
    height: 40px;
    font-size: 0.78rem;
  }

  .hero-search .btn {
    min-height: 44px;
    padding: 8px 14px;
    grid-column: 1 / -1;
  }

  .service-card {
    min-height: 144px;
    padding: 20px;
  }

  .service-icon {
    margin-bottom: 16px;
  }

  .document-count {
    width: 100%;
    justify-content: center;
  }

  .document-table tbody tr {
    padding: 17px;
    gap: 12px;
  }

  .pdf-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .flow-figure {
    margin-right: -4px;
    margin-left: -4px;
  }

  .footer-brand-logo {
    width: min(100%, 175px);
  }

  .footer-logo-surface,
  .affiliation-panel {
    max-width: 190px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel-wide {
    grid-column: auto;
  }

  .contact-panel {
    min-height: 52px;
  }
}

@media (max-width: 374.98px) {
  .brand-logo-surface img {
    width: 92px;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .utility-content > a:first-child span {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .eyebrow::before {
    display: none;
  }

  .document-table tbody tr {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "category"
      "updated"
      "format"
      "actions";
  }

}

/* ==================================================
   Informasi Berkala page
   ================================================== */
.periodic-main {
  background: #f3f7fb;
}

.inner-heading {
  padding: 32px 0 36px;
  border-bottom: 1px solid var(--border);
  background: #edf4fa;
}

.inner-heading .breadcrumb {
  --bs-breadcrumb-divider: "›";
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
}

.inner-heading .breadcrumb-item,
.inner-heading .breadcrumb-item a {
  color: var(--muted);
  text-decoration: none;
}

.inner-heading .breadcrumb-item a:hover,
.inner-heading .breadcrumb-item.active {
  color: var(--navy);
}

.inner-heading .section-label {
  margin-bottom: 11px;
}

.inner-heading h1 {
  margin-bottom: 13px;
  color: var(--navy);
  font-size: clamp(2.25rem, 4.4vw, 3.7rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.inner-heading > .container > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.periodic-content {
  padding: 48px 0 72px;
}

.periodic-panel {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(6, 58, 105, 0.08);
}

.periodic-panel-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 28px;
}

.periodic-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.periodic-panel-heading h2 {
  margin-bottom: 7px;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.periodic-panel-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.periodic-summary {
  display: inline-flex;
  min-height: 42px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid #d8e8f4;
  border-radius: 999px;
  color: var(--navy);
  background: #eef7fd;
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
}

.periodic-accordion {
  display: grid;
  gap: 12px;
}

.periodic-accordion .accordion-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
}

.periodic-accordion .accordion-button {
  display: grid;
  min-height: 70px;
  padding: 14px 18px;
  color: #344054;
  background: #f8fafc;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: none;
  gap: 13px;
  grid-template-columns: 34px 42px minmax(0, 1fr) auto 20px;
}

.periodic-accordion .accordion-button:not(.collapsed) {
  color: var(--navy);
  background: #eef6fc;
  box-shadow: inset 0 -1px 0 var(--border);
}

.periodic-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: inset 0 0 0 3px rgba(14, 115, 191, 0.17);
}

.periodic-accordion .accordion-button::after {
  width: 18px;
  height: 18px;
  margin: 0;
  background-size: 18px;
}

.accordion-index {
  color: #98a2b3;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.accordion-file-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #d97706;
  background: #fff5df;
  font-size: 1.05rem;
}

.accordion-title {
  min-width: 0;
  line-height: 1.4;
}

.document-total {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  white-space: nowrap;
}

.periodic-accordion .accordion-body {
  padding: 17px 20px 20px;
}

.group-description {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.periodic-table-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.periodic-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.periodic-table thead {
  color: var(--white);
  background: #0a4778;
}

.periodic-table th {
  padding: 14px 16px;
  border: 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: left;
}

.periodic-table th:first-child {
  width: 76px;
}

.periodic-table th:last-child {
  width: 160px;
  text-align: center;
}

.periodic-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  vertical-align: middle;
}

.periodic-table tbody tr:last-child td {
  border-bottom: 0;
}

.periodic-table tbody tr:hover td {
  background: #fbfdff;
}

.periodic-table td:nth-child(2) strong,
.periodic-table td:nth-child(2) small {
  display: block;
}

.periodic-table td:nth-child(2) strong {
  margin-bottom: 5px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
}

.periodic-table td:nth-child(2) small {
  color: #7b8794;
  font-size: 0.7rem;
  line-height: 1.45;
}

.periodic-table td:last-child {
  text-align: center;
}

.btn-periodic-view {
  --bs-btn-color: var(--navy);
  --bs-btn-bg: var(--white);
  --bs-btn-border-color: rgba(6, 58, 105, 0.5);
  --bs-btn-hover-color: var(--white);
  --bs-btn-hover-bg: var(--navy);
  --bs-btn-hover-border-color: var(--navy);
  min-width: 72px;
  min-height: 42px;
  padding: 8px 14px;
  font-size: 0.76rem;
}

.periodic-source {
  display: flex;
  align-items: center;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #dbe9f2;
  border-radius: 10px;
  color: var(--muted);
  background: #f5f9fc;
  gap: 10px;
}

.periodic-source > i {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 1.1rem;
}

.periodic-source p {
  margin: 0;
  font-size: 0.78rem;
}

.periodic-source a {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.periodic-source a:hover {
  color: var(--blue);
}

/* ==================================================
   Profile page
   ================================================== */
.profile-main {
  background: #f3f7fb;
}

.profile-content {
  padding: 48px 0 72px;
}

.profile-tabs-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(6, 58, 105, 0.08);
}

.profile-panel-heading {
  padding: 26px 30px 21px;
}

.profile-panel-heading h2 {
  margin-bottom: 7px;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.profile-panel-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.profile-tabs {
  display: grid;
  padding: 0 30px;
  border-bottom: 1px solid var(--border);
  background: #f8fafc;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-tabs .nav-link {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: -1px;
  padding: 13px 15px;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.profile-tabs .nav-link:hover,
.profile-tabs .nav-link:focus {
  color: var(--blue);
  background: #eef6fc;
}

.profile-tabs .nav-link.active {
  border-bottom-color: var(--gold);
  color: var(--navy);
  background: var(--white);
}

.profile-tabs .nav-link i {
  color: var(--blue);
  font-size: 1rem;
}

.profile-tab-content {
  min-height: 520px;
}

.profile-article {
  padding: 34px 40px 40px;
}

.profile-article > p {
  color: #475467;
  line-height: 1.85;
}

.profile-intro {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.profile-intro-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: var(--navy);
  background: #fff3d2;
  font-size: 1.3rem;
}

.profile-overline {
  margin-bottom: 4px;
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.profile-intro h3,
.profile-subsection h3,
.profile-commitment h3 {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.profile-intro h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.profile-subsection {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.profile-subsection h3 {
  margin-bottom: 13px;
  font-size: 1.25rem;
}

.profile-subsection > p {
  margin: 0;
  color: #475467;
  line-height: 1.8;
}

.classification-grid,
.vision-mission-grid,
.duties-list {
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.classification-card,
.vision-mission-grid section,
.duties-list li {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fafc;
}

.classification-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.classification-card p,
.vision-mission-grid p,
.vision-mission-grid li,
.duties-list p {
  margin-bottom: 0;
  color: #475467;
  font-size: 0.82rem;
  line-height: 1.7;
}

.profile-commitment {
  display: grid;
  align-items: center;
  margin-top: 28px;
  padding: 26px;
  border-radius: 15px;
  color: var(--white);
  background: var(--navy);
  gap: 28px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.profile-commitment .profile-overline {
  color: var(--yellow);
}

.profile-commitment h3 {
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1.35;
}

.profile-commitment ul,
.duties-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-commitment ul {
  display: grid;
  gap: 10px;
}

.profile-commitment li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
}

.profile-commitment li i {
  color: var(--yellow);
}

.official-profile-visual {
  max-width: 970px;
  margin: 0 auto 28px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8fafc;
}

.official-profile-visual img,
.structure-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.official-profile-visual img {
  border-radius: 8px;
}

.vision-mission-grid {
  gap: 18px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.vision-mission-grid section {
  padding: 25px;
}

.vision-mission-grid h4 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 800;
}

.vision-mission-grid ol {
  margin-bottom: 0;
  padding-left: 20px;
}

.vision-mission-grid li + li {
  margin-top: 8px;
}

.duties-list li {
  display: flex;
  min-height: 100px;
  align-items: center;
  gap: 16px;
}

.duties-list span {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 800;
}

.structure-figure {
  max-width: 890px;
  margin: 24px auto 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8fafc;
}

.structure-figure figcaption {
  padding-top: 13px;
  color: var(--muted);
  font-size: 0.74rem;
  text-align: center;
}

.profile-source {
  display: flex;
  align-items: center;
  margin: 0 30px 26px;
  padding: 14px 16px;
  border: 1px solid #dbe9f2;
  border-radius: 10px;
  color: var(--muted);
  background: #f5f9fc;
  gap: 10px;
}

.profile-source > i {
  color: var(--blue);
  font-size: 1.1rem;
}

.profile-source p {
  margin: 0;
  font-size: 0.78rem;
}

.profile-source a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.profile-source a:hover {
  color: var(--blue);
}

@media (max-width: 767.98px) {
  .inner-heading {
    padding: 24px 0 30px;
  }

  .inner-heading .breadcrumb {
    margin-bottom: 14px;
    font-size: 0.72rem;
  }

  .periodic-content {
    padding: 28px 0 48px;
  }

  .profile-content {
    padding: 28px 0 48px;
  }

  .profile-tabs-panel {
    border-radius: 14px;
  }

  .profile-panel-heading {
    padding: 21px 18px 17px;
  }

  .profile-tabs {
    overflow-x: auto;
    padding: 0 14px;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
  }

  .profile-tabs .nav-link {
    min-height: 58px;
    padding: 11px 10px;
    font-size: 0.68rem;
  }

  .profile-article {
    padding: 24px 18px 28px;
  }

  .profile-intro {
    align-items: flex-start;
  }

  .classification-grid,
  .vision-mission-grid,
  .duties-list,
  .profile-commitment {
    grid-template-columns: 1fr;
  }

  .official-profile-visual {
    margin-bottom: 26px;
    padding: 6px;
  }

  .profile-source {
    align-items: flex-start;
    margin: 0 20px 24px;
    flex-wrap: wrap;
  }

  .profile-source a {
    width: 100%;
    margin-left: 28px;
  }

  .periodic-panel {
    padding: 18px;
    border-radius: 14px;
  }

  .periodic-panel-heading {
    align-items: flex-start;
    margin-bottom: 22px;
    flex-direction: column;
    gap: 14px;
  }

  .periodic-accordion .accordion-button {
    min-height: 72px;
    padding: 14px;
    font-size: 0.88rem;
    gap: 10px;
    grid-template-columns: 40px minmax(0, 1fr) 18px;
  }

  .accordion-index,
  .document-total {
    display: none;
  }

  .accordion-file-icon {
    width: 38px;
    height: 38px;
  }

  .periodic-accordion .accordion-body {
    padding: 17px 14px 18px;
  }

  .periodic-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .periodic-table,
  .periodic-table tbody {
    display: block;
  }

  .periodic-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .periodic-table tbody {
    display: grid;
    gap: 10px;
  }

  .periodic-table tbody tr {
    display: grid;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    gap: 9px 12px;
    grid-template-columns: 32px minmax(0, 1fr);
    grid-template-areas: "number document" "action action";
  }

  .periodic-table td {
    padding: 0;
    border: 0;
  }

  .periodic-table tbody tr:hover td {
    background: transparent;
  }

  .periodic-table td:first-child {
    grid-area: number;
    color: #98a2b3;
    font-weight: 700;
  }

  .periodic-table td:nth-child(2) {
    min-width: 0;
    grid-area: document;
  }

  .periodic-table td:last-child {
    padding-top: 4px;
    grid-area: action;
  }

  .btn-periodic-view {
    width: 100%;
    min-height: 44px;
  }

  .periodic-source {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .periodic-source a {
    width: 100%;
    margin-left: 26px;
  }
}

@media (max-width: 374.98px) {
  .periodic-panel {
    padding: 14px;
  }

  .periodic-accordion .accordion-button {
    padding-right: 12px;
    padding-left: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    scroll-behavior: auto;
    transition-duration: 0.01ms;
  }
}
