
  /* ── prefix: fdl- ── */
  .fdl-breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 11px 60px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-soft);
    flex-wrap: wrap;
  }

  .fdl-breadcrumb a {
    color: var(--blue-light);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
  }

  .fdl-breadcrumb a:hover {
    color: var(--blue);
  }

  .fdl-bc-sep {
    opacity: .4;
  }

  .fdl-bc-cur {
    color: var(--text-mid);
    font-weight: 500;
  }

  /* Hero */
  .fdl-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 55%, #2660B8 100%);
    padding: 52px 60px;
    position: relative;
    overflow: hidden;
  }

  .fdl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: linear-gradient(rgba(255, 255, 255, .8) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .8) 1px, transparent 1px);
    background-size: 50px 50px;
  }

  .fdl-hero-c {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
  }

  .fdl-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  .fdl-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 146, 42, .2);
    border: 1px solid rgba(200, 146, 42, .35);
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
  }

  .fdl-hero-title {
    font-family: 'Playfair Display';
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 800;
    color: white;
    line-height: 1.15;
  }

  .fdl-hero-title span {
    color: var(--gold-light);
  }

  .fdl-hero-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    margin-top: 8px;
  }

  /* Stats di hero */
  .fdl-hero-stats {
    display: flex;
    gap: 1px;
    background: rgba(255, 255, 255, .12);
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
  }

  .fdl-hstat {
    padding: 16px 22px;
    background: rgba(255, 255, 255, .06);
    text-align: center;
  }

  .fdl-hstat-num {
    font-family: 'Playfair Display';
    font-size: 26px;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
  }

  .fdl-hstat-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
  }

  /* Wrap */
  .fdl-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 60px 80px;
  }

  /* Search + Filter bar */
  .fdl-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }

  .fdl-search-wrap {
    flex: 1;
    min-width: 200px;
    position: relative;
  }

  .fdl-search-input {
    width: 100%;
    padding: 11px 16px 11px 42px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: var(--text);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
  }

  .fdl-search-input:focus {
    border-color: var(--blue-light);
    box-shadow: 0 0 0 3px rgba(46, 109, 212, .12);
  }

  .fdl-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    opacity: .4;
    pointer-events: none;
  }

  .fdl-search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-soft);
    display: none;
  }

  /* Filter pills */
  .fdl-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .fdl-filter-btn {
    padding: 8px 16px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-mid);
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .fdl-filter-btn:hover {
    border-color: var(--blue-light);
    color: var(--blue-light);
    background: var(--blue-pale);
  }

  .fdl-filter-btn.active {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
  }

  .fdl-filter-count {
    background: rgba(255, 255, 255, .25);
    border-radius: 100px;
    padding: 1px 6px;
    font-size: 10px;
    font-weight: 800;
  }

  .fdl-filter-btn:not(.active) .fdl-filter-count {
    background: var(--border);
    color: var(--text-soft);
  }

  /* Seksi per kategori */
  .fdl-section {
    margin-bottom: 32px;
  }

  .fdl-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--blue-pale);
  }

  .fdl-section-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .fdl-section-title {
    font-family: 'Playfair Display';
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
  }

  .fdl-section-count {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-soft);
    background: var(--bg);
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid var(--border);
  }

  /* Grid file */
  .fdl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* File card */
  .fdl-file-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color .22s, box-shadow .22s, transform .22s;
    position: relative;
    overflow: hidden;
  }

  .fdl-file-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--blue-light), var(--blue));
    opacity: 0;
    transition: opacity .22s;
  }

  .fdl-file-card:hover {
    border-color: rgba(46, 109, 212, .25);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  .fdl-file-card:hover::before {
    opacity: 1;
  }

  /* No urut */
  .fdl-file-no {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-soft);
    border: 1px solid var(--border);
  }

  /* Ikon file */
  .fdl-file-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }

  /* Info */
  .fdl-file-info {
    flex: 1;
    min-width: 0;
  }

  .fdl-file-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 4px;
  }

  .fdl-file-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .fdl-file-ext {
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 100px;
    letter-spacing: .5px;
  }

  .fdl-file-date {
    font-size: 11px;
    color: var(--text-soft);
  }

  .fdl-file-ket {
    font-size: 11px;
    color: var(--text-soft);
    margin-top: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Tombol download */
  .fdl-dl-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;
    box-shadow: 0 3px 10px rgba(46, 109, 212, .25);
    transition: transform .18s, box-shadow .18s;
    white-space: nowrap;
  }

  .fdl-dl-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 109, 212, .4);
  }

  .fdl-dl-btn svg {
    width: 13px;
    height: 13px;
    fill: white;
    flex-shrink: 0;
  }

  /* Empty & No result */
  .fdl-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-soft);
  }

  .fdl-empty-icon {
    font-size: 52px;
    opacity: .25;
    margin-bottom: 12px;
  }

  .fdl-empty-text {
    font-size: 14px;
  }

  /* Hidden state */
  .fdl-file-card.hidden,
  .fdl-section.all-hidden {
    display: none;
  }

  /* Responsive */
  @media(max-width:1100px) {
    .fdl-breadcrumb {
      padding: 10px 32px;
    }

    .fdl-hero {
      padding: 44px 32px;
    }

    .fdl-wrap {
      padding: 28px 32px 60px;
    }
  }

  @media(max-width:768px) {
    .fdl-breadcrumb {
      padding: 10px 20px;
    }

    .fdl-hero {
      padding: 40px 20px;
    }

    .fdl-wrap {
      padding: 20px 20px 48px;
    }

    .fdl-grid {
      grid-template-columns: 1fr;
    }

    .fdl-hero-stats {
      display: none;
    }

    .fdl-topbar {
      flex-direction: column;
      align-items: stretch;
    }
  }

  @media(max-width:480px) {
    .fdl-file-card {
      flex-wrap: wrap;
    }

    .fdl-dl-btn {
      width: 100%;
      justify-content: center;
    }
  }
