    /* =============================================
       DESIGN SYSTEM — CSS CUSTOM PROPERTIES
       ============================================= */
    :root {
      --teal:           #3AA89D;
      --teal-d:         #267D74;
      --teal-xd:        #1A5C55;
      --teal-l:         #E2F6F4;
      --teal-mid:       #9FDBD7;
      --bg:             #F4F9F8;
      --bg2:            #EDF6F5;
      --card:           #FFFFFF;
      --border:         #C8E6E3;
      --text:           #0F2826;
      --text2:          #3A5854;
      --text3:          #7A9B98;
      --accent-gold:    #e8a020;
      --accent-gold-l:  #fdf3dc;
      --accent-red:     #e05c3a;
      --accent-red-l:   #fdf0ec;
      --accent-green:   #2a9d6e;
      --accent-green-l: #e4f7ef;
      --accent-blue:    #2980c0;
      --accent-blue-l:  #e8f2fc;
      --accent-purple:  #7b5ea7;
      --accent-purple-l:#f0eaf8;
      --r:    14px;
      --rs:   8px;
      --sh:   0 2px 16px rgba(26,92,85,.08);
      --sh-md:0 4px 24px rgba(26,92,85,.12);
    }

    /* =============================================
       RESET & BASE
       ============================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      font-size: 16px;
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      color: var(--text);
      background:
        radial-gradient(ellipse 80% 40% at 15% 20%, rgba(165,218,213,.18) 0%, transparent 70%),
        radial-gradient(ellipse 60% 35% at 85% 75%, rgba(180,225,215,.14) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(232,248,246,.12) 0%, transparent 80%),
        var(--bg);
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* Force light mode */
    html, body, * { color-scheme: light !important; }

    /* Typography */
    h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
    h4, h5, h6, p, span, div, button, input, select, label {
      font-family: 'Outfit', sans-serif;
    }

    a { color: var(--teal-d); text-decoration: none; }
    a:hover { text-decoration: underline; }

    /* =============================================
       BILINGUAL HELPERS
       ============================================= */
    .zh { display: inline; }
    .en { display: none; }
    div.zh { display: block; }
    div.en { display: none; }
    p.zh  { display: block; }
    p.en  { display: none; }
    li.zh { display: list-item; }
    li.en { display: none; }

    body.en-mode .zh      { display: none !important; }
    body.en-mode .en      { display: inline !important; }
    body.en-mode div.zh   { display: none !important; }
    body.en-mode div.en   { display: block !important; }
    body.en-mode p.zh     { display: none !important; }
    body.en-mode p.en     { display: block !important; }
    body.en-mode li.zh    { display: none !important; }
    body.en-mode li.en    { display: list-item !important; }

    /* =============================================
       PASSWORD GATE
       ============================================= */
    #gate-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: linear-gradient(135deg, var(--teal-xd) 0%, var(--teal-d) 60%, var(--teal) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      transition: opacity .4s ease;
    }
    #gate-overlay.is-hidden {
      opacity: 0;
      pointer-events: none;
    }
    .gate-box {
      background: rgba(255,255,255,.12);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 20px;
      padding: 48px 40px;
      width: 100%;
      max-width: 420px;
      text-align: center;
      box-shadow: 0 8px 40px rgba(0,0,0,.25);
    }
    .gate-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #7EEAE5;
      letter-spacing: .04em;
      margin-bottom: 6px;
    }
    .gate-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .gate-sub {
      font-size: .9rem;
      color: rgba(255,255,255,.7);
      margin-bottom: 32px;
    }
    .gate-input-wrap {
      position: relative;
      margin-bottom: 16px;
    }
    #gate-pw {
      width: 100%;
      padding: 14px 48px 14px 18px;
      border-radius: var(--r);
      border: 2px solid rgba(255,255,255,.3);
      background: rgba(255,255,255,.15);
      color: #fff;
      font-size: 1rem;
      font-family: 'Outfit', sans-serif;
      outline: none;
      transition: border-color .2s;
    }
    #gate-pw::placeholder { color: rgba(255,255,255,.5); }
    #gate-pw:focus { border-color: rgba(255,255,255,.7); }
    #gate-toggle-pw {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      cursor: pointer;
      color: rgba(255,255,255,.6);
      font-size: 1rem;
      padding: 4px;
      line-height: 1;
    }
    #gate-error {
      color: #ffd0c4;
      font-size: .85rem;
      margin-bottom: 12px;
      min-height: 20px;
      transition: opacity .2s;
    }
    #gate-submit {
      width: 100%;
      padding: 14px;
      border-radius: var(--r);
      border: none;
      background: #fff;
      color: var(--teal-xd);
      font-family: 'Outfit', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s, transform .15s;
    }
    #gate-submit:hover { background: var(--teal-l); }
    #gate-submit:active { transform: scale(.98); }

    @keyframes gate-shake {
      0%,100% { transform: translateX(0); }
      20%      { transform: translateX(-8px); }
      40%      { transform: translateX(8px); }
      60%      { transform: translateX(-6px); }
      80%      { transform: translateX(6px); }
    }
    .gate-shake { animation: gate-shake .4s ease; }

    /* =============================================
       LANGUAGE BAR
       ============================================= */
    #lang-bar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 900;
      background: var(--teal-xd);
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }
    .lang-btn {
      padding: 4px 14px;
      border-radius: 20px;
      border: 1px solid transparent;
      font-family: 'Outfit', sans-serif;
      font-size: .8rem;
      font-weight: 600;
      cursor: pointer;
      background: transparent;
      color: rgba(255,255,255,.65);
      transition: all .2s;
    }
    .lang-btn.active {
      background: rgba(255,255,255,.18);
      border-color: rgba(255,255,255,.4);
      color: #fff;
    }
    .lang-btn:hover:not(.active) { color: #fff; }

    /* =============================================
       STICKY HEADER
       ============================================= */
    #site-header {
      position: fixed;
      top: 36px; left: 0; right: 0;
      z-index: 800;
      height: 60px;
      background: rgba(244,249,248,.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      padding: 0 20px;
      gap: 16px;
    }
    .header-brand {
      font-family: 'Playfair Display', serif;
      font-size: .95rem;
      font-weight: 700;
      color: var(--teal-xd);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .header-brand span { color: var(--teal); }

    .header-nav {
      display: flex;
      gap: 4px;
      align-items: center;
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      flex: 1;
    }
    .header-nav::-webkit-scrollbar { display: none; }

    .nav-btn {
      padding: 6px 12px;
      border-radius: 20px;
      border: 1px solid transparent;
      font-family: 'Outfit', sans-serif;
      font-size: .8rem;
      font-weight: 500;
      cursor: pointer;
      background: transparent;
      color: var(--text2);
      white-space: nowrap;
      transition: all .2s;
      flex-shrink: 0;
    }
    .nav-btn:hover { background: var(--teal-l); color: var(--teal-xd); }
    .nav-btn.active {
      background: var(--teal);
      color: #fff;
      border-color: var(--teal-d);
    }

    /* Hamburger button */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      margin-left: auto;
      flex-shrink: 0;
      padding: 6px;
    }
    .hamburger span {
      display: block;
      height: 2px;
      background: var(--teal-xd);
      border-radius: 2px;
      transition: all .3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile slide-in panel */
    #mobile-menu {
      position: fixed;
      top: 0; right: 0;
      width: 280px;
      height: 100vh;
      z-index: 850;
      background: var(--card);
      box-shadow: -4px 0 30px rgba(0,0,0,.15);
      transform: translateX(100%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
      overflow-y: auto;
      padding: 0 0 32px;
    }
    #mobile-menu.open { transform: translateX(0); }
    .mobile-menu-header {
      background: linear-gradient(135deg, var(--teal-xd), var(--teal-d));
      padding: 24px 20px 20px;
      margin-bottom: 8px;
    }
    .mobile-menu-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: #7EEAE5;
      margin-bottom: 4px;
    }
    .mobile-menu-sub {
      font-size: .78rem;
      color: rgba(255,255,255,.65);
    }
    .mobile-lang-row {
      display: flex;
      gap: 8px;
      margin-top: 14px;
    }
    .mobile-lang-btn {
      flex: 1;
      padding: 8px;
      border-radius: var(--rs);
      border: 1px solid rgba(255,255,255,.3);
      background: transparent;
      color: rgba(255,255,255,.7);
      font-family: 'Outfit', sans-serif;
      font-size: .82rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
    }
    .mobile-lang-btn.active {
      background: rgba(255,255,255,.2);
      color: #fff;
      border-color: rgba(255,255,255,.6);
    }
    .mobile-nav-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 13px 20px;
      font-family: 'Outfit', sans-serif;
      font-size: .9rem;
      font-weight: 500;
      color: var(--text2);
      cursor: pointer;
      border-bottom: 1px solid var(--teal-l);
      transition: all .15s;
      -webkit-tap-highlight-color: transparent;
    }
    .mobile-nav-item:hover,
    .mobile-nav-item.active { background: var(--teal-l); color: var(--teal-xd); }
    .mobile-nav-icon { font-size: 1.1rem; width: 24px; text-align: center; flex-shrink: 0; }
    .mobile-menu-footer {
      padding: 20px 20px 0;
    }
    .mobile-ext-link {
      display: block;
      text-align: center;
      padding: 10px;
      border-radius: var(--rs);
      background: var(--teal-l);
      color: var(--teal-xd);
      font-size: .85rem;
      font-weight: 600;
      margin-top: 8px;
    }
    #menu-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 840;
      background: rgba(0,0,0,.35);
    }
    #menu-backdrop.open { display: block; }

    /* =============================================
       MAIN CONTENT AREA
       ============================================= */
    #content {
      padding-top: 96px; /* lang-bar(36) + header(60) */
      min-height: 100vh;
    }

    /* =============================================
       TAB SECTIONS
       ============================================= */
    .section {
      display: none;
      min-height: calc(100vh - 96px);
      padding-bottom: 60px;
      animation: fadeIn .3s ease;
    }
    .section.active { display: block; }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* =============================================
       SHARED CARD / CONTAINER UTILITIES
       ============================================= */
    .container {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .container-wide {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .card {
      background: var(--card);
      border-radius: var(--r);
      box-shadow: var(--sh);
      border: 1px solid var(--border);
      padding: 24px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--teal-xd);
      margin-bottom: 8px;
    }
    .section-subtitle {
      font-size: 1rem;
      color: var(--text2);
      margin-bottom: 32px;
    }

    .badge {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .02em;
    }
    .badge-green  { background: var(--accent-green-l); color: var(--accent-green); }
    .badge-gold   { background: var(--accent-gold-l);  color: var(--accent-gold); }
    .badge-blue   { background: var(--accent-blue-l);  color: var(--accent-blue); }
    .badge-purple { background: var(--accent-purple-l);color: var(--accent-purple); }
    .badge-red    { background: var(--accent-red-l);   color: var(--accent-red); }
    .badge-teal   { background: var(--teal-l);         color: var(--teal-xd); }

    /* =============================================
       BACK TO TOP BUTTON
       ============================================= */
    #back-to-top {
      position: fixed;
      bottom: 28px;
      right: 20px;
      z-index: 700;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--teal);
      color: #fff;
      border: none;
      cursor: pointer;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(58,168,157,.35);
      opacity: 0;
      transform: translateY(16px);
      transition: opacity .3s, transform .3s;
      pointer-events: none;
    }
    #back-to-top.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    #back-to-top:hover { background: var(--teal-d); }

    /* =============================================
       WATERMARK
       ============================================= */
    #watermark {
      position: fixed;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      font-size: .7rem;
      color: var(--text);
      opacity: 0.025;
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
    }

    /* =============================================
       OVERVIEW TAB STYLES
       ============================================= */

    /* Hero */
    .overview-hero {
      background: linear-gradient(135deg, var(--teal-xd) 0%, var(--teal-d) 55%, var(--teal) 100%);
      padding: 56px 20px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .overview-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 20% 30%, rgba(255,255,255,.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 70%, rgba(255,255,255,.04) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-eyebrow {
      display: inline-block;
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.3);
      color: #7EEAE5;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .08em;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 20px;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 14px;
      position: relative;
    }
    .hero-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,.82);
      max-width: 580px;
      margin: 0 auto 28px;
      line-height: 1.55;
    }
    .hero-cta-row {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-hero-primary {
      padding: 13px 28px;
      border-radius: 30px;
      border: none;
      background: #fff;
      color: var(--teal-xd);
      font-family: 'Outfit', sans-serif;
      font-size: .95rem;
      font-weight: 700;
      cursor: pointer;
      transition: all .2s;
      box-shadow: 0 4px 16px rgba(0,0,0,.15);
    }
    .btn-hero-primary:hover { background: var(--teal-l); transform: translateY(-2px); }
    .btn-hero-secondary {
      padding: 13px 28px;
      border-radius: 30px;
      border: 2px solid rgba(255,255,255,.5);
      background: transparent;
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-size: .95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
    }
    .btn-hero-secondary:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }

    /* Stat cards */
    .stat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      position: relative;
      z-index: 10;
      max-width: 960px;
      margin: 24px auto 0;
      padding: 0 20px;
    }
    .stat-card {
      background: var(--card);
      border-radius: var(--r);
      box-shadow: var(--sh-md);
      border: 1px solid var(--border);
      padding: 20px 16px;
      text-align: center;
      transition: transform .2s;
    }
    .stat-card:hover { transform: translateY(-3px); }
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: .78rem;
      color: var(--text2);
      font-weight: 500;
      line-height: 1.35;
    }
    .stat-green  .stat-number { color: var(--accent-green); }
    .stat-gold   .stat-number { color: var(--accent-gold); }
    .stat-blue   .stat-number { color: var(--accent-blue); }
    .stat-purple .stat-number { color: var(--accent-purple); }

    /* Program essence cards */
    .essence-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 32px;
    }
    .essence-card {
      background: var(--card);
      border-radius: var(--r);
      box-shadow: var(--sh);
      border: 1px solid var(--border);
      padding: 22px;
    }
    .essence-tag {
      display: inline-block;
      background: var(--teal-l);
      color: var(--teal-xd);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .06em;
      padding: 3px 10px;
      border-radius: 20px;
      margin-bottom: 10px;
    }
    .essence-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--teal-xd);
      margin-bottom: 8px;
    }
    .essence-text {
      font-size: .88rem;
      color: var(--text2);
      line-height: 1.6;
    }

    @media (max-width: 760px) {
      .hero-title { font-size: 1.75rem; }
      .hero-sub   { font-size: .9rem; }
      .stat-grid  {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 20px;
      }
      .stat-number { font-size: 1.55rem; }
      .essence-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .hero-title { font-size: 1.5rem; }
      .stat-grid  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    }

    /* Pathway SVG */
    .pathway-svg-wrap { width: 100%; }
    .pathway-svg-desktop {
      width: 100%;
      max-width: 860px;
      display: block;
      margin: 0 auto;
    }
    .pathway-mobile { display: none; }

    /* Mobile pathway nodes */
    .pathway-node-mobile {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .pnm-circle {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--nc, var(--teal));
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-size: .85rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      flex-shrink: 0;
      line-height: 1.3;
    }
    .pnm-info {
      font-size: .83rem;
      color: var(--text2);
    }
    .pathway-arrow-mobile {
      font-size: 1.4rem;
      color: var(--teal);
      text-align: center;
      padding: 2px 0 2px 28px;
    }

    /* Admission bar chart */
    .admit-bar-group { display: flex; flex-direction: column; gap: 14px; }
    .admit-bar-row   { display: flex; align-items: center; gap: 12px; }
    .admit-bar-label {
      font-size: .83rem;
      font-weight: 500;
      color: var(--text2);
      width: 160px;
      flex-shrink: 0;
    }
    .admit-bar-track {
      flex: 1;
      height: 32px;
      background: var(--bg2);
      border-radius: 6px;
      overflow: hidden;
      position: relative;
    }
    .admit-bar-fill {
      height: 100%;
      width: var(--pct);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 10px;
      transition: width .8s cubic-bezier(.4,0,.2,1);
    }
    .admit-bar-pct {
      font-family: 'Outfit', sans-serif;
      font-size: .85rem;
      font-weight: 700;
      color: #fff;
    }

    @media (max-width: 760px) {
      .pathway-svg-desktop { display: none; }
      .pathway-mobile      { display: flex; flex-direction: column; gap: 0; }
      .admit-bar-label     { width: 110px; font-size: .76rem; }
    }

    /* =============================================
       TIMELINE TAB STYLES
       ============================================= */
    /* Mobile tab switcher for dual track */
    .timeline-mobile-tabs {
      display: none;
      gap: 8px;
      margin-bottom: 20px;
    }
    .tl-tab-btn {
      flex: 1;
      padding: 10px;
      border-radius: var(--rs);
      border: 2px solid var(--border);
      background: var(--card);
      font-family: 'Outfit', sans-serif;
      font-size: .85rem;
      font-weight: 600;
      cursor: pointer;
      color: var(--text2);
      transition: all .2s;
    }
    .tl-tab-btn.active {
      background: var(--teal);
      color: #fff;
      border-color: var(--teal-d);
    }

    /* Dual track layout */
    .timeline-dual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 28px;
    }
    .timeline-track {
      background: var(--card);
      border-radius: var(--r);
      box-shadow: var(--sh);
      overflow: hidden;
    }
    .track-header {
      padding: 16px 20px;
      font-family: 'Playfair Display', serif;
      font-size: .95rem;
      font-weight: 700;
      color: #fff;
    }
    .track-header-a { background: linear-gradient(135deg, var(--teal-xd), var(--teal)); }
    .track-header-b { background: linear-gradient(135deg, #4a5568, #718096); }
    .track-header-sub {
      font-family: 'Outfit', sans-serif;
      font-size: .75rem;
      font-weight: 400;
      opacity: .8;
      margin-top: 3px;
    }

    .tl-item {
      display: flex;
      gap: 12px;
      padding: 14px 20px;
      border-bottom: 1px solid var(--teal-l);
      position: relative;
    }
    .tl-item:last-child { border-bottom: none; }
    .tl-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--teal);
      flex-shrink: 0;
      margin-top: 5px;
    }
    .tl-item.highlight .tl-dot { background: var(--accent-gold); box-shadow: 0 0 0 3px var(--accent-gold-l); }
    .tl-item.highlight { background: #fffbf0; }
    .tl-time {
      font-size: .73rem;
      font-weight: 700;
      color: var(--teal);
      white-space: nowrap;
      min-width: 52px;
    }
    .tl-item.highlight .tl-time { color: var(--accent-gold); }
    .tl-milestone {
      font-size: .88rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 3px;
    }
    .tl-detail {
      font-size: .78rem;
      color: var(--text3);
      line-height: 1.4;
    }

    /* Track B (gray) */
    .timeline-track-b .tl-dot { background: #a0aec0; }
    .timeline-track-b .tl-time { color: #718096; }

    /* IEP collapse */
    .iep-collapsible {
      background: var(--card);
      border-radius: var(--r);
      box-shadow: var(--sh);
      border: 1px solid var(--border);
      margin-bottom: 24px;
      overflow: hidden;
    }
    .iep-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      cursor: pointer;
      user-select: none;
      -webkit-tap-highlight-color: transparent;
    }
    .iep-header:hover { background: var(--teal-l); }
    .iep-header-title {
      font-size: .95rem;
      font-weight: 700;
      color: var(--teal-xd);
    }
    .iep-arrow { font-size: 1rem; color: var(--teal); transition: transform .3s; }
    .iep-collapsible.open .iep-arrow { transform: rotate(180deg); }
    .iep-body {
      display: none;
      padding: 0 20px 20px;
    }
    .iep-collapsible.open .iep-body { display: block; }
    .iep-table {
      width: 100%;
      border-collapse: collapse;
      font-size: .83rem;
      margin-top: 12px;
    }
    .iep-table th {
      background: var(--teal-xd);
      color: #fff;
      padding: 9px 12px;
      text-align: left;
      font-weight: 600;
    }
    .iep-table td {
      padding: 9px 12px;
      border-bottom: 1px solid var(--border);
      color: var(--text2);
    }
    .iep-table tr:nth-child(even) td { background: var(--bg2); }

    /* Course sub-tabs */
    .course-subtabs {
      display: flex;
      gap: 8px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .course-tab-btn {
      padding: 8px 18px;
      border-radius: 20px;
      border: 2px solid var(--border);
      background: var(--card);
      font-family: 'Outfit', sans-serif;
      font-size: .83rem;
      font-weight: 600;
      cursor: pointer;
      color: var(--text2);
      transition: all .2s;
    }
    .course-tab-btn.active {
      background: var(--teal);
      color: #fff;
      border-color: var(--teal-d);
    }
    .course-panel { display: none; }
    .course-panel.active { display: block; }
    .course-table {
      width: 100%;
      border-collapse: collapse;
      font-size: .82rem;
    }
    .course-table th {
      background: var(--teal-xd);
      color: #fff;
      padding: 9px 12px;
      text-align: left;
      font-weight: 600;
    }
    .course-table td {
      padding: 9px 12px;
      border-bottom: 1px solid var(--border);
      color: var(--text2);
      vertical-align: top;
    }
    .course-table tr:nth-child(even) td { background: var(--bg2); }
    .credit-badge {
      display: inline-block;
      background: var(--teal-l);
      color: var(--teal-xd);
      font-size: .72rem;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 10px;
    }

    @media (max-width: 760px) {
      .timeline-mobile-tabs { display: flex; }
      .timeline-dual { grid-template-columns: 1fr; }
      .timeline-track-b { display: none; }
      .timeline-track-b.mobile-show { display: block; }
      .timeline-track-a.mobile-hide { display: none; }
    }

    /* =============================================
       FAQ TAB STYLES
       ============================================= */
    .faq-list { display: flex; flex-direction: column; gap: 10px; }
    .faq-item {
      background: var(--card);
      border-radius: var(--r);
      box-shadow: var(--sh);
      border: 1px solid var(--border);
      overflow: hidden;
    }
    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      cursor: pointer;
      user-select: none;
      -webkit-tap-highlight-color: transparent;
      gap: 12px;
    }
    .faq-question:hover { background: var(--teal-l); }
    .faq-q-text {
      font-size: .9rem;
      font-weight: 600;
      color: var(--text);
      flex: 1;
    }
    .faq-arrow { color: var(--teal); font-size: .9rem; transition: transform .3s; flex-shrink: 0; }
    .faq-item.open .faq-arrow { transform: rotate(180deg); }
    .faq-answer {
      display: none;
      padding: 0 20px 18px;
      font-size: .87rem;
      color: var(--text2);
      line-height: 1.65;
    }
    .faq-item.open .faq-answer { display: block; }

    /* =============================================
       CONTACT TAB STYLES
       ============================================= */
    .contact-hero {
      background: linear-gradient(135deg, var(--teal-xd), var(--teal-d));
      border-radius: var(--r);
      padding: 40px 32px;
      text-align: center;
      margin-bottom: 24px;
      position: relative;
      overflow: hidden;
    }
    .contact-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,255,255,.06) 0%, transparent 70%);
    }
    .contact-hero-brand {
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .1em;
      color: #7EEAE5;
      margin-bottom: 12px;
    }
    .contact-hero-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      position: relative;
    }
    .contact-hero-sub {
      font-size: .95rem;
      color: rgba(255,255,255,.78);
      position: relative;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 28px;
    }
    .service-card {
      background: var(--card);
      border-radius: var(--r);
      box-shadow: var(--sh);
      border: 1px solid var(--border);
      padding: 22px 18px;
      text-align: center;
    }
    .service-icon { font-size: 2rem; margin-bottom: 10px; }
    .service-title {
      font-family: 'Playfair Display', serif;
      font-size: .95rem;
      font-weight: 700;
      color: var(--teal-xd);
      margin-bottom: 8px;
    }
    .service-desc {
      font-size: .8rem;
      color: var(--text2);
      line-height: 1.5;
      margin-bottom: 14px;
    }
    .btn-service {
      display: inline-block;
      padding: 8px 16px;
      border-radius: 20px;
      background: var(--teal-l);
      color: var(--teal-xd);
      font-family: 'Outfit', sans-serif;
      font-size: .8rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: all .2s;
    }
    .btn-service:hover { background: var(--teal); color: #fff; text-decoration: none; }

    .cta-box {
      background: var(--card);
      border-radius: var(--r);
      box-shadow: var(--sh);
      border: 1px solid var(--border);
      padding: 32px;
      text-align: center;
      margin-bottom: 24px;
    }
    .cta-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--teal-xd);
      margin-bottom: 8px;
    }
    .cta-sub {
      font-size: .88rem;
      color: var(--text2);
      margin-bottom: 20px;
    }
    .qr-placeholder {
      width: 160px;
      height: 160px;
      border: 2px dashed var(--teal-mid);
      border-radius: 12px;
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--teal-l);
      color: var(--teal);
      font-size: .8rem;
      text-align: center;
      line-height: 1.4;
    }
    .btn-line {
      display: inline-block;
      padding: 13px 32px;
      border-radius: 30px;
      background: #06C755;
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      margin: 0 6px 10px;
      transition: all .2s;
      box-shadow: 0 4px 14px rgba(6,199,85,.3);
    }
    .btn-line:hover { background: #05a848; text-decoration: none; transform: translateY(-2px); }
    .btn-website {
      display: inline-block;
      padding: 13px 32px;
      border-radius: 30px;
      border: 2px solid var(--teal);
      background: transparent;
      color: var(--teal-xd);
      font-family: 'Outfit', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      margin: 0 6px 10px;
      transition: all .2s;
    }
    .btn-website:hover { background: var(--teal-l); text-decoration: none; }

    @media (max-width: 760px) {
      .service-grid { grid-template-columns: 1fr; }
      .contact-hero-title { font-size: 1.4rem; }
    }

    /* =============================================
       TRANSFER TAB STYLES
       ============================================= */
    .uni-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 28px;
    }
    .uni-card {
      background: var(--card);
      border-radius: var(--r);
      box-shadow: var(--sh);
      border: 1px solid var(--border);
      padding: 18px;
      position: relative;
      transition: transform .2s;
    }
    .uni-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
    .uni-card-tier {
      position: absolute;
      top: 12px;
      right: 12px;
    }
    .uni-name {
      font-family: 'Playfair Display', serif;
      font-size: .95rem;
      font-weight: 700;
      color: var(--teal-xd);
      margin-bottom: 4px;
      padding-right: 60px;
    }
    .uni-type {
      font-size: .73rem;
      color: var(--text3);
      margin-bottom: 10px;
    }
    .uni-admit-rate {
      font-size: 1.35rem;
      font-weight: 900;
      font-family: 'Playfair Display', serif;
      color: var(--teal);
      margin-bottom: 4px;
    }
    .uni-admit-label { font-size: .72rem; color: var(--text3); margin-bottom: 10px; }
    .uni-gpa-row {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .78rem;
      color: var(--text2);
      margin-bottom: 8px;
    }
    .uni-dta-note {
      font-size: .75rem;
      color: var(--text2);
      background: var(--teal-l);
      border-radius: var(--rs);
      padding: 6px 10px;
      line-height: 1.4;
    }

    /* Tier pyramid */
    .pyramid-wrap {
      margin: 0 auto 28px;
      max-width: 500px;
    }
    .pyramid-level {
      display: flex;
      align-items: stretch;
      margin-bottom: 4px;
    }
    .pyramid-label {
      width: 80px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 12px;
      font-size: .8rem;
      font-weight: 700;
      color: var(--text2);
      flex-shrink: 0;
    }
    .pyramid-bar {
      flex: 1;
      border-radius: var(--rs);
      padding: 10px 14px;
      color: #fff;
      font-size: .83rem;
      font-weight: 600;
    }
    .pyramid-bar-reach  { background: var(--accent-red); }
    .pyramid-bar-match  { background: var(--teal); }
    .pyramid-bar-safety { background: var(--accent-green); }
    .pyramid-bar-sub {
      font-size: .72rem;
      opacity: .85;
      font-weight: 400;
      margin-top: 3px;
    }

    /* Dept table */
    .dept-table {
      width: 100%;
      border-collapse: collapse;
      font-size: .82rem;
    }
    .dept-table th {
      background: var(--teal-xd);
      color: #fff;
      padding: 9px 12px;
      text-align: left;
      font-weight: 600;
      white-space: nowrap;
    }
    .dept-table td {
      padding: 9px 12px;
      border-bottom: 1px solid var(--border);
      color: var(--text2);
      vertical-align: middle;
    }
    .dept-table tr:nth-child(even) td { background: var(--bg2); }
    .comp-stars { color: var(--accent-gold); font-size: .82rem; }

    /* SEVIS flow */
    .sevis-flow {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .sevis-step {
      background: var(--teal-l);
      border: 1.5px solid var(--teal-mid);
      border-radius: var(--rs);
      padding: 12px 14px;
      text-align: center;
      flex: 1;
      min-width: 120px;
      max-width: 160px;
    }
    .sevis-num {
      font-size: 1.2rem;
      font-weight: 900;
      font-family: 'Playfair Display', serif;
      color: var(--teal-xd);
      margin-bottom: 4px;
    }
    .sevis-text {
      font-size: .75rem;
      color: var(--text2);
      line-height: 1.35;
    }
    .sevis-arrow {
      font-size: 1.2rem;
      color: var(--teal);
      flex-shrink: 0;
    }

    @media (max-width: 760px) {
      .uni-grid    { grid-template-columns: 1fr 1fr; }
      .sevis-flow  { flex-direction: column; }
      .sevis-arrow { transform: rotate(90deg); }
      .sevis-step  { max-width: 100%; width: 100%; }
    }
    @media (max-width: 480px) {
      .uni-grid { grid-template-columns: 1fr; }
    }

    /* =============================================
       PITFALLS TAB STYLES
       ============================================= */
    .pitfalls-subtabs {
      display: flex;
      gap: 8px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    .pit-tab-btn {
      padding: 9px 18px;
      border-radius: 20px;
      border: 2px solid var(--border);
      background: var(--card);
      font-family: 'Outfit', sans-serif;
      font-size: .83rem;
      font-weight: 600;
      cursor: pointer;
      color: var(--text2);
      transition: all .2s;
    }
    .pit-tab-btn.active {
      background: var(--teal);
      color: #fff;
      border-color: var(--teal-d);
    }
    .pit-panel { display: none; }
    .pit-panel.active { display: block; }

    /* Mistake cards */
    .mistake-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 24px;
    }
    .mistake-card {
      background: var(--card);
      border-radius: var(--r);
      box-shadow: var(--sh);
      border: 1px solid var(--border);
      padding: 18px;
    }
    .mistake-wrong {
      display: flex;
      gap: 8px;
      margin-bottom: 10px;
      padding: 10px 12px;
      background: var(--accent-red-l);
      border-radius: var(--rs);
      border-left: 3px solid var(--accent-red);
    }
    .mistake-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
    .mistake-text { font-size: .82rem; color: var(--text); line-height: 1.45; }
    .mistake-right {
      display: flex;
      gap: 8px;
      padding: 10px 12px;
      background: var(--accent-green-l);
      border-radius: var(--rs);
      border-left: 3px solid var(--accent-green);
    }

    /* Risk accordion */
    .risk-accordion { display: flex; flex-direction: column; gap: 10px; }
    .risk-item {
      background: var(--card);
      border-radius: var(--r);
      box-shadow: var(--sh);
      border: 1px solid var(--border);
      overflow: hidden;
    }
    .risk-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 18px;
      cursor: pointer;
      user-select: none;
      -webkit-tap-highlight-color: transparent;
      gap: 10px;
    }
    .risk-header:hover { background: var(--bg2); }
    .risk-header-left { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
    .risk-title {
      font-size: .9rem;
      font-weight: 700;
      color: var(--text);
    }
    .risk-stars { color: var(--accent-gold); font-size: .85rem; white-space: nowrap; flex-shrink: 0; }
    .risk-arrow { color: var(--text3); font-size: .9rem; transition: transform .3s; flex-shrink: 0; }
    .risk-item.open .risk-arrow { transform: rotate(180deg); }
    .risk-body {
      display: none;
      padding: 0 18px 18px;
    }
    .risk-item.open .risk-body { display: block; }
    .risk-summary {
      font-size: .85rem;
      color: var(--text2);
      line-height: 1.6;
      margin-bottom: 12px;
      padding-top: 4px;
    }
    .risk-strategy {
      padding: 12px 14px;
      background: var(--accent-green-l);
      border-radius: var(--rs);
      border-left: 3px solid var(--accent-green);
      font-size: .83rem;
      color: var(--text);
      line-height: 1.5;
    }
    .risk-strategy-label {
      font-weight: 700;
      color: var(--accent-green);
      margin-bottom: 4px;
    }

    /* Minor student checklist */
    .minor-table {
      width: 100%;
      border-collapse: collapse;
      font-size: .83rem;
    }
    .minor-table th {
      background: var(--teal-xd);
      color: #fff;
      padding: 9px 12px;
      text-align: left;
      font-weight: 600;
    }
    .minor-table td {
      padding: 9px 12px;
      border-bottom: 1px solid var(--border);
      color: var(--text2);
      vertical-align: top;
    }
    .minor-table tr:nth-child(even) td { background: var(--bg2); }

    @media (max-width: 760px) {
      .mistake-grid { grid-template-columns: 1fr; }
    }

    /* =============================================
       COST TAB STYLES
       ============================================= */
    .cost-controls {
      background: var(--card);
      border-radius: var(--r);
      box-shadow: var(--sh);
      border: 1px solid var(--border);
      padding: 24px;
      margin-bottom: 24px;
    }
    .cost-controls-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--teal-xd);
      margin-bottom: 18px;
    }
    .controls-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .ctrl-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .ctrl-group.full-width { grid-column: 1 / -1; }
    .ctrl-label {
      font-size: .82rem;
      font-weight: 600;
      color: var(--text2);
    }
    .ctrl-select, .ctrl-input {
      padding: 9px 12px;
      border-radius: var(--rs);
      border: 1.5px solid var(--border);
      background: var(--bg);
      color: var(--text);
      font-family: 'Outfit', sans-serif;
      font-size: .9rem;
      outline: none;
      transition: border-color .2s;
      width: 100%;
    }
    .ctrl-select:focus, .ctrl-input:focus { border-color: var(--teal); }
    .ctrl-range {
      width: 100%;
      accent-color: var(--teal);
      cursor: pointer;
    }
    .ctrl-range-display {
      font-size: .85rem;
      font-weight: 700;
      color: var(--teal-xd);
    }
    .iep-toggle-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .toggle-switch {
      position: relative;
      width: 44px;
      height: 24px;
      flex-shrink: 0;
    }
    .toggle-switch input { opacity: 0; width: 0; height: 0; }
    .toggle-slider {
      position: absolute;
      inset: 0;
      background: #ccc;
      border-radius: 24px;
      cursor: pointer;
      transition: background .2s;
    }
    .toggle-slider::before {
      content: '';
      position: absolute;
      width: 18px; height: 18px;
      left: 3px; top: 3px;
      background: #fff;
      border-radius: 50%;
      transition: transform .2s;
    }
    .toggle-switch input:checked + .toggle-slider { background: var(--teal); }
    .toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
    .iep-quarters-row {
      display: none;
      flex-direction: column;
      gap: 6px;
    }
    .iep-quarters-row.visible { display: flex; }

    /* Cost result panels */
    .cost-result-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 20px;
    }
    .cost-result-panel {
      border-radius: var(--r);
      padding: 22px;
      border: 2px solid transparent;
    }
    .cost-panel-a {
      background: var(--teal-l);
      border-color: var(--teal-mid);
    }
    .cost-panel-b {
      background: var(--accent-red-l);
      border-color: #f5c4b8;
    }
    .cost-panel-title {
      font-family: 'Playfair Display', serif;
      font-size: .95rem;
      font-weight: 700;
      margin-bottom: 14px;
    }
    .cost-panel-a .cost-panel-title { color: var(--teal-xd); }
    .cost-panel-b .cost-panel-title { color: var(--accent-red); }
    .cost-line {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 7px 0;
      border-bottom: 1px solid rgba(0,0,0,.06);
      font-size: .83rem;
      gap: 8px;
    }
    .cost-line:last-child { border-bottom: none; }
    .cost-line-label { color: var(--text2); flex: 1; }
    .cost-line-value { font-weight: 600; color: var(--text); text-align: right; white-space: nowrap; }
    .cost-line.total-line {
      margin-top: 4px;
      padding-top: 10px;
      border-top: 2px solid rgba(0,0,0,.1);
      border-bottom: none;
      font-size: .92rem;
    }
    .cost-line.total-line .cost-line-label { font-weight: 700; color: var(--text); }
    .cost-line.total-line .cost-line-value { font-size: 1.05rem; }
    .cost-panel-a .cost-line.total-line .cost-line-value { color: var(--teal-xd); }
    .cost-panel-b .cost-line.total-line .cost-line-value { color: var(--accent-red); }

    /* Savings banner */
    .savings-banner {
      background: linear-gradient(135deg, var(--accent-gold-l), #fff9ec);
      border: 2px solid var(--accent-gold);
      border-radius: var(--r);
      padding: 24px;
      text-align: center;
      margin-bottom: 24px;
    }
    .savings-label {
      font-size: .85rem;
      color: var(--text2);
      margin-bottom: 6px;
      font-weight: 500;
    }
    .savings-amount {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--accent-gold);
      line-height: 1;
      margin-bottom: 6px;
    }
    .savings-pct {
      display: inline-block;
      background: var(--accent-gold);
      color: #fff;
      font-size: .85rem;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 20px;
      margin-bottom: 8px;
    }
    .savings-note {
      font-size: .75rem;
      color: var(--text3);
      margin-top: 8px;
    }

    /* Cost bar chart */
    .cost-bar-chart {
      display: flex;
      gap: 24px;
      align-items: flex-end;
      justify-content: center;
      height: 180px;
      margin-bottom: 8px;
    }
    .cost-bar-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      flex: 1;
      max-width: 140px;
    }
    .cost-bar-outer {
      width: 100%;
      background: var(--bg2);
      border-radius: 8px 8px 0 0;
      position: relative;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      height: 150px;
    }
    .cost-bar-inner {
      width: 100%;
      border-radius: 8px 8px 0 0;
      transition: height .8s cubic-bezier(.4,0,.2,1);
    }
    .cost-bar-col-label {
      font-size: .78rem;
      font-weight: 600;
      color: var(--text2);
      text-align: center;
    }

    /* Static CC table */
    .cc-table-wrap { overflow-x: auto; }
    .cc-table {
      width: 100%;
      border-collapse: collapse;
      font-size: .83rem;
    }
    .cc-table th {
      background: var(--teal-xd);
      color: #fff;
      padding: 10px 12px;
      text-align: left;
      font-weight: 600;
      white-space: nowrap;
    }
    .cc-table td {
      padding: 10px 12px;
      border-bottom: 1px solid var(--border);
      color: var(--text2);
    }
    .cc-table tr:nth-child(even) td { background: var(--bg2); }
    .cc-table tr:hover td { background: var(--teal-l); }
    .cc-table tbody tr.cc-rec td {
      background: var(--accent-gold-l);
      font-weight: 600;
      color: var(--text);
    }
    .cc-table tbody tr.cc-rec:hover td { background: #fbe9c2; }

    /* Top recommended schools */
    .rec-school-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .rec-school-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-top: 3px solid var(--accent-gold);
      border-radius: var(--rs);
      padding: 16px 16px 14px;
    }
    .rec-school-badge {
      display: inline-block;
      background: var(--accent-gold-l);
      color: #a86b14;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .04em;
      padding: 3px 9px;
      border-radius: 20px;
      margin-bottom: 8px;
    }
    .rec-school-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--teal-xd);
      margin-bottom: 10px;
    }
    .rec-school-list {
      margin: 0;
      padding-left: 18px;
      list-style: disc;
    }
    .rec-school-list li {
      font-size: .82rem;
      color: var(--text2);
      line-height: 1.55;
      margin-bottom: 6px;
    }
    .rec-school-list li:last-child { margin-bottom: 0; }

    @media (max-width: 760px) {
      .controls-grid     { grid-template-columns: 1fr; }
      .cost-result-row   { grid-template-columns: 1fr; }
      .savings-amount    { font-size: 1.9rem; }
      .cost-bar-chart    { height: 140px; }
      .cost-bar-outer    { height: 110px; }
      .rec-school-grid   { grid-template-columns: 1fr; }
    }

    /* =============================================
       DISCLAIMER
       ============================================= */
    .disclaimer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 20px;
      text-align: center;
      font-size: .78rem;
      color: var(--text3);
      line-height: 1.6;
      margin-top: 40px;
    }

    /* =============================================
       RESPONSIVE
       ============================================= */
    @media (max-width: 760px) {
      .header-nav { display: none !important; }
      .hamburger  { display: flex; }
      #content    { padding-top: 96px; }
    }
    @media (min-width: 761px) {
      .hamburger    { display: none; }
      #mobile-menu  { display: none !important; }
      #menu-backdrop{ display: none !important; }
    }
    @media (max-width: 480px) {
      .gate-box { padding: 36px 24px; }
      .gate-title { font-size: 1.35rem; }
    }
