/* =========================================================
 O AU MBA — COMPONENTS v2                                                                           *
 Programme cards, payment UI, receipt, letter, settings
 ========================================================= */

/* ── HERO (public landing) ───────────────────────────── */
.hero {
  min-height: calc(100vh - var(--pubbar-h));
  background: var(--navy-900);
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  padding-top: var(--pubbar-h);
}
.hero-media {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,37,69,0.96) 0%, rgba(11,37,69,0.75) 48%, rgba(11,37,69,0.55) 100%);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(11,37,69,0.96) 0%, rgba(11,37,69,0.72) 50%, rgba(11,37,69,0.45) 100%); }
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin-inline: auto; padding-inline: var(--sp-6);
  padding-bottom: var(--sp-12); padding-top: var(--sp-11);
  width: 100%;
}
.hero-content .hero-overline {
  display: block; font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold-400); margin-bottom: var(--sp-4);
}
.hero-content h1 { color: var(--white); font-size: var(--text-4xl); max-width: 640px; margin-bottom: var(--sp-5); }
.hero-content p { color: rgba(255,255,255,0.80); font-size: var(--text-lg); max-width: 520px; margin-bottom: var(--sp-7); line-height: 1.6; }
.hero-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* Ambient ring motif */
.ring-motif {
  position: absolute; pointer-events: none;
}
.ring-motif svg circle { fill: none; }

/* ── FEATURE STATS STRIP ─────────────────────────────── */
.stats-strip { background: var(--navy-950); }
.stats-strip-inner {
  max-width: var(--max-w); margin-inline: auto; padding-inline: var(--sp-6);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.07);
}
.stats-strip-cell {
  padding: var(--sp-7) var(--sp-6);
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: none;
}
.stats-strip-cell .s-value { font-family: var(--font-display); font-size: var(--text-3xl); color: var(--gold-400); font-weight: 700; display: block; margin-bottom: 4px; }
.stats-strip-cell .s-label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.45); }
@media (max-width: 780px) { .stats-strip-inner { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .stats-strip-inner { grid-template-columns: 1fr; } }

/* ── PROGRAMME CARD ──────────────────────────────────── */
.prog-card {
  background: var(--white); border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg); overflow: hidden; display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.prog-card:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.prog-card-accent { height: 4px; background: linear-gradient(90deg, var(--navy-700), var(--gold-500)); }
.prog-card-body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; }
.prog-card-code { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--gold-600); letter-spacing: 0.05em; display: block; margin-bottom: var(--sp-2); }
.prog-card h3 { margin-bottom: var(--sp-3); }
.prog-card-desc { font-size: var(--text-sm); color: var(--ink-400); flex: 1; margin-bottom: var(--sp-4); }
.prog-card-tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.prog-tag { font-size: var(--text-xs); background: var(--ink-50); color: var(--ink-500); border: 1px solid var(--ink-100); padding: 0.25rem 0.6rem; border-radius: var(--radius-full); display: inline-flex; align-items: center; gap: 4px; }
.prog-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: var(--sp-4); border-top: 1px solid var(--ink-100); }
.prog-price { font-family: var(--font-display); font-size: var(--text-xl); color: var(--navy-900); font-weight: 700; }
.prog-price span { font-family: var(--font-body); font-size: var(--text-xs); color: var(--ink-400); font-weight: 400; }

/* ── SECTION HEADER ──────────────────────────────────── */
.section-header { margin-bottom: var(--sp-7); }
.section-header h2 { margin-bottom: var(--sp-3); }
.section-header p { font-size: var(--text-md); color: var(--ink-400); max-width: 580px; margin: 0; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin-inline: auto; }

/* ── FEATURE TILES ───────────────────────────────────── */
.feature-tile {
  padding: var(--sp-6); border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100); background: var(--white);
}
.feature-tile .ft-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--navy-100); color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.feature-tile h4 { margin-bottom: var(--sp-2); }
.feature-tile p { font-size: var(--text-sm); margin: 0; }

