/* ============================================================
   CGTS 2026 — Refined Academic Theme
   Palette: Deep Navy + Antique Gold + Ivory
   Typography: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ─── CSS Variables ─── */
:root {
  --navy:         #008080;
  --navy-mid:     #008080;
  --navy-light:   #1e3a6e;
  --gold:         #b8963e;
  --gold-light:   #d4af6a;
  --gold-pale:    #f5edd8;
  --ivory:        #ffffff;
  --ivory-dark:   #f0f2f5;
  --white:        #ffffff;
  --slate:        #4a5568;
  --slate-light:  #718096;
  --border:       rgba(184,150,62,0.2);
  --border-mid:   rgba(184,150,62,0.3);
  --border-strong:rgba(184,150,62,0.45);
  --shadow-sm:    0 1px 4px rgba(13,31,60,0.06);
  --shadow-card:  0 4px 24px rgba(13,31,60,0.08), 0 1px 4px rgba(13,31,60,0.04);
  --shadow-lg:    0 12px 48px rgba(13,31,60,0.14);
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #ffffff;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.65;
  height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0;
}

main {
  flex: 1;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

/* ─── NAV ─── */
.cgts-nav {
  background: #faf8f4;
  border-bottom: 1px solid #e8e4dc;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.cgts-nav .container-nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cgts-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.cgts-brand-emblem {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cgts-brand-emblem svg { width: 18px; height: 18px; fill: var(--gold); }
.cgts-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.cgts-brand-name span {
  display: block;
  font-size: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 1px;
}
.cgts-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.cgts-nav-links a {
  text-decoration: none;
  color: #3a4a5c;
  font-size: 13px;
  font-weight: 400;
  padding: 7px 16px;
  border-radius: 7px;
  transition: all 0.2s;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.2px;
}
.cgts-nav-links a:hover { color: var(--navy); background: rgba(10,29,55,0.05); }
.cgts-nav-links a.active { color: var(--navy); font-weight: 600; }
.cgts-nav-links a.nav-cta {
  background: var(--navy);
  color: #ffffff !important;
  font-weight: 500;
  border-color: var(--navy);
}
.cgts-nav-links a.nav-cta:hover { background: var(--navy-mid); color: #ffffff !important; }
.cgts-nav-links a.nav-cta svg { fill: #ffffff !important; }

/* ─── PAGE WRAPPER ─── */
.cgts-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── SECTION ANATOMY ─── */
.cgts-section { padding: 56px 0; }
.cgts-section-sm { padding: 36px 0; }
.cgts-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cgts-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.cgts-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}
.cgts-heading em { font-style: italic; color: var(--gold); }
.cgts-lead {
  font-size: 14px;
  color: var(--slate-light);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ─── CARDS ─── */
.cgts-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.cgts-card-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.cgts-card-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-pale);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cgts-card-icon svg { width: 17px; height: 17px; fill: var(--gold); }
.cgts-card-title { font-size: 15px; font-weight: 500; color: var(--navy); line-height: 1.3; }
.cgts-card-subtitle { font-size: 12px; color: var(--slate-light); font-weight: 300; margin-top: 2px; }
.cgts-card-body { padding: 28px; }

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 11px 28px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  letter-spacing: 0.2px;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(184,150,62,0.3); }
.btn-gold:active { transform: translateY(0); }
.btn-gold svg { width: 15px; height: 15px; fill: var(--navy); flex-shrink: 0; }

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 11px 28px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-navy:active { transform: translateY(0); }
.btn-navy svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 10px 26px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-outline-gold:hover { background: var(--gold-pale); border-color: var(--gold); color: var(--navy); }

.btn-full { width: 100%; justify-content: center; padding: 13px; }

/* ─── FORMS ─── */
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-grid-1 { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.form-label .req { color: var(--gold); }

.form-control {
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--navy);
  font-family: inherit;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:hover { border-color: rgba(184,150,62,0.4); }
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,62,0.12);
}
.form-control::placeholder { color: var(--slate-light); font-weight: 300; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23718096' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
textarea.form-control { resize: vertical; min-height: 80px; line-height: 1.6; }

.radio-group { display: flex; gap: 10px; margin-top: 4px; }
.radio-btn {
  flex: 1;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.18s;
  display: flex;
  align-items: center;
  gap: 9px;
  user-select: none;
}
.radio-btn input[type="radio"] { display: none; }
.radio-btn:has(input:checked) { border-color: var(--gold); background: var(--gold-pale); }
.radio-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  flex-shrink: 0;
  transition: all 0.18s;
  position: relative;
}
.radio-btn:has(input:checked) .radio-dot {
  border-color: var(--gold);
  background: var(--gold);
}
.radio-btn:has(input:checked) .radio-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
}
.radio-text { font-size: 13px; color: var(--navy); }

