.page-hero {
  background: linear-gradient(135deg, #0a2035 0%, var(--navy) 100%);
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }

.steps-bar { background: var(--fog); border-bottom: 1px solid var(--border); padding: 16px 0; }
.steps-row { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.step-item { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--muted); }
.step-item.active { color: var(--navy); }
.step-n { width: 28px; height: 28px; border-radius: 50%; background: var(--border); color: var(--muted); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.step-item.active .step-n { background: var(--gold); color: var(--navy); }
.step-arr { color: var(--border); font-size: 18px; }

.apply-sec { padding: 72px 0; }
.apply-grid { display: grid; grid-template-columns: 1fr 380px; gap: 52px; align-items: start; }

.embed-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.embed-head { background: var(--navy); padding: 20px 28px; display: flex; align-items: center; gap: 14px; }
.embed-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.embed-head h3 { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--white); }
.embed-head p { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.embed-body { min-height: 560px; display: flex; align-items: center; justify-content: center; padding: 60px 40px; background: var(--off-white); }
.embed-ph { text-align: center; }
.embed-ph .i { font-size: 56px; margin-bottom: 20px; }
.embed-ph h3 { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--navy); margin-bottom: 12px; }
.embed-ph p { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 400px; margin: 0 auto 28px; }
.embed-note { font-size: 11.5px; color: var(--muted); background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 12px 16px; margin-top: 16px; text-align: left; line-height: 1.65; }

.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sb { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.sb h4 { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.sb p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.c-list { display: flex; flex-direction: column; gap: 12px; }
.c-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); text-decoration: none; transition: color .18s; }
.c-item:hover { color: var(--gold); }
.c-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--fog); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.c-item strong { display: block; font-size: 13.5px; color: var(--navy); }
.c-item span { font-size: 11.5px; color: var(--muted); }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 9px; padding: 0; }
.checklist li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.checklist li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.badge-item { font-size: 11px; font-weight: 700; padding: 5px 10px; border: 1px solid var(--border); border-radius: 4px; color: var(--muted); background: var(--fog); }
.sb-vi { background: var(--navy); border-color: rgba(196,151,58,0.2); }
.sb-vi h4 { color: var(--white); }
.sb-vi p { color: rgba(255,255,255,0.55); }

@media(max-width: 960px) {
  .apply-grid { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}
