
  /* ── prefix: pmb- ── */

  /* BREADCRUMB */
  .pmb-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;
  }

  .pmb-breadcrumb a {
    color: var(--blue-light);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
  }

  .pmb-breadcrumb a:hover {
    color: var(--blue);
  }

  .pmb-bc-sep {
    opacity: .4;
  }

  .pmb-bc-cur {
    color: var(--text-mid);
    font-weight: 500;
  }

  /* HERO */
  .pmb-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 55%, #2660B8 100%);
    padding: 60px 60px 0;
    position: relative;
    overflow: hidden;
  }

  .pmb-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;
  }

  .pmb-hero-c1 {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
  }

  .pmb-hero-c2 {
    position: absolute;
    left: 30%;
    bottom: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(200, 146, 42, .07);
  }

  .pmb-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
  }

  .pmb-hero-text {
    padding-bottom: 48px;
  }

  .pmb-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: 16px;
  }

  .pmb-hero-title {
    font-family: 'Playfair Display';
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .pmb-hero-title span {
    color: var(--gold-light);
  }

  .pmb-hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .pmb-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .pmb-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    background: var(--gold);
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(200, 146, 42, .4);
    transition: transform .2s, box-shadow .2s;
  }

  .pmb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 146, 42, .5);
  }

  .pmb-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .1);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, .3);
    transition: all .2s;
  }

  .pmb-btn-outline:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .5);
  }

  /* Hero card info */
  .pmb-hero-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px 20px 0 0;
    padding: 28px;
    backdrop-filter: blur(8px);
  }

  .pmb-hero-card-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 16px;
  }

  .pmb-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pmb-hero-stat {
    background: rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
  }

  .pmb-hero-stat-num {
    font-family: 'Playfair Display';
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1;
  }

  .pmb-hero-stat-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: .8px;
  }

  /* WRAP */
  .pmb-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 48px 60px 80px;
  }

  /* TABS */
  .pmb-tabs {
    display: flex;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 32px;
  }

  .pmb-tab-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--text-soft);
    border-right: 1px solid var(--border);
    border-bottom: 3px solid transparent;
    transition: all .2s;
  }

  .pmb-tab-btn:last-child {
    border-right: none;
  }

  .pmb-tab-btn .pmb-tab-icon {
    font-size: 22px;
    transition: transform .2s;
  }

  .pmb-tab-btn:hover {
    color: var(--blue-light);
    background: var(--blue-pale);
  }

  .pmb-tab-btn:hover .pmb-tab-icon {
    transform: translateY(-2px);
  }

  .pmb-tab-btn.active {
    color: var(--blue);
    background: var(--blue-pale);
    border-bottom-color: var(--blue-light);
    font-weight: 800;
  }

  .pmb-tab-btn.active .pmb-tab-icon {
    transform: translateY(-2px);
  }

  /* PANELS */
  .pmb-panel {
    display: none;
  }

  .pmb-panel.active {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
    animation: pmbFade .3s ease;
  }

  .pmb-panel.active.full {
    grid-template-columns: 1fr;
  }

  @keyframes pmbFade {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* CARD */
  .pmb-card {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
  }

  .pmb-card:last-child {
    margin-bottom: 0;
  }

  .pmb-card-head {
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .pmb-card-head-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .pmb-card-head-title {
    font-family: 'Playfair Display';
    font-size: 17px;
    font-weight: 800;
    color: white;
  }

  .pmb-card-body {
    padding: 28px;
  }

  /* ── TAB 1: TATA CARA ── */
  /* Video embed */
  .pmb-video-wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    cursor: pointer;
  }

  .pmb-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
  }

  .pmb-video-wrap:hover .pmb-video-thumb {
    transform: scale(1.03);
  }

  .pmb-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
  }

  .pmb-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    background: rgba(204, 0, 0, .9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform .2s, background .2s;
  }

  .pmb-play-btn svg {
    width: 26px;
    height: 26px;
    fill: white;
    margin-left: 4px;
  }

  .pmb-video-wrap:hover .pmb-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #CC0000;
  }

  .pmb-video-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-soft);
    text-align: center;
    margin-top: 10px;
    font-weight: 700;
  }

  /* Langkah-langkah */
  .pmb-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .pmb-step {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }

  .pmb-step:last-child {
    border-bottom: none;
  }

  .pmb-step-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26, 58, 107, .25);
  }

  .pmb-step-body {}

  .pmb-step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
  }

  .pmb-step-desc {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.6;
  }

  .pmb-step-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue-light);
    text-decoration: none;
  }

  .pmb-step-link:hover {
    text-decoration: underline;
  }

  /* ── TAB 2: PERSYARATAN ── */
  .pmb-req-section {
    margin-bottom: 24px;
  }

  .pmb-req-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--blue-pale);
  }

  .pmb-req-title-icon {
    width: 34px;
    height: 34px;
    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;
  }

  .pmb-req-title h3 {
    font-family: 'Playfair Display';
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
  }

  .pmb-req-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .pmb-req-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 11px 14px;
    border-radius: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
  }

  .pmb-req-dot {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--blue-pale);
    color: var(--blue-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* ── TAB 3: BROSUR ── */
  .pmb-brosur-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .pmb-brosur-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    cursor: zoom-in;
    position: relative;
    line-height: 0;
  }

  .pmb-brosur-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .4s;
  }

  .pmb-brosur-item:hover img {
    transform: scale(1.03);
  }

  .pmb-brosur-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 58, 107, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s;
  }

  .pmb-brosur-item:hover .pmb-brosur-overlay {
    opacity: 1;
  }

  .pmb-brosur-overlay span {
    font-size: 13px;
    font-weight: 700;
    color: white;
  }

  /* ── SIDEBAR ── */
  .pmb-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .pmb-scard {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .pmb-scard-head {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-soft);
  }

  .pmb-scard-body {
    padding: 18px;
  }

  /* CTA besar */
  .pmb-cta-big {
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    border-radius: 18px;
    padding: 28px;
    text-align: center;
  }

  .pmb-cta-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .pmb-cta-title {
    font-family: 'Playfair Display';
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .pmb-cta-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .pmb-cta-daftar {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    background: var(--gold);
    color: white;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(200, 146, 42, .4);
    transition: transform .2s, box-shadow .2s;
    margin-bottom: 10px;
  }

  .pmb-cta-daftar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(200, 146, 42, .5);
  }

  .pmb-cta-wa {
    display: block;
    text-align: center;
    padding: 11px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .12);
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .2);
    transition: background .2s;
  }

  .pmb-cta-wa:hover {
    background: rgba(255, 255, 255, .2);
  }

  /* Info biaya */
  .pmb-info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
  }

  .pmb-info-row:last-child {
    border-bottom: none;
  }

  .pmb-info-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .pmb-info-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-soft);
    margin-bottom: 2px;
  }

  .pmb-info-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
  }

  /* Kontak admin */
  .pmb-kontak-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-mid);
  }

  .pmb-kontak-item:last-child {
    border-bottom: none;
  }

  .pmb-kontak-item a {
    color: var(--blue-light);
    text-decoration: none;
    font-weight: 600;
  }

  .pmb-kontak-item a:hover {
    text-decoration: underline;
  }

  /* Modal video */
  .pmb-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(5, 12, 30, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
  }

  .pmb-modal.show {
    opacity: 1;
    visibility: visible;
  }

  .pmb-modal-box {
    position: relative;
    width: min(860px, 92vw);
    animation: pmbLbIn .28s ease;
  }

  @keyframes pmbLbIn {
    from {
      transform: scale(.93);
      opacity: 0;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .pmb-modal-iframe {
    position: relative;
    padding-top: 56.25%;
  }

  .pmb-modal-iframe iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
  }

  .pmb-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
  }

  .pmb-modal-close:hover {
    background: rgba(255, 255, 255, .3);
  }

  /* Lightbox brosur */
  .pmb-lb {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(5, 12, 30, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
  }

  .pmb-lb.show {
    opacity: 1;
    visibility: visible;
  }

  .pmb-lb-box {
    position: relative;
    max-width: 700px;
    width: 100%;
  }

  .pmb-lb-box img {
    width: 100%;
    border-radius: 12px;
    display: block;
    max-height: 88vh;
    object-fit: contain;
  }

  .pmb-lb-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pmb-lb-close:hover {
    background: rgba(255, 255, 255, .3);
  }

  /* BOTTOM CTA STRIP */
  .pmb-bottom-strip {
    background: linear-gradient(135deg, #0E2A58, var(--blue));
    padding: 48px 60px;
    text-align: center;
  }

  .pmb-bottom-strip h2 {
    font-family: 'Playfair Display';
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
  }

  .pmb-bottom-strip p {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 28px;
  }

  .pmb-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 44px;
    border-radius: 12px;
    background: var(--gold);
    color: white;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(200, 146, 42, .45);
    transition: transform .2s, box-shadow .2s;
  }

  .pmb-strip-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(200, 146, 42, .55);
  }

  /* RESPONSIVE */
  @media(max-width:1100px) {
    .pmb-breadcrumb {
      padding: 10px 32px;
    }

    .pmb-hero {
      padding: 48px 32px 0;
    }

    .pmb-hero-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .pmb-hero-card {
      border-radius: 20px;
    }

    .pmb-wrap {
      padding: 28px 32px 60px;
    }

    .pmb-panel.active {
      grid-template-columns: 1fr;
    }
  }

  @media(max-width:768px) {
    .pmb-breadcrumb {
      padding: 10px 20px;
    }

    .pmb-hero {
      padding: 40px 20px 0;
    }

    .pmb-wrap {
      padding: 20px 20px 48px;
    }

    .pmb-tabs {
      flex-wrap: wrap;
    }

    .pmb-tab-btn {
      min-width: 33%;
      font-size: 10px;
      padding: 14px 8px;
    }

    .pmb-brosur-grid {
      grid-template-columns: 1fr 1fr;
    }

    .pmb-bottom-strip {
      padding: 40px 20px;
    }

    .pmb-hero-stats {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media(max-width:480px) {
    .pmb-brosur-grid {
      grid-template-columns: 1fr;
    }

    .pmb-hero-stats {
      grid-template-columns: repeat(2, 1fr);
    }
  }

