/* ==========================================================================
   Sp2hp Polres Langkat — GLOBAL DESIGN SYSTEM
   sp2hppolreslangkat.com
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* ——— Primary: Navy ——— */
  --navy-900: #04122A;
  --navy-800: #071B33;
  --navy-700: #0A2647;
  --navy-600: #144272;
  --navy-500: #205295;
  --navy-400: #2C74B3;
  --navy-300: #5A94C9;

  /* ——— Accent: Gold ——— */
  --gold-700: #8C7224;
  --gold-600: #B08C2E;
  --gold-500: #C9A449;
  --gold-400: #D7B86A;
  --gold-300: #E6CE91;

  /* ——— Neutrals ——— */
  --white: #FFFFFF;
  --gray-50:  #F8F9FB;
  --gray-100: #F1F3F7;
  --gray-200: #E4E7EC;
  --gray-300: #D0D5DD;
  --gray-400: #98A2B3;
  --gray-500: #667085;
  --gray-600: #475467;
  --gray-700: #344054;
  --gray-800: #1D2939;
  --gray-900: #101828;

  /* ——— Semantic ——— */
  --success: #12B76A;
  --warning: #F79009;
  --danger:  #D92D20;
  --info:    #2C74B3;

  /* ——— Aliases ——— */
  --bg: var(--white);
  --bg-subtle: var(--gray-50);
  --bg-muted: var(--gray-100);
  --text: var(--gray-900);
  --text-muted: var(--gray-600);
  --text-soft: var(--gray-500);
  --border: var(--gray-200);
  --border-strong: var(--gray-300);
  --brand: var(--navy-700);
  --brand-hover: var(--navy-600);
  --brand-dark: var(--navy-900);
  --accent: var(--gold-500);
  --accent-hover: var(--gold-600);

  /* ——— Typography ——— */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* ——— Spacing ——— */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --s-32: 8rem;

  /* ——— Section ——— */
  --section-py: clamp(3.5rem, 7vw, 6.5rem);
  --section-py-sm: clamp(2.5rem, 5vw, 4rem);

  /* ——— Radius ——— */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-full: 999px;

  /* ——— Shadow ——— */
  --shadow-xs: 0 1px 2px rgba(16,24,40,.05);
  --shadow-sm: 0 1px 3px rgba(16,24,40,.1), 0 1px 2px rgba(16,24,40,.06);
  --shadow-md: 0 4px 8px -2px rgba(16,24,40,.08), 0 2px 4px -2px rgba(16,24,40,.06);
  --shadow-lg: 0 12px 20px -4px rgba(16,24,40,.1), 0 4px 8px -4px rgba(16,24,40,.06);
  --shadow-xl: 0 20px 32px -8px rgba(16,24,40,.12);
  --shadow-navy: 0 12px 28px -10px rgba(10,38,71,.35);
  --shadow-gold: 0 8px 20px -8px rgba(201,164,73,.5);
  --shadow-dropdown: 0 16px 32px -8px rgba(10,38,71,.15), 0 4px 12px -4px rgba(16,24,40,.08);

  /* ——— Motion ——— */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;

  /* ——— Layout ——— */
  --container-max: 1240px;
  --container-px: clamp(1rem, 4vw, 2rem);

  /* ——— Z-index ——— */
  --z-dropdown: 100;
  --z-header: 1000;
  --z-modal: 2000;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }

img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--navy-700); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw + 1rem, 3.75rem);
  line-height: var(--lh-tight);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.025em;
  color: var(--gray-900);
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw + 1rem, 2.5rem);
  line-height: var(--lh-snug);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: var(--gray-900);
}
h3, .h3 {
  font-size: clamp(1.375rem, 1.5vw + 0.75rem, 1.75rem);
  line-height: var(--lh-snug);
  font-weight: var(--fw-bold);
  letter-spacing: -0.015em;
  color: var(--gray-900);
}
h4, .h4 {
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  font-weight: var(--fw-semibold);
  color: var(--gray-900);
}
h5 { font-size: var(--fs-lg); font-weight: var(--fw-semibold); }
h6 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-700);
}

.text-lead { font-size: var(--fs-lg); line-height: var(--lh-relaxed); color: var(--text-muted); }
.text-body { font-size: var(--fs-base); line-height: var(--lh-relaxed); color: var(--text-muted); }
.text-small { font-size: var(--fs-sm); color: var(--text-muted); }
.text-tiny { font-size: var(--fs-xs); color: var(--text-soft); }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.container { width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: var(--s-6); }
.container--narrow { max-width: 800px; }
.container--fluid { max-width: none; }
.section { padding-block: var(--section-py); }
.section-sm { padding-block: var(--section-py-sm); }
.section--muted { background: var(--bg-subtle); }
.section--dark { background: var(--navy-700); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }

/* ——— Page Header ——— */
.page-header {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-600) 100%);
  color: var(--white);
  padding-block: clamp(3.5rem, 7vw, 6rem);
  position: relative; overflow: hidden; isolation: isolate;
  margin-top: -1px; /* overlap slight boundary */
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 85% 40%, rgba(201,164,73,.18), transparent 70%);
  z-index: -1;
}
.page-header__inner { max-width: 820px; }
.page-header h1 { color: var(--white); margin-bottom: var(--s-4); }
.page-header__lead { font-size: var(--fs-lg); line-height: var(--lh-relaxed); color: rgba(255,255,255,.85); }

/* ——— Breadcrumbs ——— */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: .5rem;
  font-size: var(--fs-xs); color: rgba(255,255,255,.7);
  margin-bottom: var(--s-6);
  text-transform: uppercase; letter-spacing: .08em; font-weight: var(--fw-semibold);
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { color: rgba(255,255,255,.35); }
.breadcrumb__current { color: var(--accent); }

.section-header {
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--s-12);
  text-align: center;
}
.section-header .eyebrow { margin-bottom: var(--s-3); }
.section-header p { margin-top: var(--s-3); }

.grid { display: grid; gap: var(--s-6); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.stack > * + * { margin-top: var(--s-4); }
.stack-lg > * + * { margin-top: var(--s-8); }

/* Standard Requirement List */
.req-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.req-list--2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--s-4) var(--s-8); }
.req-list li { display: flex; align-items: flex-start; gap: var(--s-3); font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.5; }
.req-list li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.req-list li strong { color: var(--gray-900); }

/* --- Base Component: Card --- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }

/* --- Base Component: Info Box --- */
.info-box {
  padding: var(--s-8);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  height: 100%;
}
.info-box__heading {
  display: flex; align-items: center; gap: var(--s-3);
  font-size: var(--fs-lg); font-weight: var(--fw-bold);
  color: var(--navy-900); margin-bottom: var(--s-5);
}
.info-box__heading svg {
  width: 24px; height: 24px; color: var(--accent); flex-shrink: 0;
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-md);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease);
  border: 2px solid transparent;
  gap: var(--s-2);
  line-height: 1;
}
.btn svg, .btn__icon { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }

.btn-primary { background: var(--brand); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-hover); transform: translateY(-1px); box-shadow: var(--shadow-navy); }

.btn-secondary { background: var(--accent); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { background: var(--accent-hover); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: var(--white); }

.btn-ghost { background: transparent; color: var(--brand); }
.btn-ghost:hover { background: var(--bg-muted); }

.btn-light { background: var(--white); color: var(--brand); box-shadow: var(--shadow-sm); }
.btn-light:hover { background: var(--gray-100); transform: translateY(-1px); }

.btn-sm { padding: .5rem 1rem; font-size: var(--fs-xs); }
.btn-lg { padding: 1rem 2rem; font-size: var(--fs-base); }
.btn-block { width: 100%; }

/* ==========================================================================
   6. CARDS
   ========================================================================== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }

/* News Card */
.news-card { display: flex; flex-direction: column; height: 100%; }
.news-card__image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--gray-100); }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.news-card:hover .news-card__image img { transform: scale(1.06); }
.news-card__body { padding: var(--s-5) var(--s-6) var(--s-6); flex: 1; display: flex; flex-direction: column; gap: var(--s-3); }
.news-card__meta { display: flex; align-items: center; gap: var(--s-3); font-size: var(--fs-xs); color: var(--text-soft); }
.news-card__category {
  display: inline-block; padding: .25rem .625rem;
  background: var(--navy-700); color: var(--white);
  font-size: 10px; font-weight: var(--fw-bold);
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: var(--r-xs);
}
.news-card__title {
  font-size: var(--fs-lg); font-weight: var(--fw-bold);
  line-height: var(--lh-snug); color: var(--gray-900);
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  transition: color var(--dur-fast);
}
.news-card:hover .news-card__title { color: var(--brand); }
.news-card__excerpt {
  font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: var(--text-muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card__more { margin-top: auto; font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--brand); display: inline-flex; align-items: center; gap: .375rem; }
.news-card__more::after { content: '→'; transition: transform var(--dur-base) var(--ease); }
.news-card:hover .news-card__more::after { transform: translateX(4px); }

/* Service Card */
.service-card { padding: var(--s-8) var(--s-6); text-align: left; position: relative; cursor: pointer; }
.service-card__icon {
  width: 56px; height: 56px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-500) 100%);
  color: var(--accent); border-radius: var(--r-md);
  margin-bottom: var(--s-5);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.service-card:hover .service-card__icon { transform: scale(1.05) rotate(-3deg); box-shadow: var(--shadow-navy); }
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__title { font-size: var(--fs-lg); font-weight: var(--fw-semibold); margin-bottom: var(--s-2); color: var(--gray-900); }
.service-card__desc { font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-relaxed); margin-bottom: var(--s-4); }
.service-card__arrow { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--brand); display: inline-flex; align-items: center; gap: .375rem; }
.service-card__arrow::after { content: '→'; transition: transform var(--dur-base) var(--ease); }
.service-card:hover .service-card__arrow::after { transform: translateX(4px); }

/* Stat Card */
.stat-card {
  padding: var(--s-8) var(--s-6);
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
  color: var(--white); border: 0; border-radius: var(--r-lg);
  position: relative; overflow: hidden;
  text-align: center;
}
.stat-card--accent { background: var(--navy-900); }
.stat-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(201,164,73,.25), transparent 70%);
  transform: translate(30%, -30%); pointer-events: none;
}
.stat-card::after {
  content: ''; position: absolute; left: 0; top: 0;
  width: 3px; height: 100%; background: var(--accent);
}
.stat-card__icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  background: rgba(201,164,73,.15);
  color: var(--accent); border-radius: var(--r-sm);
  margin-inline: auto;
  margin-bottom: var(--s-5);
}
.stat-card__icon svg { width: 22px; height: 22px; }
.stat-card__value { font-size: clamp(2rem, 3vw, 2.75rem); font-weight: var(--fw-extrabold); line-height: 1; margin-bottom: var(--s-2); letter-spacing: -.02em; color: var(--accent); }
.stat-card__label { font-size: var(--fs-xs); color: rgba(255,255,255,.75); letter-spacing: .05em; text-transform: uppercase; font-weight: var(--fw-bold); }

/* ==========================================================================
   7. TOP BAR
   ========================================================================== */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,.75);
  font-size: var(--fs-xs);
  padding-block: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); flex-wrap: wrap; }
