/* ══════════════════════════════
       TAB EXPLORER
    ══════════════════════════════ */
    /* Sidebar tab button */
    .tab-btn {
      position: relative;
      cursor: pointer;
      transition: background 0.3s ease, color 0.3s ease;
    }
    .tab-btn .tab-index {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      line-height: 1;
      font-style: italic;
      font-weight: 300;
      transition: color 0.3s ease;
      color: rgba(196,154,60,0.18);
    }
    .tab-btn.active .tab-index { color: rgba(196,154,60,0.55); }
    .tab-btn .tab-bar {
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 0%;
      background: #C49A3C;
      transition: height 0.45s cubic-bezier(0.22,1,0.36,1);
      border-radius: 0 2px 2px 0;
    }
    .tab-btn.active .tab-bar { height: 100%; }
    .tab-btn:hover:not(.active) { background: rgba(255,255,255,0.4); }

    /* Tab panel */
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }

    /* Panel fade-in */
    @keyframes panelIn {
      from { opacity: 0; transform: translateX(20px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .tab-panel.active { animation: panelIn 0.42s cubic-bezier(0.22,1,0.36,1) both; }

    /* Mobile pill tabs */
    .pill-tab {
      border-bottom: 2px solid transparent;
      transition: border-color 0.3s ease, color 0.3s ease;
      white-space: nowrap;
    }
    .pill-tab.active {
      border-color: #C49A3C;
      color: #1C3A2A;
    }

    /* ══════════════════════════════
       ACCORDION
    ══════════════════════════════ */
    .acc-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1);
    }
    .acc-body.open { max-height: 600px; }
    .acc-icon {
      transition: transform 0.35s ease;
    }
    .acc-item.open .acc-icon { transform: rotate(45deg); }

    /* ══════════════════════════════
       FAQ ACCORDION
    ══════════════════════════════ */
    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1);
    }
    .faq-body.open { max-height: 400px; }
    .faq-chevron { transition: transform 0.3s ease; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }

    /* ══════════════════════════════
       PROGRAM 01 — ACADEMY specifics
    ══════════════════════════════ */
    .outcome-bar {
      height: 4px;
      background: #EDE5D8;
      border-radius: 2px;
      overflow: hidden;
    }
    .outcome-fill {
      height: 100%;
      background: linear-gradient(to right, #C49A3C, #DDB96A);
      border-radius: 2px;
      width: 0%;
      transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
    }

    /* ══════════════════════════════
       PROGRAM 02 — SPONSORSHIP FUND
    ══════════════════════════════ */
    .fund-step-line {
      position: absolute;
      left: 19px;
      top: 40px;
      bottom: -20px;
      width: 1px;
      background: linear-gradient(to bottom, #C49A3C, transparent);
    }
    .fund-dot {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #C49A3C;
      color: white;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    /* ══════════════════════════════
       PROGRAM 03 — HUB-SPOKE CSS
    ══════════════════════════════ */
    .hub-wrap {
      position: relative;
      width: 280px;
      height: 280px;
      margin: 0 auto;
    }
    .hub-center {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 100px; height: 100px;
      background: #1C3A2A;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      z-index: 2;
      box-shadow: 0 0 0 8px rgba(28,58,42,0.15);
    }
    .hub-spoke {
      position: absolute;
      width: 88px; height: 88px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      border: 1px solid rgba(196,154,60,0.35);
      background: #F7F3ED;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.6rem;
      color: #1C3A2A;
      font-weight: 500;
      line-height: 1.2;
      padding: 8px;
      transition: background 0.3s, border-color 0.3s;
      cursor: default;
    }
    .hub-spoke:hover { background: #C49A3C; color: white; border-color: #C49A3C; }
    .hub-line {
      position: absolute;
      top: 50%; left: 50%;
      width: 1px;
      background: rgba(196,154,60,0.3);
      transform-origin: top center;
      z-index: 0;
    }

    /* ══════════════════════════════
       APPLICATION TIMELINE (horizontal)
    ══════════════════════════════ */
    .app-step-line {
      position: absolute;
      top: 19px;
      left: 40px;
      right: -40px;
      height: 1px;
      background: linear-gradient(to right, #C49A3C, rgba(196,154,60,0.15));
    }

    /* ══════════════════════════════
       CHECKLIST
    ══════════════════════════════ */
    .check-item::before {
      content: '';
      display: inline-block;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #C49A3C;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-size: cover;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ══════════════════════════════
       STICKY SIDEBAR
    ══════════════════════════════ */
    @media (min-width: 1024px) {
      .sidebar-sticky { position: sticky; top: 32px; }
    }

    /* ══════════════════════════════
       HR GOLD
    ══════════════════════════════ */
    .hr-gold { border: none; height: 1px; background: linear-gradient(to right, #C49A3C, transparent); margin: 0; }

    /* ══════════════════════════════
       PROGRAM IMAGE FRAME
    ══════════════════════════════ */
    .img-frame {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
    }
    .img-frame::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 24px;
      border: 1px solid rgba(196,154,60,0.2);
      pointer-events: none;
    }/* ══════════════════════════════
       TAB EXPLORER
    ══════════════════════════════ */
    /* Sidebar tab button */
    .tab-btn {
      position: relative;
      cursor: pointer;
      transition: background 0.3s ease, color 0.3s ease;
    }
    .tab-btn .tab-index {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      line-height: 1;
      font-style: italic;
      font-weight: 300;
      transition: color 0.3s ease;
      color: rgba(196,154,60,0.18);
    }
    .tab-btn.active .tab-index { color: rgba(196,154,60,0.55); }
    .tab-btn .tab-bar {
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 0%;
      background: #C49A3C;
      transition: height 0.45s cubic-bezier(0.22,1,0.36,1);
      border-radius: 0 2px 2px 0;
    }
    .tab-btn.active .tab-bar { height: 100%; }
    .tab-btn:hover:not(.active) { background: rgba(255,255,255,0.4); }

    /* Tab panel */
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }

    /* Panel fade-in */
    @keyframes panelIn {
      from { opacity: 0; transform: translateX(20px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .tab-panel.active { animation: panelIn 0.42s cubic-bezier(0.22,1,0.36,1) both; }

    /* Mobile pill tabs */
    .pill-tab {
      border-bottom: 2px solid transparent;
      transition: border-color 0.3s ease, color 0.3s ease;
      white-space: nowrap;
    }
    .pill-tab.active {
      border-color: #C49A3C;
      color: #1C3A2A;
    }

    /* ══════════════════════════════
       ACCORDION
    ══════════════════════════════ */
    .acc-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1);
    }
    .acc-body.open { max-height: 600px; }
    .acc-icon {
      transition: transform 0.35s ease;
    }
    .acc-item.open .acc-icon { transform: rotate(45deg); }

    /* ══════════════════════════════
       FAQ ACCORDION
    ══════════════════════════════ */
    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1);
    }
    .faq-body.open { max-height: 400px; }
    .faq-chevron { transition: transform 0.3s ease; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }

    /* ══════════════════════════════
       PROGRAM 01 — ACADEMY specifics
    ══════════════════════════════ */
    .outcome-bar {
      height: 4px;
      background: #EDE5D8;
      border-radius: 2px;
      overflow: hidden;
    }
    .outcome-fill {
      height: 100%;
      background: linear-gradient(to right, #C49A3C, #DDB96A);
      border-radius: 2px;
      width: 0%;
      transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
    }

    /* ══════════════════════════════
       PROGRAM 02 — SPONSORSHIP FUND
    ══════════════════════════════ */
    .fund-step-line {
      position: absolute;
      left: 19px;
      top: 40px;
      bottom: -20px;
      width: 1px;
      background: linear-gradient(to bottom, #C49A3C, transparent);
    }
    .fund-dot {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #C49A3C;
      color: white;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    /* ══════════════════════════════
       PROGRAM 03 — HUB-SPOKE CSS
    ══════════════════════════════ */
    .hub-wrap {
      position: relative;
      width: 280px;
      height: 280px;
      margin: 0 auto;
    }
    .hub-center {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 100px; height: 100px;
      background: #1C3A2A;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      z-index: 2;
      box-shadow: 0 0 0 8px rgba(28,58,42,0.15);
    }
    .hub-spoke {
      position: absolute;
      width: 88px; height: 88px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      border: 1px solid rgba(196,154,60,0.35);
      background: #F7F3ED;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.6rem;
      color: #1C3A2A;
      font-weight: 500;
      line-height: 1.2;
      padding: 8px;
      transition: background 0.3s, border-color 0.3s;
      cursor: default;
    }
    .hub-spoke:hover { background: #C49A3C; color: white; border-color: #C49A3C; }
    .hub-line {
      position: absolute;
      top: 50%; left: 50%;
      width: 1px;
      background: rgba(196,154,60,0.3);
      transform-origin: top center;
      z-index: 0;
    }

    /* ══════════════════════════════
       APPLICATION TIMELINE (horizontal)
    ══════════════════════════════ */
    .app-step-line {
      position: absolute;
      top: 19px;
      left: 40px;
      right: -40px;
      height: 1px;
      background: linear-gradient(to right, #C49A3C, rgba(196,154,60,0.15));
    }

    /* ══════════════════════════════
       CHECKLIST
    ══════════════════════════════ */
    .check-item::before {
      content: '';
      display: inline-block;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #C49A3C;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-size: cover;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ══════════════════════════════
       STICKY SIDEBAR
    ══════════════════════════════ */
    @media (min-width: 1024px) {
      .sidebar-sticky { position: sticky; top: 32px; }
    }

    /* ══════════════════════════════
       HR GOLD
    ══════════════════════════════ */
    .hr-gold { border: none; height: 1px; background: linear-gradient(to right, #C49A3C, transparent); margin: 0; }

    /* ══════════════════════════════
       PROGRAM IMAGE FRAME
    ══════════════════════════════ */
    .img-frame {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
    }
    .img-frame::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 24px;
      border: 1px solid rgba(196,154,60,0.2);
      pointer-events: none;
    }