:root {
  --bm-blue: #1A237E;
  --bm-blue-mid: #1565C0;
  --bm-blue-soft: #eef2ff;
  --bm-gold: #F5A800;
  --bm-green: #16a34a;
  --bm-red: #ef4444;
  --bm-text: #172033;
  --bm-muted: #667085;
  --bm-line: #e5e7eb;
  --bm-shadow: 0 14px 35px rgba(16, 24, 40, 0.08);
  --bm-radius: 22px;
}

.bimtek-page {
  background:
    radial-gradient(circle at top left, rgba(26, 35, 126, 0.10), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #f6f8fb 44%, #eef3f8 100%);
  min-height: 100vh;
  padding: 28px 0 50px;
  color: var(--bm-text);
}

.bm-inner { max-width: 1320px; margin: 0 auto; padding: 0 22px; }

/* Hero */
.bm-hero {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(26, 35, 126, 0.97), rgba(21, 101, 192, 0.92)),
    url("data:image/svg+xml,%3Csvg width='700' height='300' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.15'%3E%3Cpath d='M10 250C140 90 280 360 430 120S660 100 720 20'/%3E%3Cpath d='M-20 120C120 20 250 180 370 65S590 180 740 40'/%3E%3Ccircle cx='130' cy='90' r='42'/%3E%3Ccircle cx='560' cy='150' r='70'/%3E%3C/g%3E%3C/svg%3E");
  color: #fff;
  box-shadow: var(--bm-shadow);
}

.bm-hero-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 22px; }

.bm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  font-size: 13px;
  letter-spacing: .2px;
  margin-bottom: 18px;
}

.bm-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #7ee787; display: inline-block; }

.bm-hero h1 {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  font-weight: 800;
  color: #fff;
}

.bm-hero p { margin: 18px 0 0; max-width: 720px; color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.7; }

.bm-filters { display: flex; gap: 14px; margin: 22px 0 0; flex-wrap: wrap; }

.bm-filters select {
  appearance: none;
  border: none;
  border-radius: 14px;
  padding: 11px 36px 11px 16px;
  color: #1a237e;
  background: #fff;
  font-weight: 600;
  min-width: 180px;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a237e' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.bm-impact {
  min-width: 160px;
  text-align: center;
  background: rgba(255,255,255,0.12);
  border: 2px solid var(--bm-gold);
  border-radius: 24px;
  padding: 20px 28px;
  flex-shrink: 0;
}

.bm-impact .number { font-size: 56px; font-weight: 900; line-height: 1; letter-spacing: -2px; color: var(--bm-gold); }
.bm-impact .label  { margin-top: 8px; color: rgba(255,255,255,.8); font-size: 12px; }

/* KPI Grid */
.bm-kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.bm-kpi {
  background: #fff;
  border: 1px solid rgba(229,231,235,.75);
  border-top: 3px solid var(--bm-gold);
  box-shadow: var(--bm-shadow);
  border-radius: 24px;
  padding: 22px;
}

.bm-kpi .kpi-title { color: var(--bm-muted); font-size: 13px; margin-bottom: 10px; }
.bm-kpi .kpi-value { font-size: 28px; font-weight: 800; letter-spacing: -1px; color: var(--bm-text); }
.bm-kpi .kpi-note  { font-size: 12px; margin-top: 9px; color: var(--bm-gold); font-weight: 700; }

/* Sections */
.bm-section  { margin-top: 26px; display: grid; grid-template-columns: 1.35fr .85fr; gap: 22px; }
.bm-section2 { margin-top: 22px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 22px; }

/* Card */
.bm-card {
  background: #fff;
  border: 1px solid rgba(229,231,235,.9);
  border-radius: var(--bm-radius);
  padding: 24px;
  box-shadow: var(--bm-shadow);
}

.bm-card-header { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.bm-card-header h2 { margin: 0; font-size: 19px; letter-spacing: -.3px; font-weight: 700; color: var(--bm-text); }
.bm-sub { color: var(--bm-muted); font-size: 13px; margin-top: 6px; line-height: 1.5; }

.bm-pill {
  background: var(--bm-gold);
  color: #fff;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Journey */
.bm-journey { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: stretch; gap: 12px; }

.bm-score-box {
  border-radius: 20px;
  padding: 22px;
  background: #f8fbff;
  border: 1px solid #dce9ff;
  min-height: 140px;
}

.bm-score-box .sb-label { color: var(--bm-muted); font-size: 13px; margin-bottom: 10px; }
.bm-score-box .sb-score { font-size: 50px; line-height: 1; font-weight: 800; color: var(--bm-blue); letter-spacing: -2px; }
.bm-score-box.post .sb-score { color: var(--bm-green); }

.bm-insight {
  margin-top: 18px;
  border-radius: 16px;
  padding: 15px 17px;
  background: linear-gradient(90deg, #eff6ff, #f0fdf4);
  color: #15315a;
  font-weight: 600;
  line-height: 1.6;
  border: 1px solid #dbeafe;
  font-size: 14px;
}

/* Chart wraps */
.bm-chart-wrap    { min-height: 280px; }
.bm-chart-wrap.sm { min-height: 240px; }

/* Benefit meter */
.bm-benefit-meter { display: grid; grid-template-columns: 145px 1fr; gap: 20px; align-items: center; margin-top: 14px; }
.bm-circle        { width: 144px; height: 144px; border-radius: 50%; display: grid; place-items: center; }

.bm-circle-inner {
  width: 108px;
  height: 108px;
  background: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
}

.bm-circle-inner strong { font-size: 30px; display: block; line-height: 1; color: var(--bm-blue); }
.bm-circle-inner span   { color: var(--bm-muted); font-size: 11px; }

.bm-bar-list { display: grid; gap: 12px; }
.bm-bar-row  { display: grid; gap: 6px; }
.bm-bar-top  { display: flex; justify-content: space-between; color: var(--bm-muted); font-size: 13px; font-weight: 600; }
.bm-bar      { height: 10px; background: #edf1f7; border-radius: 999px; overflow: hidden; }
.bm-bar span { display: block; height: 100%; border-radius: 999px; background: var(--bm-blue); }

/* Accent bar (heading decoration) */
.bm-accent-bar {
  display: inline-block;
  width: 4px;
  height: 22px;
  border-radius: 3px;
  background: var(--bm-gold);
  flex-shrink: 0;
}

.bm-section-first { margin-top: 48px; }
.bm-daftar        { margin-top: 48px; }
.bm-blue          { color: var(--bm-blue); }

/* Insights */
.bm-insights-grid { margin-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.bm-mini {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--bm-line);
  box-shadow: 0 10px 24px rgba(16,24,40,.05);
  border-left: 4px solid var(--bm-gold);
}

.bm-mini b { display: block; margin-bottom: 8px; font-size: 14px; color: var(--bm-text); }
.bm-mini p { margin: 0; color: var(--bm-muted); font-size: 13px; line-height: 1.55; }

/* Responsive */
@media (max-width: 1060px) {
  .bm-kpi-grid                          { grid-template-columns: repeat(2, 1fr); }
  .bm-section, .bm-section2             { grid-template-columns: 1fr; }
  .bm-journey                           { grid-template-columns: 1fr; }
  .bm-hero-top                          { flex-direction: column; }
  .bm-impact                            { width: 100%; }
  .bm-insights-grid                     { grid-template-columns: 1fr; }
  .bm-benefit-meter                     { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .bm-hero     { padding: 24px; }
  .bm-kpi-grid { padding: 0; margin-top: 18px; grid-template-columns: 1fr; }
}
