/* ═══════════════════════════════════════════════════════════════
   shared.css  —  PES Law Faculty  |  All pages use this file
   Brand tokens + main.css + pages.css (Research portal pattern)
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. BRAND TOKENS ─────────────────────────────────────────── */
:root {
  --brand-navy:       #00377B;
  --brand-orange:     #FF6C00;
  --brand-blue-light: #61B9F0;
  --brand-pale-blue:  #F2F8FD;
  --brand-soft-blue:  #E4F3FD;
  --primary-gradient: linear-gradient(135deg,#00377B 0%,#0055B3 100%);
  --accent-gradient:  linear-gradient(135deg,#FF6C00 0%,#FF9240 100%);
  --bg-primary:    #ffffff;
  --bg-secondary:  #F0F0ED;
  --bg-tertiary:   #F2F8FD;
  --text-primary:  #0D1B2A;
  --text-secondary:#2E4A6B;
  --text-tertiary: #7B9BBF;
  --border-color:  #D3E4F2;
  --shadow-sm:  0 2px 8px  rgba(0,55,123,.06);
  --shadow-md:  0 8px 24px rgba(0,55,123,.10);
  --shadow-lg:  0 16px 48px rgba(0,55,123,.14);
  --font-title: "Merriweather", serif;
  --font-body:  "Noto Sans", sans-serif;
  --topbar-h:   40px;
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  20px;
  --transition: all .3s ease;
}
[data-theme="dark"] {
  --bg-primary:    #0D1B2A;
  --bg-secondary:  #112236;
  --bg-tertiary:   #1A3554;
  --text-primary:  #F2F8FD;
  --text-secondary:#A8C8E8;
  --text-tertiary: #61B9F0;
  --border-color:  rgba(97,185,240,.15);
  --shadow-sm: 0 2px 8px  rgba(0,0,0,.35);
  --shadow-md: 0 8px 24px rgba(0,0,0,.45);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.55);
}

/* ── 2. RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.7;
  transition: background .3s, color .3s;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── 3. ANIMATED BACKGROUND ──────────────────────────────────── */
.bg-elements { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .45; animation: blobDrift 18s ease-in-out infinite; }
.blob-1 { width:520px; height:520px; background: radial-gradient(circle,var(--brand-soft-blue),var(--brand-pale-blue)); top:-120px; left:-140px; }
.blob-2 { width:400px; height:400px; background: radial-gradient(circle,rgba(255,108,0,.09),rgba(255,146,64,.04)); bottom:-100px; right:-100px; animation-delay:-7s; }
.blob-3 { width:320px; height:320px; background: radial-gradient(circle,rgba(97,185,240,.14),var(--brand-soft-blue)); top:40%; left:60%; animation-delay:-13s; }
[data-theme="dark"] .blob-1 { background: radial-gradient(circle,rgba(0,55,123,.35),var(--bg-primary)); opacity:.4; }
[data-theme="dark"] .blob-2 { background: radial-gradient(circle,rgba(255,108,0,.12),var(--bg-primary)); opacity:.4; }
[data-theme="dark"] .blob-3 { background: radial-gradient(circle,rgba(97,185,240,.10),var(--bg-primary)); opacity:.4; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,55,123,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(0,55,123,.04) 1px,transparent 1px);
  background-size: 48px 48px;
}
@keyframes blobDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.06); }
  66%      { transform: translate(-25px,35px) scale(.94); }
}

/* ── 4. TOP BAR ──────────────────────────────────────────────── */
.site-topbar {
  position: sticky; top: 0; z-index: 1100;
  background: var(--brand-navy); height: var(--topbar-h);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.site-topbar-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.topbar-back { color: rgba(255,255,255,.6); font-size: 12px; display: flex; align-items: center; gap: 5px; transition: color .2s; }
.topbar-back:hover { color: #fff; }
.topbar-links { display: flex; align-items: center; gap: 18px; }
.topbar-links a { color: rgba(255,255,255,.6); font-size: 12px; display: flex; align-items: center; gap: 5px; transition: color .2s; }
.topbar-links a:hover { color: #fff; }
.topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,.2); }
.topbar-cta {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--brand-orange); border-radius: 6px; padding: 4px 12px;
  font-size: 12px; font-weight: 700; color: #fff !important; transition: opacity .2s, transform .2s;
}
.topbar-cta:hover { opacity: .88; transform: translateY(-1px); }