.topbar__info { display: flex; gap: var(--s-5); flex-wrap: wrap; align-items: center; }
.topbar__item { display: inline-flex; align-items: center; gap: .375rem; }
.topbar__item svg { width: 13px; height: 13px; color: var(--accent); }
.topbar__item--pulse { color: var(--accent); font-weight: var(--fw-semibold); }
.pulse-dot {
  width: 7px; height: 7px;
  background: #FF6B6B;
  border-radius: var(--r-full);
  box-shadow: 0 0 0 0 rgba(255,107,107,.6);
  animation: pulseDot 2s var(--ease-out) infinite;
  display: inline-block;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(255,107,107,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255,107,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,107,0); }
}
.topbar__social { display: flex; gap: var(--s-2); }
.topbar__social a {
  display: grid; place-items: center;
  width: 26px; height: 26px;
  color: rgba(255,255,255,.6);
  border-radius: var(--r-xs);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.topbar__social a:hover { color: var(--accent); background: rgba(255,255,255,.06); }
.topbar__social svg { width: 14px; height: 14px; }

/* ==========================================================================
   8. HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur-base), border-color var(--dur-base);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); border-bottom-color: transparent; }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-6); padding-block: var(--s-4); position: relative; }

/* Brand */
.brand { display: flex; align-items: center; gap: var(--s-3); flex-shrink: 0; }
.brand__logo {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--navy-700);
  color: var(--accent);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-lg);
  box-shadow: 0 0 0 3px var(--white), 0 0 0 4px var(--accent);
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-weight: var(--fw-extrabold); font-size: var(--fs-sm); color: var(--navy-700); letter-spacing: .04em; text-transform: uppercase; }
.brand__sub { font-size: var(--fs-xs); color: var(--text-soft); }

/* ==========================================================================
   9. NAV + DROPDOWN
   ========================================================================== */
.nav {
  display: flex;
  align-items: center;
  gap: var(--s-1);
}
.nav__item { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .625rem 1rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--gray-700);
  border-radius: var(--r-sm);
  position: relative;
  transition: color var(--dur-fast), background var(--dur-fast);
  cursor: pointer;
  white-space: nowrap;
}
.nav__link:hover { color: var(--brand); background: var(--bg-muted); }

.nav__link.is-active { color: var(--brand); font-weight: var(--fw-semibold); }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  left: 1rem; right: 1rem;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav__chevron {
  width: 12px; height: 12px;
  opacity: .55;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-fast);
  flex-shrink: 0;
}
.nav__item.has-dropdown:hover .nav__chevron,
.nav__item.is-open > .nav__link .nav__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Invisible hover bridge to prevent gap between link and dropdown */
.nav__item.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 10px;
}

/* Dropdown panel */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -8px;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-dropdown);
  padding: var(--s-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(.98);
  transform-origin: top left;
  transition: opacity var(--dur-base) var(--ease),
              visibility var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease-out);
  z-index: var(--z-dropdown);
}
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 1.5rem;
  width: 10px; height: 10px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  transform: rotate(45deg);
}
.nav__item.has-dropdown:hover .nav__dropdown,
.nav__item.has-dropdown:focus-within .nav__dropdown,
.nav__item.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.nav__dropdown-link {
  display: block;
  padding: .625rem .875rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--gray-700);
  border-radius: var(--r-sm);
  transition: background var(--dur-fast), color var(--dur-fast), box-shadow var(--dur-fast);
  position: relative;
}
.nav__dropdown-link:hover {
  background: var(--bg-muted);
  color: var(--brand);
}
.nav__dropdown-link.is-active {
  background: rgba(10, 38, 71, .05);
  color: var(--brand);
  font-weight: var(--fw-semibold);
  box-shadow: inset 3px 0 0 var(--accent);
}

/* ==========================================================================
   10. MOBILE NAV TOGGLE (animated hamburger → X)
   ========================================================================== */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  color: var(--gray-800);
  border-radius: var(--r-sm);
  transition: background var(--dur-fast);
}
.nav-toggle:hover { background: var(--bg-muted); }

.nav-toggle__burger {
  position: relative;
  width: 22px; height: 16px;
  display: inline-block;
}
.nav-toggle__burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease),
              opacity var(--dur-base) var(--ease),
              top var(--dur-base) var(--ease);
}
.nav-toggle__burger span:nth-child(1) { top: 0; }
.nav-toggle__burger span:nth-child(2) { top: 7px; }
.nav-toggle__burger span:nth-child(3) { top: 14px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__burger span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__burger span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__burger span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* ==========================================================================
   11. HERO
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 45%, var(--navy-600) 100%);
  color: var(--white);
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 15% 20%, rgba(201,164,73,.18), transparent 70%),
    radial-gradient(50% 60% at 85% 80%, rgba(44,116,179,.28), transparent 70%);
  z-index: -1;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  z-index: -1;
}
.hero__inner { position: relative; max-width: 820px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem .875rem;
  background: rgba(201,164,73,.12);
  border: 1px solid rgba(201,164,73,.35);
  color: var(--accent);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: var(--s-5);
}
.hero__eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: var(--r-full);
  box-shadow: 0 0 0 3px rgba(201,164,73,.3);
}
.hero__title { color: var(--white); margin-bottom: var(--s-5); }
.hero__title span { color: var(--accent); }
.hero__lead {
  color: rgba(255,255,255,.82);
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--s-8);
  max-width: 620px;
}
.hero__cta { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding-block: var(--s-16) var(--s-6);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--navy-400) 50%, var(--accent) 100%);
}
.footer a { color: rgba(255,255,255,.7); transition: color var(--dur-fast); }
.footer a:hover { color: var(--accent); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--s-10);
  margin-bottom: var(--s-10);
}
.footer__brand .brand__name { color: var(--white); }
.footer__brand .brand__sub { color: rgba(255,255,255,.55); }
.footer__brand p {
  margin-top: var(--s-4);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  max-width: 360px;
}

.footer__social {
  display: flex;
  gap: var(--s-2);
  margin-top: var(--s-5);
}
.footer__social a {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.75);
  transition: background var(--dur-fast), color var(--dur-fast),
              border-color var(--dur-fast), transform var(--dur-fast);
}
.footer__social a:hover {
  background: var(--accent);
  color: var(--navy-900);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.footer__social svg { width: 16px; height: 16px; }

.footer__title {
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--s-5);
  position: relative;
  padding-bottom: var(--s-3);
}
.footer__title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.footer__list { display: flex; flex-direction: column; gap: var(--s-3); font-size: var(--fs-sm); }
.footer__list a {
  display: inline-flex; align-items: center;
  transition: padding-left var(--dur-fast), color var(--dur-fast);
  position: relative;
}
.footer__list a::before {
  content: '→';
  position: absolute;
  left: -16px; opacity: 0;
  color: var(--accent);
  transition: opacity var(--dur-fast), left var(--dur-fast);
}
.footer__list a:hover { padding-left: 18px; }
.footer__list a:hover::before { opacity: 1; left: 0; }

.footer__contact { display: flex; flex-direction: column; gap: var(--s-4); font-size: var(--fs-sm); }
.footer__contact-item { display: flex; gap: var(--s-3); align-items: flex-start; line-height: var(--lh-relaxed); }
.footer__contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }

.footer__emergency {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  background: linear-gradient(135deg, rgba(217,45,32,.12), rgba(217,45,32,.04));
  border: 1px solid rgba(217,45,32,.25);
  border-radius: var(--r-md);
  margin-top: var(--s-3);
}
.footer__emergency-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255,107,107,.15);
  border-radius: var(--r-full);
  color: #FF6B6B;
  flex-shrink: 0;
}
.footer__emergency-icon svg { width: 18px; height: 18px; }
.footer__emergency-label {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 2px;
  line-height: 1;
}
.footer__emergency-number {
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  color: #FF6B6B;
  letter-spacing: .02em;
  line-height: 1;
}

.footer__bottom {
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.5);
}
.footer__bottom-links { display: flex; gap: var(--s-5); flex-wrap: wrap; }

/* ==========================================================================
   13. PROFESSIONAL COMPONENTS
   ========================================================================== */

/* ——— Info Table (Transparency) ——— */
.info-table-wrapper { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-md); background: var(--white); margin-block: var(--s-6); }
.info-table { width: 100%; border-collapse: collapse; text-align: left; font-size: var(--fs-sm); min-width: 500px; }
.info-table th { background: var(--bg-muted); padding: var(--s-4); font-weight: var(--fw-bold); color: var(--navy-900); border-bottom: 2px solid var(--border); }
.info-table td { padding: var(--s-4); border-bottom: 1px solid var(--border); color: var(--text-muted); }
.info-table tr:last-child td { border-bottom: 0; }
.info-table tr:hover td { background: var(--gray-50); }

/* ——— Stat Banner & Cards ——— */
.stat-banner {
  background: var(--navy-900);
  border-radius: var(--r-lg);
  padding: var(--s-10);
  color: var(--white);
  margin-block: var(--s-12);
}
.stat-card {
  text-align: center;
  padding: var(--s-4);
}
.stat-card__icon {
  margin-bottom: var(--s-3);
  color: var(--accent);
  display: flex;
  justify-content: center;
}
.stat-card__icon svg { width: 42px; height: 42px; opacity: 0.8; }
.stat-card__value {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--accent);
  line-height: 1;
}
.stat-card__label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: var(--s-2);
  font-weight: var(--fw-semibold);
}

/* ——— Media Center (Video/Multimedia) ——— */
.media-card {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy-900);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  cursor: pointer;
  isolation: isolate;
}
.media-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: -1;
  transition: transform var(--dur-slow) var(--ease-out), opacity var(--dur-slow) var(--ease-out);
}
.media-card:hover img { transform: scale(1.05); opacity: 0.4; }
.media-card__play {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 0 0 10px rgba(201,164,73,0.3);
  transition: transform var(--dur-base) var(--ease), background var(--dur-base);
}
.media-card:hover .media-card__play { transform: scale(1.1); background: var(--accent-hover); }
.media-card__title {
  position: absolute;
  bottom: var(--s-4);
  left: var(--s-4);
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* ——— Achievement & Award ——— */
.award-card {
  padding: var(--s-8);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base);
}
.award-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.award-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(201,164,73,.1);
  color: var(--accent);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  margin-inline: auto;
  margin-bottom: var(--s-5);
}
.award-card__icon svg { width: 30px; height: 30px; }
.award-card__title { font-weight: var(--fw-bold); margin-bottom: var(--s-2); color: var(--navy-900); }
.award-card__desc { font-size: var(--fs-xs); color: var(--text-muted); line-height: var(--lh-relaxed); }

/* ——— Service Steps (Alur Pelayanan) ——— */
.step-card {
  position: relative;
  padding: var(--s-8);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  counter-increment: step;
}
.step-card::after {
  content: counter(step);
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: .8;
  z-index: 0;
  pointer-events: none;
}
.step-card > * { position: relative; z-index: 1; }
.step-card__icon { color: var(--accent); margin-bottom: var(--s-2); }
.step-card__icon svg { width: 32px; height: 32px; }
.step-card__title { font-weight: var(--fw-bold); font-size: var(--fs-lg); color: var(--navy-900); }
.step-card__desc { font-size: var(--fs-sm); color: var(--text-muted); }

/* ——— Newsletter ——— */
.newsletter-box {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-6);
  flex-wrap: wrap;
}
.newsletter-box input {
  flex: 1;
  min-width: 240px;
  padding: 0.875rem 1.25rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--white);
  font-size: var(--fs-sm);
  transition: border-color var(--dur-base);
}
.newsletter-box input:focus { outline: none; border-color: var(--accent); }