/* ── PAYMENT SUMMARY ─────────────────────────────────── */
.pay-summary {
  background: linear-gradient(140deg, var(--navy-900), var(--navy-700));
  color: var(--white); border-radius: var(--radius-lg);
  padding: var(--sp-6); position: relative; overflow: hidden;
}
.pay-summary .r-motif { position: absolute; right: -50px; top: -50px; width: 200px; height: 200px; opacity: 0.10; pointer-events: none; }
.pay-summary .ps-label { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-400); position: relative; z-index: 2; display: block; margin-bottom: var(--sp-2); }
.pay-summary .ps-amount { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700; position: relative; z-index: 2; margin-bottom: var(--sp-5); }
.pay-summary .ps-rows { border-top: 1px solid rgba(255,255,255,0.15); padding-top: var(--sp-4); position: relative; z-index: 2; }
.pay-summary .ps-row { display: flex; justify-content: space-between; font-size: var(--text-sm); color: rgba(255,255,255,0.75); padding: 5px 0; }
.pay-summary .ps-row strong { color: var(--white); }
.pay-summary .ps-row.ps-total { border-top: 1px solid rgba(255,255,255,0.15); margin-top: var(--sp-2); padding-top: var(--sp-3); font-weight: 700; font-size: var(--text-md); color: var(--white); }

/* ── FEE ITEM ROW ────────────────────────────────────── */
.fee-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: var(--sp-3); padding: var(--sp-4);
  border: 1.5px solid var(--ink-100); border-radius: var(--radius-md);
  cursor: pointer; transition: border-color var(--dur-fast), background var(--dur-fast);
}
.fee-row:hover { border-color: var(--navy-200); }
.fee-row.checked { border-color: var(--navy-700); background: var(--navy-50); }
.fee-row input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--navy-700); flex-shrink: 0; margin-top: 3px; }
.fee-row .fr-info { flex: 1; }
.fee-row .fr-info strong { display: block; font-size: var(--text-sm); color: var(--ink-900); font-weight: 600; }
.fee-row .fr-info span { font-size: var(--text-xs); color: var(--ink-400); }
.fee-row .fr-amount { font-family: var(--font-mono); font-size: var(--text-sm); font-weight: 600; color: var(--navy-900); white-space: nowrap; flex-shrink: 0; }

/* ── PAYMENT METHOD SELECTOR ─────────────────────────── */
.pay-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); margin-bottom: var(--sp-5); }
@media (max-width: 500px) { .pay-methods { grid-template-columns: 1fr; } }
.pay-method { position: relative; }
.pay-method input { position: absolute; opacity: 0; }
.pay-method label {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  border: 1.5px solid var(--ink-100); border-radius: var(--radius-md);
  padding: var(--sp-4); cursor: pointer; text-align: center;
  font-size: var(--text-xs); font-weight: 600; color: var(--ink-500);
  transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast);
}
.pay-method label svg { color: var(--ink-400); }
.pay-method input:checked + label { border-color: var(--navy-700); background: var(--navy-50); color: var(--navy-800); }
.pay-method input:checked + label svg { color: var(--navy-700); }
.pay-method input:focus-visible + label { outline: 2px solid var(--gold-400); outline-offset: 2px; }

/* ── REF BOX ─────────────────────────────────────────── */
.ref-box {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--ink-50); border: 1px dashed var(--ink-200);
  border-radius: var(--radius-md); padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-5);
}
.ref-box .ref-l { font-size: var(--text-xs); color: var(--ink-400); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 2px; }
.ref-box .ref-v { font-family: var(--font-mono); font-size: var(--text-sm); font-weight: 600; color: var(--navy-900); }

/* ── RECEIPT PAGE ────────────────────────────────────── */
.receipt-doc {
  max-width: 520px; margin: var(--sp-7) auto;
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--ink-100); overflow: hidden; box-shadow: var(--shadow-3);
}
.receipt-doc-top {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  text-align: center; padding: var(--sp-8) var(--sp-6) var(--sp-6); position: relative; overflow: hidden;
}
.receipt-doc-top .rc-crest {
  width: 48px; height: 48px; border-radius: 50%; background: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-3); position: relative; z-index: 2;
}
.receipt-doc-top h3 { color: var(--white); margin-bottom: 2px; position: relative; z-index: 2; }
.receipt-doc-top span { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.07em; color: var(--gold-400); position: relative; z-index: 2; }
.receipt-status-zone { text-align: center; padding: var(--sp-5) var(--sp-6) 0; }
.receipt-amount-zone { text-align: center; padding: var(--sp-3) var(--sp-6) var(--sp-5); }
.receipt-amount-zone strong { display: block; font-family: var(--font-display); font-size: 2.5rem; color: var(--navy-900); }
.receipt-amount-zone span { font-size: var(--text-sm); color: var(--ink-400); }
.receipt-rows { padding: 0 var(--sp-6) var(--sp-6); }
.receipt-row { display: flex; justify-content: space-between; padding: var(--sp-3) 0; border-bottom: 1px dashed var(--ink-100); font-size: var(--text-sm); }
.receipt-row:last-child { border-bottom: none; }
.receipt-row span:first-child { color: var(--ink-400); }
.receipt-row span:last-child { font-weight: 600; color: var(--ink-900); }
.receipt-foot { background: var(--ink-50); padding: var(--sp-4) var(--sp-6); text-align: center; font-size: var(--text-xs); color: var(--ink-400); border-top: 1px solid var(--ink-100); }
.receipt-stamp {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  border: 2px solid var(--success-600); color: var(--success-700);
  border-radius: var(--radius-sm); padding: var(--sp-2) var(--sp-4);
  font-weight: 700; font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.06em;
  transform: rotate(-3deg);
}

