 /* ── BRAND VARIABLES ── */
    :root {
      --navy:        #1b305c;
      --navy-dark:   #12213d;
      --navy-mid:    #253d72;
      --gold:        #C8952A;
      --gold-light:  #f0b840;
      --accent:      #972836;
      --accent-hover:#7a1f2a;
      --light-bg:    #F7F9FC;
      --border:      #e2e8f0;
      --text:        #1a202c;
      --muted:       #64748b;
    }

    /* ── BASE ── */
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--text); overflow-x: hidden; }
    h1,h2,h3,h4,h5,h6 { font-family: 'Inter', sans-serif; }
    .font-serif { font-family: 'Playfair Display', serif; }

    /* Bootstrap overrides */
    .container { max-width: 1200px; }
    .btn { font-family: 'Inter', sans-serif; font-weight: 700; border-radius: 8px; }
    .btn-brand { background: var(--accent); color: #fff; border: none; padding: 13px 26px; font-size: 15px; transition: all .2s; box-shadow: 0 4px 16px rgba(151,40,54,.35); }
    .btn-brand:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(151,40,54,.5); }
    .btn-brand-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.35); padding: 12px 26px; font-size: 15px; transition: all .2s; }
    .btn-brand-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
    .btn-navy { background: var(--navy); color: #fff; border: none; padding: 13px 26px; font-size: 15px; transition: all .2s; }
    .btn-navy:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

    /* ── SECTION HELPERS ── */
    section { padding: 80px 0; }
    .section-label {
      display: inline-block; background: rgba(27,48,92,.08); color: var(--navy);
      padding: 5px 14px; border-radius: 50px; font-size: 11px; font-weight: 800;
      text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
    }
    .section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px,3.5vw,42px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
    .section-sub { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 620px; }
    .dark-label { background: rgba(200,149,42,.15); color: var(--gold-light); }
    .dark-title { color: #fff !important; }
    .dark-sub { color: #94a3b8 !important; }

    /* ── NAVBAR ── */
    .iilm-nav {
      background: rgba(18,33,61,.97);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0,0,0,.3);
      padding: 0 !important;
      min-height: 64px;
    }
    .iilm-nav .navbar-brand { padding: 0; }
    .logo-block { display: flex; align-items: center; gap: 9px; }
    .logo-block img { height: 40px; width: auto; object-fit: contain; }
    .logo-text-name { font-size: 12px; font-weight: 800; color: #fff; letter-spacing: .2px; line-height: 1.25; }
    .logo-text-sub { font-size: 9px; font-weight: 500; color: #94a3b8; letter-spacing: .4px; }
    .logo-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); margin: 0 14px; }
    .iilm-nav .nav-link { color: #cbd5e0 !important; font-size: 13px; font-weight: 500; padding: 8px 12px !important; transition: color .2s; }
    .iilm-nav .nav-link:hover { color: var(--gold-light) !important; }
    .nav-apply-btn { background: var(--accent); color: #fff !important; padding: 8px 18px !important; border-radius: 6px; font-weight: 700 !important; font-size: 13px !important; }
    .nav-apply-btn:hover { background: var(--accent-hover); color: #fff !important; }
    .navbar-toggler { border-color: rgba(255,255,255,.3); }
    .navbar-toggler-icon { filter: invert(1); }

    /* ── HERO ── */
    .hero-section {
      min-height: 100vh; position: relative;
      background: url('images/MBA 2026 1080x1080 v1.jpg') center top / cover no-repeat;
      display: flex; align-items: center; padding: 100px 0 60px;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(110deg, rgba(18,33,61,.93) 55%, rgba(18,33,61,.65) 100%);
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(200,149,42,.15); border: 1px solid rgba(200,149,42,.4);
      color: var(--gold-light); padding: 6px 14px; border-radius: 50px;
      font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 20px;
    }
    .hero-badge::before { content: '●'; font-size: 8px; animation: blink 1.5s infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
    .hero-h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px,4.5vw,54px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px; }
    .hero-h1 .accent-line { color: var(--gold-light); display: block; }
    .hero-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); color: #cbd5e0; padding: 7px 13px; border-radius: 50px; font-size: 12px; font-weight: 500; margin: 4px; }

    /* Hero Form */
    .hero-form-card { background: #fff; border-radius: 20px; padding: 32px 28px; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
    .form-top h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
    .form-top p { font-size: 12px; color: var(--muted); }
    .seats-bar { background: #fff8f0; border: 1px solid #fde8cc; border-radius: 8px; padding: 10px 14px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
    .seats-bar-track { flex: 1; background: #e5e7eb; border-radius: 50px; height: 6px; overflow: hidden; }
    .seats-bar-fill { width: 72%; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 50px; }
    .seats-bar-label { font-size: 12px; font-weight: 700; color: var(--gold); white-space: nowrap; }
    .form-label { font-size: 11px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .3px; }
    .form-control, .form-select { font-family: 'Inter', sans-serif; font-size: 14px; border: 1.5px solid var(--border); border-radius: 8px; }
    .form-control:focus, .form-select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,48,92,.08); }
    .form-btn { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--accent), var(--accent-hover)); color: #fff; border: none; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all .2s; box-shadow: 0 4px 16px rgba(151,40,54,.35); }
    .form-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(151,40,54,.5); }
    .form-note { text-align: center; font-size: 11px; color: var(--muted); margin-top: 10px; }

    /* ── TRUST BAR ── */
    .trust-bar { background: var(--navy); padding: 28px 0; }
    .trust-item { display: flex; align-items: center; gap: 12px; }
    .trust-icon { width: 46px; height: 46px; background: rgba(200,149,42,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
    .trust-text strong { display: block; color: #fff; font-size: 16px; font-weight: 800; }
    .trust-text span { color: #94a3b8; font-size: 12px; }
    .trust-sep { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

    /* ── STATS ── */
    .stat-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 32px 24px; text-align: center; transition: all .25s; position: relative; overflow: hidden; }
    .stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--navy), var(--gold)); transform: scaleX(0); transition: transform .3s; }
    .stat-card:hover::before { transform: scaleX(1); }
    .stat-card:hover { border-color: var(--navy); box-shadow: 0 12px 40px rgba(27,48,92,.1); transform: translateY(-4px); }
    .stat-num { font-size: 46px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 4px; }
    .stat-num em { color: var(--gold); font-style: normal; }
    .stat-lbl { font-size: 14px; color: var(--muted); font-weight: 500; }

    /* ── ABOUT ── */
    .about-card { background: #fff; border-radius: 20px; padding: 36px; box-shadow: 0 4px 32px rgba(0,0,0,.07); border: 1.5px solid var(--border); }
    .why-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 15px; line-height: 1.6; }
    .why-star { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 2px; }

    /* ── PROGRAMS / TABS ── */
    .programs-bg { background: var(--light-bg); }
    .campus-tabs-nav { display: flex; margin-bottom: 32px; border-radius: 12px; overflow: hidden; border: 2px solid var(--border); background: #fff; }
    .campus-tab-btn { flex: 1; padding: 15px 16px; border: none; background: #fff; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; color: var(--muted); border-right: 1px solid var(--border); transition: all .25s; line-height: 1.4; text-align: center; }
    .campus-tab-btn:last-child { border-right: none; }
    .campus-tab-btn:hover { background: var(--light-bg); color: var(--navy); }
    .campus-tab-btn.active { background: var(--navy); color: #fff; }
    .tab-sub { display: block; font-size: 10px; font-weight: 500; opacity: .75; margin-top: 3px; }
    .campus-tab-btn.active .tab-sub { opacity: .85; }
    .campus-tab-panel { display: none; }
    .campus-tab-panel.active { display: block; }
    .prog-info-bar { background: #fff; border-radius: 12px; padding: 16px 22px; margin-bottom: 24px; display: flex; gap: 24px; flex-wrap: wrap; align-items: center; border: 1.5px solid var(--border); }
    .prog-info-item .lbl { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; display: block; }
    .prog-info-item .val { font-size: 15px; font-weight: 800; color: var(--navy); }
    .spec-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
    .spec-card { background: #fff; border: 1.5px solid var(--border); border-radius: 10px; padding: 13px 16px; border-left: 4px solid var(--navy); transition: all .22s; }
    .spec-card:hover { border-left-color: var(--accent); box-shadow: 0 4px 18px rgba(27,48,92,.1); transform: translateY(-2px); }
    .spec-card h5 { font-size: 13.5px; font-weight: 700; color: var(--navy); margin: 0 0 4px; line-height: 1.45; }
    .spec-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 50px; background: rgba(151,40,54,.08); color: var(--accent); margin-top: 4px; }
    .stem-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: 14px; padding: 20px 24px; margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
    .stem-banner h4 { color: #fff; font-size: 16px; font-weight: 800; margin: 0 0 4px; }
    .stem-banner p { color: #94a3b8; font-size: 13px; margin: 0; }

    /* ── WALLET ── */
    .wallet-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
    .wallet-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(200,149,42,.2); border: 1px solid rgba(200,149,42,.4); color: var(--gold-light); padding: 8px 16px; border-radius: 50px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 20px; }
    .wallet-title { font-family: 'Playfair Display', serif; font-size: clamp(24px,3vw,36px); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px; }
    .wallet-amount { font-size: 52px; font-weight: 900; color: var(--gold-light); line-height: 1; margin-bottom: 6px; }
    .wallet-amount-lbl { font-size: 14px; color: #94a3b8; margin-bottom: 22px; }
    .wallet-desc { font-size: 16px; color: #94a3b8; line-height: 1.75; margin-bottom: 26px; }
    .wallet-uses { list-style: none; padding: 0; }
    .wallet-uses li { display: flex; align-items: center; gap: 12px; color: #cbd5e0; font-size: 14px; margin-bottom: 12px; }
    .wallet-uses li::before { content: '→'; color: var(--gold); font-weight: 700; }
    .wallet-visual { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 36px; text-align: center; }
    .wallet-card { background: linear-gradient(135deg, var(--gold) 0%, #e8a82a 100%); border-radius: 16px; padding: 28px; text-align: left; box-shadow: 0 20px 60px rgba(0,0,0,.4); position: relative; overflow: hidden; }
    .wallet-card::before { content: ''; position: absolute; top: -30px; right: -30px; width: 120px; height: 120px; background: rgba(255,255,255,.15); border-radius: 50%; }
    .wallet-card-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
    .wallet-card-amount { font-size: 38px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; }
    .wallet-card-name { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.8); margin-top: 18px; }
    .wallet-card-desc { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; }

    /* ── CRP ── */
    .crp-bg { background: var(--light-bg); }
    .crp-phase { background: #fff; border-radius: 16px; padding: 28px 22px; border: 1.5px solid var(--border); transition: all .3s; height: 100%; }
    .crp-phase:hover { border-color: var(--gold); box-shadow: 0 12px 40px rgba(200,149,42,.1); transform: translateY(-4px); }
    .crp-num { font-size: 12px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
    .crp-phase h4 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
    .crp-list { list-style: none; padding: 0; }
    .crp-list li { font-size: 14px; color: var(--muted); margin-bottom: 9px; display: flex; gap: 8px; line-height: 1.5; }
    .crp-list li::before { content: '▸'; color: var(--navy); flex-shrink: 0; }

    /* ── CII ── */
    .cii-section { background: var(--navy); }
    .cii-detail { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 36px; }
    .cii-tag { background: rgba(200,149,42,.15); border: 1px solid rgba(200,149,42,.3); color: var(--gold-light); padding: 7px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; display: inline-block; margin: 4px 4px 4px 0; }
    .cii-item { display: flex; gap: 12px; margin-bottom: 16px; color: #cbd5e0; font-size: 15px; line-height: 1.6; }
    .cii-arrow { color: var(--gold); flex-shrink: 0; }

    /* ── INTERNATIONAL ── */
    .intl-card { border-radius: 16px; overflow: hidden; border: 1.5px solid var(--border); transition: all .3s; height: 100%; }
    .intl-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); border-color: var(--navy); }
    .intl-card-head { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); padding: 26px 26px 20px; }
    .intl-duration { font-size: 11px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
    .intl-card-head h4 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
    .intl-card-head p { color: #94a3b8; font-size: 13px; }
    .intl-card-body { background: #fff; padding: 22px 26px; }
    .country-tag { background: rgba(255,255,255,.08); color: #cbd5e0; padding: 6px 13px; border-radius: 50px; font-size: 12px; font-weight: 600; border: 1px solid rgba(255,255,255,.15); display: inline-flex; align-items: center; gap: 7px; margin: 3px; }
    .country-tag .fi { width: 18px; height: 13px; border-radius: 2px; flex-shrink: 0; }
    .intl-card-body .country-tag { background: rgba(27,48,92,.06); color: var(--navy); border-color: rgba(27,48,92,.1); }
    .intl-card-body .country-tag { color: var(--navy); }
    .intl-card-body p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 12px; }

    /* ── PLACEMENTS ── */
    .placement-stat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 28px 22px; text-align: center; transition: all .3s; }
    .placement-stat:hover { background: rgba(255,255,255,.08); border-color: var(--gold); transform: translateY(-4px); }
    .placement-stat .icon { font-size: 32px; margin-bottom: 10px; }
    .placement-stat .num { font-size: 40px; font-weight: 900; color: var(--gold-light); line-height: 1; margin-bottom: 5px; }
    .placement-stat .lbl { font-size: 13px; color: #94a3b8; }
    .logos-label { text-align: center; color: #94a3b8; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
    .marquee-wrapper { overflow: hidden; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
    .marquee-track { display: flex; gap: 14px; width: max-content; animation: scroll-left 35s linear infinite; margin-bottom: 14px; }
    .marquee-track.reverse { animation: scroll-right 40s linear infinite; }
    @keyframes scroll-left { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    @keyframes scroll-right { from{transform:translateX(-50%)} to{transform:translateX(0)} }
    .marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
    .logo-item { background: #fff; border-radius: 10px; padding: 10px 16px; display: flex; align-items: center; justify-content: center; min-width: 140px; height: 64px; flex-shrink: 0; transition: all .2s; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
    .logo-item:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.25); }
    .logo-item img { max-height: 40px; max-width: 120px; width: auto; object-fit: contain; }

    /* ── LEADERSHIP ── */
    .leader-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.06); transition: all .3s; border: 1.5px solid transparent; height: 100%; }
    .leader-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.12); border-color: var(--gold); }
    .leader-photo { width: 100%; height:auto; object-fit: contain; object-position: center; display: block; background: #f0f2f5; padding: 8px; }
    .leader-info { padding: 18px 20px; }
    .leader-info h4 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
    .leader-info .role { font-size: 13px; color: var(--gold); font-weight: 600; line-height: 1.4; }
    .leader-info .campus { font-size: 12px; color: var(--muted); margin-top: 5px; }

    /* ── TESTIMONIALS ── */
    .testi-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 26px; transition: all .3s; height: 100%; }
    .testi-card:hover { border-color: var(--gold); box-shadow: 0 12px 40px rgba(200,149,42,.1); transform: translateY(-4px); }
    .testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 8px; }
    .testi-quote { font-size: 38px; color: var(--gold); line-height: 1; margin-bottom: 4px; font-family: Georgia, serif; }
    .testi-text { font-size: 14px; line-height: 1.75; font-style: italic; margin-bottom: 18px; }
    .testi-initials { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; font-weight: 800; flex-shrink: 0; }
    .testi-name { font-size: 14px; font-weight: 800; color: var(--navy); }
    .testi-detail { font-size: 12px; color: var(--muted); }
    .testi-salary { display: inline-block; background: rgba(22,163,74,.1); color: #16a34a; padding: 2px 8px; border-radius: 50px; font-size: 11px; font-weight: 700; margin-top: 3px; }
    .video-card { border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.1); }
    .video-card video { width: 100%; display: block; max-height:500px; object-fit: cover; background: #000; }
    .video-card-label { background: var(--navy); padding: 12px 15px; }
    .video-card-label strong { display: block; color: #fff; font-size: 14px; font-weight: 700; }
    .video-card-label span { color: #94a3b8; font-size: 12px; }

    /* ── CAMPUS LIFE ── */
    .campus-card { background: #fff; border-radius: 14px; padding: 24px 18px; text-align: center; border: 1.5px solid var(--border); transition: all .3s; height: 100%; }
    .campus-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 10px 32px rgba(200,149,42,.1); }
    .campus-emoji { font-size: 34px; margin-bottom: 12px; display: block; }
    .campus-card h4 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
    .campus-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* ── PROCESS ── */
    .process-bg { background: var(--light-bg); }
    .process-step { text-align: center; padding: 0 16px; position: relative; }
    .step-circle { width: 70px; height: 70px; background: #fff; border: 3px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 18px; box-shadow: 0 4px 16px rgba(200,149,42,.2); position: relative; }
    .step-circle .step-n { position: absolute; top: -7px; right: -7px; width: 20px; height: 20px; background: var(--gold); color: #fff; font-size: 10px; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .process-step h4 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
    .process-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }
    .step-tag { display: inline-block; background: rgba(151,40,54,.08); color: var(--accent); padding: 3px 10px; border-radius: 50px; font-size: 11px; font-weight: 700; margin-top: 8px; }
    .process-connector { position: relative; }
    .process-connector::before { content: ''; position: absolute; top: 35px; left: calc(50% + 44px); right: calc(-50% + 44px); height: 2px; background: linear-gradient(90deg, var(--gold), var(--navy)); z-index: 0; }

    /* ── FAQ ── */
    .faq-accordion .accordion-item { border: 1.5px solid var(--border); border-radius: 12px !important; margin-bottom: 12px; overflow: hidden; }
    .faq-accordion .accordion-button { font-weight: 700; font-size: 15px; color: var(--navy); background: #fff; padding: 18px 22px; }
    .faq-accordion .accordion-button:not(.collapsed) { color: var(--navy); background: var(--light-bg); box-shadow: none; }
    .faq-accordion .accordion-button::after { background-image: none; content: '+'; font-size: 22px; font-weight: 300; color: var(--navy); width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: rgba(27,48,92,.1); border-radius: 50%; transition: all .25s; flex-shrink: 0; }
    .faq-accordion .accordion-button:not(.collapsed)::after { content: '×'; background: var(--accent); color: #fff; transform: none; }
    .faq-accordion .accordion-body { font-size: 14px; color: var(--muted); line-height: 1.75; padding: 0 22px 18px; }

    /* ── FINAL CTA ── */
    .final-cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); text-align: center; position: relative; overflow: hidden; }
    .final-cta::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,149,42,.1) 0%, transparent 70%); pointer-events: none; }
    .cta-deadline { display: inline-flex; align-items: center; gap: 8px; color: #94a3b8; font-size: 13px; margin-top: 20px; }
    .cta-deadline strong { color: var(--gold-light); }

    /* ── FOOTER ── */
    .iilm-footer { background: #060f1e; padding: 36px 0; }
    .footer-brand strong { color: #fff; font-size: 15px; font-weight: 700; }
    .footer-brand span { color: #4a5568; font-size: 12px; display: block; margin-top: 4px; }
    .footer-links a { color: #4a5568; text-decoration: none; font-size: 12px; transition: color .2s; margin-left: 16px; }
    .footer-links a:hover { color: #94a3b8; }
    .footer-copy { color: #2d3748; font-size: 12px; }

    /* ── FLOATING CTA ── */
    .float-cta { position: fixed; bottom: 28px; right: 28px; background: var(--accent); color: #fff; padding: 13px 22px; border-radius: 50px; font-weight: 700; font-size: 14px; text-decoration: none; box-shadow: 0 8px 32px rgba(151,40,54,.5); z-index: 1050; display: flex; align-items: center; gap: 8px; transition: all .2s, opacity .3s; opacity: 0; pointer-events: none; }
    .float-cta.show { opacity: 1; pointer-events: auto; animation: floatbob 3s ease-in-out infinite; }
    .float-cta:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(151,40,54,.65); animation: none; color: #fff; }
    @keyframes floatbob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

    /* ── RESPONSIVE ── */
    @media (max-width: 991px) {
      .trust-sep { display: none; }
      .trust-bar .d-flex { justify-content: center; flex-wrap: wrap; gap: 20px !important; }
    }
    @media (max-width: 767px) {
      section { padding: 60px 0; }
      .campus-tabs-nav { flex-direction: column; }
      .campus-tab-btn { border-right: none; border-bottom: 1px solid var(--border); }
      .campus-tab-btn:last-child { border-bottom: none; }
      .spec-grid { grid-template-columns: 1fr; }
      .float-cta { bottom: 16px; right: 16px; }
      .stat-num { font-size: 26px;
    }
    @media (max-width: 480px) {
      .spec-grid { grid-template-columns: 1fr; }
      .hero-h1 { font-size: 30px; }
      .stat-num { font-size: 26px;
    }