/* ——— Emergency & Alert Variants ——— */
.cta-box--danger { background: linear-gradient(135deg, #B91C1C 0%, #7F1D1D 100%); }
.cta-box--danger .cta-box__title { color: var(--white); }
.cta-box--danger .cta-box__desc { color: rgba(255,255,255,.85); }


/* ——— FAQ Accordion ——— */
.accordion { display: flex; flex-direction: column; gap: var(--s-3); }
.accordion__item { border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; background: var(--white); transition: border-color var(--dur-base); }
.accordion__item.is-open { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-4) var(--s-6); font-size: var(--fs-base); font-weight: var(--fw-semibold);
  color: var(--gray-900); background: none; text-align: left; cursor: pointer;
}
.accordion__trigger svg { width: 18px; height: 18px; color: var(--text-soft); transition: transform var(--dur-base); }
.accordion__item.is-open .accordion__trigger svg { transform: rotate(180deg); color: var(--accent); }
.accordion__content { max-height: 0; overflow: hidden; transition: max-height var(--dur-base) var(--ease); padding-inline: var(--s-6); }
.accordion__item.is-open .accordion__content { max-height: 400px; padding-bottom: var(--s-5); }

/* ——— Timeline (History/Process) ——— */
.timeline { position: relative; padding-left: var(--s-10); border-left: 2px solid var(--border); margin-block: var(--s-8); }
.timeline__item { position: relative; padding-bottom: var(--s-10); }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ''; position: absolute; left: calc(-1 * var(--s-10) - 7px); top: 5px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--white);
  border: 3px solid var(--accent); box-shadow: 0 0 0 4px var(--white);
}
.timeline__year { font-size: var(--fs-xs); font-weight: var(--fw-extrabold); color: var(--accent); text-transform: uppercase; margin-bottom: var(--s-1); }
.timeline__title { font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--navy-900); margin-bottom: var(--s-2); }
.timeline__desc { font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-relaxed); }

/* ——— Logo Slider (Partners) ——— */
.logo-slider { display: flex; align-items: center; justify-content: space-between; gap: var(--s-12); flex-wrap: wrap; opacity: .5; filter: grayscale(1); margin-top: var(--s-8); }
.logo-slider img { height: 40px; width: auto; transition: opacity var(--dur-base), filter var(--dur-base); }
.logo-slider img:hover { opacity: 1; filter: grayscale(0); }


/* ——— CTA Boxes & Tools ——— */
.cta-box {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white); padding: var(--s-10); border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-8);
  box-shadow: var(--shadow-xl); position: relative; overflow: hidden;
}
.cta-box::before { content: ''; position: absolute; inset: 0; opacity: .05; background-image: radial-gradient(var(--white) 1px, transparent 0); background-size: 24px 24px; }
.cta-box__content { position: relative; z-index: 1; }
.cta-box__title { font-size: var(--fs-2xl); font-weight: var(--fw-bold); margin-bottom: var(--s-2); color: var(--white); }
.cta-box__desc { font-size: var(--fs-base); color: rgba(255,255,255,.8); max-width: 500px; }

/* ——— Zona Integritas (ZI) Components ——— */
.zi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--s-8); margin-top: var(--s-10); }
.zi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-10) var(--s-8);
  text-align: center;
  transition: all var(--dur-base);
  box-shadow: var(--shadow-sm);
}
.zi-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.zi-card__title { font-size: var(--fs-4xl); font-weight: var(--fw-extrabold); color: var(--navy-900); margin-bottom: var(--s-2); letter-spacing: -0.02em; }
.zi-card__label { font-size: var(--fs-xs); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); }
.zi-card__desc { font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-relaxed); margin-top: var(--s-4); }

/* ——— Channels & Contacts ——— */
.channels-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s-6); margin-top: var(--s-10); }
.channel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  transition: all var(--dur-base) var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.channel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.channel-card__icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: var(--bg-subtle);
  color: var(--brand);
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
  transition: all var(--dur-base);
}
.channel-card:hover .channel-card__icon { background: var(--brand); color: var(--accent); transform: rotate(-5deg); }
.channel-card__icon svg { width: 30px; height: 30px; }
.channel-card__label { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .1em; font-weight: var(--fw-bold); color: var(--text-soft); margin-bottom: var(--s-2); }
.channel-card__value { font-size: var(--fs-xl); font-weight: var(--fw-bold); color: var(--navy-900); margin-bottom: var(--s-3); }
.channel-card__sub { font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-relaxed); }

/* ——— Info/Guarantee Boxes ——— */
.info-box--guarantee {
  margin-top: var(--s-12);
  padding: var(--s-8);
  background: var(--bg-muted);
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-8);
  align-items: center;
  border-left: 5px solid var(--accent);
}
@media (max-width: 768px) {
  .info-box--guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
.guarantee-icon {
  width: 80px; height: 80px; display: grid; place-items: center;
  background: var(--white); color: var(--accent); border-radius: var(--r-full);
  box-shadow: var(--shadow-md); flex-shrink: 0;
}
.guarantee-icon svg { width: 40px; height: 40px; }

/* ——— [NEW] Service Detail Components ——— */
.service-block__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--s-12); align-items: start;
}
@media (max-width: 992px) {
  .service-block__grid { grid-template-columns: 1fr; }
}

.service-visual {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: var(--r-lg); padding: var(--s-8); color: var(--white);
  position: relative; overflow: hidden; box-shadow: var(--shadow-xl);
}
.service-visual::before {
  content: ''; position: absolute; top: -30%; right: -20%; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,164,73,.2), transparent 70%);
}
.service-visual__badge {
  display: inline-block; padding: .375rem .875rem; background: rgba(201,164,73,.15);
  color: var(--accent); border-radius: var(--r-full); font-size: var(--fs-xs);
  font-weight: var(--fw-bold); text-transform: uppercase; margin-bottom: var(--s-6);
}
.service-visual__icon { width: 56px; height: 56px; color: var(--accent); margin-bottom: var(--s-5); }
.service-visual__icon svg { width: 100%; height: 100%; }
.service-visual__title { font-size: var(--fs-3xl); font-weight: var(--fw-bold); margin-bottom: var(--s-3); }
.service-visual__sub { font-size: var(--fs-sm); color: rgba(255,255,255,.8); line-height: var(--lh-relaxed); margin-bottom: var(--s-8); }
.service-visual__footer { display: flex; gap: var(--s-8); padding-top: var(--s-6); border-top: 1px solid rgba(255,255,255,.1); }
.service-visual__stat-value { font-size: var(--fs-2xl); font-weight: var(--fw-bold); color: var(--accent); }
.service-visual__stat-label { font-size: var(--fs-xs); color: rgba(255,255,255,.6); text-transform: uppercase; margin-top: 2px; }

.step-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--s-6); transition: all var(--dur-base); flex: 1;
}
.step-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow-md); }
.step-card__icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--bg-muted); color: var(--navy-700); border-radius: var(--r-md);
  margin-bottom: var(--s-4);
}
.step-card__icon svg { width: 24px; height: 24px; }
.step-card__title { font-size: var(--fs-base); font-weight: var(--fw-bold); color: var(--navy-900); margin-bottom: var(--s-2); }
.step-card__desc { font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-relaxed); }

.info-table-wrapper { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); background: var(--white); }
.info-table { width: 100%; border-collapse: collapse; text-align: left; }
.info-table th { background: var(--navy-900); color: var(--white); padding: var(--s-4) var(--s-5); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .05em; }
.info-table td { padding: var(--s-4) var(--s-5); border-top: 1px solid var(--border); font-size: var(--fs-sm); color: var(--text-muted); }
.info-table tr:hover td { background: var(--bg-subtle); color: var(--navy-900); }

/* --- Accordion (FAQ) --- */
.accordion { display: flex; flex-direction: column; gap: var(--s-3); }
.accordion__item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-4) var(--s-5); text-align: left; font-weight: var(--fw-bold);
  color: var(--navy-900); transition: background var(--dur-fast);
}
.accordion__trigger:hover { background: var(--bg-subtle); }
.accordion__trigger svg { width: 20px; height: 20px; transition: transform var(--dur-base); color: var(--accent); }
.accordion__item.is-open .accordion__trigger { border-bottom: 1px solid var(--border); }
.accordion__item.is-open .accordion__trigger svg { transform: rotate(180deg); }
.accordion__content { padding: var(--s-5); display: none; font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-relaxed); background: var(--bg-muted); }
.accordion__item.is-open .accordion__content { display: block; }

/* ——— [NEW] SIM & Service Metadata ——— */
.sim-types { display: flex; gap: var(--s-6); margin-bottom: var(--s-12); flex-wrap: wrap; justify-content: center; }
.sim-type { display: flex; align-items: center; gap: var(--s-4); background: var(--white); padding: var(--s-4) var(--s-6); border-radius: var(--r-lg); border: 1px solid var(--border); transition: all var(--dur-base); }
.sim-type:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sim-type__badge { width: 44px; height: 44px; display: grid; place-items: center; background: var(--navy-900); color: var(--accent); font-weight: 800; font-size: var(--fs-xl); border-radius: 50%; border: 2px solid var(--accent); flex-shrink: 0; }
.sim-type__desc { font-size: var(--fs-xs); font-weight: var(--fw-bold); color: var(--navy-900); line-height: 1.2; text-transform: uppercase; letter-spacing: 0.05em; }

.meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: var(--s-4); margin-top: var(--s-4); }
.meta-tile { background: var(--white); padding: var(--s-4); border-radius: var(--r-md); border: 1px solid var(--border); text-align: left; }
.meta-tile__icon { color: var(--accent); margin-bottom: var(--s-2); opacity: 0.8; }
.meta-tile__icon svg { width: 20px; height: 20px; }
.meta-tile__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-soft); font-weight: var(--fw-bold); margin-bottom: 2px; }
.meta-tile__value { font-size: var(--fs-sm); font-weight: var(--fw-extrabold); color: var(--navy-900); }

/* Maklumat Section */
.maklumat {
  padding: var(--s-10); background: var(--white); border: 2px solid var(--navy-700);
  border-radius: var(--r-lg); text-align: center; position: relative;
  box-shadow: 0 0 0 6px var(--bg-subtle); margin-top: var(--s-8);
}
.maklumat__title { font-size: var(--fs-2xl); font-weight: var(--fw-extrabold); color: var(--navy-900); margin-bottom: var(--s-1); text-transform: uppercase; }
.maklumat__sub { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .2em; color: var(--accent); margin-bottom: var(--s-6); font-weight: var(--fw-bold); }

/* ——— [NEW] Institutional Profile Components ——— */

/* --- Sejarah --- */
.sejarah-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--s-12); align-items: center; }
.sejarah__image {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg);
  overflow: hidden; background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  box-shadow: var(--shadow-xl);
}
.sejarah__image img { width: 100%; height: 100%; object-fit: cover; }
.sejarah__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,18,42,.6), transparent 40%);
}
.sejarah__overlay { position: absolute; bottom: var(--s-6); left: var(--s-6); right: var(--s-6); color: var(--white); }
.sejarah__overlay-year { font-size: clamp(2rem, 4vw, 3rem); font-weight: var(--fw-extrabold); line-height: 1; color: var(--accent); letter-spacing: -.02em; }
.sejarah__overlay-label { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .1em; font-weight: var(--fw-semibold); color: rgba(255,255,255,.85); margin-top: var(--s-2); }

/* --- Visi Misi --- */
.visi-misi-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--s-10); align-items: start; }
.visi-card {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
  color: var(--white); padding: var(--s-8); border-radius: var(--r-lg);
  position: relative; overflow: hidden; box-shadow: var(--shadow-navy);
}
.visi-card::before {
  content: ''; position: absolute; top: -40%; right: -15%; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,164,73,.25), transparent 65%);
}
.visi-card__icon {
  position: relative; width: 48px; height: 48px; display: grid; place-items: center;
  background: rgba(201,164,73,.15); color: var(--accent); border-radius: var(--r-sm); margin-bottom: var(--s-5);
}
.visi-card__icon svg { width: 24px; height: 24px; }
.visi-card__quote { position: relative; font-size: var(--fs-lg); line-height: var(--lh-relaxed); font-weight: var(--fw-semibold); color: var(--white); }
.visi-card__quote::before {
  content: '"'; position: absolute; top: -1.75rem; left: -.5rem; font-family: Georgia, serif;
  font-size: 5rem; color: var(--accent); opacity: .3; line-height: 1;
}
.misi-list { counter-reset: misi; }
.misi-list li { display: flex; align-items: flex-start; gap: var(--s-4); padding: var(--s-4) 0; border-bottom: 1px solid var(--border); counter-increment: misi; line-height: var(--lh-relaxed); color: var(--gray-700); }
.misi-list li:last-child { border-bottom: 0; }
.misi-list li::before {
  content: counter(misi, decimal-leading-zero); flex-shrink: 0; min-width: 48px;
  color: var(--accent); font-weight: var(--fw-extrabold); font-size: var(--fs-xl);
  font-family: var(--font-display); letter-spacing: -.02em;
}

