﻿@import url("../base/tokens.css");
@import url("../base/state.css");
@import url("../base/reset.css");
@import url("../shared/scrollbar.css");
@import url("../shared/loading.css");
@import url("../shared/empty-state.css");
@import url("../shared/utilities.css");
@import url("../shared/buttons.css");
@import url("../shared/cards.css");
@import url("../shared/forms.css");

/* -------------------------------------------
   RESET & TOKENS
------------------------------------------- */
    :root {
      --ink: #0A1628;
      --ink-2: #1C2B4A;
      --ink-3: #2E3F60;
      --gold: #C8922A;
      --gold-lt: #E8B84B;
      --gold-dim: rgba(200, 146, 42, .15);
      --gold-glow: rgba(200, 146, 42, .35);
      --cream: #FAF7F2;
      --cream-2: #F2EDE4;
      --white: #FFFFFF;
      --muted: #6B7A96;
      --border: rgba(10, 22, 40, .10);
      --border-gold: rgba(200, 146, 42, .30);
      --success: #2D7D52;
      --warn: #B54708;
      --ff-display: 'Plus Jakarta Sans', 'Source Sans 3', system-ui, sans-serif;
      --ff-body: 'Source Sans 3', system-ui, sans-serif;
      --ease: cubic-bezier(.25, .46, .45, .94);
      --r: 12px;
      --r-sm: 8px;
      --sh: 0 2px 12px rgba(10, 22, 40, .08);
      --sh-md: 0 8px 32px rgba(10, 22, 40, .12);
      --sh-lg: 0 20px 60px rgba(10, 22, 40, .18);
      --scroll-behavior: smooth;
      --scrollbar-size: 5px;
      --scrollbar-thumb: var(--gold);
      --scrollbar-radius: 3px;
      --loading-bg: rgba(10, 22, 40, .6);
      --loading-backdrop: blur(4px);
      --loading-z: 9990;
      --spinner-size: 40px;
      --spinner-ring: rgba(200, 146, 42, .2);
      --spinner-top: var(--gold);
      --loading-text: #fff;
      --loading-text-weight: 600;
      --empty-padding: 52px 20px;
      --empty-ico-size: 48px;
      --empty-ico-gap: 12px;
      --empty-ico-color: currentColor;
      --empty-ico-opacity: .3;
      --empty-sub-color: var(--muted);
      --btn-gap: 8px;
      --btn-padding: 11px 24px;
      --btn-min-height: 44px;
      --btn-radius: var(--r-sm);
      --btn-font-family: var(--ff-body);
      --btn-font-size: 14px;
      --btn-font-weight: 600;
      --btn-transition: all .22s var(--ease);
      --btn-border: none;
      --btn-position: relative;
      --btn-overflow: hidden;
      --btn-focus-ring: none;
      --btn-sm-padding: 8px 18px;
      --btn-sm-min-height: 40px;
      --btn-sm-font-size: 13px;
      --btn-lg-padding: 14px 32px;
      --btn-lg-min-height: 48px;
      --btn-lg-font-size: 15px;
      --card-bg: var(--white);
      --card-border: 1px solid var(--border);
      --card-radius: 18px;
      --card-shadow: 0 10px 28px rgba(10, 22, 40, .08);
      --card-padding: 28px;
      --card-stack-gap: 16px;
      --card-title-font-family: var(--ff-display);
      --card-title-font-weight: 700;
      --card-title-font-size: 19px;
      --card-title-color: var(--ink);
      --card-title-margin-bottom: 20px;
      --card-title-padding-bottom: 16px;
      --card-title-border: 1px solid var(--border);
      --card-title-display: flex;
      --card-title-align: center;
      --card-title-gap: 10px;
      --card-title-letter-spacing: -.01em;
      --form-grid-gap: 14px;
      --fgroup-align: stretch;
      --fgroup-gap: 6px;
      --flabel-size: 11px;
      --flabel-weight: 700;
      --flabel-transform: uppercase;
      --flabel-letter-spacing: .06em;
      --flabel-color: var(--muted);
      --req-color: #c0392b;
      --hint-color: var(--muted);
    }

    body {
      font-family: var(--ff-body);
      font-size: 15px;
      color: var(--ink);
      background: var(--cream);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* -------------------------------------------
   UPLOAD DOKUMEN
------------------------------------------- */
    .upload-dropzone {
      border: 2px dashed var(--border-gold);
      border-radius: var(--r);
      background: var(--gold-dim);
      padding: 28px 20px;
      text-align: center;
      cursor: pointer;
      transition: all .2s;
      margin-bottom: 12px;
    }

    .upload-dropzone:hover,
    .upload-dropzone.drag-over {
      border-color: var(--gold);
      background: rgba(200, 146, 42, .12);
    }

    .upload-dropzone-ico {
      font-size: 32px;
      margin-bottom: 8px;
    }

    .upload-dropzone-lbl {
      font-size: 13px;
      font-weight: 600;
      color: var(--ink-2);
    }

    .upload-dropzone-sub {
      font-size: 11.5px;
      color: var(--muted);
      margin-top: 4px;
    }

    .dok-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 12px;
    }

    .dok-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      font-size: 13px;
    }

    .dok-item-ico {
      font-size: 18px;
      flex-shrink: 0;
    }

    .dok-item-info {
      flex: 1;
      min-width: 0;
    }

    .dok-item-name {
      font-weight: 600;
      color: var(--ink);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .dok-item-meta {
      font-size: 11px;
      color: var(--muted);
      margin-top: 2px;
    }

    .dok-item-link {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--gold);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      min-height: 44px;
      padding: 0 12px;
      border: 1px solid var(--border-gold);
      border-radius: 4px;
    }

    .dok-item-link:hover {
      background: var(--gold-dim);
    }

    .dok-jenis-badge {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      padding: 1px 7px;
      border-radius: 3px;
      text-transform: uppercase;
      background: var(--gold-dim);
      color: var(--gold);
      border: 1px solid var(--border-gold);
      letter-spacing: .04em;
    }

    .upload-progress-bar {
      height: 4px;
      background: #e5e7eb;
      border-radius: 2px;
      overflow: hidden;
      margin-top: 8px;
      display: none;
    }

    .upload-progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--gold), var(--gold-lt));
      width: 0%;
      transition: width .3s;
      border-radius: 2px;
    }

    /* -------------------------------------------
   TOPBAR
------------------------------------------- */
    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      height: 60px;
      background: rgba(10, 22, 40, .96);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 2px solid var(--gold);
      display: flex;
      align-items: center;
      padding: 0 32px;
      gap: 16px;
    }

    .topbar-mark {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      border-radius: 10px;
      font-family: var(--ff-display);
      font-weight: 800;
      font-size: 20px;
      color: var(--ink);
      flex-shrink: 0;
      box-shadow: 0 0 20px var(--gold-glow);
    }

    .topbar-mark img {
      width: 26px;
      height: 26px;
      object-fit: contain;
      display: block;
    }

    .topbar-name {
      font-family: var(--ff-display);
      font-weight: 700;
      font-size: 17px;
      color: var(--white);
      letter-spacing: .01em;
    }

    .topbar-sub {
      font-size: 10.5px;
      color: rgba(255, 255, 255, .55);
      font-weight: 400;
      letter-spacing: .035em;
      text-transform: uppercase;
    }

    .topbar-nav {
      margin-left: auto;
      display: flex;
      gap: 2px;
    }

    .tnav {
      padding: 7px 18px;
      border-radius: var(--r-sm);
      font-family: var(--ff-body);
      font-size: 12.5px;
      font-weight: 500;
      color: rgba(255, 255, 255, .72);
      border: none;
      background: transparent;
      cursor: pointer;
      transition: all .18s;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      letter-spacing: .01em;
    }

    .tnav:hover {
      color: white;
      background: rgba(255, 255, 255, .07)
    }

    .tnav.active {
      color: var(--ink);
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      font-weight: 700;
    }

    /* -------------------------------------------
   PAGES
------------------------------------------- */
    .page {
      display: none
    }

    .page.active {
      display: block;
      animation: fadeUp .35s var(--ease) both
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(16px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    .pt {
      padding-top: 64px
    }

    /* topbar offset */

    /* -------------------------------------------
   HERO
------------------------------------------- */
    .hero {
      min-height: calc(100vh - 64px);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--ink);
    }

    /* batik-inspired geometric pattern */
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 50%, rgba(200, 146, 42, .08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 146, 42, .06) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(200, 146, 42, .05) 0%, transparent 35%);
    }

    .hero-pattern {
      position: absolute;
      inset: 0;
      opacity: .04;
      background-image:
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(200, 146, 42, 1) 40px, rgba(200, 146, 42, 1) 41px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(200, 146, 42, 1) 40px, rgba(200, 146, 42, 1) 41px);
    }

    .hero-diagonal {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 120px;
      background: var(--cream);
      clip-path: polygon(0 100%, 100% 100%, 100% 60%, 0 100%);
    }

    /* glowing orb */
    .hero-orb {
      position: absolute;
      right: -100px;
      top: 50%;
      transform: translateY(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(200, 146, 42, .12) 0%, transparent 65%);
      border-radius: 50%;
      animation: orb-float 8s ease-in-out infinite alternate;
    }

    @keyframes orb-float {
      from {
        transform: translateY(-50%) scale(1)
      }

      to {
        transform: translateY(-55%) scale(1.08)
      }
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 32px 140px;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: center;
    }

    @media(max-width:840px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 60px 20px 120px
      }

      .hero-right {
        display: none
      }
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200, 146, 42, .12);
      border: 1px solid rgba(200, 146, 42, .3);
      padding: 5px 14px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      color: var(--gold-lt);
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .hero-pill-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold-lt);
      animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .4;
        transform: scale(.7)
      }
    }

    .hero-h1 {
      font-family: var(--ff-display);
      font-size: clamp(36px, 5.5vw, 64px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.05;
      letter-spacing: -.01em;
      margin-bottom: 20px;
    }

    .hero-h1 em {
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--gold);
      display: inline-block;
    }

    .hero-lead {
      font-size: 16px;
      font-weight: 300;
      color: rgba(255, 255, 255, .65);
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 36px;
    }

    .hero-lead strong {
      color: rgba(255, 255, 255, .9);
      font-weight: 600
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap
    }

    /* lantern illustration */
    .hero-right {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .lantern-wrap {
      position: relative;
      animation: lantern-sway 6s ease-in-out infinite alternate;
    }

    @keyframes lantern-sway {
      from {
        transform: rotate(-3deg)
      }

      to {
        transform: rotate(3deg)
      }
    }

    .lantern {
      width: 160px;
      height: 220px;
      position: relative;
    }

    .lantern-body {
      width: 120px;
      height: 160px;
      background: linear-gradient(160deg, rgba(200, 146, 42, .3) 0%, rgba(200, 146, 42, .08) 100%);
      border: 1px solid rgba(200, 146, 42, .4);
      border-radius: 60px;
      position: absolute;
      left: 20px;
      top: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .lantern-glow {
      position: absolute;
      width: 80px;
      height: 80px;
      background: radial-gradient(circle, rgba(200, 146, 42, .8) 0%, rgba(200, 146, 42, 0) 70%);
      border-radius: 50%;
      animation: lantern-glow 2.5s ease-in-out infinite alternate;
    }

    @keyframes lantern-glow {
      from {
        opacity: .6;
        transform: scale(.9)
      }

      to {
        opacity: 1;
        transform: scale(1.1)
      }
    }

    .lantern-letter {
      font-family: var(--ff-display);
      font-weight: 900;
      font-size: 48px;
      color: var(--gold-lt);
      position: relative;
      z-index: 1;
      text-shadow: 0 0 30px var(--gold);
      animation: letter-glow 2.5s ease-in-out infinite alternate;
    }

    @keyframes letter-glow {
      from {
        text-shadow: 0 0 20px var(--gold)
      }

      to {
        text-shadow: 0 0 40px var(--gold), 0 0 80px rgba(200, 146, 42, .4)
      }
    }

    .lantern-top {
      width: 60px;
      height: 12px;
      background: rgba(200, 146, 42, .5);
      border-radius: 4px;
      position: absolute;
      left: 50px;
      top: 10px;
    }

    .lantern-bot {
      width: 40px;
      height: 20px;
      border-left: 1px solid rgba(200, 146, 42, .3);
      border-right: 1px solid rgba(200, 146, 42, .3);
      border-bottom: 1px solid rgba(200, 146, 42, .3);
      position: absolute;
      left: 60px;
      top: 180px;
      border-radius: 0 0 8px 8px;
    }

    .lantern-string {
      width: 1px;
      height: 40px;
      background: rgba(200, 146, 42, .4);
      position: absolute;
      left: 79px;
      top: -30px;
    }

    .lantern-shadow {
      position: absolute;
      bottom: -40px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 20px;
      background: radial-gradient(ellipse, rgba(200, 146, 42, .2) 0%, transparent 70%);
      border-radius: 50%;
      animation: shadow-pulse 2.5s ease-in-out infinite alternate;
    }

    @keyframes shadow-pulse {
      from {
        opacity: .3;
        transform: translateX(-50%) scaleX(.8)
      }

      to {
        opacity: .7;
        transform: translateX(-50%) scaleX(1.2)
      }
    }

    /* stats floating */
    .hero-stats {
      display: flex;
      gap: 24px;
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .hero-stat {}

    .hero-stat-num {
      font-family: var(--ff-display);
      font-weight: 800;
      font-size: 32px;
      color: var(--gold-lt);
      line-height: 1;
    }

    .hero-stat-lbl {
      font-size: 11px;
      color: rgba(255, 255, 255, .45);
      font-weight: 500;
      letter-spacing: .035em;
      text-transform: uppercase;
      margin-top: 4px;
    }

    /* -------------------------------------------
   BUTTONS
------------------------------------------- */
    .btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0);
      transition: background .2s;
    }

    .btn:hover::after {
      background: rgba(255, 255, 255, .08)
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      color: var(--ink);
      box-shadow: 0 4px 20px var(--gold-glow);
    }

    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px var(--gold-glow)
    }

    .btn-outline-white {
      background: transparent;
      color: white;
      border: 1.5px solid rgba(255, 255, 255, .3);
    }

    .btn-outline-white:hover {
      border-color: rgba(255, 255, 255, .7);
      background: rgba(255, 255, 255, .05)
    }

    .btn-ink {
      background: var(--ink);
      color: white
    }

    .btn-ink:hover {
      background: var(--ink-3);
      transform: translateY(-1px)
    }

    .btn-ghost {
      background: transparent;
      color: var(--ink-2);
      border: 1.5px solid var(--border);
    }

    .btn-ghost:hover {
      border-color: var(--gold);
      color: var(--gold)
    }

    /* -------------------------------------------
   SECTION / CONTAINER
------------------------------------------- */
    .section {
      padding: 72px 0
    }

    .section-alt {
      background: var(--cream-2)
    }

    .wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 32px
    }

    .wrap-sm {
      max-width: 640px;
      margin: 0 auto;
      padding: 0 24px
    }

    .section-form {
      padding: 56px 0 28px;
    }

    .form-hero {
      position: relative;
      margin-bottom: 22px;
      padding: 24px 24px 22px;
      border-radius: 20px;
      background:
        radial-gradient(circle at top right, rgba(200, 146, 42, .12), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(250, 247, 242, .94));
      border: 1px solid rgba(200, 146, 42, .16);
      box-shadow: 0 14px 34px rgba(10, 22, 40, .08);
      overflow: hidden;
    }

    .form-hero::after {
      content: '';
      position: absolute;
      inset: 0 auto auto 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--gold), rgba(200, 146, 42, .15));
    }

    .form-hero .section-sub {
      max-width: 100%;
      margin-bottom: 0 !important;
    }

    .form-actions {
      margin-top: 24px;
    }

    @media(max-width:640px) {

      .wrap,
      .wrap-sm {
        padding: 0 16px
      }

      .section-form {
        padding: 40px 0 20px;
      }

      .form-hero {
        padding: 20px 18px 18px;
        border-radius: 16px;
      }

      .form-actions {
        margin-top: 18px;
      }
    }

    .eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .section-h {
      font-family: var(--ff-display);
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.15;
      margin-bottom: 12px;
    }

    .section-sub {
      font-size: 15px;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.6;
      max-width: 560px;
    }

    /* -------------------------------------------
   FEATURE GRID
------------------------------------------- */
    .feat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
    }

    @media(max-width:700px) {
      .feat-grid {
        grid-template-columns: 1fr
      }
    }

    .feat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 28px;
      cursor: pointer;
      transition: all .25s var(--ease);
      position: relative;
      overflow: hidden;
    }

    .feat-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-lt));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s var(--ease);
    }

    .feat-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--sh-md);
      border-color: var(--border-gold);
    }

    .feat-card:hover::before {
      transform: scaleX(1)
    }

    .feat-ico-wrap {
      width: 52px;
      height: 52px;
      border-radius: var(--r-sm);
      background: var(--gold-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin-bottom: 16px;
      transition: background .25s;
    }

    .feat-card:hover .feat-ico-wrap {
      background: linear-gradient(135deg, var(--gold), var(--gold-lt))
    }

    .feat-title {
      font-family: var(--ff-display);
      font-weight: 700;
      font-size: 17px;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .feat-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.55
    }

    /* -------------------------------------------
   SLA BAR
------------------------------------------- */
    .sla-banner {
      background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
      border-radius: var(--r);
      padding: 36px 40px;
      display: flex;
      align-items: center;
      gap: 36px;
      position: relative;
      overflow: hidden;
      margin-top: 40px;
    }

    .sla-banner::after {
      content: '';
      position: absolute;
      right: -60px;
      top: -60px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(200, 146, 42, .12) 0%, transparent 70%);
      border-radius: 50%;
    }

    .sla-num {
      font-family: var(--ff-display);
      font-weight: 900;
      font-size: 72px;
      color: var(--gold-lt);
      line-height: 1;
      flex-shrink: 0;
    }

    .sla-divider {
      width: 1px;
      height: 60px;
      background: rgba(255, 255, 255, .15);
      flex-shrink: 0;
    }

    .sla-text-h {
      font-family: var(--ff-display);
      font-weight: 700;
      font-size: 22px;
      color: white;
      margin-bottom: 6px;
    }

    .sla-text-sub {
      font-size: 13px;
      color: rgba(255, 255, 255, .55);
      line-height: 1.6
    }

    /* -------------------------------------------
   ALUR STEPS
------------------------------------------- */
    .alur-row {
      display: flex;
      gap: 0;
      margin-top: 40px;
      position: relative;
    }

    .alur-row::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 28px;
      right: 28px;
      height: 2px;
      background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 14px);
      z-index: 0;
    }

    .alur-step {
      flex: 1;
      text-align: center;
      position: relative;
      z-index: 1;
      padding: 0 8px;
    }

    .alur-dot {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px;
      font-family: var(--ff-display);
      font-weight: 900;
      font-size: 20px;
      color: var(--gold);
      box-shadow: 0 0 0 6px var(--cream), var(--sh);
      transition: all .25s;
    }

    .alur-step.done .alur-dot {
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      color: var(--ink);
      border-color: transparent;
    }

    .alur-lbl {
      font-size: 11px;
      font-weight: 600;
      color: var(--ink-2);
      line-height: 1.35;
      letter-spacing: .01em;
    }

    .alur-days {
      font-size: 10px;
      color: var(--gold);
      font-weight: 700;
      margin-top: 4px;
    }

    @media(max-width:640px) {
      .alur-row::before {
        display: none
      }

      .alur-row {
        flex-wrap: wrap;
        gap: 12px
      }

      .alur-step {
        min-width: calc(33% - 8px);
        flex: none
      }
    }

    /* -------------------------------------------
   BENEFIT LIST
------------------------------------------- */
    .benefit-list {
      list-style: none;
      display: grid;
      gap: 12px
    }

    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 16px;
      background: var(--white);
      border-radius: var(--r-sm);
      border: 1px solid var(--border);
      font-size: 14px;
      line-height: 1.5;
      transition: border-color .2s;
    }

    .benefit-item:hover {
      border-color: var(--border-gold)
    }

    .benefit-ico {
      width: 32px;
      height: 32px;
      border-radius: 6px;
      background: var(--gold-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    /* -------------------------------------------
   CARDS (generic)
------------------------------------------- */
    /* -------------------------------------------
   WIZARD STEPS
------------------------------------------- */
    .wizard {
      display: flex;
      gap: 8px;
      background: rgba(255, 255, 255, .82);
      border: 1px solid rgba(200, 146, 42, .12);
      border-radius: 18px;
      padding: 8px;
      margin-bottom: 24px;
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(10, 22, 40, .06);
    }

    .ws {
      flex: 1;
      padding: 12px 10px;
      border-radius: 14px;
      text-align: center;
      transition: all .2s var(--ease);
      border: 1px solid transparent;
    }

    .ws-num {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--border);
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .ws-lbl {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--muted);
      display: block
    }

    .ws.active {
      background: linear-gradient(135deg, var(--ink), #16233a);
      border-color: rgba(200, 146, 42, .25);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
    }

    .ws.active .ws-num {
      background: var(--gold);
      color: var(--ink)
    }

    .ws.active .ws-lbl {
      color: rgba(255, 255, 255, .9)
    }

    .ws.done {
      background: #f0faf4;
      border-color: rgba(45, 125, 82, .14);
    }

    .ws.done .ws-num {
      background: var(--success);
      color: white
    }

    .ws.done .ws-lbl {
      color: var(--success)
    }

    /* -------------------------------------------
   FORM
------------------------------------------- */
    input[type=text],
    input[type=tel],
    input[type=email],
    input[type=number],
    input[type=date],
    select,
    textarea {
      width: 100%;
      min-height: 44px;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-family: var(--ff-body);
      font-size: 16px;
      color: var(--ink);
      background: linear-gradient(180deg, #fff, #fdfcf9);
      transition: border-color .15s, box-shadow .15s, background .15s;
      outline: none;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(200, 146, 42, .1);
    }

    textarea {
      resize: vertical;
      min-height: 80px;
      line-height: 1.5
    }

    /* checkbox items */
    .ck-list {
      display: grid;
      gap: 8px
    }

    .ck-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 12px 14px;
      background: var(--cream);
      border: 1.5px solid var(--border);
      border-radius: var(--r-sm);
      cursor: pointer;
      transition: all .2s;
    }

    .ck-item:hover {
      border-color: var(--gold);
      background: var(--gold-dim)
    }

    .ck-item input {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 1px;
      cursor: pointer;
      accent-color: var(--gold);
      border: none;
      padding: 0;
      background: none;
    }

    input[type=checkbox] {
      width: 16px;
      height: 16px
    }

    .ck-txt {
      font-size: 14px;
      font-weight: 500;
      line-height: 1.3;
      color: var(--ink)
    }

    .ck-sub {
      font-size: 12px;
      color: var(--muted);
      margin-top: 3px
    }

    /* -------------------------------------------
   ALERT
------------------------------------------- */
    .alert {
      padding: 13px 16px;
      border-radius: var(--r-sm);
      font-size: 13px;
      line-height: 1.5;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-bottom: 16px;
    }

    .alert-info {
      background: #EFF6FF;
      color: #1e40af;
      border-left: 3px solid #3B82F6
    }

    .alert-warn {
      background: #FFFBEB;
      color: #92400e;
      border-left: 3px solid #F59E0B
    }

    .alert-success {
      background: #ECFDF5;
      color: #065F46;
      border-left: 3px solid #10B981
    }

    .alert-danger {
      background: #FEF2F2;
      color: #991B1B;
      border-left: 3px solid #EF4444
    }

    /* -------------------------------------------
   CEK STATUS
------------------------------------------- */
    .search-wrap {
      display: flex;
      gap: 10px;
      align-items: stretch;
    }

    .search-wrap input {
      flex: 1;
      font-size: 15px;
      padding: 12px 16px;
      border-radius: var(--r-sm);
      border: 2px solid var(--border);
    }

    .search-wrap input:focus {
      border-color: var(--gold)
    }

    .search-wrap button {
      flex-shrink: 0
    }

    .status-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
      box-shadow: var(--sh);
      margin-top: 20px;
    }

    .sc-head {
      background: var(--ink);
      padding: 24px 28px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
    }

    .sc-noreg {
      font-family: monospace;
      font-size: 12px;
      color: rgba(255, 255, 255, .5);
      margin-bottom: 4px;
    }

    .sc-nama {
      font-family: var(--ff-display);
      font-weight: 700;
      font-size: 22px;
      color: white;
      margin-bottom: 4px;
    }

    .sc-alamat {
      font-size: 13px;
      color: rgba(255, 255, 255, .55)
    }

    .sc-body {
      padding: 28px
    }

    /* progress track */
    .prog-wrap {
      margin-bottom: 28px
    }

    .prog-track {
      display: flex;
      align-items: flex-start;
      position: relative;
      margin-top: 8px;
    }

    .prog-track::before {
      content: '';
      position: absolute;
      top: 19px;
      left: 19px;
      right: 19px;
      height: 2px;
      background: var(--border);
      z-index: 0;
    }

    .prog-fill {
      position: absolute;
      top: 19px;
      left: 19px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-lt));
      z-index: 1;
      transition: width .6s var(--ease);
    }

    .ps {
      flex: 1;
      text-align: center;
      position: relative;
      z-index: 2
    }

    .ps-dot {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 2.5px solid var(--border);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      margin: 0 auto 8px;
      transition: all .3s;
    }

    .ps.done .ps-dot {
      background: var(--success);
      border-color: var(--success);
      color: white;
      font-size: 13px
    }

    .ps.active .ps-dot {
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      border-color: transparent;
      box-shadow: 0 0 0 5px rgba(200, 146, 42, .2);
    }

    .ps.rejected .ps-dot {
      background: #ef4444;
      border-color: #ef4444;
      color: white
    }

    .ps-lbl {
      font-size: 10px;
      font-weight: 600;
      color: var(--muted);
      line-height: 1.3;
    }

    .ps.done .ps-lbl {
      color: var(--success)
    }

    .ps.active .ps-lbl {
      color: var(--ink);
      font-weight: 700
    }

    /* detail grid */
    .detail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 20px;
    }

    @media(max-width:480px) {
      .detail-grid {
        grid-template-columns: 1fr
      }
    }

    .detail-lbl {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--muted);
      margin-bottom: 3px
    }

    .detail-val {
      font-size: 14px;
      font-weight: 500;
      color: var(--ink)
    }

    /* timeline */
    .timeline {
      display: flex;
      flex-direction: column;
      gap: 0
    }

    .tl-item {
      display: flex;
      gap: 12px;
      padding: 8px 0
    }

    .tl-line {
      display: flex;
      flex-direction: column;
      align-items: center
    }

    .tl-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 4px;
    }

    .tl-bar {
      flex: 1;
      width: 2px;
      background: var(--border);
      margin: 4px 0
    }

    .tl-item:last-child .tl-bar {
      display: none
    }

    .tl-txt {
      flex: 1;
      padding-bottom: 4px
    }

    .tl-status {
      font-weight: 600;
      font-size: 13px;
      color: var(--ink)
    }

    .tl-ket {
      font-size: 12px;
      color: var(--muted);
      margin-top: 2px
    }

    .tl-time {
      font-size: 11px;
      color: var(--muted);
      margin-top: 2px
    }

    /* status badge */
    .sbadge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 700;
    }

    .sbadge-diterima {
      background: #DBEAFE;
      color: #1D4ED8
    }

    .sbadge-dijadwalkan {
      background: #EDE9FE;
      color: #6D28D9
    }

    .sbadge-triase {
      background: #FEF3C7;
      color: #92400E
    }

    .sbadge-pengukuran {
      background: #D1FAE5;
      color: #065F46
    }

    .sbadge-desain {
      background: #ECFDF5;
      color: #047857
    }

    .sbadge-siap {
      background: #FEF9C3;
      color: #713F12
    }

    .sbadge-selesai {
      background: #F3F4F6;
      color: #374151
    }

    .sbadge-ditolak {
      background: #FEE2E2;
      color: #991B1B
    }

    /* -------------------------------------------
   INFORMASI - SYARAT
------------------------------------------- */
    .syarat-grid {
      display: grid;
      gap: 6px
    }

    .syarat-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 11px 14px;
      background: var(--cream);
      border-left: 3px solid var(--gold);
      border-radius: 0 var(--r-sm) var(--r-sm) 0;
      font-size: 13px;
      line-height: 1.45;
    }

    .sn {
      font-size: 10px;
      font-weight: 700;
      color: var(--white);
      background: var(--ink);
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* produk */
    .produk-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px
    }

    @media(max-width:480px) {
      .produk-grid {
        grid-template-columns: 1fr
      }
    }

    .produk-item {
      display: flex;
      gap: 10px;
      padding: 12px;
      background: var(--cream);
      border-radius: var(--r-sm);
      border: 1px solid var(--border);
      font-size: 13px;
    }

    /* contact */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px
    }

    @media(max-width:640px) {
      .contact-grid {
        grid-template-columns: 1fr
      }
    }

    .contact-item {
      text-align: center;
      padding: 20px 16px;
      background: var(--cream);
      border-radius: var(--r);
      border: 1px solid var(--border);
    }

    .contact-ico {
      font-size: 30px;
      margin-bottom: 10px
    }

    .contact-lbl {
      font-size: 12px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 6px;
      letter-spacing: .04em;
      text-transform: uppercase
    }

    .contact-val {
      font-size: 13px;
      color: var(--muted);
      word-break: break-word
    }

    /* -------------------------------------------
   SUCCESS SCREEN
------------------------------------------- */
    .success-screen {
      text-align: center;
      padding: 48px 20px
    }

    .success-ico {
      font-size: 64px;
      margin-bottom: 16px
    }

    .success-h {
      font-family: var(--ff-display);
      font-weight: 900;
      font-size: 28px;
      color: var(--ink);
      margin-bottom: 10px;
    }

    .success-sub {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 24px
    }

    .success-noreg {
      display: inline-block;
      background: var(--ink);
      color: white;
      font-family: monospace;
      font-size: 22px;
      font-weight: 700;
      padding: 12px 28px;
      border-radius: var(--r);
      margin-bottom: 28px;
      letter-spacing: .04em;
      border: 2px solid var(--gold);
    }

    /* -------------------------------------------
   NOTIF
------------------------------------------- */
    /* -- Review & Confirm Modals -- */
    .lntr-overlay {
      position: fixed;
      inset: 0;
      background: rgba(10, 22, 40, .65);
      z-index: 8000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      animation: fadeIn .2s ease;
    }

    .lntr-overlay.is-hidden {
      display: none;
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    .lntr-modal {
      background: var(--white);
      border-radius: var(--r);
      box-shadow: var(--sh-lg);
      width: 100%;
      max-width: 560px;
      max-height: 90vh;
      display: flex;
      flex-direction: column;
      animation: slideUp .25s var(--ease);
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

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

    .lntr-modal-head {
      padding: 20px 24px 16px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }

    .lntr-modal-head-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .lntr-modal-head-sub {
      font-size: 12.5px;
      color: var(--muted);
      margin-top: 4px;
      line-height: 1.5;
    }

    .lntr-modal-body {
      padding: 20px 24px;
      overflow-y: auto;
      flex: 1;
    }

    /* -- Review sections -- */
    .lntr-review-section {
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      overflow: hidden;
      margin-bottom: 10px;
    }

    .lntr-review-section-hd {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .07em;
      color: var(--gold);
      background: var(--gold-dim);
      border-bottom: 1px solid var(--border-gold);
      padding: 8px 14px;
    }

    .lntr-review-section-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      background: var(--white);
    }

    @media (max-width: 420px) {
      .lntr-review-section-body {
        grid-template-columns: 1fr;
      }
    }

    .lntr-review-item {
      min-width: 0;
      padding: 10px 14px;
      border-bottom: 1px solid var(--border);
      border-right: 1px solid var(--border);
    }

    .lntr-review-item:nth-child(even),
    .lntr-review-item.full {
      border-right: none;
    }

    .lntr-review-item.full {
      grid-column: 1 / -1;
    }

    .lntr-review-item:last-child,
    .lntr-review-item:nth-last-child(2):not(.full) {
      border-bottom: none;
    }

    .lntr-review-lbl {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--muted);
      margin-bottom: 3px;
    }

    .lntr-review-val {
      font-size: 13px;
      font-weight: 600;
      color: var(--ink);
      word-break: break-word;
      line-height: 1.45;
    }

    .lntr-alert-warn {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      background: #FFF8ED;
      border: 1px solid rgba(181, 71, 8, .2);
      border-radius: var(--r-sm);
      padding: 12px 14px;
      font-size: 12.5px;
      color: var(--warn);
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .lntr-doc-confirm-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 16px;
    }

    .lntr-doc-confirm-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      background: #F6FDF8;
      border: 1px solid rgba(45, 125, 82, .2);
      border-radius: var(--r-sm);
      font-size: 13px;
      color: var(--ink);
    }

    .lntr-doc-confirm-item-ico {
      font-size: 16px;
      flex-shrink: 0;
    }

    .lntr-doc-confirm-item-info {
      flex: 1;
      min-width: 0;
    }

    .lntr-doc-confirm-item-name {
      font-weight: 600;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .lntr-doc-confirm-item-jenis {
      font-size: 11px;
      color: var(--muted);
      margin-top: 1px;
    }

    .lntr-modal-foot {
      padding: 16px 24px;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 10px;
      justify-content: flex-end;
      flex-shrink: 0;
      flex-wrap: wrap;
    }

    /* Finalize bar di step upload */
    .upload-finalize-bar {
      display: none;
      margin-top: 20px;
      padding: 16px;
      background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
      border: 1.5px solid rgba(45, 125, 82, .3);
      border-radius: var(--r);
      text-align: center;
    }

    .upload-finalize-bar.show {
      display: block;
    }

    .upload-finalize-bar p {
      font-size: 13px;
      color: var(--ink-2);
      margin-bottom: 12px;
      line-height: 1.5;
    }

    .notif {
      position: fixed;
      bottom: 24px;
      right: 24px;
      padding: 13px 18px;
      border-radius: var(--r-sm);
      font-size: 13px;
      font-weight: 600;
      z-index: 9999;
      box-shadow: var(--sh-md);
      max-width: 340px;
      animation: notif-in .25s var(--ease);
    }

    @keyframes notif-in {
      from {
        transform: translateY(16px);
        opacity: 0
      }

      to {
        transform: none;
        opacity: 1
      }
    }

    .notif-success {
      background: #ECFDF5;
      color: #065F46;
      border-left: 4px solid #10B981
    }

    .notif-error {
      background: #FEF2F2;
      color: #991B1B;
      border-left: 4px solid #EF4444
    }

    .notif-info {
      background: #EFF6FF;
      color: #1e40af;
      border-left: 4px solid #3B82F6
    }
    /* -------------------------------------------
   EMPTY
------------------------------------------- */
    .empty-h {
      font-family: var(--ff-display);
      font-size: 18px;
      font-weight: 700;
      color: var(--muted);
      margin-bottom: 6px
    }

    .empty-sub {
      font-size: 13px;
      color: var(--muted)
    }

    /* -------------------------------------------
   FOOTER
------------------------------------------- */
    .footer {
      background: var(--ink);
      padding: 28px 32px 34px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      text-align: center;
      color: rgba(255, 255, 255, .4);
      font-size: 12px;
      line-height: 1.8;
    }

    .footer strong {
      color: var(--gold-lt)
    }

    .footer-logo {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-logo img {
      width: min(160px, 42vw);
      height: auto;
      display: block;
      object-fit: contain;
      margin: 0 auto;
    }

    .footer-copy {
      max-width: 640px;
    }

    /* -------------------------------------------
   MOBILE BOTTOM NAV
------------------------------------------- */
    .bnav {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 400;
      background: rgba(10, 22, 40, .96);
      backdrop-filter: blur(20px);
      border-top: 1px solid rgba(200, 146, 42, .15);
      padding: 0;
    }

    @media(max-width:640px) {
      .btn-sm {
        min-height: 44px;
        font-size: 14px;
      }

      .bnav {
        display: flex
      }

      .topbar-nav {
        display: none
      }

      body {
        padding-bottom: 64px
      }

      .search-wrap {
        flex-direction: column;
      }

      .search-wrap button {
        width: 100%;
      }

      .dok-item {
        flex-wrap: wrap;
        align-items: flex-start;
      }

      .dok-item-link {
        width: 100%;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .sc-head {
        flex-direction: column;
      }

      .sc-body {
        padding: 20px 16px;
      }

      .prog-track {
        overflow-x: auto;
        padding-bottom: 8px;
      }

      .ps {
        min-width: 74px;
      }

      .lntr-overlay {
        padding: 12px;
        align-items: flex-end;
      }

      .lntr-modal {
        max-width: none;
        max-height: min(92dvh, 92vh);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
      }

      .lntr-modal-head,
      .lntr-modal-body,
      .lntr-modal-foot {
        padding-left: 16px;
        padding-right: 16px;
      }

      .lntr-modal-foot .btn {
        width: 100%;
      }
    }

    .bn-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px 4px 8px;
      cursor: pointer;
      border: none;
      background: none;
      font-family: var(--ff-body);
      color: rgba(255, 255, 255, .4);
      transition: color .2s;
      text-decoration: none;
    }

    .bn-item.active {
      color: var(--gold-lt)
    }

    .bn-ico {
      font-size: 20px;
      line-height: 1;
      margin-bottom: 3px
    }

    .bn-lbl {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .03em
    }

    /* -------------------------------------------
   UTILITY
------------------------------------------- */
    .row {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap
    }

    .benefit-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start
    }

    @media(max-width:640px) {
      .benefit-cols {
        display: block
      }
    }

    /* -------------------------------------------
   CETAK TANDA BUKTI
------------------------------------------- */
    #bukti-print-area {
      display: none
    }

    @media print {
      body>* {
        display: none !important
      }

      #bukti-print-area {
        display: block !important;
        font-family: 'Source Sans 3', system-ui, sans-serif;
        font-size: 11pt;
        color: #0A1628;
        background: #fff;
        margin: 0;
        padding: 0;
      }

      .bukti-wrap {
        width: 148mm;
        margin: 0 auto;
        border: 1.5pt solid #0A1628;
        page-break-inside: avoid;
      }

      .bukti-kop {
        background: #0A1628;
        color: #fff;
        padding: 10pt 14pt;
        display: flex;
        align-items: center;
        gap: 10pt;
      }

      .bukti-kop-mark {
        width: 32pt;
        height: 32pt;
        flex-shrink: 0;
        background: linear-gradient(135deg, #C8922A, #E8B84B);
        border-radius: 6pt;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 18pt;
        color: #0A1628;
      }

      .bukti-kop-nama {
        font-weight: 700;
        font-size: 11pt;
        line-height: 1.3
      }

      .bukti-kop-sub {
        font-size: 8pt;
        opacity: .7;
        margin-top: 1pt
      }

      .bukti-judul {
        border-bottom: 1.5pt solid #0A1628;
        padding: 8pt 14pt;
        text-align: center;
      }

      .bukti-judul-h {
        font-weight: 900;
        font-size: 12pt;
        text-transform: uppercase;
        letter-spacing: .08em;
      }

      .bukti-judul-sub {
        font-size: 8.5pt;
        color: #4B5563;
        margin-top: 2pt
      }

      .bukti-noreg-wrap {
        padding: 10pt 14pt;
        text-align: center;
        border-bottom: 1pt dashed #C8922A;
        background: #FFFBF5;
      }

      .bukti-noreg-lbl {
        font-size: 7.5pt;
        text-transform: uppercase;
        letter-spacing: .1em;
        color: #6B7A96;
        margin-bottom: 4pt
      }

      .bukti-noreg-val {
        font-size: 22pt;
        font-weight: 900;
        font-family: 'Source Sans 3', system-ui, sans-serif;
        color: #0A1628;
        letter-spacing: .05em;
        border: 2pt solid #C8922A;
        display: inline-block;
        padding: 4pt 18pt;
        border-radius: 4pt;
        background: #fff;
      }

      .bukti-data {
        padding: 10pt 14pt;
        border-bottom: 1pt solid #e5e7eb
      }

      .bukti-row {
        display: flex;
        padding: 3pt 0;
        border-bottom: 0.5pt solid #f0f0f0;
        font-size: 9.5pt;
        line-height: 1.4;
      }

      .bukti-row:last-child {
        border-bottom: none
      }

      .bukti-lbl {
        width: 30mm;
        flex-shrink: 0;
        color: #6B7A96;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 7.5pt;
        letter-spacing: .03em;
        padding-top: 1pt;
      }

      .bukti-val {
        flex: 1;
        color: #0A1628;
        font-weight: 500
      }

      .bukti-layanan-item {
        display: inline-block;
        background: #EFF6FF;
        border: 0.5pt solid #BFDBFE;
        border-radius: 3pt;
        padding: 1pt 5pt;
        font-size: 8pt;
        font-weight: 600;
        color: #1D4ED8;
        margin: 1pt 2pt 1pt 0;
      }

      .bukti-status-chip {
        display: inline-block;
        background: #DCFCE7;
        border: 0.5pt solid #86EFAC;
        border-radius: 3pt;
        padding: 1pt 8pt;
        font-size: 8.5pt;
        font-weight: 700;
        color: #166534;
      }

      .bukti-info {
        background: #FFFBF5;
        border-top: 1pt solid #C8922A;
        padding: 8pt 14pt;
        font-size: 8.5pt;
        color: #6B3A00;
        line-height: 1.6;
      }

      .bukti-info strong {
        color: #0A1628
      }

      .bukti-footer {
        background: #F9FAFB;
        border-top: 1pt solid #e5e7eb;
        padding: 6pt 14pt;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 7.5pt;
        color: #9CA3AF;
      }

      .bukti-footer strong {
        color: #6B7A96
      }
    }



    /* ===== OFFICIAL TYPOGRAPHY ALIGNMENT ===== */
    :root {
      --gov-heading: #10233f;
      --gov-label: #53657f;
      --gov-text: #22344d;
      --gov-stripe: linear-gradient(90deg, #0f2347 0 80%, #b5882f 80% 100%);
    }

    body {
      letter-spacing: 0.005em;
    }

    .topbar-name,
    .card-title,
    .section-title,
    .modal-title,
    .hero-title,
    .page-title,
    .empty-title {
      font-family: var(--ff-display);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      color: var(--gov-heading);
    }

    .topbar-sub,
    .section-kicker,
    .meta-label,
    .status-label,
    .filter-label,
    .form-legend,
    .table-kicker {
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gov-label);
      font-weight: 700;
    }

    label,
    .flabel,
    .fgroup label,
    .bukti-lbl {
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 10.5px;
      font-weight: 700;
      color: var(--gov-label);
    }

    input,
    select,
    textarea,
    .dok-item,
    .upload-dropzone,
    .card,
    .modal,
    .status-chip,
    .bukti-wrap {
      border-radius: 10px;
    }

    input,
    select,
    textarea {
      font-size: 13.5px;
      letter-spacing: 0.005em;
      line-height: 1.55;
      color: var(--gov-text);
    }

    textarea::placeholder,
    input::placeholder {
      color: #7a8aa3;
    }

    .card-title,
    .section-title,
    .modal-title,
    .page-title {
      font-size: 13px;
    }

    .card-sub,
    .section-sub,
    .modal-sub,
    .dok-item-meta,
    .upload-dropzone-sub,
    .empty-sub,
    .bukti-info,
    .bukti-footer,
    .bukti-sub {
      letter-spacing: 0.01em;
      line-height: 1.65;
    }

    .topbar {
      border-bottom-width: 1px;
      position: relative;
    }

    .topbar::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 3px;
      background: var(--gov-stripe);
    }

    .tnav {
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 11.5px;
      font-weight: 700;
    }

    .dok-jenis-badge,
    .bukti-status-chip,
    .bukti-layanan-item {
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .bukti-noreg-val,
    .bukti-val,
    .dok-item-name,
    .stat-val,
    .meta-value {
      font-variant-numeric: tabular-nums;
      color: var(--gov-text);
    }

    .bukti-noreg-lbl,
    .bukti-lbl {
      letter-spacing: 0.12em;
    }
