/* ── RESET ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'Inter','Helvetica Neue',Arial,sans-serif;color:#3d3d3d;line-height:1.6;background:#fff;overflow-x:hidden}
img{max-width:100%;height:auto}
table{max-width:100%}
:root{--nav-h:52px}

/* ================================================================
   NAV BAR
   ================================================================ */
.ilp-nav{position:sticky;top:0;z-index:200;background:#1B2A4A;box-shadow:0 2px 16px rgba(27,42,74,.45);height:var(--nav-h);display:flex;align-items:center;font-family:'Inter',sans-serif}
.ilp-nav .n-inner{max-width:1160px;margin:0 auto;width:100%;padding:0 16px;display:flex;align-items:center;justify-content:space-between;gap:12px}
.ilp-nav .n-brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.ilp-nav .n-logo{font-size:15px;font-weight:700;color:#fff;letter-spacing:.4px;white-space:nowrap}
.ilp-nav .n-logo img{width:80%}
.ilp-nav .n-badge{display:none;background:rgba(201,168,76,.14);border:1px solid rgba(201,168,76,.38);border-radius:50px;padding:3px 10px;font-size:10px;font-weight:700;color:#C9A84C;letter-spacing:.5px;text-transform:uppercase;white-space:nowrap}
.ilp-nav .n-links{display:none;list-style:none;gap:2px;align-items:center;margin:0;padding:0}
.ilp-nav .n-links a{font-size:12px;font-weight:500;color:rgba(255,255,255,.72);text-decoration:none;padding:6px 10px;border-radius:6px;white-space:nowrap;transition:color .15s,background .15s}
.ilp-nav .n-links a:hover{color:#fff;background:rgba(255,255,255,.08)}
.ilp-nav .n-toggle{background:none;border:1.5px solid rgba(255,255,255,.3);border-radius:6px;padding:7px 8px;cursor:pointer;display:flex;flex-direction:column;gap:4px;flex-shrink:0}
.ilp-nav .n-toggle span{display:block;width:18px;height:2px;background:#fff;border-radius:2px}
.ilp-nav .n-drawer{display:none;position:fixed;top:var(--nav-h);left:0;right:0;background:#1B2A4A;border-top:1px solid rgba(255,255,255,.1);padding:12px 16px 16px;z-index:199;box-shadow:0 8px 24px rgba(0,0,0,.35)}
.ilp-nav .n-drawer.open{display:block}
.ilp-nav .n-drawer a{display:block;padding:11px 14px;color:rgba(255,255,255,.8);font-size:14px;font-weight:500;text-decoration:none;border-radius:8px;transition:background .15s}
.ilp-nav .n-drawer a:hover{background:rgba(255,255,255,.08);color:#fff}
@media(min-width:480px){.ilp-nav .n-badge{display:inline-block}}
@media(min-width:820px){.ilp-nav .n-links{display:flex}.ilp-nav .n-toggle{display:none}}

/* ================================================================
   HERO SECTION
   ================================================================ */
.ilp-hero{background:linear-gradient(135deg,#0f1e38 0%,#1B2A4A 55%,#243660 100%);padding:56px 16px;position:relative;overflow:hidden}
.ilp-hero::before{content:'';position:absolute;right:-60px;top:-60px;width:380px;height:380px;border-radius:50%;background:rgba(201,168,76,.07);pointer-events:none}
.ilp-hero-inner{max-width:1160px;margin:0 auto;display:grid;grid-template-columns:1fr;gap:40px;align-items:start;position:relative;z-index:1}
.ilp-hero-badge{display:inline-block;background:rgba(201,168,76,.15);border:1px solid rgba(201,168,76,.4);border-radius:50px;padding:5px 16px;font-size:11px;font-weight:700;color:#C9A84C;letter-spacing:.8px;text-transform:uppercase;margin-bottom:18px}
.ilp-hero-h1{font-family:'Playfair Display',Georgia,serif;font-size:clamp(26px,4.5vw,44px);font-weight:700;color:#fff;line-height:1.15;margin-bottom:14px}
.ilp-hero-sub{font-size:clamp(13px,1.6vw,16px);color:rgba(255,255,255,.72);line-height:1.75;max-width:540px;margin-bottom:28px}
.ilp-hero-stats{display:flex;flex-wrap:wrap;gap:0;margin-bottom:32px}
.ilp-hs-item{text-align:center;padding:0 20px}
.ilp-hs-item:first-child{padding-left:0}
.ilp-hs-item+.ilp-hs-item{border-left:1px solid rgba(255,255,255,.15)}
.ilp-hs-num{display:block;font-size:26px;font-weight:700;color:#C9A84C;line-height:1.1}
.ilp-hs-lbl{display:block;font-size:10px;color:rgba(255,255,255,.5);text-transform:uppercase;letter-spacing:.5px;margin-top:3px}
.ilp-hero-links{display:flex;flex-wrap:wrap;gap:10px}
.ilp-hero-links a{font-size:13px;font-weight:700;padding:11px 24px;border-radius:8px;text-decoration:none;letter-spacing:.3px;display:inline-block}
.ilp-hl-primary{background:#972836;color:#fff !important}
.ilp-hl-secondary{background:rgba(255,255,255,.1);border:1.5px solid rgba(255,255,255,.3);color:#fff !important}
.ilp-form-card{background:#fff;border-radius:14px;padding:28px 22px;box-shadow:0 8px 40px rgba(0,0,0,.25)}
.ilp-form-card-hd{font-family:'Playfair Display',Georgia,serif;font-size:18px;font-weight:700;color:#1B2A4A;margin-bottom:4px}
.ilp-form-card-sub{font-size:12px;color:#888;margin-bottom:20px;line-height:1.5}
@media(min-width:768px){
  .ilp-hero{padding:72px 24px}
  .ilp-hero-inner{grid-template-columns:1fr 1fr;gap:52px;align-items:center}
}
@media(min-width:960px){
  .ilp-hero{padding:80px 24px}
  .ilp-hero-inner{grid-template-columns:58% 42%}
  .ilp-form-card{padding:36px 32px}
}

/* ================================================================
   PAGE STYLES — scoped to .ilp
   ================================================================ */
.ilp{--navy:#1b305c;--gold:#C9A84C;--gold-h:#b3933f;--grey:#f5f6f8;--white:#fff;--fs:'Playfair Display',Georgia,serif;font-family:'Inter','Helvetica Neue',Arial,sans-serif;color:#3d3d3d;line-height:1.6}
.ilp a{text-decoration:none;color:inherit}
.ilp button{font-family:inherit;cursor:pointer}
.ilp .sec{padding:48px 16px;overflow:hidden}
.ilp .con{max-width:1160px;margin:0 auto;width:100%;padding-left:16px;padding-right:16px}
.ilp .s-nv{background:var(--navy)}
.ilp .s-gy{background:var(--grey)}
.ilp .s-wh{background:var(--white)}
.ilp .s-gd{background:var(--gold)}
.ilp .sh{font:700 26px/1.25 var(--fs);color:var(--navy);text-align:center;margin-bottom:12px}
.ilp .sh.inv{color:var(--gold)}
.ilp .ssub{text-align:center;color:#666;font-size:15px;max-width:680px;margin:0 auto 16px;line-height:1.7}
.ilp .ssub.inv{color:rgba(255,255,255,.72)}
.ilp .rule{width:44px;height:3px;background:var(--gold);margin:0 auto 36px;border-radius:2px}
.ilp .meta-lbl{font-size:10px;font-weight:700;color:#aaa;letter-spacing:1px;text-transform:uppercase;display:block;margin-bottom:3px}
.ilp .meta-val{font-size:13px;font-weight:700;color:var(--navy);display:block}

/* ── STICKY TAB BAR ── */
.ilp .tab-outer{position:sticky;top:var(--nav-h);z-index:80;background:var(--navy);box-shadow:0 4px 20px rgba(27,42,74,.35);width:100%}
.ilp .tab-row{max-width:1160px;margin:0 auto}
.ilp .tab-nav{display:flex;width:100%}
.ilp .tab-btn{flex:1 1 0;background:none;border:none;border-bottom:3px solid transparent;padding:13px 8px 14px;display:flex;flex-direction:column;align-items:center;gap:3px;transition:background .18s,border-color .18s;cursor:pointer}
.ilp .tab-btn.active{background:rgba(201,168,76,.12);border-bottom-color:var(--gold)}
.ilp .tab-btn:hover{background:rgba(255,255,255,.06)}
.ilp .tb-name{font-size:12px;font-weight:700;color:rgba(255,255,255,.55);transition:color .18s;line-height:1.2;text-align:center;white-space:nowrap}
.ilp .tb-sub{font-size:9px;color:rgba(255,255,255,.3);line-height:1.2;transition:color .18s;text-align:center;white-space:nowrap}
.ilp .tab-btn.active .tb-name{color:var(--gold);font-size:13px}
.ilp .tab-btn.active .tb-sub{color:rgba(201,168,76,.75)}
.ilp .tab-btn:hover .tb-name{color:var(--white)}
.ilp .tab-btn:hover .tb-sub{color:rgba(255,255,255,.55)}
.ilp .tab-panel{display:none}
.ilp .tab-panel.active{display:block;padding-top:36px}
.ilp .tab-cols{display:flex;flex-direction:column;gap:32px}
.ilp .tab-col{width:100%}
.ilp .campus-switch{padding:20px 0 4px;border-top:1px solid #e4e4e4;margin-top:24px}
.ilp .cs-label{display:block;font-size:12px;color:#999;margin-bottom:8px}
.ilp .cs-btn{display:block;width:100%;background:none;border:1.5px solid var(--navy);color:var(--navy);font-size:13px;font-weight:700;padding:10px 16px;border-radius:8px;transition:background .2s,color .2s;text-align:left;line-height:1.4}
.ilp .cs-btn:hover{background:var(--navy);color:#fff}

/* ── PROGRAMME CARD ── */
.ilp .prog-badge{display:inline-block;background:rgba(201,168,76,.1);color:#9a7a30;font-size:11px;font-weight:700;padding:5px 14px;border-radius:50px;margin-bottom:14px;letter-spacing:.6px;border:1px solid rgba(201,168,76,.3);text-transform:uppercase}
.ilp .prog-title{font:700 22px/1.25 var(--fs);color:var(--navy);margin-bottom:12px}
.ilp .prog-desc{color:#555;font-size:14px;line-height:1.8;margin-bottom:20px}
.ilp .meta-row{display:flex;gap:16px;margin-bottom:24px;flex-wrap:wrap}
.ilp .spec-ttl{font-size:10px;font-weight:700;color:#aaa;letter-spacing:1px;text-transform:uppercase;margin-bottom:10px}
.ilp .chip-wrap{display:flex;flex-wrap:wrap;gap:7px}
.ilp .chip{background:var(--grey);border:1px solid #e0e0e0;color:#555;font-size:12px;padding:5px 11px;border-radius:50px}
.ilp .chip.kpmg{background:rgba(0,82,204,.07);border-color:rgba(0,82,204,.22);color:#0052cc;font-weight:700}
.ilp .chip.hcl{background:rgba(0,135,73,.07);border-color:rgba(0,135,73,.22);color:#008749;font-weight:700}
.ilp .path-grid{display:grid;grid-template-columns:1fr;gap:10px;margin-bottom:24px}
.ilp .path-card{background:var(--white);border:1.5px solid #e0e0e0;border-radius:10px;padding:16px 14px;text-align:center;position:relative}
.ilp .path-card.path-feat{border-color:var(--gold);background:rgba(201,168,76,.05)}
.ilp .path-card.path-feat::before{content:'MOST CHOSEN';font-size:9px;font-weight:700;letter-spacing:.7px;color:var(--gold);position:absolute;top:-1px;left:50%;transform:translateX(-50%);background:#fdf9f0;padding:0 8px}
.ilp .path-ic{font-size:22px;margin-bottom:8px}
.ilp .path-name{font-weight:700;font-size:13px;color:var(--navy);margin-bottom:6px;line-height:1.2}
.ilp .path-desc{font-size:12px;color:#666;line-height:1.6}
.ilp .minor-row{display:flex;flex-wrap:wrap;gap:6px;margin-top:8px;justify-content:center}
.ilp .minor-chip{background:rgba(27,42,74,.06);border:1px solid rgba(27,42,74,.15);color:var(--navy);font-size:10px;padding:3px 9px;border-radius:50px;font-weight:700}
.ilp .pillars-hd{font-size:11px;font-weight:700;color:var(--navy);text-transform:uppercase;letter-spacing:.8px;margin:20px 0 10px}
.ilp .pillar-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:8px;margin-bottom:6px}
.ilp .pillar-card{background:var(--white);border:1.5px solid #e0e0e0;border-radius:10px;padding:14px 10px 12px;text-align:center}
.ilp .pillar-card:nth-child(1){border-color:#1B2A4A}
.ilp .pillar-card:nth-child(2){border-color:#C9A84C}
.ilp .pillar-card:nth-child(3){border-color:#2E7D32}
.ilp .pillar-card:nth-child(4){border-color:#1565C0}
.ilp .pillar-ic{font-size:22px;display:block;margin-bottom:8px}
.ilp .pillar-lbl{font-size:12px;font-weight:700;color:var(--navy);line-height:1.3;display:block;margin-bottom:5px}
.ilp .pillar-sub{font-size:11px;color:#666;line-height:1.5}
.ilp .usp-list{list-style:none}
.ilp .usp-list li{display:flex;gap:12px;align-items:flex-start;padding:13px 0;border-bottom:1px solid #f0f0f0}
.ilp .usp-list li:last-child{border-bottom:none}
.ilp .usp-ic{width:34px;height:34px;min-width:34px;background:rgba(201,168,76,.1);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:16px}
.ilp .usp-text{font-size:14px;color:#444;line-height:1.65}
.ilp .usp-text strong{color:var(--navy)}

/* ── BSc STRIP ── */
.ilp .bsc-strip{display:flex;flex-direction:column;gap:24px;background:var(--navy);border-radius:12px;padding:28px 22px;margin:32px 0}
.ilp .bsc-uol-badge{display:inline-flex;align-items:center;background:rgba(201,168,76,.15);border:1px solid rgba(201,168,76,.4);border-radius:6px;padding:6px 12px;margin-bottom:10px}
.ilp .bsc-uol-badge span{font-size:11px;font-weight:700;color:var(--gold);letter-spacing:.5px;text-transform:uppercase}
.ilp .bsc-title{font:700 20px/1.25 var(--fs);color:var(--white);margin-bottom:8px}
.ilp .bsc-desc{font-size:14px;color:rgba(255,255,255,.75);line-height:1.75}
.ilp .bsc-specs{margin-top:12px}
.ilp .bsc-spec-lbl{font-size:10px;font-weight:700;color:rgba(201,168,76,.9);text-transform:uppercase;letter-spacing:.8px;margin-bottom:8px}
.ilp .bsc-chips{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:16px}
.ilp .bsc-chip{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.2);color:rgba(255,255,255,.85);font-size:11px;padding:4px 11px;border-radius:50px}
.ilp .bsc-perks{list-style:none;display:flex;flex-direction:column;gap:6px}
.ilp .bsc-perks li{font-size:12px;color:rgba(255,255,255,.7);line-height:1.5;padding-left:14px;position:relative}
.ilp .bsc-perks li::before{content:'→';position:absolute;left:0;color:var(--gold);font-weight:700}
.ilp .bsc-right{display:flex;flex-direction:column;gap:12px}
.ilp .bsc-meta{display:flex;flex-direction:column;gap:2px}
.ilp .bsc-contact{background:rgba(255,255,255,.07);border-radius:8px;padding:12px 14px;font-size:12px;color:rgba(255,255,255,.65);line-height:1.8}
.ilp .bsc-contact a{color:var(--gold);text-decoration:underline;text-underline-offset:2px}

/* ── STATS ── */
.ilp .rank-row{display:grid;grid-template-columns:1fr;gap:16px;margin-bottom:36px}
.ilp .rank-badge{background:rgba(255,255,255,.08);border:1px solid rgba(201,168,76,.35);border-radius:10px;padding:18px 20px;text-align:center}
.ilp .r-num{display:block;font-size:28px;font-weight:700;color:var(--gold);line-height:1.1;margin-bottom:6px}
.ilp .r-lbl{display:block;font-size:13px;color:rgba(255,255,255,.75);line-height:1.4}
.ilp .stats-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.ilp .stat-item{background:rgba(255,255,255,.06);border-radius:10px;padding:20px 14px;text-align:center}
.ilp .s-num{display:block;font-size:30px;font-weight:700;color:var(--gold);line-height:1.1;margin-bottom:6px}
.ilp .s-lbl{display:block;font-size:12px;color:rgba(255,255,255,.70);line-height:1.45}

/* ── WHY BBA ── */
.ilp .feat-grid{display:grid;grid-template-columns:1fr;gap:16px}
.ilp .feat-card{background:var(--grey);border-radius:12px;padding:24px 20px;border-left:4px solid var(--gold)}
.ilp .f-ic{font-size:28px;margin-bottom:10px;line-height:1}
.ilp .f-ttl{font-size:15px;font-weight:700;color:var(--navy);margin-bottom:8px;line-height:1.3}
.ilp .f-desc{font-size:14px;color:#555;line-height:1.65}

/* ── PLACEMENTS ── */
.ilp .plc-stats{display:grid;grid-template-columns:1fr 1fr;gap:16px;max-width:700px;margin:0 auto 36px}
.ilp .plc-stat{background:var(--white);border-radius:12px;padding:22px 16px;text-align:center;border-bottom:3px solid var(--gold)}
.ilp .ps-num{display:block;font-size:32px;font-weight:700;color:var(--navy);line-height:1.1;margin-bottom:6px}
.ilp .ps-lbl{display:block;font-size:12px;color:#666;line-height:1.45}
.ilp .rec-lbl{text-align:center;font-size:13px;font-weight:600;color:#888;text-transform:uppercase;letter-spacing:.08em;margin-bottom:18px}
.ilp .rec-strip{display:flex;flex-wrap:wrap;gap:8px;justify-content:center}
.ilp .rec-tile{background:var(--white);border:1px solid #e0e2e8;border-radius:6px;padding:8px 14px;font-size:13px;font-weight:600;color:var(--navy);white-space:nowrap}

/* ── SCHOLARSHIPS ── */
.ilp .schol-wrap{display:flex;justify-content:center}
.ilp .schol-single{background:var(--grey);border-radius:14px;padding:32px 24px;max-width:680px;width:100%;text-align:center;border-top:4px solid var(--gold)}
.ilp .schol-icon{font-size:40px;margin-bottom:16px;line-height:1}
.ilp .schol-body{font-size:15px;color:#555;line-height:1.7;margin-bottom:14px}
.ilp .schol-cta-line{font-size:14px;font-weight:600;color:var(--navy)}

/* ── CONTACT ── */
.ilp .cta-in{max-width:720px;margin:0 auto;text-align:center}
.ilp .cta-h{font-family:var(--fs);font-size:26px;font-weight:700;color:var(--navy);line-height:1.2;margin-bottom:16px}
.ilp .cta-sub{font-size:15px;color:rgba(27,42,74,.82);line-height:1.7;margin-bottom:28px}
.ilp .cta-contact{background:rgba(255,255,255,.55);border-radius:10px;padding:18px 20px;font-size:14px;color:var(--navy);line-height:1.9}
.ilp .cta-contact a{color:var(--navy);font-weight:600;text-decoration:underline;text-underline-offset:2px}
.ilp .cta-contact a:hover{color:#000}


/* ── SPECIALISATIONS SECTION ── */
.spec-section{background:#fff;padding:56px 16px}
.spec-grid{display:grid;grid-template-columns:1fr;gap:16px;margin-top:8px}
.spec-card{background:#f5f6f8;border-radius:12px;padding:22px 20px;border-left:4px solid var(--gold);position:relative;transition:box-shadow .2s,transform .2s}
.spec-card:hover{box-shadow:0 6px 24px rgba(27,42,74,.12);transform:translateY(-2px)}
.spec-card-ic{font-size:28px;margin-bottom:10px;line-height:1;display:block}
.spec-card-name{font-size:14px;font-weight:700;color:var(--navy);line-height:1.35;margin-bottom:8px}
.spec-card-desc{font-size:12px;color:#666;line-height:1.65;margin-bottom:10px}
.spec-card-careers{display:flex;flex-wrap:wrap;gap:5px}
.spec-career-chip{background:rgba(27,42,74,.07);border:1px solid rgba(27,42,74,.14);color:#555;font-size:10px;padding:3px 9px;border-radius:50px;font-weight:600}
.spec-partner-badge{display:inline-flex;align-items:center;gap:4px;font-size:10px;font-weight:700;padding:3px 9px;border-radius:50px;margin-bottom:10px}
.spec-partner-badge.hcl{background:rgba(0,135,73,.1);border:1px solid rgba(0,135,73,.25);color:#008749}
.spec-partner-badge.deloitte{background:rgba(134,31,65,.1);border:1px solid rgba(134,31,65,.25);color:#861f41}
@media(min-width:640px){.spec-section{padding:60px 24px}.spec-grid{grid-template-columns:repeat(2,1fr);gap:18px}}
@media(min-width:960px){.spec-section{padding:80px 24px}.spec-grid{grid-template-columns:repeat(3,1fr);gap:20px}}
@media(min-width:1100px){.spec-grid{grid-template-columns:repeat(4,1fr)}}

/* ── MONEY WALLET ── */
.mw-section{background:#1B2A4A;padding:56px 16px}
.mw-inner{max-width:1160px;margin:0 auto;display:grid;grid-template-columns:1fr;gap:40px;align-items:center}
.mw-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(201,168,76,.15);border:1px solid rgba(201,168,76,.4);border-radius:50px;padding:5px 14px;font-size:11px;font-weight:700;color:#C9A84C;letter-spacing:.7px;text-transform:uppercase;margin-bottom:18px}
.mw-badge::before{content:'■';font-size:8px}
.mw-heading{font-family:'Playfair Display',Georgia,serif;font-size:clamp(24px,3.5vw,36px);font-weight:700;color:#fff;line-height:1.2;margin-bottom:10px}
.mw-amount{font-size:clamp(32px,5vw,48px);font-weight:700;color:#C9A84C;line-height:1;margin-bottom:8px}
.mw-awarded{font-size:14px;color:rgba(255,255,255,.6);margin-bottom:18px}
.mw-desc{font-size:15px;color:rgba(255,255,255,.8);line-height:1.75;margin-bottom:24px;max-width:520px}
.mw-list{list-style:none;display:flex;flex-direction:column;gap:10px}
.mw-list li{font-size:14px;color:rgba(255,255,255,.75);line-height:1.6;padding-left:20px;position:relative}
.mw-list li::before{content:'→';position:absolute;left:0;color:#C9A84C;font-weight:700}
.mw-card{background:linear-gradient(135deg,#C9A84C 0%,#e8c46a 55%,#C9A84C 100%);border-radius:18px;padding:32px 28px;position:relative;overflow:hidden;box-shadow:0 12px 40px rgba(201,168,76,.35)}
.mw-card::before{content:'';position:absolute;right:-40px;top:-40px;width:160px;height:160px;border-radius:50%;background:rgba(255,255,255,.15);pointer-events:none}
.mw-card-lbl{font-size:11px;font-weight:700;color:rgba(27,42,74,.7);letter-spacing:1px;text-transform:uppercase;margin-bottom:12px}
.mw-card-amount{font-size:clamp(36px,5vw,52px);font-weight:700;color:#1B2A4A;line-height:1;margin-bottom:16px}
.mw-card-dots{display:flex;gap:5px;margin-bottom:16px}
.mw-card-dot{width:8px;height:8px;border-radius:50%;background:rgba(27,42,74,.3)}
.mw-card-dot.active{background:#1B2A4A}
.mw-card-batch{font-size:14px;font-weight:700;color:#1B2A4A;margin-bottom:4px}
.mw-card-sub{font-size:12px;color:rgba(27,42,74,.7)}
.mw-card-divider{border:none;border-top:1px solid rgba(27,42,74,.2);margin:18px 0}
.mw-card-tagline{font-size:13px;color:rgba(27,42,74,.75);line-height:1.6;margin-bottom:20px}
.mw-card-btn{display:block;width:100%;background:#972836;color:#fff !important;font-size:14px;font-weight:700;padding:13px 20px;border-radius:8px;text-align:center;border:none;cursor:pointer;letter-spacing:.3px;transition:background .2s}
.mw-card-btn:hover{background:#7a1f2a;color:#fff !important}
@media(min-width:768px){.mw-section{padding:72px 24px}.mw-inner{grid-template-columns:1fr 1fr;gap:60px}}
@media(min-width:960px){.mw-section{padding:80px 24px}.mw-inner{grid-template-columns:58% 42%}}

/* ── FOOTER ── */
.ilp-footer{background:#12223F;padding:40px 16px 20px;font-family:'Inter',sans-serif}
.ilp-footer-inner{max-width:1160px;margin:0 auto;display:grid;grid-template-columns:1fr;gap:28px}
.ilp-footer-col-hd{font-size:12px;font-weight:700;color:#C9A84C;text-transform:uppercase;letter-spacing:1px;margin-bottom:10px}
.ilp-footer p,.ilp-footer a{color:rgba(255,255,255,.6);font-size:13px;line-height:1.7;text-decoration:none}
.ilp-footer a:hover{color:#C9A84C}
.ilp-footer-bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:28px;padding-top:16px;text-align:center;color:rgba(255,255,255,.35);font-size:12px}

/* ================================================================
   RESPONSIVE — 640px (tablet)
   ================================================================ */
@media(min-width:640px){
  .ilp .sec{padding:60px 24px}
  .ilp .sh{font-size:30px}
  .ilp .ssub{font-size:16px}
  .ilp .rule{margin-bottom:44px}
  .ilp .tab-btn{padding:15px 16px 16px}
  .ilp .tb-name{font-size:14px}
  .ilp .tab-btn.active .tb-name{font-size:14px}
  .ilp .tb-sub{font-size:10px}
  .ilp .campus-switch{display:flex;align-items:center;gap:12px}
  .ilp .cs-label{display:inline;margin-bottom:0}
  .ilp .cs-btn{display:inline-block;width:auto;padding:8px 20px;border-radius:50px;font-size:12px}
  .ilp .prog-title{font-size:26px}
  .ilp .prog-desc{font-size:15px}
  .ilp .path-grid{grid-template-columns:repeat(3,1fr)}
  .ilp .pillar-grid{grid-template-columns:repeat(4,1fr)}
  .ilp .bsc-strip{flex-direction:row;align-items:flex-start;padding:32px 36px;gap:36px}
  .ilp .bsc-right{min-width:190px}
  .ilp .rank-row{grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:44px}
  .ilp .r-num{font-size:32px}
  .ilp .stats-row{gap:20px}
  .ilp .s-num{font-size:34px}
  .ilp .feat-grid{grid-template-columns:1fr 1fr;gap:20px}
  .ilp .feat-card{padding:28px 24px}
  .ilp .plc-stats{gap:20px;margin-bottom:44px}
  .ilp .plc-stat{padding:28px 20px}
  .ilp .ps-num{font-size:38px}
  .ilp .rec-tile{padding:9px 18px;font-size:14px}
  .ilp .schol-single{padding:40px 36px}
  .ilp .schol-icon{font-size:48px;margin-bottom:20px}
  .ilp .schol-body{font-size:16px}
  .ilp .cta-h{font-size:30px}
  .ilp .cta-contact{padding:22px 28px;font-size:15px}
  .ilp-footer-inner{grid-template-columns:repeat(2,1fr)}
}

/* ================================================================
   RESPONSIVE — 960px (desktop)
   ================================================================ */
@media(min-width:960px){
  .ilp .sec{padding:80px 24px}
  .ilp .sh{font-size:36px}
  .ilp .rule{margin-bottom:52px}
  .ilp .tab-btn{padding:18px 32px}
  .ilp .tb-name,.ilp .tab-btn.active .tb-name{font-size:15px}
  .ilp .tb-sub{font-size:11px}
  .ilp .tab-panel.active{padding-top:52px}
  .ilp .tab-cols{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:start}
  .ilp .tab-col{width:auto}
  .ilp .prog-title{font-size:28px}
  .ilp .meta-row{gap:28px}
  .ilp .bsc-strip{display:grid;grid-template-columns:1fr 220px;gap:40px;padding:36px 40px;margin:40px 0}
  .ilp .rank-row{gap:24px}
  .ilp .r-num{font-size:36px}
  .ilp .stats-row{grid-template-columns:repeat(4,1fr)}
  .ilp .stat-item{padding:28px 20px}
  .ilp .s-num{font-size:40px}
  .ilp .s-lbl{font-size:14px}
  .ilp .feat-grid{grid-template-columns:repeat(3,1fr);gap:24px}
  .ilp .feat-card{padding:32px 28px}
  .ilp .f-ic{font-size:32px;margin-bottom:14px}
  .ilp .f-ttl{font-size:17px;margin-bottom:10px}
  .ilp .f-desc{font-size:15px}
  .ilp .plc-stat{padding:32px 28px}
  .ilp .ps-num{font-size:44px}
  .ilp .cta-h{font-size:34px;margin-bottom:20px}
  .ilp .cta-contact{padding:26px 36px}
  .ilp-footer-inner{grid-template-columns:repeat(4,1fr)}
}

/* ── NAV APPLY BUTTON ── */
.ilp-nav .n-apply-btn{background:#972836;color:#fff !important;font-size:12px;font-weight:700;padding:7px 16px;border-radius:6px;text-decoration:none;white-space:nowrap;transition:background .2s}
.ilp-nav .n-apply-btn:hover{background:#7a1f2a !important}

/* ── HERO URGENCY ── */
.ilp-hero-urgency{font-size:12px;color:rgba(255,255,255,.55);margin-top:14px;display:flex;align-items:center;gap:6px;line-height:1.5}

/* ── CTA BAND ── */
.cta-band{background:linear-gradient(135deg,#0f1e38 0%,#1B2A4A 100%);padding:40px 24px;text-align:center}
.cta-band-inner{max-width:700px;margin:0 auto}
.cta-band-label{font-size:10px;font-weight:700;color:#C9A84C;letter-spacing:1.2px;text-transform:uppercase;margin-bottom:10px;display:block}
.cta-band-h{font-family:'Playfair Display',Georgia,serif;font-size:clamp(19px,2.5vw,26px);font-weight:700;color:#fff;line-height:1.3;margin-bottom:8px}
.cta-band-sub{font-size:14px;color:rgba(255,255,255,.65);line-height:1.65;margin-bottom:22px}
.cta-band-btns{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;align-items:center}
.cta-btn-gold{background:#972836;color:#fff !important;font-size:14px;font-weight:700;padding:13px 28px;border-radius:8px;text-decoration:none;letter-spacing:.3px;transition:background .2s;display:inline-block}
.cta-btn-gold:hover{background:#7a1f2a;color:#fff !important}
.cta-btn-ghost{background:transparent;border:1.5px solid rgba(255,255,255,.5);color:#fff !important;font-size:14px;font-weight:600;padding:12px 22px;border-radius:8px;text-decoration:none;transition:border-color .2s,background .2s;display:inline-block}
.cta-btn-ghost:hover{border-color:rgba(255,255,255,.8);background:rgba(255,255,255,.06);color:#fff !important}
.cta-band-proof{font-size:11px;color:rgba(255,255,255,.35);margin-top:14px;letter-spacing:.3px}

/* ── FINAL CTA SECTION ── */
.final-cta{background:linear-gradient(135deg,#C9A84C 0%,#e8c46a 50%,#C9A84C 100%);padding:56px 24px;text-align:center}
.final-cta-h{font-family:'Playfair Display',Georgia,serif;font-size:clamp(22px,3.5vw,34px);font-weight:700;color:#1B2A4A;line-height:1.2;margin-bottom:10px}
.final-cta-sub{font-size:15px;color:rgba(27,42,74,.8);line-height:1.7;margin-bottom:28px;max-width:600px;margin-left:auto;margin-right:auto}
.final-cta-btn{display:inline-block;background:#1b305c;color:#fff !important;font-size:15px;font-weight:700;padding:15px 36px;border-radius:8px;text-decoration:none;letter-spacing:.4px;margin-bottom:8px;transition:background .2s}
.final-cta-btn:hover{background:#0f1929;color:#fff !important}
.final-cta-small{font-size:12px;color:rgba(27,42,74,.6);margin-top:10px}

/* ── STICKY BOTTOM BAR ── */
.sticky-cta{position:fixed;bottom:0;left:0;right:0;z-index:300;background:#0f1e38;border-top:2px solid #C9A84C;padding:10px 16px;display:flex;align-items:center;justify-content:space-between;gap:10px;transform:translateY(100%);transition:transform .35s ease;font-family:'Inter',sans-serif}
.sticky-cta.visible{transform:translateY(0)}
.sticky-cta-text{display:flex;flex-direction:column;gap:1px;flex:1;min-width:0}
.sticky-cta-title{font-size:13px;font-weight:700;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sticky-cta-sub{font-size:10px;color:rgba(255,255,255,.45);white-space:nowrap}
.sticky-cta-actions{display:flex;gap:8px;align-items:center;flex-shrink:0}
.sticky-cta-apply{background:#972836;color:#fff !important;font-size:12px;font-weight:700;padding:8px 16px;border-radius:6px;text-decoration:none;white-space:nowrap;transition:background .2s}
.sticky-cta-apply:hover{background:#7a1f2a;color:#fff !important}
.sticky-cta-call{display:none;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);color:rgba(255,255,255,.85);font-size:12px;font-weight:600;padding:8px 14px;border-radius:6px;text-decoration:none;white-space:nowrap}
.sticky-cta-close{background:none;border:none;color:rgba(255,255,255,.35);font-size:20px;cursor:pointer;padding:2px 4px;line-height:1;flex-shrink:0}
.sticky-cta-close:hover{color:rgba(255,255,255,.7)}
@media(min-width:480px){.sticky-cta-call{display:inline-block}}
@media(min-width:640px){.sticky-cta{padding:12px 28px}.sticky-cta-title{font-size:14px}.sticky-cta-sub{font-size:11px}.sticky-cta-apply{font-size:13px;padding:9px 20px}}



/* ── AI + LABS ── */
.labs {
    background: var(--grey);
}

.labs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lab-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: transform .2s;
}

.lab-card:hover {
    transform: translateY(-3px);
}

.lab-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin-bottom: 16px;
}

.lab-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.lab-icon.apple {
    background: #fff3e8;
}

.lab-icon.dell {
    background: #e8f0fe;
}

.lab-icon.innov {
    background: #fef4e6;
}

.lab-icon.media {
    background: #f0f7ee;
}

.lab-card h4 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.lab-card p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.65;
}

section {
    padding: 96px 7%;
}

.section-h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

/* Tablet */
@media (max-width: 991px) {
    .labs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 70px 5%;
    }

    .lab-card {
        padding: 22px 18px;
    }

    .lab-card img {
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .labs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    section {
        padding: 50px 16px;
    }

    .section-h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .lab-card {
        padding: 18px 16px;
    }

    .lab-card img {
        height: auto;
        max-height: 220px;
    }

    .lab-card h4 {
        font-size: 1rem;
    }

    .lab-card p {
        font-size: .9rem;
        line-height: 1.6;
    }
}