/* --- Struktur Organisasi --- */
.org-tree { display: flex; flex-direction: column; align-items: center; gap: var(--s-6); position: relative; }
.org-level { display: grid; gap: var(--s-4); width: 100%; justify-content: center; }
.org-level--top { grid-template-columns: minmax(280px, 380px); }
.org-level--wakil { grid-template-columns: minmax(260px, 340px); }
.org-level--bagian { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); width: 100%; max-width: 1000px; }

.org-connector { width: 2px; height: var(--s-4); background: var(--border-strong); margin-inline: auto; }
.org-connector--dashed { background: repeating-linear-gradient(to bottom, var(--border-strong) 0 4px, transparent 4px 8px); }

.org-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: var(--s-5); text-align: center; transition: all var(--dur-base); position: relative;
}
.org-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.org-card--primary {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
  color: var(--white); border: 0; box-shadow: var(--shadow-navy); padding: var(--s-6);
}
.org-card--primary::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--accent); border-radius: var(--r-md) 0 0 var(--r-md); }
.org-card__avatar { width: 56px; height: 56px; margin: 0 auto var(--s-3); background: var(--bg-muted); border-radius: var(--r-full); display: grid; place-items: center; color: var(--navy-700); border: 2px solid var(--border); }
.org-card__role { font-size: var(--fs-xs); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .05em; color: var(--accent); margin-bottom: 2px; }
.org-card__name { font-size: var(--fs-sm); font-weight: var(--fw-bold); }

/* --- Leader Cards (Timeline/Succession) --- */
.leader-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s-6); }
.leader-card {
  display: flex; gap: var(--s-5); align-items: center; padding: var(--s-5);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: all var(--dur-base);
}
.leader-card:hover { border-color: var(--accent); transform: translateX(5px); box-shadow: var(--shadow-md); }
.leader-card__photo { width: 90px; height: 110px; border-radius: var(--r-md); overflow: hidden; flex-shrink: 0; background: var(--bg-muted); }
.leader-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.leader-card__period { font-size: 10px; font-weight: var(--fw-bold); color: var(--accent); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.leader-card__name { font-size: var(--fs-base); font-weight: var(--fw-bold); color: var(--navy-900); line-height: 1.3; }

/* --- Tugas & Fungsi (Institutional) --- */
.tf-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--s-10); align-items: start; }
.tugas-list { display: grid; gap: var(--s-3); }
.tugas-item {
  display: flex; gap: var(--s-4); padding: var(--s-5); background: var(--white);
  border: 1px solid var(--border); border-left: 3px solid var(--accent);
  border-radius: var(--r-md); transition: all var(--dur-fast);
}
.tugas-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-color: var(--border-strong); }
.tugas-item__num { width: 36px; height: 36px; display: grid; place-items: center; background: var(--navy-700); color: var(--accent); border-radius: var(--r-full); font-weight: var(--fw-extrabold); font-size: var(--fs-sm); flex-shrink: 0; }
.tugas-item__content h4 { font-size: var(--fs-base); margin-bottom: 4px; color: var(--navy-900); }
.tugas-item__content p { font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-relaxed); }

.fungsi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--s-3); }
.fungsi-chip {
  display: flex; align-items: center; gap: var(--s-3); padding: var(--s-4);
  background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--r-sm);
  font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--navy-700); transition: all var(--dur-fast);
}
.fungsi-chip:hover { border-color: var(--navy-700); background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.fungsi-chip__icon { width: 32px; height: 32px; display: grid; place-items: center; background: rgba(201,164,73,.12); color: var(--accent); border-radius: var(--r-xs); flex-shrink: 0; }
.fungsi-chip__icon svg { width: 16px; height: 16px; }

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

/* ——— [NEW] News & Multimedia Components ——— */

/* --- Featured News (Institutional Hero) --- */
.news-featured {
  display: grid; grid-template-columns: 1.25fr 1fr; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: var(--s-12); transition: all var(--dur-base);
}
.news-featured:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); }
.news-featured__image { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); }
.news-featured__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.news-featured:hover .news-featured__image img { transform: scale(1.05); }
.news-featured__badge {
  position: absolute; top: var(--s-4); left: var(--s-4); display: inline-flex; align-items: center; gap: .375rem;
  padding: .375rem .875rem; background: var(--accent); color: var(--navy-900); border-radius: var(--r-full);
  font-size: 10px; font-weight: var(--fw-bold); letter-spacing: .1em; text-transform: uppercase;
}
.news-featured__body { padding: clamp(2rem, 3vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.news-featured__eyebrow { font-size: var(--fs-xs); font-weight: var(--fw-bold); color: var(--accent); letter-spacing: .14em; text-transform: uppercase; margin-bottom: var(--s-3); }
.news-featured__title { font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: var(--fw-bold); line-height: var(--lh-snug); color: var(--navy-900); margin-bottom: var(--s-4); }
.news-featured__excerpt { font-size: var(--fs-base); color: var(--text-muted); line-height: var(--lh-relaxed); margin-bottom: var(--s-5); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-featured__meta { display: flex; gap: var(--s-4); margin-bottom: var(--s-5); font-size: var(--fs-xs); color: var(--text-soft); text-transform: uppercase; letter-spacing: .08em; font-weight: var(--fw-semibold); }
.news-featured__meta svg { width: 12px; height: 12px; color: var(--accent); }

/* --- Filtering & Listing --- */
.news-filter { display: flex; gap: var(--s-2); flex-wrap: wrap; margin-bottom: var(--s-6); }
.filter-btn {
  padding: .5rem 1rem; font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--navy-700);
  border-radius: var(--r-full); border: 1px solid var(--border); background: var(--white);
  transition: all var(--dur-fast); cursor: pointer; white-space: nowrap;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--bg-muted); }
.filter-btn.is-active { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); box-shadow: var(--shadow-sm); }
.filter-btn__count { display: inline-flex; align-items: center; justify-content: center; min-width: 22px; margin-left: .375rem; padding: 1px 6px; font-size: 11px; font-weight: var(--fw-bold); background: rgba(0,0,0,.08); border-radius: var(--r-full); }
.filter-btn.is-active .filter-btn__count { background: rgba(255,255,255,.2); color: var(--white); }

.news-summary { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-6); padding-bottom: var(--s-5); border-bottom: 1px solid var(--border); font-size: var(--fs-sm); color: var(--text-muted); }
.news-summary__count strong { color: var(--navy-900); font-weight: var(--fw-semibold); }
.news-summary__sort select { padding: .375rem .625rem; padding-right: 1.75rem; font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--navy-700); border: 1px solid var(--border); border-radius: var(--r-sm); background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A449' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right .625rem center; appearance: none; -webkit-appearance: none; cursor: pointer; }

/* --- Pagination --- */
.pagination { display: flex; justify-content: center; align-items: center; gap: var(--s-1); margin-top: var(--s-12); flex-wrap: wrap; }
.pagination__link { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 .75rem; font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--navy-700); border: 1px solid var(--border); border-radius: var(--r-sm); background: var(--white); transition: all var(--dur-fast); }
.pagination__link:hover { border-color: var(--accent); color: var(--accent); background: var(--bg-muted); transform: translateY(-1px); }
.pagination__link.is-active { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); box-shadow: var(--shadow-navy); pointer-events: none; }
.pagination__link--nav { gap: .375rem; padding: 0 1rem; color: var(--navy-900); display: inline-flex; align-items: center; }
.pagination__link--nav[aria-disabled="true"] { opacity: .4; cursor: not-allowed; pointer-events: none; }
.pagination__link--nav svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .news-featured { grid-template-columns: 1fr; }
  .news-featured__image { aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .news-filter { overflow-x: auto; padding-bottom: var(--s-2); }
  .news-filter::-webkit-scrollbar { display: none; }
  .pagination__link--nav span { display: none; }
}

/* ——— [NEW] Contact & CTA Utilities ——— */

/* --- Contact Items --- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--s-10); }
.contact-info { display: flex; flex-direction: column; gap: var(--s-6); }
.contact-item { display: flex; gap: var(--s-4); align-items: flex-start; }
.contact-item__icon { width: 52px; height: 52px; background: var(--bg-subtle); color: var(--navy-700); border-radius: var(--r-md); display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.contact-item__icon svg { width: 24px; height: 24px; color: var(--accent); }
.contact-item__title { font-weight: var(--fw-bold); font-size: var(--fs-base); color: var(--navy-900); margin-bottom: 2px; }
.contact-item__value { font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-relaxed); }

.map-frame { width: 100%; aspect-ratio: 16/9; background: var(--bg-muted); border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); }

/* --- CTA Box (Common & Emergency) --- */
.cta-box {
  padding: var(--s-10); border-radius: var(--r-lg); background: var(--white);
  border: 1px solid var(--border); position: relative; overflow: hidden;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-8);
}
.cta-box--navy { background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%); color: var(--white); border: 0; }
.cta-box--danger { background: linear-gradient(135deg, #991B1B 0%, #7F1D1D 100%); color: var(--white); border: 0; }
.cta-box__content { max-width: 600px; }
.cta-box__title { font-size: var(--fs-3xl); font-weight: var(--fw-bold); color: inherit; margin-bottom: var(--s-3); }
.cta-box__desc { font-size: var(--fs-base); opacity: .9; line-height: var(--lh-relaxed); }

/* ——— [NEW] Institutional Transparency Components ——— */

/* --- Zona Integritas --- */
.zi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--s-6); margin-top: var(--s-8); }
.zi-card {
  padding: var(--s-8); background: var(--white); border: 1px solid var(--border);
  border-top: 4px solid var(--accent); border-radius: var(--r-lg);
  transition: all var(--dur-base); text-align: center;
}
.zi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.zi-card__title { font-size: 2.5rem; font-weight: var(--fw-extrabold); color: var(--navy-900); margin-bottom: var(--s-2); line-height: 1; }
.zi-card__label { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--accent); text-transform: uppercase; letter-spacing: .1em; margin-bottom: var(--s-5); }
.zi-card__desc { font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-relaxed); }

/* --- PPID & Legal --- */
.ppid-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--s-10); align-items: start; }
.legal-badge { display: inline-flex; align-items: center; gap: var(--s-3); padding: var(--s-4) var(--s-5); background: linear-gradient(135deg, rgba(201,164,73,.08), rgba(201,164,73,.02)); border: 1px solid rgba(201,164,73,.25); border-radius: var(--r-md); }
.legal-badge__icon { width: 40px; height: 40px; display: grid; place-items: center; background: rgba(201,164,73,.15); color: var(--accent); border-radius: var(--r-sm); flex-shrink: 0; }
.legal-badge__icon svg { width: 20px; height: 20px; }