.form-section-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 24px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.form-divider { border: none; border-top: 1px solid var(--border); margin: 22px 0; }

/* ─── ALERTS ─── */
.cgts-alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.cgts-alert svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; margin-top: 1px; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fcd34d; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #86efac; }
.alert-danger  { background: #fff1f2; color: #9f1239; border: 1px solid #fda4af; }
.alert-info    { background: #eff6ff; color: #1e40af; border: 1px solid #93c5fd; }

/* ─── STATUS PILLS ─── */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}
.status-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.pill-success { background: #dcfce7; color: #166534; }
.pill-pending { background: #fef3c7; color: #92400e; }
.pill-failed  { background: #fee2e2; color: #991b1b; }

/* ─── SIDEBAR ─── */
.cgts-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.sidebar-title {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 14px;
  font-weight: 400;
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--ivory-dark);
  font-size: 13px;
  gap: 8px;
}
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--slate-light); font-weight: 300; flex-shrink: 0; }
.info-value { color: var(--navy); font-weight: 500; text-align: right; }

/* ─── AVATAR ─── */
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

/* ─── DATA TABLE ─── */
.cgts-table-wrap { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.cgts-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.cgts-table thead th {
  text-align: left;
  padding: 13px 18px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate-light);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  background: var(--ivory);
  white-space: nowrap;
}
.cgts-table tbody tr {
  border-bottom: 1px solid var(--ivory-dark);
  transition: background 0.12s;
}
.cgts-table tbody tr:last-child { border-bottom: none; }
.cgts-table tbody tr:hover { background: var(--ivory); }
.cgts-table tbody td { padding: 13px 18px; color: var(--navy); vertical-align: middle; }
.cgts-table td.muted { color: var(--slate-light); font-weight: 300; }

/* ─── FOOTER ─── */
.cgts-footer {
  background: var(--navy);
  border-top: 1px solid rgba(184,150,62,0.15);
  padding: 28px 0;
  margin-top: auto;
}
.cgts-footer .container-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.38); font-weight: 300; }
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--gold);
  font-weight: 400;
}

/* ─── PROGRESS BAR ─── */
.progress-bar-track {
  height: 4px;
  background: var(--ivory-dark);
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* ─── LAYOUT HELPERS ─── */
.two-col { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.flex-center { display: flex; align-items: center; gap: 12px; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.text-muted { color: var(--slate-light); }
.text-small { font-size: 12px; font-weight: 300; }
.text-center { text-align: center; }

/* ─── STAT CARDS ─── */
.stat-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 10px;
  font-weight: 400;
}
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-sub { font-size: 12px; color: var(--slate-light); font-weight: 300; }
.stat-up { color: #166534; }
.stat-warn { color: #92400e; }

/* ─── FEE CARDS ─── */
.fee-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
  position: relative;
  background: var(--white);
}
.fee-card:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.fee-card.featured { border-color: var(--gold); }
.fee-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}
.fee-card-head { background: var(--ivory); padding: 20px 22px; border-bottom: 1px solid var(--border); }
.fee-card.featured .fee-card-head { padding-top: 28px; }
.fee-cat { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--slate-light); margin-bottom: 4px; }
.fee-who { font-size: 12px; color: var(--slate); font-weight: 300; }
.fee-card-body { padding: 18px 22px; }
.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--ivory-dark);
  gap: 8px;
}
.fee-row:last-child { border-bottom: none; }
.fee-type { font-size: 12px; color: var(--slate-light); font-weight: 300; flex: 1; line-height: 1.4; }
.fee-deadline { font-size: 10px; color: var(--gold); display: block; margin-top: 2px; }
.fee-amount { font-size: 15px; font-weight: 500; color: var(--navy); font-variant-numeric: tabular-nums; white-space: nowrap; }
.fee-curr { font-size: 10px; color: var(--slate-light); margin-left: 2px; }