/* ── 5. STICKY HEADER ────────────────────────────────────────── */
.light-header {
  position: sticky; top: var(--topbar-h); z-index: 1050;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .3s, background .3s;
}
[data-theme="dark"] .light-header { background: rgba(13,27,42,.94); }
.light-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 1rem 2rem;
  height: 64px; display: flex; align-items: center; gap: 24px;
}
.logo-theme-wrapper { display: flex; align-items: center; gap: 15px; flex-shrink: 0; }
.logo-anchor { display: flex; align-items: center; gap: 10px;  }
.logo-anchor img {height: 44px; width: 100%;}
[data-theme="dark"] .logo-name { color: var(--brand-blue-light); }
.logo-sub { font-size: 10px; color: var(--text-tertiary); }
.theme-toggle-btn {
  background: none; border: 2px solid var(--border-color); border-radius: var(--radius-sm);
  width: 44px; height: 44px; cursor: pointer; color: var(--text-primary);
  display: flex; align-items: center; justify-content: center; font-size: 14px; transition: var(--transition);
}
.theme-toggle-btn:hover { background: var(--primary-gradient); color: var(--bg-primary); }
[data-theme="dark"] .theme-toggle-btn:hover { background: var(--primary-gradient); color: #fff }
.top-menu { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.menu-link { font-size: 15px; font-weight: 500; padding: 7px 13px; border-radius: var(--radius-sm); color: var(--text-secondary); transition: var(--transition); }
.menu-link:hover, .menu-link.active { background: var(--primary-gradient); color: #fff; }
[data-theme="dark"] .menu-link:hover, [data-theme="dark"] .menu-link.active { background: var(--bg-tertiary); color: var(--brand-blue-light); }
.auth-buttons { display: flex; gap: 8px; flex-shrink: 0; }
.btn-apply {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .7rem 1.4rem; background: var(--primary-gradient); color: #fff !important;
  border-radius: 10px; font-weight: 700; font-size: .875rem;
  box-shadow: 0 8px 24px rgba(0,55,123,.4); transition: var(--transition);
}
.btn-apply:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,55,123,.4); }

/* ── 6. MOBILE NAV ───────────────────────────────────────────── */
.mobile-menu-toggle {
  display: none; background: none; border: 1px solid var(--border-color);
  border-radius: var(--radius-sm); width: 38px; height: 38px; cursor: pointer;
  color: var(--text-primary); font-size: 18px; align-items: center; justify-content: center;
}
.mobile-dropdown {
  display: none; position: fixed; top: calc(var(--topbar-h) + 64px); left: 0; right: 0; bottom: 0;
  background: var(--bg-primary); z-index: 1040; overflow-y: auto;
  transform: translateY(-10px); opacity: 0; transition: transform .3s, opacity .3s;
}
.mobile-dropdown.open { transform: none; opacity: 1; pointer-events: all; }
.mobile-menu-section { padding: 16px; }
.mobile-menu-link { display: block; padding: 12px 16px; font-size: 15px; font-weight: 500; color: var(--text-primary); border-radius: var(--radius-sm); }
.mobile-menu-link:hover { background: var(--brand-soft-blue); color: var(--brand-navy); }
.mobile-apply-btn { display: block; margin-top: 12px; padding: 13px 16px; background: var(--accent-gradient); color: #fff; border-radius: var(--radius-sm); text-align: center; font-weight: 700; }

/* ── 7. MOBILE SIDEBAR BAR (pages.css) ───────────────────────── */
.pg-mobile-bar {
  background: var(--bg-primary); border-bottom: 1px solid var(--border-color);
  padding: .6rem 0; position: relative; z-index: 10; display: none;
}
.pg-mobile-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: 1.5px solid var(--border-color); border-radius: var(--radius-sm);
  padding: .65rem 1rem; cursor: pointer; color: var(--text-primary); transition: var(--transition);
}
.pg-mobile-toggle:hover { border-color: var(--brand-navy); }
.pg-mobile-toggle-left { display: flex; align-items: center; gap: .75rem; }
.pg-mobile-toggle-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--primary-gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.pg-mobile-toggle-label { font-weight: 700; font-size: .9rem; line-height: 1.2; }
.pg-mobile-toggle-sub { display: block; font-size: .75rem; color: var(--text-tertiary); font-weight: 400; }
.pg-toggle-chevron { transition: transform .3s; color: var(--text-tertiary); }
.pg-mobile-toggle.open .pg-toggle-chevron { transform: rotate(180deg); }
.pg-mobile-nav-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.pg-mobile-nav-panel.open { max-height: 400px; padding-bottom: .5rem; }
.pg-mobile-nav-panel ul { padding: .5rem 0 0; }
.pg-mobile-nav-panel li a { display: block; padding: .6rem .75rem; border-radius: 8px; font-size: .9rem; font-weight: 500; color: var(--text-secondary); transition: var(--transition); }
.pg-mobile-nav-panel li a:hover, .pg-mobile-nav-panel li a.active { background: var(--brand-soft-blue); color: var(--brand-navy); }


    /* HERO */
    .ix-hero { position: relative; overflow: hidden; display: flex; flex-direction: column; }
    .ix-bg-slider { position: absolute; inset: 0; z-index: 0; }
    .ix-bg-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; }
    .ix-bg-slide.active { opacity: 1; }
    .ix-hero-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(to bottom, rgba(0,15,60,.62) 0%, rgba(0,30,90,.50) 60%, rgba(0,15,50,.30) 100%),
                  linear-gradient(110deg, rgba(0,15,60,.35) 0%, transparent 70%);
    }
    .ix-hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; min-height: 520px; justify-content: center; }
    .ix-hero-inner { max-width: 1400px; margin: 0 auto; width: 100%; padding: 5rem 2rem 3rem; }
    .ix-hero-text { max-width: 640px; }
    .ix-eyebrow { display:inline-flex; align-items:center; gap:.5rem; background:rgba(255,108,0,.22); border:1.5px solid rgba(255,108,0,.45); color:#fcd9b6; padding:.35rem .9rem; border-radius:50px; font-size:.75rem; font-weight:700; margin-bottom:1.5rem; }
    .ix-hero-title { font-family:var(--font-title); font-size:clamp(2rem,5vw,3.4rem); font-weight:900; color:#fff; line-height:1.12; margin-bottom:1.1rem; letter-spacing:-.5px; }
    .ix-hero-desc { font-size:1rem; color:rgba(255,255,255,.80); line-height:1.8; margin-bottom:2rem; max-width:520px; }
    .ix-hero-btns { display:flex; align-items:center; gap:1rem; flex-wrap:wrap; }
    .ix-hero-btn-primary { display:inline-flex; align-items:center; gap:.35rem; padding:.85rem 1.75rem; background:var(--accent-gradient); color:#fff!important; border-radius:10px; font-weight:700; font-size:.9rem; text-decoration:none; box-shadow:0 6px 24px rgba(255,108,0,.4); transition:all .25s; }
    .ix-hero-btn-primary:hover { transform:translateY(-2px); box-shadow:0 10px 32px rgba(255,108,0,.55); }
    .ix-hero-btn-primary i { font-size:1.2rem; }
    .ix-hero-btn-outline { display:inline-flex; align-items:center; padding:.99rem 4rem; background:rgba(255,255,255,.12); border:1.5px solid rgba(255,255,255,.35); color:#fff!important; border-radius:10px; font-weight:700; font-size:.9rem; text-decoration:none; backdrop-filter:blur(8px); transition:all .25s; }
    .ix-hero-btn-outline:hover { background:rgba(255,255,255,.22); }

    /* Dots */
    .ix-dots { position:absolute; bottom:1.5rem; left:50%; transform:translateX(-50%); display:flex; gap:.5rem; z-index:3; }
    .ix-dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,.4); border:none; cursor:pointer; transition:all .3s; padding:0; }
    .ix-dot.active { background:#fff; width:28px; border-radius:5px; }

    /* Stats strip */
    .ix-stats-strip { position:relative; z-index:2; background:rgba(0,5,25,.45); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border-top:1px solid rgba(255,255,255,.1); }
    .ix-stats-inner { max-width:1400px; margin:0 auto; padding:0 2rem; display:flex; align-items:stretch; justify-content:center; gap:0; }
    .ix-stat { flex:1; display:flex; align-items:center; gap:1rem; padding:1.25rem 1.5rem; }
    .ix-stat-divider { width:1px; background:rgba(255,255,255,.15); margin:.75rem 0; flex-shrink:0; }
    .ix-stat-icon { width:46px; height:46px; border-radius:12px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; font-size:1.3rem; color:#fff; flex-shrink:0; }
    .ix-stat-num { font-family:var(--font-title); font-size:1.6rem; font-weight:900; color:#fff; line-height:1; }
    .ix-stat-lbl { font-size:.72rem; color:rgba(255,255,255,.75); text-transform:uppercase; letter-spacing:.07em; font-weight:700; margin:.25rem 0 .15rem; }
    .ix-stat-sub { font-size:.68rem; color:rgba(255,255,255,.45); }

    /* Tagline bar */
    .ix-tagline-bar { position:relative; z-index:2; background:rgba(0,5,25,.50); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border-top:1px solid rgba(255,255,255,.1); padding:1.1rem 0; }
    .ix-tagline-inner { max-width:1400px; margin:0 auto; padding:0 2rem; text-align:center; }
    .ix-tagline-inner p { font-family:var(--font-title); font-size:clamp(.9rem,2vw,1.1rem); color:rgba(255,255,255,.85); margin:0; line-height:1.6; }
    .ix-highlight { color:var(--brand-orange); font-weight:900; }

    /* Shared section scaffold */
    .ix-section { padding:5rem 0; position:relative; z-index:1; }
    .ix-section:nth-child(odd)  { background:var(--bg-primary); }
    .ix-section:nth-child(even) { background:var(--bg-secondary); }
    .ix-container { max-width:1400px; margin:0 auto; padding:0 2rem; }
    .ix-section-head { margin-bottom:3rem; }
    .ix-section-label { display:inline-flex; align-items:center; gap:.4rem; font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--brand-orange); margin-bottom:.5rem; }
    .ix-section-title { font-family:var(--font-title); font-size:clamp(1.5rem,3vw,2.2rem); font-weight:900; color:var(--brand-navy); margin:0; line-height:1.2; }
    [data-theme="dark"] .ix-section-title { color:#F2F8FD; }

    /* Explore cards */
    .ix-explore-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.75rem; }
    .ix-explore-card { background:var(--bg-primary); border:2px solid var(--border-color); border-radius:var(--radius-lg); padding:2rem; box-shadow:var(--shadow-sm); transition:var(--transition); position:relative; overflow:hidden; }
    .ix-explore-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:var(--primary-gradient); transform:scaleX(0); transform-origin:left; transition:transform .4s; }
    .ix-explore-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); }
    .ix-explore-card:hover::before { transform:scaleX(1); }
    .ix-explore-card.featured { border-color:var(--brand-navy); }
    .ix-explore-card.featured::before { transform:scaleX(1); background:var(--accent-gradient); }
    [data-theme="dark"] .ix-explore-card { background:var(--bg-primary); }
    .ix-explore-icon { width:56px; height:56px; border-radius:16px; background:var(--primary-gradient); display:flex; align-items:center; justify-content:center; font-size:1.5rem; color:#fff; margin-bottom:1.25rem; }
    .ix-explore-title { font-family:var(--font-title); font-size:1.15rem; font-weight:700; color:var(--brand-navy); margin-bottom:.75rem; }
    [data-theme="dark"] .ix-explore-title { color:#F2F8FD; }
    .ix-explore-desc { font-size:.9rem; color:var(--text-secondary); line-height:1.8; margin-bottom:1.25rem; }
    .ix-explore-link { display:inline-flex; align-items:center; gap:.3rem; font-weight:700; font-size:.875rem; color:var(--brand-navy); transition:var(--transition); }
    .ix-explore-link i { font-size:1.2rem; transition:transform .3s; }
    .ix-explore-link:hover { color:var(--brand-orange); }
    .ix-explore-link:hover i { transform:translateX(4px); }
    [data-theme="dark"] .ix-explore-link { color:var(--brand-blue-light); }
    .ix-explore-links { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.6rem; }
    .ix-explore-links a { display:inline-flex; align-items:center; gap:.3rem; font-size:.875rem; font-weight:600; color:var(--brand-navy); transition:var(--transition); }
    .ix-explore-links a i { font-size:1.2rem; color:var(--brand-orange); transition:transform .3s; }
    .ix-explore-links a:hover { color:var(--brand-orange); }
    .ix-explore-links a:hover i { transform:translateX(4px); }
    [data-theme="dark"] .ix-explore-links a { color:var(--brand-blue-light); }

    /* About band */
    .ix-about-band { position:relative; background:var(--primary-gradient); overflow:hidden; padding:5rem 0; z-index:1; }
    .ix-about-bg { position:absolute; inset:0; pointer-events:none; }
    .ix-about-bg .shape-1,.ix-about-bg .shape-2 { position:absolute; border-radius:50%; opacity:.12; }
    .ix-about-bg .shape-1 { width:600px; height:600px; background:#fff; top:-200px; right:-150px; }
    .ix-about-bg .shape-2 { width:400px; height:400px; background:rgba(255,108,0,.5); bottom:-150px; left:80px; }
    .ix-about-inner { display:grid; grid-template-columns:1fr 2fr; gap:4rem; align-items:center; position:relative; z-index:2; }
    .ix-about-eyebrow { display:inline-flex; align-items:center; gap:.5rem; background:rgba(255,108,0,.22); border:1.5px solid rgba(255,108,0,.45); color:#fcd9b6; padding:.3rem .85rem; border-radius:50px; font-size:.72rem; font-weight:700; margin-bottom:1rem; }
    .ix-about-title { font-family:var(--font-title); font-size:clamp(2rem,4vw,3rem); font-weight:900; color:#fff; margin:0 0 1.25rem; line-height:1.1; }
    .ix-about-line { width:60px; height:5px; background:var(--accent-gradient); border-radius:3px; }
    .ix-about-lead { font-size:1rem; color:rgba(255,255,255,.9); line-height:1.9; margin-bottom:1.25rem; }
    .ix-about-body { font-size:.9rem; color:rgba(255,255,255,.7); line-height:1.9; margin-bottom:2rem; }

    /* News grid */
    .ix-news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.75rem; margin-bottom:2.5rem; }
    .ix-news-card { display:flex; flex-direction:column; background:var(--bg-primary); border:2px solid var(--border-color); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); transition:var(--transition); color:inherit!important; }
    .ix-news-card:hover { box-shadow:var(--shadow-md); transform:translateY(-5px); }
    .ix-news-img-wrap { position:relative; height:200px; overflow:hidden; flex-shrink:0; }
    .ix-news-img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
    .ix-news-card:hover .ix-news-img { transform:scale(1.06); }
    .ix-news-img-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,30,80,.55) 0%,transparent 60%); }
    .ix-news-body { padding:1.5rem; display:flex; flex-direction:column; flex:1; }
    .ix-news-date { font-size:.75rem; color:var(--text-tertiary); font-weight:600; margin-bottom:.6rem; display:flex; align-items:center; gap:.4rem; }
    .ix-news-title { font-family:var(--font-title); font-size:1rem; font-weight:700; color:var(--brand-navy); line-height:1.45; margin-bottom:.6rem; }
    [data-theme="dark"] .ix-news-title { color:#F2F8FD; }
    .ix-news-excerpt { font-size:.85rem; color:var(--text-secondary); line-height:1.75; margin-bottom:auto; padding-bottom:1rem; }
    .ix-news-read { display:inline-flex; align-items:center; gap:.3rem; font-size:.85rem; font-weight:700; color:var(--brand-navy); transition:var(--transition); margin-top:auto; }
    [data-theme="dark"] .ix-news-read { color:var(--brand-blue-light); }
    .ix-news-card:hover .ix-news-read { color:var(--brand-orange); }
    .ix-news-footer { text-align:center; }
.btn-outline {
      display: inline-flex; align-items: center; gap: 7px;
      border: 2px solid var(--brand-navy); color: var(--brand-navy);
      padding: 12px 28px; border-radius: var(--radius-md); font-weight: 700; font-size: 14px;
      transition: all .2s;
    }
    [data-theme="dark"] .btn-outline { border-color: var(--brand-blue-light); color: var(--brand-blue-light); }
    .btn-outline:hover { background: var(--brand-navy); color: #fff; }
    [data-theme="dark"] .btn-outline:hover { background: var(--brand-blue-light); color: var(--bg-primary); }

    /* Scroll-animate */
    [data-animate] { opacity:0; transform:translateY(24px); }
    [data-animate].visible { animation:fadeInUp .7s ease-out forwards; }
    [data-animate]:nth-child(2).visible { animation-delay:.1s; }
    [data-animate]:nth-child(3).visible { animation-delay:.2s; }
    @keyframes fadeInUp { to { opacity:1; transform:translateY(0); } }

    /* ══ LAW-SPECIFIC extras (same visual language) ══ */

    /* Quick-info cards under stats */
    .ix-quick-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      background: var(--bg-primary); border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg); overflow: hidden;
      border: 2px solid var(--border-color);
      margin-top: -44px; position: relative; z-index: 5;
    }
    .ix-quick-card {
      display: flex; align-items: flex-start; gap: 1rem; padding: 1.75rem 1.5rem;
      border-right: 1px solid var(--border-color); transition: background .2s;
    }
    .ix-quick-card:last-child { border-right: none; }
    .ix-quick-card:hover { background: var(--brand-pale-blue); }
    [data-theme="dark"] .ix-quick-card:hover { background: var(--bg-tertiary); }
    .ix-quick-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--primary-gradient); color: #fff;
      display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0;
    }
    .ix-quick-title { font-size: .95rem; font-weight: 700; color: var(--text-primary); margin-bottom: .3rem; }
    .ix-quick-link { font-size: .78rem; color: var(--brand-orange); font-weight: 700; display: inline-flex; align-items: center; gap: .25rem; transition: gap .2s; }
    .ix-quick-link:hover { gap: .5rem; }

    /* Split vision band */
    .ix-split-band { display: grid; grid-template-columns: 1fr 1fr; position: relative; z-index: 1; }
    .ix-split-content {
      padding: 4rem 3.25rem;
      background: var(--primary-gradient);
      display: flex; flex-direction: column; justify-content: center;
    }
    .ix-split-content-iframe {
      padding: 4rem 3.25rem;
      background: #f9f6fb;
      display: flex; flex-direction: column; justify-content: center;
    }
    .ix-split-iframe { display: flex; align-items: center; justify-content: center; background: var(--bg-secondary); min-height: 600px; padding: 0; overflow: hidden; }
    .ix-split-eyebrow { display:inline-flex; align-items:center; gap:.5rem; background:rgba(255,108,0,.22); border:1.5px solid rgba(255,108,0,.45); color:#fcd9b6; padding:.3rem .85rem; border-radius:50px; font-size:.72rem; font-weight:700; margin-bottom:1rem; width:fit-content; }
    .ix-split-title { font-family:var(--font-title); font-size:clamp(1.5rem,3vw,2rem); font-weight:900; color:#fff; margin-bottom:1rem; line-height:1.2; }
    .ix-split-body { font-size:.95rem; color:rgba(255,255,255,.78); line-height:1.9; margin-bottom:1.75rem; }
    .ix-split-cta { display:inline-flex; align-items:center; gap:.4rem; padding:.85rem 1.75rem; background:var(--accent-gradient); color:#fff!important; border-radius:10px; font-weight:700; font-size:.9rem; align-self:flex-start; box-shadow:0 6px 20px rgba(255,108,0,.4); transition:var(--transition); }
    .ix-split-cta:hover { transform:translateY(-2px); box-shadow:0 10px 32px rgba(255,108,0,.55); }

    /* Programs grid */
    .ix-programs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
    .ix-program-card {
      background: var(--bg-primary); border: 2px solid var(--border-color);
      border-radius: var(--radius-lg); padding: 1.5rem 1.5rem;
      display: flex; align-items: center; gap: 1.25rem;
      box-shadow: var(--shadow-sm); transition: var(--transition);
    }
    .ix-program-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--brand-orange); }
    .ix-prog-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--primary-gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
    .ix-prog-name { font-family: var(--font-title); font-size: 1rem; font-weight: 700; color: var(--brand-navy); margin-bottom: .25rem; }
    [data-theme="dark"] .ix-prog-name { color: #F2F8FD; }
    .ix-prog-duration { font-size: .78rem; color: var(--text-tertiary); margin-bottom: .5rem; display: flex; align-items: center; gap: .3rem; }
    .ix-prog-link { font-size: .8rem; color: var(--brand-orange); font-weight: 700; display: inline-flex; align-items: center; gap: .3rem; transition: gap .2s; }
    .ix-prog-link:hover { gap: .5rem; }

    /* Highlights grid */
    .ix-highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .ix-highlight-card {
      background: var(--bg-primary); border: 2px solid var(--border-color);
      border-radius: var(--radius-lg); padding: 1.5rem;
      display: flex; gap: 1.25rem; align-items: center;
      box-shadow: var(--shadow-sm); transition: var(--transition);
    }
    .ix-highlight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--brand-blue-light); }
    .ix-hl-icon { width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0; background: var(--primary-gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
    .ix-hl-title { font-size: .95rem; font-weight: 700; color: var(--brand-navy); margin-bottom: .35rem; }
    [data-theme="dark"] .ix-hl-title { color: #F2F8FD; }
    .ix-hl-desc { font-size: .85rem; color: var(--text-secondary); line-height: 1.7; }

    /* Advisory callout */
    .ix-advisory {
      background: var(--brand-pale-blue); border: 2px solid var(--brand-soft-blue);
      border-left: 5px solid var(--brand-orange);
      border-radius: var(--radius-lg); padding: 1.75rem 1.75rem; margin-bottom: 1.75rem;
    }
    [data-theme="dark"] .ix-advisory { background: var(--bg-secondary); border-color: var(--bg-tertiary); border-left-color: var(--brand-orange); }
    .ix-advisory-badge { display:inline-flex; align-items:center; gap:.4rem; background:var(--brand-orange); color:#fff; font-size:.72rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; padding:.3rem .85rem; border-radius:50px; margin-bottom:.85rem; }
    .ix-advisory-text { font-size:.95rem; color:var(--text-primary); line-height:1.8; }

/* ── 8. PAGE HERO ────────────────────────────────────────────── */
.pg-hero {
  position: relative; background: var(--primary-gradient);
  overflow: hidden; padding: 4rem 0 3.5rem; z-index: 1;
}
.pg-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-shape { position: absolute; border-radius: 50%; opacity: .10; }
.hero-shape.shape-1 { width:640px; height:640px; background:#fff; top:-220px; right:-160px; }
.hero-shape.shape-2 { width:420px; height:420px; background:rgba(255,108,0,.5); bottom:-160px; left:60px; }
.pg-hero-inner { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.pg-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,108,0,.22); border: 1.5px solid rgba(255,108,0,.45);
  color: #fcd9b6; padding: .3rem .9rem; border-radius: 50px;
  font-size: .75rem; font-weight: 700; margin-bottom: 1.1rem;
}
.pg-hero-title {
  font-family: var(--font-title);
  font-size: clamp(2rem,5vw,3rem);
  font-weight: 900; color: #fff; line-height: 1.12; margin-bottom: 1rem; letter-spacing: -.3px;
}
.pg-hero-subtitle { font-size: 1rem; color: rgba(255,255,255,.82); max-width: 680px; line-height: 1.8; margin-bottom: 1.5rem; }
.pg-hero-line { width: 64px; height: 5px; background: var(--accent-gradient); border-radius: 3px; }

/* ── 9. BREADCRUMB ───────────────────────────────────────────── */
.pg-breadcrumb {
  background: var(--bg-secondary); border-bottom: 1px solid var(--border-color);
  padding: .6rem 0; position: relative; z-index: 5;
}
.pg-breadcrumb-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: var(--text-tertiary);
}
.pg-breadcrumb a { color: var(--brand-navy); font-weight: 600; transition: color .2s; }
[data-theme="dark"] .pg-breadcrumb a { color: var(--brand-blue-light); }
.pg-breadcrumb a:hover { color: var(--brand-orange); }
.pg-breadcrumb i { font-size: .65rem; }

/* ── 10. MAIN SECTION ────────────────────────────────────────── */
.pg-section { position: relative; z-index: 1; padding: 3.5rem 0 4rem; }
.pg-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* ── 11. SIDEBAR ─────────────────────────────────────────────── */
.pg-sidebar {
  background: var(--bg-primary); border: 2px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm);
  position: sticky; top: calc(var(--topbar-h) + 80px);
}
[data-theme="dark"] .pg-sidebar { background: var(--bg-secondary); }
.pg-sidebar-title { font-family: var(--font-title); font-size: .95rem; font-weight: 700; color: var(--brand-navy); margin-bottom: .65rem; }
[data-theme="dark"] .pg-sidebar-title { color: var(--brand-blue-light); }
.pg-sidebar-nav { padding: 0; margin: 0 0 1.5rem; }
.pg-sidebar-nav li + li { margin-top: .2rem; }
.pg-sidebar-nav a {
  display: flex; align-items: center; gap: .5rem;
  padding: .55rem .75rem; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 500; color: var(--text-secondary); transition: var(--transition);
}
.pg-sidebar-nav a i { font-size: .75rem; color: var(--brand-orange); flex-shrink: 0; }
.pg-sidebar-nav a:hover { background: var(--brand-soft-blue); color: var(--brand-navy); }
.pg-sidebar-nav a.active { background: var(--brand-soft-blue); color: var(--brand-navy); font-weight: 700; }
[data-theme="dark"] .pg-sidebar-nav a:hover,[data-theme="dark"] .pg-sidebar-nav a.active { background: var(--bg-tertiary); color: var(--brand-blue-light); }
.pg-sidebar-divider { height: 1px; background: var(--border-color); margin: 1.25rem 0; }
.pg-sidebar-cta {
  display: flex; align-items: center; gap: .45rem; width: 100%; justify-content: center;
  padding: .7rem 1rem; background: var(--primary-gradient); border-radius: 10px;
  color: #fff !important; font-weight: 700; font-size: .85rem; transition: opacity .2s, transform .2s;
}
.pg-sidebar-cta:hover { opacity: .88; transform: translateY(-1px); }
.pg-sidebar-cta-outline {
  display: flex; align-items: center; gap: .45rem; width: 100%; justify-content: center;
  padding: .7rem 1rem; background: var(--bg-secondary);
  border: 1.5px solid var(--border-color); border-radius: 10px;
  color: var(--text-primary) !important; font-weight: 700; font-size: .85rem; transition: var(--transition);
}
.pg-sidebar-cta-outline:hover { border-color: var(--brand-navy); color: var(--brand-navy) !important; }

/* ── 12. CONTENT TYPOGRAPHY ──────────────────────────────────── */
.pg-lead {
  font-family: var(--font-title); font-size: 1.05rem; font-weight: 400;
  color: var(--text-primary); line-height: 1.9; margin-bottom: 1.25rem;
}
.pg-body { font-size: .95rem; color: var(--text-secondary); line-height: 1.9; margin-bottom: 1.5rem; }
.pg-content-title {
  font-family: var(--font-title); font-size: 1.35rem; font-weight: 700;
  color: var(--brand-navy); margin: 2.5rem 0 1rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--border-color);
  display: flex; align-items: center; gap: .6rem;
}
[data-theme="dark"] .pg-content-title { color: #F2F8FD; }
.pg-content-title i { color: var(--brand-orange); }

/* ── 13. CARD GRID (Research pages.css) ──────────────────────── */
.pg-card-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin: 2rem 0; }
.pg-card {
  background: var(--bg-primary); border: 2px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden;
}
.pg-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--primary-gradient); transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.pg-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pg-card:hover::before { transform: scaleX(1); }
[data-theme="dark"] .pg-card { background: var(--bg-secondary); }
.pg-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--primary-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 1rem;
}
.pg-card-title { font-family: var(--font-title); font-size: 1rem; font-weight: 700; color: var(--brand-navy); margin-bottom: .6rem; }
[data-theme="dark"] .pg-card-title { color: #F2F8FD; }
.pg-card-text { font-size: .875rem; color: var(--text-secondary); line-height: 1.8; }

/* ── 14. NUMBERED FEATURE LIST ───────────────────────────────── */
.pg-feature-list { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0; }
.pg-feature-item {
  background: var(--bg-primary); border: 2px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 1.4rem 1.5rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.pg-feature-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--brand-blue-light); }