.ppid-steps { padding: var(--s-8); background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.steps { display: flex; flex-direction: column; }
.steps__item { position: relative; display: flex; gap: var(--s-4); padding-bottom: var(--s-5); }
.steps__item:not(:last-child)::before { content: ''; position: absolute; left: 15px; top: 36px; bottom: var(--s-2); width: 2px; background: var(--border); }
.steps__number { width: 32px; height: 32px; display: grid; place-items: center; background: var(--navy-700); color: var(--accent); border-radius: var(--r-full); font-weight: var(--fw-bold); font-size: var(--fs-sm); flex-shrink: 0; position: relative; z-index: 1; }
.steps__time { font-size: 10px; font-weight: var(--fw-bold); background: rgba(201,164,73,.12); color: var(--gold-700); padding: 2px 8px; border-radius: var(--r-full); letter-spacing: .05em; }

/* --- Transparency Stats --- */
.transp-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--s-4); }
.transp-stat {
  padding: var(--s-6); background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); border-left: 4px solid var(--accent);
  transition: all var(--dur-base);
}
.transp-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.transp-stat__icon { width: 36px; height: 36px; display: grid; place-items: center; background: rgba(201,164,73,.12); color: var(--accent); border-radius: var(--r-sm); margin-bottom: var(--s-4); }
.transp-stat__value { font-size: clamp(1.75rem, 2.5vw, 2.5rem); font-weight: var(--fw-extrabold); color: var(--navy-900); line-height: 1; letter-spacing: -.02em; margin-bottom: var(--s-2); }
.transp-stat__label { font-size: var(--fs-sm); color: var(--text-muted); font-weight: var(--fw-medium); }

/* --- Kategori Informasi Cards --- */
.kategori-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--s-4); }
.kategori-card { padding: var(--s-6); background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); transition: all var(--dur-base); display: flex; flex-direction: column; }
.kategori-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.kategori-card__badge { display: inline-flex; align-items: center; gap: .375rem; padding: .375rem .75rem; border-radius: var(--r-full); font-size: 10px; font-weight: var(--fw-bold); margin-bottom: var(--s-4); align-self: flex-start; }
.kategori-card__badge::before { content: ''; width: 6px; height: 6px; border-radius: var(--r-full); }
.kategori-card--berkala .kategori-card__badge { background: rgba(44,116,179,.12); color: var(--navy-500); }
.kategori-card--berkala .kategori-card__badge::before { background: var(--navy-500); }
.kategori-card--serta .kategori-card__badge { background: rgba(185,28,28,.12); color: #B91C1C; }
.kategori-card--serta .kategori-card__badge::before { background: #B91C1C; }

/* --- Document Management Table --- */
.doc-table-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.doc-table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.doc-table thead { background: var(--bg-subtle); border-bottom: 2px solid var(--border); }
.doc-table th { text-align: left; padding: var(--s-4) var(--s-5); font-size: var(--fs-xs); font-weight: var(--fw-bold); text-transform: uppercase; color: var(--navy-700); }
.doc-table tr:hover { background: var(--bg-subtle); }
.doc-table td { padding: var(--s-4) var(--s-5); vertical-align: middle; border-bottom: 1px solid var(--border); }
.doc-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: var(--r-sm); font-size: 10px; font-weight: var(--fw-extrabold); flex-shrink: 0; }
.doc-icon--pdf { background: rgba(185,28,28,.1); color: #B91C1C; }
.doc-icon--xlsx { background: rgba(21,128,61,.1); color: #15803D; }

/* ——— [NEW] Specialized Service & Channel Components ——— */

/* --- Quick Access Header --- */
.quick-access { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--s-4); margin-top: var(--s-10); }
.quick-access__item { display: flex; align-items: center; gap: var(--s-3); padding: var(--s-4) var(--s-5); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); color: var(--white); font-weight: var(--fw-semibold); font-size: var(--fs-sm); transition: all var(--dur-fast); }
.quick-access__item:hover { background: rgba(201,164,73,.12); border-color: rgba(201,164,73,.4); color: var(--accent); transform: translateY(-2px); }
.quick-access__item svg { width: 18px; height: 18px; color: var(--accent); }

/* --- Meta Tiles (Biaya, Durasi, etc) --- */
.meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--s-3); margin-block: var(--s-6); }
.meta-tile { padding: var(--s-4); background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); transition: all var(--dur-fast); }
.meta-tile:hover { border-color: var(--accent); transform: translateY(-2px); }
.meta-tile__icon { width: 32px; height: 32px; display: grid; place-items: center; background: rgba(201,164,73,.1); color: var(--accent); border-radius: var(--r-xs); margin-bottom: var(--s-3); }
.meta-tile__icon svg { width: 16px; height: 16px; }
.meta-tile__label { font-size: 10px; color: var(--text-soft); text-transform: uppercase; letter-spacing: .1em; font-weight: var(--fw-semibold); margin-bottom: 2px; }
.meta-tile__value { font-size: var(--fs-lg); font-weight: var(--fw-extrabold); color: var(--navy-900); line-height: 1.1; }

/* --- Requirement Lists --- */
.req-list { display: flex; flex-direction: column; gap: var(--s-3); }
.req-list li { display: flex; gap: var(--s-3); align-items: flex-start; font-size: var(--fs-sm); color: var(--gray-700); line-height: var(--lh-relaxed); }
.req-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* --- SIM/Service Categories --- */
.sim-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--s-3); margin-block: var(--s-6); }
.sim-type { text-align: center; padding: var(--s-5) var(--s-3); background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); transition: all var(--dur-base); }
.sim-type:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sim-type__badge { width: 52px; height: 52px; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: var(--accent); font-size: var(--fs-2xl); font-weight: var(--fw-extrabold); border-radius: var(--r-md); margin: 0 auto var(--s-3); box-shadow: var(--shadow-sm); }
.sim-type__desc { font-size: var(--fs-xs); color: var(--text-muted); line-height: var(--lh-relaxed); }

/* --- High-Impact Channels & Steps --- */
.channels-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--s-4); margin-top: var(--s-10); }
.channel-card { padding: var(--s-6); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); transition: all var(--dur-base); color: var(--white); }
.channel-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.channel-card__icon { width: 48px; height: 48px; display: grid; place-items: center; background: rgba(201,164,73,.15); color: var(--accent); border-radius: var(--r-md); margin-bottom: var(--s-4); }
.channel-card__value { font-size: var(--fs-lg); font-weight: var(--fw-extrabold); margin-bottom: 6px; line-height: 1.1; }
.channel-card__sub { font-size: var(--fs-xs); opacity: .7; line-height: var(--lh-relaxed); }

.pengaduan-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--s-4); margin-top: var(--s-10); padding-top: var(--s-8); border-top: 1px solid rgba(255,255,255,.1); }
.pengaduan-step { text-align: center; position: relative; color: var(--white); }
.pengaduan-step__num { width: 32px; height: 32px; display: grid; place-items: center; background: var(--accent); color: var(--navy-900); border-radius: var(--r-full); font-weight: var(--fw-extrabold); margin: 0 auto var(--s-3); font-size: var(--fs-sm); }
.pengaduan-step__title { font-size: var(--fs-sm); font-weight: var(--fw-semibold); margin-bottom: 4px; }
.pengaduan-step__desc { font-size: var(--fs-xs); opacity: .65; line-height: var(--lh-relaxed); }

/* --- Badges & Highlights --- */
.cost-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; background: var(--success); color: var(--white);
  border-radius: var(--r-sm); font-weight: var(--fw-bold); font-size: var(--fs-sm);
}
.info-box--brand { background: var(--navy-700) !important; color: var(--white) !important; border: 0 !important; }
.info-box--brand .info-box__heading { color: var(--accent) !important; border-bottom-color: rgba(255,255,255,.1) !important; }

/* ——— [NEW] Editorial & Article Suite ——— */

/* --- Article Hero & Meta --- */
.article-hero { padding-block: clamp(3rem, 6vw, 5rem) var(--s-8); background: linear-gradient(180deg, var(--white) 0%, var(--bg-subtle) 100%); border-bottom: 1px solid var(--border); }
.article-hero__inner { max-width: 820px; margin-inline: auto; text-align: center; }
.article-category { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .9rem; background: var(--navy-700); color: var(--white); border-radius: var(--r-full); font-size: var(--fs-xs); font-weight: var(--fw-bold); text-transform: uppercase; margin-bottom: var(--s-6); }
.article-category::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: var(--r-full); }
.article-title { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: var(--fw-extrabold); line-height: 1.15; color: var(--navy-900); margin-bottom: var(--s-5); letter-spacing: -.02em; }
.article-deck { font-size: var(--fs-lg); line-height: var(--lh-relaxed); color: var(--text-muted); margin-bottom: var(--s-8); max-width: 680px; margin-inline: auto; }

.article-meta { display: flex; justify-content: center; align-items: center; gap: var(--s-6); flex-wrap: wrap; padding-block: var(--s-5); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-top: var(--s-6); }
.article-meta__author { display: inline-flex; align-items: center; gap: var(--s-3); }
.article-meta__avatar { width: 40px; height: 40px; background: linear-gradient(135deg, var(--navy-700), var(--navy-500)); color: var(--accent); border-radius: var(--r-full); display: grid; place-items: center; font-size: var(--fs-sm); font-weight: var(--fw-extrabold); }
.article-meta__author-name { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--navy-900); }
.article-meta__item { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--fs-sm); color: var(--text-muted); }
.article-meta__item svg { width: 15px; height: 15px; color: var(--accent); }

/* --- Feature Media --- */
.article-featured { padding-block: var(--s-8); background: var(--bg-subtle); }
.article-featured__inner { max-width: 1040px; margin-inline: auto; }
.article-featured__image { aspect-ratio: 16/9; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--shadow-xl); }
.article-featured__image img { width: 100%; height: 100%; object-fit: cover; }
.article-featured__caption { margin-top: var(--s-3); font-size: var(--fs-sm); color: var(--text-soft); font-style: italic; text-align: center; }

/* --- Semantic Prose Content --- */
.article-prose { max-width: 720px; margin-inline: auto; font-size: var(--fs-lg); line-height: var(--lh-relaxed); color: var(--gray-800); }
.article-prose > * + * { margin-top: var(--s-5); }
.article-prose p.lead { font-size: 1.125em; font-weight: var(--fw-medium); color: var(--navy-900); }
.article-prose p.lead::first-letter { float: left; font-size: 4.5rem; font-weight: var(--fw-extrabold); line-height: .85; padding: .25rem .625rem 0 0; color: var(--brand); }
.article-prose h2 { font-size: var(--fs-2xl); font-weight: var(--fw-bold); color: var(--navy-900); margin-top: var(--s-12) !important; border-top: 3px solid var(--accent); padding-top: var(--s-4); display: inline-block; }
.article-prose blockquote { margin-block: var(--s-10) !important; padding: var(--s-8); background: var(--navy-900); color: var(--white); border-radius: var(--r-lg); position: relative; isolation: isolate; box-shadow: var(--shadow-xl); }
.article-prose blockquote::before { content: '"'; position: absolute; top: -1.5rem; left: var(--s-5); font-size: 9rem; color: var(--accent); opacity: .3; z-index: -1; font-family: serif; }
.article-prose blockquote p { font-size: var(--fs-xl); font-style: italic; margin: 0; color: inherit; }
.article-prose blockquote cite { display: block; margin-top: var(--s-5); font-size: var(--fs-sm); color: var(--accent); font-style: normal; font-weight: var(--fw-bold); }
.article-prose .callout { margin-block: var(--s-8) !important; padding: var(--s-6); background: rgba(201,164,73,.08); border-left: 4px solid var(--accent); border-radius: var(--r-md); }

/* --- Article Footer & Tags --- */
.article-footer { max-width: 720px; margin: var(--s-10) auto 0; padding-top: var(--s-10); border-top: 1px solid var(--border); }
.article-tags { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-8); }
.article-tag { padding: .4rem .875rem; background: var(--bg-muted); color: var(--text-muted); font-size: var(--fs-xs); font-weight: var(--fw-bold); border-radius: var(--r-sm); transition: all var(--dur-fast); }
.article-tag:hover { background: var(--brand); color: var(--white); }
.article-share { display: flex; justify-content: space-between; align-items: center; padding: var(--s-5) var(--s-6); background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--r-md); }
.article-share__buttons { display: flex; gap: var(--s-2); }
.article-share__btn { width: 40px; height: 40px; display: grid; place-items: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-full); color: var(--text-muted); transition: all var(--dur-fast); }
.article-share__btn:hover { background: var(--brand); color: var(--white); transform: translateY(-2px); }