/* ─── ID CARD ─── */
.id-card-shell {
  background: linear-gradient(135deg, #008080 0%, #182f56 55%, #0d2848 100%);
  border: 1px solid rgba(184,150,62,0.3);
  border-radius: 18px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,31,60,0.3);
}
.id-card-shell::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,62,0.08);
}
.id-card-shell::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,62,0.12);
}
.id-event-tag {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
}
.id-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
  position: relative;
}
.id-dept {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  position: relative;
  margin-bottom: 18px;
}
.id-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(184,150,62,0.15);
  border: 1px solid rgba(184,150,62,0.3);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}
.id-divider { border: none; border-top: 1px solid rgba(184,150,62,0.2); margin: 18px 0; }
.id-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; }
.id-meta-label { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.id-meta-value { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 300; }
.id-qr { position: absolute; bottom: 22px; right: 22px; opacity: 0.55; }
.id-qr svg { width: 52px; height: 52px; }

/* ─── HERO ─── */
.cgts-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 76px 0 88px;
}
.cgts-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 90% at 85% 50%, rgba(184,150,62,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 5% 85%, rgba(30,58,110,0.6) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: center; }
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-title strong { font-weight: 600; display: block; }
.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin: 20px 0 32px;
  font-weight: 300;
  max-width: 440px;
  line-height: 1.75;
}
.hero-meta-strip { display: flex; gap: 32px; margin-bottom: 36px; }
.hero-meta-item { display: flex; flex-direction: column; gap: 3px; }
.hero-meta-lbl { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.hero-meta-val { font-size: 14px; color: var(--white); font-weight: 400; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Step card in hero */
.hero-step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,150,62,0.18);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(4px);
}
.hero-step-card-title { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.step-list { display: flex; flex-direction: column; }
.step-item { display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,62,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--gold);
  flex-shrink: 0; font-weight: 500;
}
.step-num.done { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.step-text strong { display: block; font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 2px; }
.step-text span { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 300; }
.hero-notice {
  margin-top: 18px;
  background: rgba(184,150,62,0.1);
  border: 1px solid rgba(184,150,62,0.25);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--gold-light);
  line-height: 1.5;
}
.hero-notice strong { display: block; font-size: 12px; color: var(--gold); margin-bottom: 1px; }

/* ─── Notify modal (admin) ─── */
.notify-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,31,60,0.6);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.notify-modal-bg.open { display: flex; }
.notify-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 440px;
  max-width: 95vw;
  box-shadow: var(--shadow-lg);
}
.notify-modal h4 { font-size: 17px; font-weight: 500; margin-bottom: 18px; color: var(--navy); }
.notify-modal textarea { width: 100%; height: 100px; }
.notify-modal-btns { display: flex; gap: 10px; margin-top: 18px; justify-content: flex-end; }

/* ─── Payment amount display ─── */
.fee-display-box {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0;
}
.fee-display-lbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--slate-light); margin-bottom: 6px; }
.fee-display-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.fee-display-note { font-size: 12px; color: var(--slate-light); margin-top: 4px; }
.fee-code-lbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--slate-light); margin-bottom: 6px; text-align: right; }
.fee-code-val { font-size: 18px; font-weight: 600; color: var(--navy); letter-spacing: 3px; text-align: right; font-variant: small-caps; }
