.rbv-page { background: var(--cream); }

.rbv-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}


.rbv-hero {
  background: linear-gradient(135deg, #021A3D 0%, #034694 100%);
  padding: 80px 24px 64px;
  color: var(--ivory);
}

.rbv-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.rbv-breadcrumb {
  font-size: 13px;
  color: rgba(240,230,210,0.55);
  margin-bottom: 20px;
}

.rbv-breadcrumb a { color: rgba(240,230,210,0.7); text-decoration: none; }
.rbv-breadcrumb a:hover { color: var(--yellow); }

.rbv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,222,0,0.15);
  border: 1px solid rgba(255,222,0,0.4);
  color: var(--yellow);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

.rbv-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ivory);
  margin: 0 0 16px;
}

.rbv-hero-sub {
  font-size: 17px;
  color: rgba(240,230,210,0.75);
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 620px;
}

.rbv-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.rbv-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #021A3D;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

.rbv-btn-primary:hover { background: #ffe033; transform: translateY(-2px); }

.rbv-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,230,210,0.1);
  border: 1.5px solid rgba(240,230,210,0.3);
  color: var(--ivory);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.rbv-btn-secondary:hover {
  background: rgba(240,230,210,0.18);
  border-color: rgba(240,230,210,0.55);
}

.rbv-hero-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.rbv-info-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(240,230,210,0.65);
}


.rbv-howto {
  background: var(--cream);
  padding: 56px 0;
  border-bottom: 1px solid rgba(3,70,148,0.08);
}

.rbv-sec-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 8px;
}

.rbv-sec-sub {
  font-size: 15px;
  color: var(--mid);
  margin: 0 0 32px;
}

.rbv-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.rbv-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.rbv-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--ivory);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rbv-step-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 4px;
}

.rbv-step-body p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  margin: 0;
}


.rbv-prodi-section {
  padding: 56px 0;
}

.rbv-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 2px solid rgba(3,70,148,0.1);
  padding-bottom: 0;
}

.rbv-tab {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 16px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  margin-bottom: -2px;
}

.rbv-tab:hover { color: var(--blue); }
.rbv-tab.active { color: var(--blue); border-color: var(--blue); }

.rbv-panel { display: none; }
.rbv-panel.active { display: block; }

.rbv-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.rbv-panel-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 4px;
}

.rbv-panel-sub {
  font-size: 13px;
  color: var(--mid);
  margin: 0;
}

.rbv-panel-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 16px;
  border: 1.5px solid var(--blue);
  border-radius: var(--r-md);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.rbv-panel-all:hover {
  background: var(--blue);
  color: var(--ivory);
}

.rbv-prodi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.rbv-prodi-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream2);
  border: 1px solid rgba(3,70,148,0.1);
  border-radius: var(--r-md);
  padding: 14px 16px;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.rbv-prodi-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26,42,58,0.1);
  transform: translateY(-2px);
}

.rbv-prodi-icon {
  width: 36px;
  height: 36px;
  background: rgba(3,70,148,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.rbv-prodi-card:hover .rbv-prodi-icon {
  background: var(--blue);
  color: var(--ivory);
}

.rbv-prodi-body { flex: 1; min-width: 0; }

.rbv-prodi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.rbv-prodi-count {
  font-size: 11px;
  color: var(--mid);
  margin-top: 2px;
}

.rbv-prodi-arrow {
  color: var(--blue);
  opacity: 0.3;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.rbv-prodi-card:hover .rbv-prodi-arrow { opacity: 1; }


.rbv-help {
  background: var(--blue);
  padding: 56px 0;
}

.rbv-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rbv-help-card {
  background: rgba(240,230,210,0.07);
  border: 1px solid rgba(240,230,210,0.12);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  color: var(--ivory);
}

.rbv-help-card svg { color: var(--yellow); margin-bottom: 16px; }

.rbv-help-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.rbv-help-card p {
  font-size: 13px;
  color: rgba(240,230,210,0.7);
  line-height: 1.6;
  margin: 0 0 16px;
}

.rbv-help-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  text-decoration: none;
}

.rbv-help-link:hover { text-decoration: underline; }


@media (max-width: 768px) {
  .rbv-hero-h1 { font-size: 36px; }
  .rbv-steps { grid-template-columns: 1fr; }
  .rbv-help-grid { grid-template-columns: 1fr; }
  .rbv-prodi-grid { grid-template-columns: 1fr; }
  .rbv-panel-head { flex-direction: column; }
  .rbv-panel-all { align-self: flex-start; }
}

@media (max-width: 640px) {
  .rbv-hero { padding: 56px 20px 40px; }
  .rbv-hero-h1 { font-size: 30px; }
  .rbv-hero-sub { font-size: 15px; }
  .rbv-inner { padding: 0 18px; }
  .rbv-prodi-section { padding: 40px 0; }
}

.rbv-lb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: min(560px, 90vw);
  max-height: 85vh;
}

/* Proteksi Anti-Save-As / Anti-Drag untuk gambar RBV */
.rbv-cover-thumb,
.rbv-lb-img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