/* --- Author Bio Card --- */
.author-bio { max-width: 720px; margin: var(--s-10) auto 0; }
.author-bio__card { padding: var(--s-8); background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); display: flex; gap: var(--s-6); align-items: flex-start; position: relative; border-left: 4px solid var(--accent); }
.author-bio__avatar { width: 72px; height: 72px; background: var(--navy-800); color: var(--accent); border-radius: var(--r-full); display: grid; place-items: center; font-size: var(--fs-xl); font-weight: var(--fw-extrabold); }
.author-bio__name { font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--navy-900); }
.author-bio__desc { font-size: var(--fs-sm); color: var(--gray-700); line-height: var(--lh-relaxed); margin-top: var(--s-2); }

/* --- Institutional Identity (Visi & Misi) --- */
.visi-card {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
  color: var(--white); padding: var(--s-10); border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl); position: relative; overflow: hidden;
  margin-bottom: var(--s-12);
}
.visi-card::after {
  content: '"'; position: absolute; top: -1rem; right: 2rem;
  font-family: Georgia, serif; font-size: 10rem; color: var(--accent); opacity: 0.1;
}
.visi-card__label { font-size: var(--fs-xs); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: var(--s-4); display: block; }
.visi-card__content { font-size: var(--fs-2xl); line-height: 1.4; font-weight: var(--fw-bold); font-family: var(--font-display); }

.misi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--s-6); }
.misi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s-8); transition: all var(--dur-base); }
.misi-card:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.misi-card__num { width: 36px; height: 36px; background: var(--bg-subtle); color: var(--brand); border-radius: var(--r-full); display: grid; place-items: center; font-weight: var(--fw-bold); font-size: var(--fs-sm); margin-bottom: var(--s-5); }
.misi-card__text { font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: var(--text-muted); }

/* --- Organizational Structure --- */
.structure-box {
  background: var(--bg-subtle); border: 2px dashed var(--border-strong);
  border-radius: var(--r-xl); padding: var(--s-16) var(--s-8);
  text-align: center; color: var(--text-soft); font-weight: var(--fw-medium);
  display: flex; flex-direction: column; align-items: center; gap: var(--s-6);
}
.structure-box__icon { width: 80px; height: 80px; color: var(--border-strong); }

/* --- Profil Intro --- */
.profil-intro { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-12); align-items: center; }
.profil-intro__image { aspect-ratio: 4/3; background: var(--bg-muted); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.profil-intro__image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .profil-intro { grid-template-columns: 1fr; gap: var(--s-8); }
}

@media (max-width: 768px) {
  .article-hero { text-align: center; }
  .article-meta { justify-content: center; }
  .article-share { flex-direction: column; text-align: center; gap: var(--s-4); }
  .author-bio__card { flex-direction: column; text-align: center; align-items: center; }
}

@media (min-width: 901px) {
  .pengaduan-step:not(:last-child)::after { content: '→'; position: absolute; top: 14px; right: -18%; color: rgba(201,164,73,.4); font-size: var(--fs-xl); font-weight: var(--fw-bold); }
}

@media (max-width: 900px) {
  .ppid-grid { grid-template-columns: 1fr; }
  .doc-table thead { display: none; }
  .doc-table tr { display: block; border-bottom: var(--s-4) solid var(--bg-muted); padding: var(--s-4); }
  .doc-table td { display: block; padding: var(--s-2) 0; border: 0; }
  .doc-table td[data-label]::before { content: attr(data-label); font-weight: var(--fw-bold); display: block; font-size: 10px; color: var(--text-soft); text-transform: uppercase; margin-bottom: 4px; }
}

/* Responsive Institutional Profile */
@media (max-width: 992px) {
  .sejarah-grid, .visi-misi-grid { grid-template-columns: 1fr; }
  .sejarah__image { max-width: 500px; margin-inline: auto; order: -1; }
}

/* ——— Global Sections (Homepage & Institutional) ——— */

/* --- Hero with BG Image --- */
.hero--with-image {
  background-image:
    linear-gradient(135deg, rgba(4,18,42,.90) 0%, rgba(10,38,71,.80) 55%, rgba(20,66,114,.72) 100%),
    url('/img/BACKGROUND_POLRI_1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
.hero__meta {
  display: flex; gap: var(--s-6); flex-wrap: wrap;
  margin-top: var(--s-10); padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__meta-item {
  display: flex; align-items: center; gap: .625rem;
  color: rgba(255,255,255,.85); font-size: var(--fs-sm);
}
.hero__meta-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* --- Sambutan Kapolres --- */
.kapolres__grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: var(--s-12); align-items: center; }
.kapolres__photo {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 5; background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  box-shadow: var(--shadow-xl);
}
.kapolres__photo img { width: 100%; height: 100%; object-fit: cover; }
.kapolres__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,18,42,.6), transparent 45%);
}
.kapolres__frame {
  position: absolute; top: -14px; left: -14px; width: 80px; height: 80px;
  border-top: 3px solid var(--accent); border-left: 3px solid var(--accent);
  border-top-left-radius: var(--r-lg);
}
.kapolres__frame--br {
  top: auto; left: auto; bottom: -14px; right: -14px; border-top: 0; border-left: 0;
  border-bottom: 3px solid var(--accent); border-right: 3px solid var(--accent);
  border-top-left-radius: 0; border-bottom-right-radius: var(--r-lg);
}
.kapolres__badge {
  position: absolute; bottom: var(--s-5); left: var(--s-5); display: inline-flex;
  align-items: center; gap: .5rem; padding: .5rem .875rem; background: var(--white);
  color: var(--navy-700); border-radius: var(--r-full); font-size: var(--fs-xs);
  font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .08em;
  box-shadow: var(--shadow-md);
}
.kapolres__badge svg { width: 14px; height: 14px; color: var(--accent); }
.kapolres__quote {
  position: relative; padding: var(--s-6) 0 var(--s-6) var(--s-6); border-left: 3px solid var(--accent);
  font-size: var(--fs-lg); line-height: var(--lh-relaxed); color: var(--gray-700);
  font-style: italic; margin-block: var(--s-6);
}
.kapolres__quote::before {
  content: '"'; position: absolute; left: var(--s-4); top: -.5rem;
  font-size: 4.5rem; color: var(--accent); opacity: .3;
  font-family: Georgia, serif; line-height: 1; font-style: normal;
}
.kapolres__signature { margin-bottom: var(--s-6); }
.kapolres__name { display: block; font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--gray-900); }
.kapolres__position { display: block; font-size: var(--fs-sm); color: var(--text-muted); margin-top: 2px; }

/* --- Statistik (Index) --- */
.stats-section { background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%); }
.stats-section .section-header h2 { color: var(--white); }
.stats-section .section-header p { color: rgba(255,255,255,.7); }

/* --- Zona Integritas (Index Section) --- */
.zi-section {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  color: var(--white); position: relative; overflow: hidden; padding-block: var(--section-py);
}
.zi-section::before {
  content: ''; position: absolute; top: -20%; right: -10%; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(201,164,73,.18), transparent 65%);
}
.zi-section__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--s-12); align-items: center; position: relative; }
.zi-section h2 { color: var(--white); margin-bottom: var(--s-5); }
.zi-section p { color: rgba(255,255,255,.78); line-height: var(--lh-relaxed); }
.zi-section__badges { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); margin-top: var(--s-8); }
.zi-section__badge {
  padding: var(--s-5); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); transition: background var(--dur-base) var(--ease), border-color var(--dur-base), transform var(--dur-base);
}
.zi-section__badge:hover { background: rgba(255,255,255,.06); border-color: rgba(201,164,73,.4); transform: translateY(-3px); }
.zi-section__badge-icon {
  width: 44px; height: 44px; display: grid; place-items: center; background: rgba(201,164,73,.15);
  color: var(--accent); border-radius: var(--r-sm); margin-bottom: var(--s-3);
}
.zi-section__badge-icon svg { width: 22px; height: 22px; }
.zi-section__badge-title { font-size: var(--fs-base); font-weight: var(--fw-bold); color: var(--white); margin-bottom: 2px; }
.zi-section__badge-sub { font-size: var(--fs-xs); color: rgba(255,255,255,.6); }
.zi-section__medal {
  width: 100%; max-width: 360px; aspect-ratio: 1; border-radius: var(--r-full);
  display: grid; place-items: center; position: relative;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 55%), linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 50%, var(--gold-500) 100%);
  box-shadow: 0 0 0 10px rgba(255,255,255,.05), 0 0 0 11px rgba(201,164,73,.35), 0 30px 60px -15px rgba(201,164,73,.45);
}
.zi-section__medal::before {
  content: ''; position: absolute; inset: 16px; border: 2px dashed rgba(4,18,42,.3);
  border-radius: var(--r-full); animation: ziRotate 50s linear infinite;
}
@keyframes ziRotate { to { transform: rotate(360deg); } }
.zi-section__medal-inner { text-align: center; color: var(--navy-900); z-index: 1; padding: var(--s-6); }
.zi-section__medal-icon { width: 44px; height: 44px; margin: 0 auto var(--s-3); }
.zi-section__medal-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; font-weight: var(--fw-bold); margin-bottom: 4px; opacity: .7; }
.zi-section__medal-title { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: var(--fw-extrabold); letter-spacing: -.02em; line-height: 1.1; }
.zi-section__medal-year { font-size: var(--fs-sm); font-weight: var(--fw-semibold); margin-top: var(--s-2); }

/* --- CTA Pengaduan (Index) --- */
.cta-pengaduan { padding-block: var(--section-py); background: var(--bg-subtle); }
.cta-pengaduan__inner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: var(--r-xl); padding: clamp(2.5rem, 6vw, 4.5rem);
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: var(--s-8);
  color: var(--white); position: relative; overflow: hidden; box-shadow: var(--shadow-xl);
}
.cta-pengaduan__inner::before {
  content: ''; position: absolute; top: -40%; right: -8%; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201,164,73,.22), transparent 62%);
}
.cta-pengaduan__inner::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 36px 36px; mask-image: linear-gradient(to right, black, transparent); -webkit-mask-image: linear-gradient(to right, black, transparent);
}
.cta-pengaduan__content { position: relative; }
.cta-pengaduan h2 { color: var(--white); margin-bottom: var(--s-3); }
.cta-pengaduan__lead { color: rgba(255,255,255,.82); max-width: 560px; }
.cta-pengaduan__actions { display: flex; gap: var(--s-3); flex-shrink: 0; position: relative; flex-wrap: wrap; }

