 <style>
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

   /* :root {
      --navy:   #992E00;
      --blue:   #1A4FA0;
      --red:    #C0182A;
      --gold:   #E8A020;
      --light:  #F4F7FC;
      --border: #D8E2F0;
      --text:   #1A2340;
      --muted:  #5A6882;
      --white:  #FFFFFF;
      --green:  #1A8A5A;
      --radius: 12px;
      --shadow: 0 4px 24px rgba(13,43,94,.10);
    }*/

:root {
  --navy:   #1B2A6B;
  --blue:   #2A3F8F;
  --red:    #C9A84C;
  --gold:   #C9A84C;
  --light:  #F8F5EF;
  --border: #E2DAC8;
  --text:   #1A1A2E;
  --muted:  #6B6480;
  --white:  #FFFFFF;
  --green:  #1A8A5A;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(27,42,107,.10);
}

    body {
      font-family: 'Segoe UI', system-ui, sans-serif;
      background: var(--light);
      color: var(--text);
      min-height: 100vh;
		margin: 0;
    }

    /* ── NAV ── */
    nav {
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px;
      height: 64px;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(0,0,0,.25);
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-logo {
      width: 40px;
      height: 40px;
      background: var(--white);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      color: var(--navy);
      font-size: 14px;
      letter-spacing: -.5px;
    }
    .nav-title {
      color: var(--white);
      font-size: 16px;
      font-weight: 600;
      line-height: 1.2;
    }
    .nav-title span {
      display: block;
      font-size: 11px;
      font-weight: 400;
      opacity: .7;
      letter-spacing: .5px;
    }
    .nav-badge {
      background: var(--gold);
      color: var(--navy);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: .3px;
    }

    /* ── PAGE SYSTEM ── */
    .page { display: none; }
    .page.active { display: block; }

    /* ══════════════════════════════════════════
       PAGE 1 – LANDING
    ══════════════════════════════════════════ */
    .hero {
      position: relative;
      background: linear-gradient(135deg, var(--navy) 0%, #1A4FA0 60%, #1A3A8F 100%);
      overflow: hidden;
      padding: 80px 32px 64px;
      text-align: center;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
 .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
    }
    /* dark overlay so text stays readable over the video */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(13, 43, 94, 0.82) 0%,
        rgba(26, 79, 160, 0.70) 60%,
        rgba(13, 43, 94, 0.80) 100%
      );
		  background: linear-gradient(135deg, rgb(12 12 12 / 82%) 0%, rgb(64 64 64 / 70%) 60%, rgb(41 41 42 / 80%) 100%);
      z-index: 1;
    }
    /* all hero content must sit above the overlay */
    .hero > *:not(.hero-video):not(.hero-overlay) {
      position: relative;
      z-index: 2;
    }
    .hero-eyebrow {
      display: inline-block;
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.25);
      color: #D0E4FF;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 20px;
    }
    .hero h1 {
      color: var(--white);
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--gold);
    }
    .hero-sub {
      color: rgba(255,255,255,.75);
      font-size: 16px;
      margin-bottom: 48px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-dates {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 56px;
    }
    .date-chip {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 10px;
      padding: 14px 24px;
      color: var(--white);
      text-align: left;
    }
    .date-chip .label {
      font-size: 10px;
      letter-spacing: 1px;
      text-transform: uppercase;
      opacity: .65;
      margin-bottom: 4px;
    }
    .date-chip .value {
      font-size: 15px;
      font-weight: 700;
    }



@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(26,199,180,.6); }
  100% { box-shadow: 0 0 0 16px rgba(26,199,180,.0); }
}
.cloud-icon {
  animation: ping 1.5s ease-out infinite;
  border-radius: 12px; /* match your icon's border-radius */
}


    /* event cards */
    .event-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      max-width: 860px;
      margin: -40px auto 0;
      padding: 0 24px 64px;
      position: relative;
      z-index: 2;
    }
    .event-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: transform .2s, box-shadow .2s;
      cursor: pointer;
    }
    .event-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(13,43,94,.18);
    }
    .card-header {
      padding: 20px 24px 16px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }
    .card-badge {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .5px;
      padding: 4px 10px;
      border-radius: 6px;
      white-space: nowrap;
    }
    .badge-regular { background: #EBF0FF; color: var(--blue); }
    .badge-cdoe    { background: #FFF0F0; color: var(--red); }
    .card-ordinal {
      font-size: 28px;
      font-weight: 900;
      line-height: 1;
    }
    .ord-regular { color: var(--blue); }
    .ord-cdoe    { color: var(--red); }
    .card-ordinal sup { font-size: 14px; font-weight: 700; }
    .card-label {
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
      margin-top: 2px;
      letter-spacing: .3px;
    }
    .card-body { padding: 20px 24px; }
    .card-title {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 14px;
      line-height: 1.3;
    }
    .card-meta {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
    }
    .meta-row {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--muted);
    }
    .meta-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      opacity: .6;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--blue);
      color: var(--white);
      border: none;
      border-radius: 8px;
      padding: 11px 20px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background .15s, transform .1s;
      text-decoration: none;
    }
    .btn-primary:hover { background: var(--navy); transform: translateY(-1px); }
    .btn-primary.red { background: var(--red); }
    .btn-primary.red:hover { background: #A0121F; }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--blue);
      border: 1.5px solid var(--blue);
      border-radius: 8px;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all .15s;
      text-decoration: none;
    }
    .btn-secondary:hover { background: var(--blue); color: var(--white); }

    /* info strip */
    .info-strip {
      background: var(--white);
      border-top: 3px solid var(--gold);
      padding: 40px 32px;
    }
    .info-strip-inner {
      max-width: 860px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 32px;
    }
    .info-item { text-align: center; }
    .info-item .icon { font-size: 28px; margin-bottom: 8px; }
    .info-item .stat { font-size: 22px; font-weight: 800; color: var(--navy); }
    .info-item .desc { font-size: 13px; color: var(--muted); margin-top: 2px; }

    /* ══════════════════════════════════════════
       PAGE 2 – INFO / NOTIFICATION
    ══════════════════════════════════════════ */
    .page-header {
      background: var(--navy);
      padding: 40px 32px 36px;
      text-align: center;
    }
    .page-header h2 {
      color: var(--white);
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 6px;
    }
    .page-header p { color: rgba(255,255,255,.65); font-size: 14px; }

    .info-content {
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 24px 64px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    @media (max-width: 680px) { .info-content { grid-template-columns: 1fr; } }

    .info-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 28px;
    }
    .info-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .info-card h3 .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }
    .timeline { display: flex; flex-direction: column; gap: 0; }
    .tl-item {
      display: flex;
      gap: 14px;
      position: relative;
    }
    .tl-item:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 15px;
      top: 34px;
      bottom: 0;
      width: 2px;
      background: var(--border);
    }
    .tl-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--light);
      border: 2px solid var(--border);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      position: relative;
      z-index: 1;
    }
    .tl-icon.done { background: var(--green); border-color: var(--green); color: white; }
    .tl-icon.warn { background: var(--gold); border-color: var(--gold); color: white; }
    .tl-icon.active { background: var(--blue); border-color: var(--blue); color: white; }
    .tl-body { padding-bottom: 20px; }
    .tl-body .tl-title { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
    .tl-body .tl-desc { font-size: 12px; color: var(--muted); }
    .tl-body .tl-date {
      display: inline-block;
      margin-top: 4px;
      font-size: 11px;
      font-weight: 700;
      background: #EBF0FF;
      color: var(--blue);
      padding: 2px 8px;
      border-radius: 4px;
    }
    .tl-date.red { background: #FFF0F0; color: var(--red); }

    .download-list { display: flex; flex-direction: column; gap: 12px; }
    .download-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      background: var(--light);
      border-radius: 8px;
      border: 1px solid var(--border);
    }
    .download-item .dl-name { font-size: 13px; font-weight: 600; }
    .download-item .dl-note { font-size: 11px; color: var(--muted); margin-top: 2px; }
    .btn-dl {
      background: var(--blue);
      color: white;
      border: none;
      border-radius: 6px;
      padding: 7px 14px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition: background .15s;
    }
    .btn-dl:hover { background: var(--navy); }

    .eligibility-list { display: flex; flex-direction: column; gap: 10px; }
    .elig-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      line-height: 1.5;
    }
    .elig-check {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #D4F0E0;
      color: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .highlight-box {
      background: #FFF8E7;
      border: 1.5px solid var(--gold);
      border-radius: 8px;
      padding: 12px 16px;
      font-size: 13px;
      font-weight: 600;
      color: #7A5000;
      margin-top: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* ══════════════════════════════════════════
       PAGES 3–5 – FORM FLOW
    ══════════════════════════════════════════ */
    .form-flow { max-width: 700px; margin: 0 auto; padding: 40px 24px 80px; }

    /* stepper */
    .stepper {
      display: flex;
      align-items: center;
      margin-bottom: 40px;
    }
    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      flex: 1;
      position: relative;
    }
    .step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 16px;
      left: 50%;
      width: 100%;
      height: 2px;
      background: var(--border);
      z-index: 0;
    }
    .step.done:not(:last-child)::after,
    .step.active:not(:last-child)::after { background: var(--blue); }
    .step-circle {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid var(--border);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: var(--muted);
      position: relative;
      z-index: 1;
    }
    .step.done .step-circle { background: var(--blue); border-color: var(--blue); color: white; }
    .step.active .step-circle { background: var(--white); border-color: var(--blue); color: var(--blue); box-shadow: 0 0 0 4px rgba(26,79,160,.15); }
    .step-label { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: .3px; white-space: nowrap; }
    .step.active .step-label { color: var(--blue); }
    .step.done .step-label { color: var(--navy); }

    /* form card */
    .form-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 36px;
    }
    .form-card h2 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 4px;
      color: var(--navy);
    }
    .form-card .subtitle {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 32px;
    }

    /* lookup */
    .lookup-wrap {
      max-width: 380px;
      margin: 0 auto;
      text-align: center;
    }
    .lookup-icon {
      width: 64px;
      height: 64px;
      background: var(--light);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 28px;
    }
    .form-group {
      text-align: left;
      margin-bottom: 20px;
    }
    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .4px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }
    .form-group label .req { color: var(--red); margin-left: 2px; }
    .form-control {
      width: 90%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-size: 14px;
      color: var(--text);
      background: var(--white);
      transition: border-color .15s, box-shadow .15s;
      outline: none;
    }
    .form-control:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(26,79,160,.12);
    }
    .form-control:disabled {
      background: var(--light);
      color: var(--muted);
      cursor: not-allowed;
    }
    .form-control.verified {
      border-color: var(--green);
      background: #F4FBF7;
    }

    /* section headers */
    .form-section-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--blue);
      padding-bottom: 8px;
      border-bottom: 2px solid var(--border);
      margin: 28px 0 20px;
    }
    .form-section-title:first-of-type { margin-top: 0; }

    /* grid layouts */
    .form-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .form-grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .form-grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    @media (max-width: 560px) {
      .form-grid-3, .form-grid-4 { grid-template-columns: 1fr 1fr; }
      .form-grid-2 { grid-template-columns: 1fr; }
    }

    /* degree preference */
    .pref-options { display: flex; flex-direction: column; gap: 12px; }
    .pref-option {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      cursor: pointer;
      transition: border-color .15s, background .15s;
    }
    .pref-option:hover { border-color: var(--blue); background: #F8FAFF; }
    .pref-option.selected { border-color: var(--blue); background: #EEF3FF; }
    .pref-option input[type="radio"] { display: none; }
    .radio-dot {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid var(--border);
      flex-shrink: 0;
      margin-top: 1px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color .15s;
    }
    .pref-option.selected .radio-dot { border-color: var(--blue); }
    .radio-dot::after {
      content: '';
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--blue);
      opacity: 0;
      transition: opacity .15s;
    }
    .pref-option.selected .radio-dot::after { opacity: 1; }
    .pref-content .pref-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
    .pref-content .pref-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }
    .pref-fee {
      margin-left: auto;
      font-size: 15px;
      font-weight: 800;
      color: var(--navy);
      white-space: nowrap;
    }

    .dress-note {
      background: var(--light);
      border-left: 3px solid var(--gold);
      border-radius: 0 8px 8px 0;
      padding: 12px 16px;
      font-size: 12px;
      color: var(--text);
      margin-top: 12px;
      line-height: 1.6;
    }

    /* payment summary */
    .pay-summary {
      background: var(--light);
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 28px;
    }
    .pay-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 0;
      font-size: 13px;
    }
    .pay-row .label { color: var(--muted); }
    .pay-row .value { font-weight: 600; }
    .pay-divider { height: 1px; background: var(--border); margin: 8px 0; }
    .pay-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 18px;
      font-weight: 800;
      color: var(--navy);
      margin-top: 4px;
    }

    .pay-methods { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
    .pay-method {
      flex: 1;
      min-width: 100px;
      padding: 14px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      text-align: center;
      cursor: pointer;
      transition: border-color .15s, background .15s;
    }
    .pay-method:hover { border-color: var(--blue); }
    .pay-method.selected { border-color: var(--blue); background: #EEF3FF; }
    .pay-method .pm-icon { font-size: 22px; margin-bottom: 4px; }
    .pay-method .pm-label { font-size: 12px; font-weight: 600; }

    .verified-banner {
      background: #F0FBF5;
      border: 1.5px solid #A8DFC0;
      border-radius: 10px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 600;
      color: var(--green);
      margin-bottom: 24px;
    }

    /* form actions */

.field-error-msg {
  display: none;
  font-size: 11px;
  font-weight: 600;
  color: #C0182A;
  margin-top: 5px;
  padding: 4px 8px;
  background: #FFF5F5;
  border-left: 3px solid #C0182A;
  border-radius: 0 4px 4px 0;
}


    .form-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 32px;
      gap: 12px;
    }
    .btn-back {
      background: transparent;
      border: 1.5px solid var(--border);
      color: var(--muted);
      border-radius: 8px;
      padding: 11px 20px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all .15s;
    }
    .btn-back:hover { border-color: var(--navy); color: var(--navy); }
    .btn-submit {
      flex: 1;
      background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
      color: var(--white);
      border: none;
      border-radius: 8px;
      padding: 13px 28px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: opacity .15s, transform .1s;
    }
    .btn-submit:hover { opacity: .92; transform: translateY(-1px); }
    .btn-submit.green { background: linear-gradient(135deg, #1A8A5A 0%, #0F5C3D 100%); }

    /* ── SUCCESS ── */
    .success-wrap {
      text-align: center;
      padding: 60px 24px;
    }
    .success-icon {
      width: 80px;
      height: 80px;
      background: #D4F0E0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      margin: 0 auto 24px;
    }
    .success-wrap h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
    .success-wrap p { font-size: 14px; color: var(--muted); margin-bottom: 32px; max-width: 380px; margin-left: auto; margin-right: auto; }
    .receipt-box {
      background: var(--light);
      border-radius: 10px;
      padding: 20px;
      max-width: 400px;
      margin: 0 auto 32px;
      text-align: left;
    }
    .receipt-row {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      padding: 5px 0;
      border-bottom: 1px solid var(--border);
    }
    .receipt-row:last-child { border-bottom: none; }
    .receipt-row .r-label { color: var(--muted); }
    .receipt-row .r-value { font-weight: 600; }


/* ── FOOTER ── */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,.75);
      margin-top: 0;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
      gap: 40px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 56px 32px 48px;
    }
    @media (max-width: 860px) {
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 520px) {
      .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 32px; }
    }
    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }
    .footer-logo {
      width: 44px;
      height: 44px;
      background: var(--white);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      color: var(--navy);
      font-size: 14px;
      flex-shrink: 0;
    }
    .footer-name {
      color: var(--white);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.2;
    }
    .footer-tagline {
      font-size: 11px;
      opacity: .6;
      line-height: 1.4;
    }
    .footer-about {
      font-size: 13px;
      line-height: 1.7;
      margin-bottom: 16px;
      opacity: .7;
    }
    .footer-accreditations {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .accred-badge {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      color: rgba(255,255,255,.85);
      font-size: 10px;
      font-weight: 700;
      padding: 3px 9px;
      border-radius: 4px;
      letter-spacing: .3px;
    }
    .footer-heading {
      color: var(--white);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }
    .footer-links a {
      color: rgba(255,255,255,.65);
      text-decoration: none;
      font-size: 13px;
      transition: color .15s;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-links a::before {
      content: '›';
      color: var(--gold);
      font-size: 15px;
    }
    .footer-links a:hover { color: var(--white); }
    .footer-contact {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      line-height: 1.6;
    }
    .contact-icon { flex-shrink: 0; font-size: 15px; margin-top: 1px; }
    .footer-dates {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-date-item {
      padding: 10px 14px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 8px;
    }
    .footer-date-item.highlight {
      background: rgba(232,160,32,.12);
      border-color: rgba(232,160,32,.35);
    }
    .fd-date {
      color: var(--white);
      font-size: 14px;
      font-weight: 700;
    }
    .footer-date-item.highlight .fd-date { color: var(--gold); }
    .fd-label { font-size: 11px; opacity: .65; margin-top: 2px; }
    .footer-bottom {
      background: rgba(0,0,0,.25);
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 16px 32px;
    }
    .footer-bottom-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 12px;
      opacity: .6;
    }
    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }
    .footer-bottom-links a {
      color: inherit;
      text-decoration: none;
      transition: opacity .15s;
    }
    .footer-bottom-links a:hover { opacity: 1; }
 
    /* ── DEMO NAV ── */
    .demo-nav {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      z-index: 999;
    }
    .demo-btn {
      background: var(--navy);
      color: white;
      border: none;
      border-radius: 8px;
      padding: 8px 14px;
      font-size: 11px;
      font-weight: 600;
      cursor: pointer;
      opacity: .85;
      text-align: left;
      transition: opacity .15s;
      white-space: nowrap;
    }
    .demo-btn:hover { opacity: 1; }
    .demo-btn.active { background: var(--blue); opacity: 1; }
    .demo-label {
      font-size: 9px;
      letter-spacing: .5px;
      text-transform: uppercase;
      color: rgba(255,255,255,.6);
      text-align: right;
      padding: 0 4px;
    }