[data-theme="dark"] .pg-feature-item { background: var(--bg-secondary); }
.pg-feature-num {
  font-family: var(--font-title); font-size: 1.6rem; font-weight: 900;
  color: var(--brand-orange); line-height: 1; flex-shrink: 0;
  width: 44px; text-align: center;
}
.pg-feature-title { font-family: var(--font-title); font-size: 1rem; font-weight: 700; color: var(--brand-navy); margin-bottom: .45rem; }
[data-theme="dark"] .pg-feature-title { color: #F2F8FD; }
.pg-feature-text { font-size: .875rem; color: var(--text-secondary); line-height: 1.8; }
.pg-feature-text li { margin-bottom: .35rem; padding-left: .75rem; position: relative; }
.pg-feature-text li::before { content: '›'; position: absolute; left: 0; color: var(--brand-orange); font-weight: 700; }

/* ── 15. CONTACT CARDS ───────────────────────────────────────── */
.pg-contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin: 2rem 0; }
.pg-contact-card {
  background: var(--bg-primary); border: 2px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm); transition: var(--transition); text-align: left;
}
.pg-contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--brand-blue-light); }
[data-theme="dark"] .pg-contact-card { background: var(--bg-secondary); }
.pg-contact-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--primary-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.25rem;
}
.pg-contact-title { font-family: var(--font-title); font-size: 1.15rem; font-weight: 700; color: var(--brand-navy); margin-bottom: .75rem; }
[data-theme="dark"] .pg-contact-title { color: #F2F8FD; }
.pg-contact-desc { font-size: .9rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: .75rem; }
.pg-contact-value { font-size: .95rem; font-weight: 700; color: var(--brand-orange); }
.pg-contact-value a { color: var(--brand-orange); transition: color .2s; }
.pg-contact-value a:hover { color: var(--brand-navy); }

/* ── 16. SPLIT IMAGE+TEXT ────────────────────────────────────── */
.pg-split { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); overflow: hidden; border: 2px solid var(--border-color); box-shadow: var(--shadow-sm); margin-bottom: 1.75rem; }
.pg-split.reverse { direction: rtl; }
.pg-split.reverse > * { direction: ltr; }
.pg-split-img { background-size: cover; background-position: center; min-height: 280px; }
.pg-split-body {
  padding: 2.25rem 2rem; background: var(--bg-primary);
  display: flex; flex-direction: column; justify-content: center;
}
[data-theme="dark"] .pg-split-body { background: var(--bg-secondary); }
.pg-split-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--primary-gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; }
.pg-split-title { font-family: var(--font-title); font-size: 1.2rem; font-weight: 700; color: var(--brand-navy); margin-bottom: .75rem; line-height: 1.3; }
[data-theme="dark"] .pg-split-title { color: #F2F8FD; }
.pg-split-text { font-size: .9rem; color: var(--text-secondary); line-height: 1.85; }

/* ── 17. CALLOUT BOX ─────────────────────────────────────────── */
.pg-callout {
  background: var(--brand-pale-blue); border: 2px solid var(--brand-soft-blue);
  border-left: 5px solid var(--brand-orange); border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem; margin-bottom: 1.75rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
[data-theme="dark"] .pg-callout { background: var(--bg-secondary); border-color: var(--bg-tertiary); border-left-color: var(--brand-orange); }
.pg-callout-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--brand-orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.pg-callout-title { font-weight: 700; color: var(--brand-navy); margin-bottom: .35rem; font-size: .95rem; }
[data-theme="dark"] .pg-callout-title { color: var(--brand-blue-light); }
.pg-callout-text { font-size: .875rem; color: var(--text-secondary); line-height: 1.75; }
.pg-callout-text a { color: var(--brand-orange); font-weight: 600; }

/* ── 18. MAP EMBED ───────────────────────────────────────────── */
.pg-map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 2px solid var(--border-color); box-shadow: var(--shadow-sm); margin-top: 2rem; }
.pg-map-wrap iframe { display: block; width: 100%; height: 380px; border: none; }

/* ── 19. TAG LIST ────────────────────────────────────────────── */
.pg-tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.pg-tag { display: inline-flex; align-items: center; gap: .3rem; padding: .3rem .85rem; background: var(--brand-soft-blue); color: var(--brand-navy); border-radius: 20px; font-size: .78rem; font-weight: 700; }
[data-theme="dark"] .pg-tag { background: var(--bg-tertiary); color: var(--brand-blue-light); }

/* ── 20. CTA BUTTONS ─────────────────────────────────────────── */
.btn-primary-solid {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .85rem 1.75rem; background: var(--accent-gradient); color: #fff !important;
  border-radius: 10px; font-weight: 700; font-size: .9rem;
  box-shadow: 0 6px 24px rgba(255,108,0,.4); transition: var(--transition);
}
.btn-primary-solid:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,108,0,.55); }
.btn-outline-navy {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .85rem 1.75rem; border: 2px solid var(--brand-navy); color: var(--brand-navy) !important;
  border-radius: 10px; font-weight: 700; font-size: .9rem; transition: var(--transition);
}
.btn-outline-navy:hover { background: var(--brand-navy); color: #fff !important; }
[data-theme="dark"] .btn-outline-navy { border-color: var(--brand-blue-light); color: var(--brand-blue-light) !important; }

/* ── 21. SCROLL ANIMATE ──────────────────────────────────────── */
[data-animate] { opacity:0; transform:translateY(24px); }
[data-animate].visible { animation: fadeInUp .7s ease-out forwards; }
[data-animate]:nth-child(2).visible { animation-delay:.1s; }
[data-animate]:nth-child(3).visible { animation-delay:.2s; }
@keyframes fadeInUp { to { opacity:1; transform:translateY(0); } }

/* ── 22. FOOTER ──────────────────────────────────────────────── */

    /* ══ FOOTER ══ */
    .site-footer { position: relative; z-index: 1; margin-top: 0; background: linear-gradient(160deg, #001230 0%, #002060 55%, #001840 100%);}
    .ft-main { background: linear-gradient(160deg, #001230 0%, #002060 55%, #001840 100%); padding: 5rem 0 3rem;     color: rgba(255, 255, 255, .72);     border-top: 3px solid #FF6C00;    border-bottom: 1px solid rgba(255, 255, 255, .06); }
    .ft-inner { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; }
    .ft-brand-tagline { font-size: .85rem; color: #475569; margin-bottom: 1.25rem; padding-top: 10px; }
    .ft-brand-addr { display: flex; align-items: flex-start; gap: .5rem; color: #475569; font-size: .85rem; margin-bottom: 1.5rem; }
    .ft-brand-addr i { color: var(--brand-orange); margin-top: 3px; flex-shrink: 0; }
    .ft-social { display: flex; gap: .5rem; flex-wrap: wrap; }
    .ft-social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.07); color: #8aaecb; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: all .2s; }
    .ft-social-link:hover { background: var(--brand-orange); color: #fff; transform: translateY(-2px); }
    .ft-section-head { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.4rem; color: #fff; font-weight: 700; font-size: .9rem; }
    .ft-section-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-orange); flex-shrink: 0; }
    .ft-nav-list { list-style: none; padding: 0; margin: 0; }
    .ft-nav-link { color: #7b96b4; font-size: .87rem; padding: .3rem 0; display: flex; align-items: center; gap: .5rem; transition: color .2s; }
    .ft-sq { font-size: 6px; color: #3b82f6; }
    .ft-nav-link:hover { color: #fff; }
    .ft-contact-list { list-style: none; padding: 0; margin: 0; }
    .ft-contact-item { display: flex; align-items: center; gap: .65rem; margin-bottom: .75rem; font-size: .85rem; color: #475569; }
    .ft-contact-icon { width: 30px; height: 30px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 13px; }
    .ft-icon-orange { background: rgba(255,108,0,.18); color: var(--brand-orange); }
    .ft-icon-blue   { background: rgba(97,185,240,.14); color: var(--brand-blue-light); }
    .ft-contact-item a { color: #475569; transition: color .2s; }
    .ft-contact-item a:hover { color: #fff; }
    .ft-touch-btn { display:inline-flex; align-items:center; gap:.4rem; margin-top:1.1rem; background:var(--brand-orange); color:#fff!important; padding:.65rem 1.4rem; border-radius:var(--radius-sm); font-size:.85rem; font-weight:700; transition:var(--transition); }
    .ft-touch-btn:hover { transform:translateY(-2px); opacity:.9; }
    .ft-tags { background: rgba(0, 0, 0, .3); padding: 1rem 0;     border-top: 1px solid rgba(255, 255, 255, .07);    border-bottom: 1px solid rgba(255, 255, 255, .04); }
    .ft-tags-inner { max-width:1400px; margin:0 auto; padding:0 2rem; display:flex; flex-wrap:wrap; gap:.6rem; align-items:center; }
    .ft-tag-label { color:#7B96B4; font-size:.78rem; font-weight:700; display:flex; align-items:center; gap:.4rem; }
    .ft-tag { color:#7B96B4; font-size:.78rem; padding:.25rem .75rem; border:1px solid #1a2f4a; border-radius:20px; transition:all .2s; }
    .ft-tag:hover { background:var(--brand-orange); color:#fff; border-color:var(--brand-orange); }
    .ft-bottom {     background: rgba(0, 0, 0, .45); padding:1rem 0; }
    .ft-bottom-inner { max-width:1400px; margin:0 auto; padding:0 2rem; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.5rem; }
    .ft-copyright { font-size:.78rem; color:#4a6280;; }
    .ft-bottom-links { display:flex; gap:.75rem; font-size:.78rem; color:#4a6280;; }
    .ft-bottom-links a { color:#4a6280;; transition:color .2s; }
    .ft-bottom-links a:hover { color:#fff; }
    .ft-sep { color:#1a2a3a; }

    /* Layout */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 768px) {
  .main-layout {
    grid-template-columns: 1fr;
  }
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Card Accordion */
.card-accordion {
  background: #f3f6f9;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

/* Colored left border */
.card-accordion::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  border-radius: 16px 0 0 16px;
}

.card-accordion.blue::before { background: #3b82f6; }
.card-accordion.orange::before { background: #f97316; }
.card-accordion.green::before { background: #10b981; }
.card-accordion.purple::before { background: #8b5cf6; }

/* Header */
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-icon {
  background: #e6ecf5;
  padding: 12px;
  border-radius: 12px;
  margin-right: 12px;
}

.card-header h4 {
  margin: 0;
  font-size: 18px;
}

.card-header p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.card-text {
  flex: 1;
  margin-left: 10px;
}

/* Arrow */
.arrow {
  transition: 0.3s;
}

/* Content */
.card-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.card-content ul {
  margin-top: 15px;
  padding-left: 20px;
}

.card-content li {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

/* Active */
.card-accordion.active .card-content {
  max-height: 500px;
}

.card-accordion.active .arrow {
  transform: rotate(180deg);
}

/* ── 23. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width:1100px) {
  .ix-explore-grid,.ix-news-grid { grid-template-columns:repeat(2,1fr); }
  .ix-about-inner { grid-template-columns:1fr; gap:2rem; }
  .ix-highlights-grid,.ix-programs-grid { grid-template-columns:1fr; }
  .ix-quick-grid { grid-template-columns:1fr 1fr; }
  .ix-split-band { grid-template-columns:1fr; }
  .ix-stat { padding:1rem; }
  .ix-stat-divider { display:none; }
  .ft-inner { grid-template-columns:1fr; gap:2.5rem; }
  .pg-card-grid { grid-template-columns: 1fr; }
  .pg-contact-grid { grid-template-columns: 1fr; }
  .pg-split { grid-template-columns: 1fr; }
  .pg-split-img { min-height: 220px; }
}
@media (max-width:768px) {
  .ix-explore-grid,.ix-news-grid { grid-template-columns:1fr; }
  .ix-section { padding:3.5rem 0; }
  .ix-about-band { padding:3.5rem 0; }
  .ix-hero-content { min-height:400px; }
  .ix-hero-inner { padding:3.5rem 1.25rem 2.5rem; }
  .ix-split-band { grid-template-columns:1fr 1fr; }
  .ix-stats-inner { flex-direction:column; padding:.25rem 1rem; }
  .ix-stat-divider { display:block; height:1px; background:rgba(255,255,255,.12); width:100%; margin:0; }
  .ix-stat { width:100%; flex:none; padding:.875rem .5rem; }
  .ix-split-content { padding:2.5rem 1.5rem; }
  .ix-quick-grid { grid-template-columns:1fr 1fr; }
  .top-menu,.auth-buttons { display:none; }
  .mobile-menu-toggle { display:flex; margin-left:auto; }
  .mobile-dropdown { display:block; pointer-events:none; }
  .pg-mobile-bar { display:block; }
  .pg-section { padding:2.5rem 0 3rem; }
}
@media (max-width:480px) {
  .ix-hero-title { font-size:1.8rem; }
  .ix-hero-desc { font-size:.9rem; }
  .ix-container { padding:0 1.25rem; }
  .ix-quick-grid { grid-template-columns:1fr; margin:10px; }
    .ix-split-band { grid-template-columns:1fr; }
  .pg-hero-title { font-size:1.8rem; }
  .pg-container { padding:0 1.25rem; }
}


/* ── 24. SHARED JS HELPERS (theme, scroll, mobile) ───────────── */
/* (Logic lives in shared.js — see that file) */