/* --- News Grid --- */
.news-grid { display: grid; gap: var(--s-6); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.news-section__footer { display: flex; justify-content: center; margin-top: var(--s-10); }

/* --- [Responsive Institutional] --- */
@media (max-width: 900px) {
  .kapolres__grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .kapolres__photo { max-width: 420px; margin-inline: auto; }
  .zi-section__grid { grid-template-columns: 1fr; gap: var(--s-10); }
  .zi-section__visual { order: -1; }
  .cta-pengaduan__inner { grid-template-columns: 1fr; text-align: center; }
  .cta-pengaduan__lead { margin-inline: auto; }
  .cta-pengaduan__actions { justify-content: center; }
}
@media (max-width: 600px) {
  .zi-section__badges { grid-template-columns: 1fr; }
  .hero__meta { gap: var(--s-3); }
}

/* ==========================================================================
   14. ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal-stagger > *.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > *.is-visible:nth-child(1) { transition-delay: .00s; }
.reveal-stagger > *.is-visible:nth-child(2) { transition-delay: .08s; }
.reveal-stagger > *.is-visible:nth-child(3) { transition-delay: .16s; }
.reveal-stagger > *.is-visible:nth-child(4) { transition-delay: .24s; }
.reveal-stagger > *.is-visible:nth-child(5) { transition-delay: .32s; }
.reveal-stagger > *.is-visible:nth-child(6) { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   15. RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}

@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: var(--s-4);
    gap: var(--s-1);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--dur-base) var(--ease), opacity var(--dur-base) var(--ease);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__item { width: 100%; }
  .nav__link {
    padding: .875rem 1rem;
    width: 100%;
    justify-content: space-between;
  }
  .nav__link.is-active::after { display: none; }
  .nav__link.is-active {
    background: var(--bg-muted);
    box-shadow: inset 3px 0 0 var(--accent);
  }

  /* Mobile dropdown = accordion */
  .nav__item.has-dropdown::after { display: none; }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: var(--s-1) 0 var(--s-2) var(--s-4);
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur-base) var(--ease);
  }
  .nav__dropdown::before { display: none; }
  .nav__item.is-open .nav__dropdown { max-height: 400px; }

  .nav__dropdown-link {
    padding: .625rem .875rem .625rem var(--s-4);
    border-left: 2px solid var(--border);
    border-radius: 0;
    margin-left: var(--s-2);
  }
  .nav__dropdown-link:hover { border-left-color: var(--accent); }
  .nav__dropdown-link.is-active {
    border-left-color: var(--accent);
    box-shadow: none;
  }

  .topbar__info { gap: var(--s-3); font-size: 11px; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom-links { justify-content: center; }

  /* New Components Mobile */
  .cta-box { flex-direction: column; text-align: center; gap: var(--s-6); }
  .logo-slider { gap: var(--s-6); justify-content: center; }
}

@media (max-width: 480px) {
  .brand__text { display: none; }
  .hero__cta .btn { flex: 1 1 100%; }
  .topbar__item:not(.topbar__item--pulse):nth-child(n+3) { display: none; }
}

/* ==========================================================================
   16. SERVICE & INSTITUTIONAL COMPONENTS
   ========================================================================== */

/* --- Info Box --- */
.info-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--s-8);
  box-shadow: var(--shadow-sm); height: 100%;
}
.info-box__heading {
  display: flex; align-items: center; gap: var(--s-3);
  font-size: var(--fs-lg); font-weight: var(--fw-bold);
  color: var(--navy-800); margin-bottom: var(--s-6);
  padding-bottom: var(--s-4); border-bottom: 1px solid var(--border);
}
.info-box__heading svg { width: 24px; height: 24px; color: var(--accent); }

/* --- Requirements List --- */
.req-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--s-4); }
.req-list li { display: flex; gap: var(--s-3); align-items: flex-start; line-height: var(--lh-relaxed); font-size: var(--fs-sm); }
.req-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.req-list--2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }

/* --- Meta Grid (for values/prices) --- */
.meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--s-4); }
.meta-tile {
  background: var(--bg-muted); padding: var(--s-4);
  border-radius: var(--r-md); text-align: center;
  border: 1px solid var(--border);
}
.meta-tile__icon { width: 24px; height: 24px; margin: 0 auto var(--s-3); color: var(--brand); }
.meta-tile__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-soft); margin-bottom: 4px; }
.meta-tile__value { font-size: var(--fs-base); font-weight: var(--fw-bold); color: var(--navy-900); }

/* --- SIM Types Badge --- */
.sim-types { display: flex; gap: var(--s-6); margin-bottom: var(--s-10); flex-wrap: wrap; justify-content: center; }
.sim-type { display: flex; align-items: center; gap: var(--s-4); background: var(--bg-subtle); padding: var(--s-4) var(--s-6); border-radius: var(--r-full); border: 1px solid var(--border); }
.sim-type__badge { width: 32px; height: 32px; background: var(--brand); color: var(--white); border-radius: var(--r-full); display: grid; place-items: center; font-weight: var(--fw-bold); }
.sim-type__desc { font-size: var(--fs-xs); font-weight: var(--fw-semibold); color: var(--navy-700); line-height: 1.2; }

/* --- Zona Integritas Cards --- */
.zi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); margin-block: var(--s-8); }
.zi-card {
  padding: var(--s-10); background: var(--white); border: 1px solid var(--border);
  border-left: 5px solid var(--brand); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); transition: transform var(--dur-base);
}
.zi-card:hover { transform: translateY(-5px); }
.zi-card__title { font-size: var(--fs-2xl); font-weight: var(--fw-black); color: var(--brand); line-height: 1; margin-bottom: var(--s-2); }
.zi-card__label { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--navy-800); margin-bottom: var(--s-4); }
.zi-card__desc { font-size: var(--fs-sm); color: var(--text-muted); line-height: var(--lh-relaxed); }

/* --- Channels Grid (Pengaduan) --- */
.channels-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s-6); margin-block: var(--s-10); }
.channel-card {
  padding: var(--s-8); background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); text-align: center; transition: all var(--dur-base);
}
.channel-card:hover { border-color: var(--brand); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.channel-card__icon { width: 48px; height: 48px; background: var(--bg-subtle); color: var(--brand); border-radius: var(--r-lg); display: grid; place-items: center; margin: 0 auto var(--s-5); }
.channel-card__label { font-size: 11px; text-transform: uppercase; font-weight: var(--fw-bold); color: var(--text-soft); letter-spacing: 0.1em; }
.channel-card__value { font-size: var(--fs-xl); font-weight: var(--fw-black); color: var(--navy-900); margin-block: var(--s-2); }
.channel-card__sub { font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.5; }

/* --- Guarantee Box --- */
.info-box--guarantee {
  display: flex; gap: var(--s-6); align-items: center;
  background: linear-gradient(to right, var(--navy-800), var(--navy-900));
  color: var(--white); padding: var(--s-8) var(--s-10); border-radius: var(--r-xl);
  margin-top: var(--s-10); border-left: 5px solid var(--accent);
}
.guarantee-icon { width: 56px; height: 56px; color: var(--accent); flex-shrink: 0; }
.info-box--guarantee h4 { color: var(--accent); margin-bottom: var(--s-2); font-weight: var(--fw-bold); }
.info-box--guarantee p { font-size: var(--fs-sm); color: rgba(255,255,255,.8); line-height: 1.6; }

/* --- Award Cards --- */
.award-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--s-8); text-align: center; position: relative; overflow: hidden;
}
.award-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--brand); }
.award-card__icon { width: 50px; height: 50px; color: var(--accent); margin: 0 auto var(--s-5); }
.award-card__title { font-size: var(--fs-base); font-weight: var(--fw-bold); color: var(--navy-900); margin-bottom: var(--s-2); }
.award-card__desc { font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.5; }

/* --- Task & Function Grid (Institutional) --- */
.tf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-12); align-items: start; }
.tf__column-label { font-size: var(--fs-xs); font-weight: var(--fw-bold); text-transform: uppercase; color: var(--brand); margin-bottom: var(--s-4); display: block; letter-spacing: 0.1em; }
.tf__heading { font-size: var(--fs-3xl); font-weight: var(--fw-black); color: var(--navy-900); line-height: 1.1; margin-bottom: var(--s-8); }

.tugas-list { display: flex; flex-direction: column; gap: var(--s-6); }
.tugas-item { display: flex; gap: var(--s-5); }
.tugas-item__num { width: 32px; height: 32px; background: var(--navy-900); color: var(--accent); border-radius: var(--r-full); display: grid; place-items: center; font-weight: var(--fw-bold); flex-shrink: 0; }
.tugas-item__content h4 { font-size: var(--fs-base); font-weight: var(--fw-bold); color: var(--navy-800); margin-bottom: var(--s-1); }
.tugas-item__content p { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.5; }

.fungsi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.fungsi-chip {
  display: flex; align-items: center; gap: var(--s-3);
  background: var(--bg-subtle); padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md); border: 1px solid var(--border);
  font-size: var(--fs-xs); font-weight: var(--fw-bold); color: var(--navy-700);
}
.fungsi-chip__icon { width: 20px; height: 20px; color: var(--brand); }

/* --- Organizational Tree --- */
.org-tree { display: flex; flex-direction: column; align-items: center; gap: var(--s-8); margin-top: var(--s-10); }
.org-level { display: flex; justify-content: center; gap: var(--s-6); flex-wrap: wrap; width: 100%; }
.org-group-label { width: 100%; text-align: center; font-size: var(--fs-xs); font-weight: var(--fw-bold); color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: var(--s-2); }

.org-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-6); width: 220px; text-align: center; box-shadow: var(--shadow-sm);
  transition: all var(--dur-base);
}
.org-card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.org-card--primary { border-color: var(--brand); background: var(--bg-subtle); width: 260px; border-width: 2px; }

.org-card__avatar { width: 44px; height: 44px; background: var(--navy-700); color: var(--accent); border-radius: var(--r-full); display: grid; place-items: center; margin: 0 auto var(--s-3); }
.org-card--primary .org-card__avatar { width: 56px; height: 56px; }

.org-card__position { font-size: 10px; font-weight: var(--fw-bold); text-transform: uppercase; color: var(--brand); margin-bottom: 2px; letter-spacing: 0.05em; }
.org-card__name { font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--navy-900); }
.org-card__rank { font-size: 10px; color: var(--text-soft); margin-top: 2px; font-style: italic; }

.org-connector { width: 2px; height: 32px; background: var(--border-strong); }
.org-connector--dashed { border-left: 2px dashed var(--border); background: transparent; }

/* --- Maklumat / Accordion --- */
.maklumat { border-radius: var(--r-xl); padding: var(--s-8); }
.accordion { display: flex; flex-direction: column; gap: var(--s-3); }
.accordion__item { border: 1px solid var(--border); border-radius: var(--r-md); background: var(--white); overflow: hidden; }
.accordion__trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: var(--s-4) var(--s-5); background: none; border: none; font-family: inherit;
  font-size: var(--fs-base); font-weight: var(--fw-bold); color: var(--navy-900); cursor: pointer; text-align: left;
}
.accordion__trigger svg { width: 20px; height: 20px; color: var(--brand); transition: transform var(--dur-base); }
.accordion__item.is-open .accordion__trigger svg { transform: rotate(180deg); }
.accordion__content { max-height: 0; padding-inline: var(--s-5); overflow: hidden; transition: all var(--dur-base); }
.accordion__item.is-open .accordion__content { max-height: 200px; padding-bottom: var(--s-5); }
.accordion__content p { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.5; }

/* Responsive Adjustments for new components */
@media (max-width: 900px) {
  .zi-grid, .tf-grid, .meta-grid, .fungsi-grid { grid-template-columns: 1fr; }
  .org-level { gap: var(--s-4); }
  .org-card { width: 100%; max-width: 280px; }
  .info-box--guarantee { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   16. MISSING UTILITIES & COMPONENT EXTENSIONS (appended fix)
   ========================================================================== */

/* ——— Utility ——— */
.align-center { align-items: center; }
.is-hover     { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }

/* ==========================================================================
   INDEX PAGE EXTENSIONS
   ========================================================================== */
.kapolres__content { color: var(--gray-700); }
.kapolres__content h2 { margin-top: var(--s-3); margin-bottom: var(--s-5); }
.kapolres__content .text-body { font-size: var(--fs-base); line-height: var(--lh-relaxed); }

.maklumat__box {
  position: relative;
  padding: var(--s-6) var(--s-8);
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--gray-800);
  font-style: italic;
  box-shadow: var(--shadow-sm);
  margin-block: var(--s-6);
}

/* ==========================================================================
   BERITA / PAGINATION
   ========================================================================== */
.pagination__ellipsis {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--s-2);
  color: var(--text-soft);
  font-weight: var(--fw-bold);
  letter-spacing: 1px;
  user-select: none;
}