/* ── LETTER PAGE ─────────────────────────────────────── */
.letter-toolbar {
  background: var(--white); border-bottom: 1px solid var(--ink-100);
  padding: var(--sp-3) var(--sp-6);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 30;
}
.letter-doc {
  max-width: 760px; margin: var(--sp-7) auto;
  background: var(--white); border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-3); padding: var(--sp-11) var(--sp-10);
  position: relative; overflow: hidden;
}
.letter-doc .l-motif { position: absolute; right: -60px; bottom: -60px; width: 280px; height: 280px; opacity: 0.045; pointer-events: none; }
.letter-head { display: flex; align-items: center; gap: var(--sp-4); border-bottom: 2px solid var(--gold-500); padding-bottom: var(--sp-5); margin-bottom: var(--sp-6); position: relative; z-index: 2; }
.letter-head .lh-crest { width: 52px; height: 52px; border-radius: 50%; background: var(--gold-500); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.letter-head h2 { margin: 0; font-size: var(--text-lg); color: var(--navy-900); }
.letter-head p { margin: 0; font-size: var(--text-xs); color: var(--ink-400); text-transform: uppercase; letter-spacing: 0.05em; }
.letter-meta { display: flex; justify-content: space-between; font-size: var(--text-sm); color: var(--ink-400); margin-bottom: var(--sp-6); position: relative; z-index: 2; }
.letter-body { position: relative; z-index: 2; }
.letter-body p { color: var(--ink-700); line-height: 1.8; }
.letter-highlight { background: var(--navy-50); border-left: 3px solid var(--gold-500); padding: var(--sp-4) var(--sp-5); margin: var(--sp-5) 0; font-size: var(--text-sm); }
.letter-sign { display: flex; justify-content: space-between; align-items: flex-end; margin-top: var(--sp-8); position: relative; z-index: 2; }
.letter-sign .ls-name { font-family: var(--font-display); font-size: var(--text-md); font-weight: 700; color: var(--navy-900); display: block; }
.letter-sign .ls-role { font-size: var(--text-xs); color: var(--ink-400); }
.admitted-stamp { border: 2.5px solid var(--success-600); color: var(--success-700); border-radius: var(--radius-md); padding: var(--sp-3) var(--sp-5); text-align: center; transform: rotate(-4deg); }
.admitted-stamp strong { display: block; font-size: var(--text-sm); letter-spacing: 0.06em; text-transform: uppercase; }
.admitted-stamp span { font-size: var(--text-xs); color: var(--ink-400); }
@media print {
  .letter-toolbar, .skip-link { display: none !important; }
  .letter-doc { box-shadow: none; border: none; margin: 0; padding: 2cm; max-width: none; }
  body { background: #fff; }
}

/* ── SETTINGS TABS ───────────────────────────────────── */
.settings-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--ink-100); margin-bottom: var(--sp-6); overflow-x: auto; scrollbar-width: none; }
.settings-tabs::-webkit-scrollbar { display: none; }
.settings-tabs a { padding: var(--sp-3) var(--sp-5); font-size: var(--text-sm); font-weight: 600; color: var(--ink-400); border-bottom: 2.5px solid transparent; white-space: nowrap; text-decoration: none; transition: color var(--dur-fast), border-color var(--dur-fast); }
.settings-tabs a.active { color: var(--navy-900); border-bottom-color: var(--gold-500); }
.settings-tabs a:hover { color: var(--navy-700); }

