  .page-header {
    background: linear-gradient(135deg, #1a3a6b 0%, #0b1f4a 100%);
    padding: 60px 20px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/banner-ftik.png') center/cover no-repeat;
    opacity: 0.08;
  }
  .page-header .breadcrumb {
    position: relative;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
  }
  .page-header .breadcrumb a { color: #ffc107; text-decoration: none; }
  .page-header .breadcrumb a:hover { text-decoration: underline; }
  .page-header .badge-konsentrasi {
    position: relative;
    display: inline-block;
    background: rgba(255,193,7,0.18);
    border: 1px solid rgba(255,193,7,0.5);
    color: #ffc107;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 4px;
    margin-bottom: 14px;
  }
  .page-header h1 {
    position: relative;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .page-header h1 span { color: #ffc107; }
  .page-header p {
    position: relative;
    font-size: 15px;
    color: rgba(255,255,255,0.68);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
  }

  .stats-row {
    display: flex;
    justify-content: center;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #e8ecf5;
  }
  .stat-item {
    flex: 1;
    max-width: 200px;
    text-align: center;
    padding: 22px 10px;
    border-right: 1px solid #e8ecf5;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-size: 28px; font-weight: 800; color: #1a3a6b; }
  .stat-label { font-size: 12px; color: #888; margin-top: 3px; }

  .curriculum-section { padding: 60px 20px; }
  .curriculum-section.alt { background: #f7f9fc; }

  .section-title-inline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
  }
  .section-title-inline .icon-wrap {
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
  }
  .icon-wrap.blue { background: linear-gradient(135deg,#1a3a6b,#2a5298); }
  .icon-wrap.red  { background: linear-gradient(135deg,#e02020,#a01010); }
  .icon-wrap.gold { background: linear-gradient(135deg,#f59e0b,#d97706); }
  .section-title-inline .icon-wrap i { font-size: 20px; color: #fff; }
  .section-title-inline h2 { font-size: clamp(20px,3vw,26px); font-weight: 800; color: #1a3a6b; margin: 0; }
  .section-title-inline h2 span { color: #e02020; }

  .course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .course-card {
    background: #fff;
    border: 1px solid #e8ecf5;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s;
  }
  .course-card:hover {
    box-shadow: 0 4px 16px rgba(26,58,107,0.12);
    transform: translateY(-2px);
    border-color: #c9d5ee;
  }
  .course-num {
    width: 30px; height: 30px; min-width: 30px;
    border-radius: 8px;
    background: #f0f4ff;
    color: #1a3a6b;
    font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
  }
  .course-card.konsentrasi .course-num {
    background: rgba(224,32,32,0.08);
    color: #e02020;
  }
  .course-name { font-size: 13px; font-weight: 600; color: #333; line-height: 1.4; }

  .competency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .competency-card {
    background: #fff;
    border: 1px solid #e8ecf5;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .competency-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a3a6b, #e02020);
  }
  .competency-card:hover { box-shadow: 0 8px 28px rgba(26,58,107,0.14); transform: translateY(-4px); }
  .competency-card .comp-num {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a3a6b, #2a5298);
    color: #fff;
    font-size: 18px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
  }
  .competency-card h4 { font-size: 14px; font-weight: 700; color: #1a3a6b; line-height: 1.4; }

  .back-btn-wrap { padding: 24px 20px 0; max-width: 1200px; margin: 0 auto; }
  .back-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: #1a3a6b;
    text-decoration: none; padding: 8px 16px;
    border: 1.5px solid #c9d5ee; border-radius: 8px; transition: all 0.2s;
  }
  .back-btn:hover { background: #f0f4ff; border-color: #1a3a6b; }

  @media (max-width: 992px) {
    .course-grid { grid-template-columns: repeat(2, 1fr); }
    .competency-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { flex-wrap: wrap; }
  }
  @media (max-width: 600px) {
    .course-grid { grid-template-columns: 1fr; }
    .competency-grid { grid-template-columns: 1fr; }
    .stat-item { max-width: 50%; }
  }