/* ==========================================================================
   ARTIKEL DETAIL PAGE EXTENSIONS
   ========================================================================== */
/* Breadcrumb in article hero (light variant) */
.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-size: var(--fs-xs);
  color: var(--text-soft);
  margin-bottom: var(--s-5);
}
.article-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--dur-fast);
}
.article-breadcrumb a:hover { color: var(--brand); }
.article-breadcrumb__sep    { color: var(--gray-300); }
.article-breadcrumb__current {
  color: var(--brand);
  font-weight: var(--fw-semibold);
}

/* Article body wrapper */
.article-body {
  padding-block: var(--s-12) var(--s-8);
  background: var(--white);
}

/* Author meta extensions */
.article-meta__author-info { display: flex; flex-direction: column; align-items: flex-start; }
.article-meta__author-role {
  font-size: var(--fs-xs);
  color: var(--text-soft);
  margin-top: 1px;
}

/* Share label */
.article-share__label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--gray-800);
}
.article-share__label svg { width: 16px; height: 16px; color: var(--accent); }

/* Author bio extensions */
.author-bio__label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  font-weight: var(--fw-bold);
  margin-bottom: var(--s-1);
}
.author-bio__position {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: 2px;
}

/* Related articles section */
.related-section {
  padding-block: var(--section-py);
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}
.related-section__header {
  max-width: 720px;
  margin: 0 auto var(--s-10);
  text-align: center;
}
.related-section__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--navy-900);
  letter-spacing: -.02em;
}
.related-section__title-accent { color: var(--accent); }

/* ==========================================================================
   INFORMASI PUBLIK (PPID) EXTENSIONS
   ========================================================================== */
/* Document search + filters */
.doc-controls {
  display: grid;
  grid-template-columns: minmax(240px, 2fr) 1fr 1fr auto;
  gap: var(--s-4);
  align-items: end;
  padding: var(--s-5) var(--s-6);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--s-6);
}
.doc-search {
  position: relative;
  display: flex;
  align-items: center;
}
.doc-search svg {
  position: absolute;
  left: var(--s-4);
  width: 18px;
  height: 18px;
  color: var(--text-soft);
  pointer-events: none;
}
.doc-search input {
  width: 100%;
  padding: .7rem .9rem .7rem calc(var(--s-4) + 28px);
  font-family: inherit;
  font-size: var(--fs-sm);
  color: var(--gray-900);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
}
.doc-search input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,164,73,.18);
}

.doc-filter { display: flex; flex-direction: column; gap: var(--s-1); }
.doc-filter label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.doc-filter select {
  padding: .65rem .9rem;
  font-family: inherit;
  font-size: var(--fs-sm);
  color: var(--gray-900);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.doc-filter select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,164,73,.18);
}

.doc-count {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  white-space: nowrap;
  padding-bottom: .7rem;
}
.doc-count strong { color: var(--navy-900); font-weight: var(--fw-bold); }

.doc-empty {
  display: none;
  padding: var(--s-10) var(--s-6);
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-soft);
  background: var(--white);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-md);
  margin-top: var(--s-4);
}
.doc-empty.is-visible { display: block; }

/* Doc badges */
.doc-badge {
  display: inline-flex;
  align-items: center;
  padding: .25rem .65rem;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.doc-badge--berkala { background: rgba(44,116,179,.1);  color: var(--navy-500); }
.doc-badge--serta   { background: rgba(247,144,9,.12);  color: #B54708; }
.doc-badge--saat    { background: rgba(201,164,73,.15); color: var(--gold-700); }

/* Doc download button */
.doc-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .85rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--brand);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: all var(--dur-fast);
  white-space: nowrap;
}
.doc-btn svg { width: 14px; height: 14px; }
.doc-btn:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  transform: translateY(-1px);
}

/* Doc icon DOCX color */
.doc-icon--docx { background: rgba(37,99,235,.1); color: #2563EB; }

/* Doc name (icon + text) */
.doc-name { display: flex; align-items: center; gap: var(--s-3); }
.doc-name__info h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--navy-900);
  margin-bottom: 2px;
}
.doc-name__info p {
  font-size: var(--fs-xs);
  color: var(--text-soft);
  line-height: 1.4;
}

/* Kategori card children */
.kategori-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--navy-900);
  margin-top: var(--s-2);
  margin-bottom: var(--s-1);
  letter-spacing: -.01em;
}
.kategori-card__pasal {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--accent);
  margin-bottom: var(--s-4);
  padding: 3px 8px;
  background: rgba(201,164,73,.1);
  border-radius: var(--r-sm);
}
.kategori-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--s-4);
  flex-grow: 1;
}
.kategori-card__examples {
  padding: var(--s-4);
  background: var(--bg-subtle);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  color: var(--gray-700);
  line-height: var(--lh-relaxed);
  border-left: 3px solid var(--accent);
}
.kategori-card__examples strong {
  display: block;
  color: var(--navy-800);
  margin-bottom: 2px;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: var(--fw-bold);
}

/* Category card modifier border accents */
.kategori-card--berkala { border-top: 3px solid var(--navy-500); }
.kategori-card--serta   { border-top: 3px solid var(--warning); }
.kategori-card--saat    { border-top: 3px solid var(--accent); }
.kategori-card--kecuali { border-top: 3px solid var(--danger); }
.kategori-card--kecuali .kategori-card__pasal {
  background: rgba(217,45,32,.08);
  color: var(--danger);
}
.kategori-card--kecuali .kategori-card__examples { border-left-color: var(--danger); }

/* Legal badge content */
.legal-badge__content {
  display: flex;
  flex-direction: column;
}
.legal-badge__content strong {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--navy-900);
  line-height: var(--lh-tight);
}
.legal-badge__content span {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-top: 2px;
}

/* PPID steps heading */
.ppid-steps__title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: var(--s-2);
}
.ppid-steps__heading {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--navy-900);
  margin-bottom: var(--s-6);
  letter-spacing: -.01em;
}

/* Transp stat sub */
.transp-stat__sub {
  font-size: var(--fs-xs);
  color: var(--text-soft);
  margin-top: var(--s-1);
  line-height: 1.4;
}

/* Contact CTA (PPID contact callout) */
.contact-cta {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-10);
  align-items: center;
  padding: var(--s-10) var(--s-10);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}
.contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,164,73,.12), transparent 60%);
  pointer-events: none;
}
.contact-cta h2 { color: var(--white); margin-top: var(--s-3); margin-bottom: var(--s-4); }
.contact-cta__lead {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,.8);
  margin-bottom: var(--s-6);
}
.contact-cta__info {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  position: relative;
  z-index: 1;
}
.contact-cta__info-item {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
}
.contact-cta__info-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(201,164,73,.15);
  color: var(--accent);
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.contact-cta__info-icon svg { width: 18px; height: 18px; }
.contact-cta__info-label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: var(--fw-semibold);
  margin-bottom: 2px;
}
.contact-cta__info-value {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--white);
  line-height: 1.4;
}
.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-6);
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   LAYANAN PAGE EXTENSIONS
   ========================================================================== */
.service-block { padding-block: var(--section-py); }
.service-block--alt { background: var(--bg-subtle); }

/* Reversed two-column grid on desktop */
.service-block__grid--reverse > *:first-child { order: 2; }
.service-block__grid--reverse > *:last-child  { order: 1; }
@media (max-width: 1024px) {
  .service-block__grid--reverse > *:first-child,
  .service-block__grid--reverse > *:last-child { order: unset; }
}

.service-detail { color: var(--gray-700); }
.service-detail__eyebrow {
  display: inline-block;
  margin-bottom: var(--s-3);
}
.service-detail__title {
  font-size: clamp(var(--fs-3xl), 3vw, var(--fs-4xl));
  font-weight: var(--fw-extrabold);
  color: var(--navy-900);
  letter-spacing: -.02em;
  margin-bottom: var(--s-4);
  line-height: var(--lh-tight);
}
.service-detail__lead {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--text-muted);
  margin-bottom: var(--s-8);
}

/* Info row (side-by-side info boxes) */
.info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-5);
  margin-block: var(--s-6) var(--s-8);
}

/* Steps content wrapper */
.steps__content { max-width: 780px; margin-inline: auto; }

/* Meta tile sub */
.meta-tile__sub {
  font-size: var(--fs-xs);
  color: var(--text-soft);
  margin-top: 2px;
  line-height: 1.35;
}

/* Service CTA button row */
.service-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border);
}

/* Service content (layanan-skck main wrapper) */
.service-content { display: flex; flex-direction: column; gap: var(--s-6); }

/* Pengaduan section */
.pengaduan-section { padding-block: var(--section-py); background: var(--bg-subtle); }

/* Pengaduan guarantee callout */
.pengaduan-guarantee {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-6) var(--s-8);
  margin-top: var(--s-10);
  background: var(--white);
  border: 1px solid rgba(201,164,73,.3);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.pengaduan-guarantee__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: rgba(201,164,73,.12);
  color: var(--accent);
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.pengaduan-guarantee__icon svg { width: 26px; height: 26px; }
.pengaduan-guarantee h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--navy-900);
  margin-bottom: 2px;
}
.pengaduan-guarantee p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

/* Bottom CTA section */
.bottom-cta {
  padding-block: var(--section-py);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,164,73,.08), transparent 65%);
  pointer-events: none;
}
.bottom-cta__inner {
  max-width: 720px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.bottom-cta__inner h2 { color: var(--white); font-size: clamp(var(--fs-2xl), 3vw, var(--fs-4xl)); letter-spacing: -.02em; }
.bottom-cta__inner p  { color: rgba(255,255,255,.8); font-size: var(--fs-lg); margin-top: var(--s-4); line-height: var(--lh-relaxed); }
.bottom-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-4);
  margin-top: var(--s-8);
}

/* ==========================================================================
   PROFIL PAGE EXTENSIONS
   ========================================================================== */
.sejarah__content { color: var(--gray-700); }
.sejarah__content h2 { margin-top: var(--s-3); margin-bottom: var(--s-5); }
.sejarah__content .stack > * + * { margin-top: var(--s-4); }

/* Misi block (dedicated card) */
.misi-block {
  padding: var(--s-8);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.misi-block__title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: var(--s-2);
}
.misi-block__heading {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--navy-900);
  letter-spacing: -.01em;
  margin-bottom: var(--s-6);
}

/* Tugas & Fungsi columns */
.tf__column { display: flex; flex-direction: column; }

/* Organization level — Satuan Fungsi (more columns) */
.org-level--fungsi {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  width: 100%;
  max-width: 1200px;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS (appended)
   ========================================================================== */
@media (max-width: 1024px) {
  .contact-cta {
    grid-template-columns: 1fr;
    gap: var(--s-6);
    padding: var(--s-8);
  }
  .doc-controls { grid-template-columns: 1fr 1fr; }
  .doc-search { grid-column: 1 / -1; }
  .doc-count  { grid-column: 1 / -1; padding-bottom: 0; }
}
@media (max-width: 640px) {
  .doc-controls { grid-template-columns: 1fr; padding: var(--s-4); }
  .doc-search, .doc-filter, .doc-count { grid-column: auto; }
  .contact-cta { padding: var(--s-6); }
  .contact-cta__info-item { padding: var(--s-3) var(--s-4); }
  .pengaduan-guarantee { flex-direction: column; text-align: center; align-items: center; padding: var(--s-5); }
  .bottom-cta__actions { flex-direction: column; }
  .bottom-cta__actions .btn { width: 100%; justify-content: center; }
  .service-cta { flex-direction: column; }
  .service-cta .btn { width: 100%; justify-content: center; }
}