/* ── TOGGLE SWITCH ───────────────────────────────────── */
.toggle-row { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-4); padding: var(--sp-4) 0; border-bottom: 1px solid var(--ink-50); }
.toggle-row:last-child { border-bottom: none; }
.toggle-row .tr-label strong { display: block; font-size: var(--text-sm); color: var(--ink-900); margin-bottom: 2px; }
.toggle-row .tr-label span { font-size: var(--text-xs); color: var(--ink-400); }
.switch { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .sw-track {
  position: absolute; inset: 0; background: var(--ink-200); border-radius: var(--radius-full); cursor: pointer;
  transition: background var(--dur-fast);
}
.switch .sw-track::before { content: ''; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; background: var(--white); border-radius: 50%; box-shadow: var(--shadow-1); transition: transform var(--dur-fast); }
.switch input:checked + .sw-track { background: var(--navy-700); }
.switch input:checked + .sw-track::before { transform: translateX(18px); }

/* ── FILTER BAR ──────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; margin-bottom: var(--sp-6); padding: var(--sp-4) var(--sp-5); background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-lg); }
.filter-bar select { width: auto; }
.filter-search { flex: 1; min-width: 200px; }

/* ── EMPTY STATE ─────────────────────────────────────── */
.empty-state { text-align: center; padding: var(--sp-10) var(--sp-6); color: var(--ink-400); }
.empty-state svg { color: var(--ink-200); margin-bottom: var(--sp-4); }
.empty-state h3 { color: var(--ink-500); margin-bottom: var(--sp-2); }

/* ── STEP CARD (applicant register flow) ─────────────── */
.step-card { background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-lg); padding: var(--sp-5); display: flex; align-items: flex-start; gap: var(--sp-4); }
.step-card .sc-num { width: 32px; height: 32px; border-radius: 50%; background: var(--navy-100); color: var(--navy-700); font-weight: 700; font-size: var(--text-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-card h4 { margin-bottom: 4px; }
.step-card p { font-size: var(--text-sm); margin: 0; }

/* ── PROGRAMME PAGE (public) ─────────────────────────── */
.prog-overview-grid { display: grid; grid-template-columns: 2fr 1fr; gap: var(--sp-8); align-items: flex-start; }
@media (max-width: 780px) { .prog-overview-grid { grid-template-columns: 1fr; } }
.prog-sidebar-card { position: sticky; top: calc(var(--pubbar-h) + 50px + var(--sp-5)); }

/* ── Row / toolbar action buttons (td-actions, btn-act) ──
 U sed in table rows for View/Resend/Retry etc, and in the                                          *
 topbar as quick links next to the account dropdown. These
 classes had no rules at all, so browsers were rendering
 raw unstyled links/buttons — that's the squashed look.    */
.td-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-2);
  flex-wrap: nowrap;
  white-space: nowrap;
}
.btn-act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.4rem 0.7rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: transparent;
  color: var(--navy-700);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.btn-act-view {
  background: var(--navy-50);
  border-color: var(--navy-100);
  color: var(--navy-700);
}
.btn-act-view:hover { background: var(--navy-100); border-color: var(--navy-700); }
.btn-act-warn {
  background: var(--warning-100);
  border-color: var(--warning-100);
  color: var(--warning-600);
}
.btn-act-warn:hover { background: #fbe6b8; border-color: var(--warning-600); }
.btn-act-danger {
  background: var(--danger-100);
  border-color: var(--danger-100);
  color: var(--danger-600);
}
.btn-act-danger:hover { background: #f8d3d0; border-color: var(--danger-600); }
.btn-act:focus-visible { outline: 2px solid var(--navy-600); outline-offset: 2px; }

/* Keep the actions column pinned right and no wider than needed */
.data-table td:last-child { text-align: right; }

/* Small screens: keep only the primary text action + the kebab
 m enu (which already repeats every action), so rows don't wrap                                     *
 or force the table wider than the viewport. */
@media (max-width: 760px) {
  .data-table .td-actions .btn-act:not(:first-child) { display: none; }
}

/* Topbar quick-links duplicate what's already in the account
 d ropdown, so only show them once there's room for both. */                                        *
 @media (max-width: 1100px) {
   .topbar-right .td-actions .btn-act { display: none; }
 }

 /* ── DataTable sort icons & states ──────────────────── */
 .data-table thead th[data-sort-key] { cursor: pointer; user-select: none; white-space: nowrap; }
 .data-table thead th[data-sort-key]:hover { background: var(--navy-800); }
 .data-table thead th[data-sort-dir="asc"] { background: var(--navy-700); }
 .data-table thead th[data-sort-dir="desc"] { background: var(--navy-700); }
 .sort-icon { display: inline-flex; vertical-align: middle; margin-left: 4px; }
 .page-btn.disabled { opacity: 0.4; cursor: default; pointer-events: none; }

 /* ── Hero animation keyframes ────────────────────────── */
 @keyframes hero-fade-up {
   from { opacity: 0; transform: translateY(28px); }
   to   { opacity: 1; transform: none; }
 }
 @keyframes hero-fade-in {
   from { opacity: 0; }
   to   { opacity: 1; }
 }
 @keyframes float-ring {
   0%,100% { transform: translateY(0) rotate(0deg); }
   50%      { transform: translateY(-18px) rotate(4deg); }
 }
 @keyframes pulse-dot {
   0%,100% { opacity: 1; transform: scale(1); }
   50%      { opacity: 0.5; transform: scale(1.3); }
 }
 .hero-anim-1 { animation: hero-fade-up 0.8s var(--ease) 0.1s both; }
 .hero-anim-2 { animation: hero-fade-up 0.8s var(--ease) 0.25s both; }
 .hero-anim-3 { animation: hero-fade-up 0.8s var(--ease) 0.4s both; }
 .hero-anim-4 { animation: hero-fade-up 0.8s var(--ease) 0.55s both; }
 .ring-float  { animation: float-ring 8s ease-in-out infinite; transform-origin: center; }

 /* ── Mobile nav drawer ───────────────────────────────── */
 .mobile-nav-backdrop {
   display: none; position: fixed; inset: 0;
   background: rgba(11,37,69,0.55); z-index: 150;
   backdrop-filter: blur(2px);
 }
 .mobile-nav-backdrop.show { display: block; }
 .mobile-nav-drawer {
   position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw);
   background: var(--navy-900); z-index: 160;
   transform: translateX(110%);
   transition: transform var(--dur-slow) var(--ease);
   display: flex; flex-direction: column; overflow-y: auto;
   box-shadow: var(--shadow-3);
 }
 .mobile-nav-drawer.open { transform: translateX(0); }
 .mobile-nav-header {
   display: flex; align-items: center; justify-content: space-between;
   padding: var(--sp-5) var(--sp-5);
   border-bottom: 1px solid rgba(255,255,255,0.1);
   flex-shrink: 0;
 }
 .mobile-nav-header .brand { display:flex; align-items:center; gap:var(--sp-3); }
 .mobile-nav-header .brand strong { font-family: var(--font-display); color:#fff; font-size:0.9rem; }
 .mobile-nav-links { padding: var(--sp-4); flex: 1; }
 .mobile-nav-links a {
   display: block; color: rgba(255,255,255,0.75); text-decoration: none;
   padding: var(--sp-3) var(--sp-3); border-radius: var(--radius-md);
   font-size: var(--text-base); font-weight: 500;
   border-bottom: 1px solid rgba(255,255,255,0.06);
 }
 .mobile-nav-links a:last-child { border-bottom: none; }
 .mobile-nav-links a:hover { background: rgba(255,255,255,0.08); color:#fff; }
 .mobile-nav-footer { padding: var(--sp-5); border-top: 1px solid rgba(255,255,255,0.1); display:flex; flex-direction:column; gap:var(--sp-3); flex-shrink:0; }

 /* ── Hero gradient text ──────────────────────────────── */
 .gradient-text {
   background: linear-gradient(135deg, #fff 30%, var(--gold-300) 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }

 /* ── Testimonial card ────────────────────────────────── */
 .testimonial-card {
   background: rgba(255,255,255,0.06);
   border: 1px solid rgba(255,255,255,0.12);
   border-radius: var(--radius-lg);
   padding: var(--sp-6);
 }
 .testimonial-card .tc-quote {
   font-size: var(--text-md); color: rgba(255,255,255,0.85); line-height: 1.7;
   font-style: italic; margin-bottom: var(--sp-5);
 }
 .testimonial-card .tc-author { display:flex; align-items:center; gap:var(--sp-3); }
 .testimonial-card .tc-author strong { display:block; color:#fff; font-size:var(--text-sm); }
 .testimonial-card .tc-author span { color:var(--gold-400); font-size:var(--text-xs); }

 /* ── Scroll indicator ────────────────────────────────── */
 .scroll-indicator {
   position: absolute; bottom: var(--sp-6); left: 50%; transform: translateX(-50%);
   display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
   color: rgba(255,255,255,0.45); font-size: var(--text-xs);
   text-transform: uppercase; letter-spacing: 0.08em; z-index: 3;
   animation: hero-fade-in 1s var(--ease) 1.2s both;
 }
 .scroll-indicator .si-dot {
   width: 24px; height: 38px; border: 1.5px solid rgba(255,255,255,0.3);
   border-radius: 12px; display:flex; align-items:flex-start; justify-content:center;
   padding-top: 5px;
 }
 .scroll-indicator .si-dot::after {
   content:''; width:4px; height:8px; background:var(--gold-400);
   border-radius: 2px; animation: pulse-dot 1.5s ease-in-out infinite;
 }

 /* ── Application form steps ──────────────────────────── */
 [data-step] { display: none; }
 [data-step].step-active { display: block; }
 .step-progress {
   display: flex; align-items: center; gap: 0;
   margin-bottom: var(--sp-7); overflow-x: auto;
   padding-bottom: var(--sp-2); scrollbar-width: none;
 }
 .step-progress::-webkit-scrollbar { display:none; }
 .step-item {
   display: flex; align-items: center; gap: 0;
   flex: 1; min-width: 0;
 }
 .step-item:last-child { flex: 0; }
 .step-item .sp-dot {
   width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
   border: 2px solid var(--ink-200); background: var(--white);
   color: var(--ink-300); display:flex; align-items:center; justify-content:center;
   font-size: var(--text-xs); font-weight: 700; z-index: 2;
   transition: background var(--dur-base), border-color var(--dur-base), color var(--dur-base);
 }
 .step-item .sp-label {
   font-size: var(--text-xs); color: var(--ink-400); white-space: nowrap;
   margin-left: var(--sp-2); font-weight: 600;
 }
 .step-item .sp-line {
   flex: 1; height: 2px; background: var(--ink-100);
   margin: 0 var(--sp-3);
   transition: background var(--dur-base);
 }
 .step-item.done .sp-dot    { background:var(--navy-700); border-color:var(--navy-700); color:#fff; }
 .step-item.done .sp-line   { background: var(--navy-700); }
 .step-item.done .sp-label  { color:var(--navy-900); }
 .step-item.current .sp-dot { border-color:var(--gold-500); color:var(--gold-700); box-shadow:0 0 0 4px var(--gold-100); }
 .step-item.current .sp-label { color:var(--navy-900); font-weight:700; }

 .step-nav {
   display: flex; justify-content: space-between; align-items: center;
   margin-top: var(--sp-7); padding-top: var(--sp-5);
   border-top: 1px solid var(--ink-100);
 }
 .step-counter { font-size: var(--text-sm); color: var(--ink-400); }

 /* ── Section divider line ────────────────────────────── */
 .section-divider {
   display: flex; align-items: center; gap: var(--sp-3);
   margin: var(--sp-5) 0 var(--sp-4);
 }
 .section-divider span {
   font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
   letter-spacing: 0.08em; color: var(--ink-400); white-space: nowrap;
 }
 .section-divider::before, .section-divider::after {
   content:''; flex:1; height:1px; background:var(--ink-100);
 }

 /* ── Input group with prefix ─────────────────────────── */
 .input-prefix-group { display:flex; }
 .input-prefix-group .prefix {
   background: var(--ink-50); border: 1.5px solid var(--ink-200);
   border-right: none; border-radius: var(--radius-md) 0 0 var(--radius-md);
   padding: 0 var(--sp-3); display:flex; align-items:center;
   font-size: var(--text-sm); color: var(--ink-500); white-space:nowrap; flex-shrink:0;
 }
 .input-prefix-group input { border-radius: 0 var(--radius-md) var(--radius-md) 0; }

 /* ── Review summary box ──────────────────────────────── */
 .review-box {
   background: var(--ink-50); border: 1px solid var(--ink-100);
   border-radius: var(--radius-lg); padding: var(--sp-5);
 }
 .review-row {
   display: flex; justify-content: space-between; align-items: baseline;
   padding: var(--sp-2) 0; border-bottom: 1px dashed var(--ink-100);
   font-size: var(--text-sm);
 }
 .review-row:last-child { border-bottom: none; }
 .review-row span { color: var(--ink-400); }
 .review-row strong { color: var(--ink-900); text-align:right; max-width:60%; word-break:break-word; }
