/* =====================================================
   Course Program V2 - Dark Theme
   Page-specific CSS (only loaded on program v2 page)
   ===================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 15px; color: #D0F0F8; background: #040E14; line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --blue: #0E7490; --blue-d: #164E63; --blue-l: #0A2535;
  --gold: #C9A84C; --navy: #061620; --border: rgba(14,116,144,0.22);
  --bg: #040E14; --bg2: #061620; --bg3: #040C12;
  --text: #D0F0F8; --text2: #7ABBC8; --text3: #4A7A88;
  --r: 10px;
}

.cp-wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.cp-sec { padding: 80px 0; }

/* TOPBAR */
.cp-topbar { background: #071525; padding: 7px 0; font-size: .75rem; color: var(--text2); }
.cp-topbar .cp-wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.cp-tb-l, .cp-tb-r { display: flex; align-items: center; gap: 18px; }
.cp-tb-l a, .cp-tb-r a { color: var(--text2); transition: color .15s; }
.cp-tb-l a:hover, .cp-tb-r a:hover { color: #fff; }
.cp-tb-sep { width: 1px; height: 12px; background: var(--border); }

/* NAVBAR */
.cp-nav { background: var(--bg2); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 999; }
.cp-nav.scrolled { border-bottom-color: var(--gold); }
.cp-nav .cp-wrap { display: flex; align-items: center; height: 66px; gap: 8px; }
.cp-logo img { height: 46px; width: auto; }
.cp-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: var(--r); font-size: .875rem; font-weight: 600; cursor: pointer; border: none; transition: all .2s; white-space: nowrap; }
.cp-btn-gold { background: var(--gold); color: #fff; }
.cp-btn-gold:hover { background: #b07c1a; color: #fff; }
.cp-btn-outline { background: transparent; color: #22D3EE; border: 1.5px solid #0E7490; }
.cp-btn-outline:hover { background: var(--blue-d); color: #fff; }
.cp-btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.2); }
.cp-btn-ghost:hover { background: rgba(255,255,255,.15); }

/* BREADCRUMB */
.cp-breadcrumb { background: var(--bg3); padding: 12px 0; border-bottom: 1px solid var(--border); }
.cp-bc-inner { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--text2); }
.cp-bc-inner a { color: var(--text2); transition: color .15s; }
.cp-bc-inner a:hover { color: var(--gold); }
.cp-bc-inner .sep { color: var(--text3); }
.cp-bc-inner .cur { color: var(--gold); font-weight: 600; }

/* HERO */
.cp-col-hero {
  background:
    linear-gradient(105deg,rgba(4,14,20,.95) 0%,rgba(6,22,32,.86) 38%,rgba(10,40,56,.58) 65%,rgba(14,80,100,.28) 100%),
    #0A2535;
  padding: 80px 0 0; position: relative; overflow: hidden;
}
.cp-col-hero.has-banner {
  background-size: cover;
  background-position: center;
}
.cp-col-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top,rgba(4,14,20,1) 0%,rgba(4,14,20,.4) 22%,transparent 50%); pointer-events: none; }
.cp-ch-wrap { position: relative; z-index: 1; }
.cp-col-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(224,155,42,.12); border: 1px solid rgba(224,155,42,.3); color: var(--gold); padding: 5px 16px; border-radius: 20px; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.cp-col-hero h1 { font-family: 'Merriweather', serif; font-size: clamp(1.8rem,3.8vw,2.9rem); font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.cp-col-hero h1 span { color: #22D3EE; }
.cp-col-hero p.cp-lead { font-size: .98rem; color: rgba(255,255,255,.65); line-height: 1.8; max-width: 620px; margin-bottom: 30px; }
.cp-prog-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.cp-prog-badge { background: rgba(14,116,144,.15); border: 1px solid rgba(14,116,144,.35); color: #67E8F9; padding: 7px 18px; border-radius: 20px; font-size: .8rem; font-weight: 600; }
.cp-ch-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.cp-ch-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.cp-ch-stat .val { font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.cp-ch-stat .lbl { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }
.cp-ch-tabs { display: flex; border-top: 1px solid rgba(255,255,255,.08); margin-top: 48px; overflow-x: auto; }
.cp-ch-tab { padding: 14px 20px; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.45); cursor: pointer; border-bottom: 3px solid transparent; white-space: nowrap; transition: all .2s; }
.cp-ch-tab:hover { color: #fff; }
.cp-ch-tab.on { color: var(--gold); border-bottom-color: var(--gold); }

/* HERO GRID */
.cp-hero-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.cp-vm-panel {
  background: rgba(14,116,144,.10);
  border: 1px solid rgba(14,116,144,.28);
  border-radius: 12px; padding: 24px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  margin-top: 8px; flex-shrink: 0;
}
.cp-vm-panel-label { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.cp-vm-block { margin-bottom: 18px; }
.cp-vm-block:last-child { margin-bottom: 0; }
.cp-vm-heading { display: flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; color: #22D3EE; margin-bottom: 8px; padding-bottom: 7px; border-bottom: 1px solid rgba(14,116,144,.25); }
.cp-vm-heading i { font-size: .75rem; color: var(--gold); }
.cp-vm-vision-text { font-size: .82rem; color: rgba(255,255,255,.8); line-height: 1.75; font-style: italic; }
@media(max-width:1100px) { .cp-hero-grid { grid-template-columns: 1fr; } .cp-vm-panel { max-width: 600px; } }
@media(max-width:768px) { .cp-vm-panel { display: none; } }

/* SECTION LABELS */
.cp-sec-label { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.cp-sec-title { font-family: 'Merriweather', serif; font-size: clamp(1.4rem,2.8vw,2rem); font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 16px; }

/* WHY LJICA SECTION */
.cp-ljica-identity {
  background: linear-gradient(120deg,#040E14 0%,#0D2540 50%,#040E14 100%);
  border-radius: 16px; padding: 44px 48px; margin-bottom: 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  position: relative; overflow: hidden;
}
.cp-ljica-identity::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(to bottom,#22D3EE,#1565C0,#F5A623); border-radius: 16px 0 0 16px; }
.cp-ljica-id-left { position: relative; z-index: 1; }
.cp-brain-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,166,35,.12); border: 1px solid rgba(245,166,35,.3); color: #F5A623; padding: 5px 14px; border-radius: 20px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.cp-ljica-id-left h2 { font-family: 'Merriweather', serif; font-size: clamp(1.4rem,3vw,2.1rem); font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 10px; }
.cp-ljica-id-left h2 span { color: #22D3EE; }
.cp-ljica-id-left p { font-size: .92rem; color: rgba(255,255,255,.6); line-height: 1.75; max-width: 580px; margin: 0; }
.cp-ljica-badges { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; min-width: 200px; }
.cp-ljica-badge-item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 12px 18px; text-align: center; }
.cp-ljica-badge-item .lbn { font-size: 1.4rem; font-weight: 900; color: #22D3EE; line-height: 1; display: block; }
.cp-ljica-badge-item .lbl { font-size: .7rem; color: rgba(255,255,255,.5); margin-top: 3px; display: block; }

/* RANKING ROW */
.cp-ranking-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 48px; }
.cp-rank-card { border-radius: 12px; padding: 22px 18px; text-align: center; border: 1px solid var(--border); position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.cp-rank-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.cp-rank-card.rc-gold { background: linear-gradient(135deg,#FFF8E8,#FFF0C2); border-color: #F5A623; }
.cp-rank-card.rc-blue { background: linear-gradient(135deg,#EFF6FF,#DBEAFE); border-color: #1565C0; }
.cp-rank-card.rc-green { background: linear-gradient(135deg,#F0FDF4,#DCFCE7); border-color: #16A34A; }
.cp-rank-card.rc-cyan { background: linear-gradient(135deg,#ECFEFF,#CFFAFE); border-color: #0891B2; }
.cp-rank-card .rc-icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.cp-rank-card .rc-val { font-size: 1.6rem; font-weight: 900; line-height: 1; display: block; margin-bottom: 4px; }
.rc-gold .rc-val { color: #B45309; }
.rc-blue .rc-val { color: #1565C0; }
.rc-green .rc-val { color: #15803D; }
.rc-cyan .rc-val { color: #0E7490; }
.cp-rank-card .rc-label { font-size: .75rem; color: #64748B; font-weight: 600; }
.cp-rank-card .rc-sub { font-size: .68rem; color: #94A3B8; margin-top: 3px; display: block; }

/* EXAM HERITAGE */
.cp-exam-heritage {
  background: linear-gradient(120deg,#040E14 0%,#0C1F35 55%,#040E14 100%);
  border-radius: 16px; padding: 40px 44px; margin-bottom: 48px;
  border: 1px solid rgba(34,211,238,.15); position: relative; overflow: hidden;
}
.cp-exam-heritage::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,#22D3EE,#1565C0,#F5A623); }
.cp-eh-top { display: flex; align-items: flex-start; gap: 32px; margin-bottom: 32px; position: relative; z-index: 1; }
.cp-eh-icon-wrap { flex-shrink: 0; width: 64px; height: 64px; border-radius: 16px; background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.25); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.cp-eh-tag { display: inline-flex; align-items: center; gap: 7px; background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.25); color: #22D3EE; padding: 4px 12px; border-radius: 20px; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 10px; }
.cp-eh-text-wrap h3 { font-family: 'Merriweather', serif; font-size: 1.25rem; font-weight: 900; color: #fff; line-height: 1.3; margin-bottom: 8px; }
.cp-eh-text-wrap p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.75; margin: 0; }
.cp-eh-covid-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,166,35,.12); border: 1px solid rgba(245,166,35,.3); color: #F5A623; padding: 6px 14px; border-radius: 8px; font-size: .78rem; font-weight: 700; margin-top: 10px; }
.cp-eh-services { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; position: relative; z-index: 1; }
.cp-eh-service { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 16px 18px; display: flex; align-items: flex-start; gap: 12px; transition: background .2s, border-color .2s; }
.cp-eh-service:hover { background: rgba(34,211,238,.07); border-color: rgba(34,211,238,.2); }
.cp-eh-service-num { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg,#1565C0,#0288D1); color: #fff; font-size: .72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.cp-eh-service h5 { font-size: .82rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.cp-eh-service p { font-size: .74rem; color: rgba(255,255,255,.5); margin: 0; line-height: 1.5; }

/* WHY CARDS */
.cp-why-heading { text-align: center; margin-bottom: 36px; }
.cp-why-heading p { font-size: .93rem; color: var(--text2); max-width: 620px; margin: 10px auto 0; line-height: 1.7; }
.cp-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 48px; }
.cp-why-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 26px 24px; transition: all .2s; position: relative; overflow: hidden; }
.cp-why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 14px 14px 0 0; }
.cp-why-card.wc1::before { background: linear-gradient(90deg,#1565C0,#0288D1); }
.cp-why-card.wc2::before { background: linear-gradient(90deg,#F5A623,#F59E0B); }
.cp-why-card.wc3::before { background: linear-gradient(90deg,#059669,#10B981); }
.cp-why-card.wc4::before { background: linear-gradient(90deg,#7C3AED,#8B5CF6); }
.cp-why-card.wc5::before { background: linear-gradient(90deg,#0891B2,#22D3EE); }
.cp-why-card.wc6::before { background: linear-gradient(90deg,#DC2626,#F87171); }
.cp-why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.09); }
.cp-why-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.wc1 .cp-why-card-icon { background: rgba(21,101,192,.1); }
.wc2 .cp-why-card-icon { background: rgba(245,166,35,.12); }
.wc3 .cp-why-card-icon { background: rgba(5,150,105,.1); }
.wc4 .cp-why-card-icon { background: rgba(124,58,237,.1); }
.wc5 .cp-why-card-icon { background: rgba(8,145,178,.1); }
.wc6 .cp-why-card-icon { background: rgba(220,38,38,.08); }
.cp-why-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.cp-why-card p { font-size: .84rem; color: var(--text2); line-height: 1.7; margin: 0; }
.cp-why-tag { display: inline-block; margin-top: 12px; font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.wc1 .cp-why-tag { background: rgba(21,101,192,.1); color: #1565C0; }
.wc2 .cp-why-tag { background: rgba(245,166,35,.12); color: #B45309; }
.wc3 .cp-why-tag { background: rgba(5,150,105,.1); color: #059669; }
.wc4 .cp-why-tag { background: rgba(124,58,237,.1); color: #7C3AED; }
.wc5 .cp-why-tag { background: rgba(8,145,178,.1); color: #0891B2; }
.wc6 .cp-why-tag { background: rgba(220,38,38,.08); color: #DC2626; }

/* UNIQUE STRIP */
.cp-unique-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-top: 40px; }
.cp-unique-pill { padding: 22px 18px; text-align: center; border-right: 1px solid var(--border); background: var(--bg2); transition: background .2s; }
.cp-unique-pill:last-child { border-right: none; }
.cp-unique-pill:hover { background: var(--bg); }
.cp-unique-pill .up-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.cp-unique-pill h5 { font-size: .83rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cp-unique-pill p { font-size: .75rem; color: var(--text3); margin: 0; line-height: 1.5; }

/* MISSION */
.cp-mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cp-mission-card { background: var(--bg); border: 1px solid var(--border); border-top: 3px solid var(--blue); border-radius: 10px; padding: 28px 24px; transition: box-shadow .2s, transform .2s; }
.cp-mission-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); transform: translateY(-3px); }
.cp-mission-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(21,101,192,.1); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 1.1rem; margin-bottom: 14px; }
.cp-mission-card p { font-size: .9rem; color: var(--text2); line-height: 1.7; margin: 0; }

/* STAT BAND */
.cp-stat-band { background: var(--bg3); padding: 40px 0; }
.cp-stat-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.cp-stat-cell { text-align: center; padding: 20px; border-right: 1px solid var(--border); }
.cp-stat-cell:last-child { border-right: none; }
.cp-stat-cell .n { font-size: 2rem; font-weight: 800; color: var(--gold); }
.cp-stat-cell .l { font-size: .75rem; color: var(--text2); margin-top: 6px; }

/* PROGRAM COMPARE */
.cp-prog-compare { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 40px; }
.cp-pc-card { background: var(--bg3); border: 2px solid var(--border); border-radius: var(--r); padding: 28px; text-align: center; transition: all .25s; cursor: pointer; position: relative; }
.cp-pc-card.active, .cp-pc-card:hover { border-color: var(--gold); }
.cp-pc-card.active::after { content: 'Selected'; position: absolute; top: -1px; right: 16px; background: var(--gold); color: #fff; font-size: .65rem; font-weight: 700; padding: 2px 10px; border-radius: 0 0 6px 6px; text-transform: uppercase; letter-spacing: .06em; }
.cp-pc-icon { font-size: 2.5rem; margin-bottom: 12px; }
.cp-pc-card h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.cp-pc-card .dur { font-size: .8rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.cp-pc-card p { font-size: .8rem; color: var(--text2); line-height: 1.7; }
.cp-pc-card .pc-detail { margin-top: 16px; text-align: left; }
.cp-pc-card .pc-detail li { font-size: .78rem; color: var(--text2); padding: 4px 0; display: flex; align-items: flex-start; gap: 6px; border-bottom: 1px solid var(--border); }
.cp-pc-card .pc-detail li:last-child { border-bottom: none; }
.cp-pc-card .pc-detail li i { color: var(--gold); font-size: .65rem; margin-top: 4px; flex-shrink: 0; }

/* CURRICULUM */
.cp-prog-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.cp-ptab { padding: 9px 20px; border-radius: 20px; font-size: .8rem; font-weight: 600; cursor: pointer; border: 1.5px solid var(--border); color: var(--text2); transition: all .2s; background: transparent; }
.cp-ptab.on, .cp-ptab:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.cp-prog-panel { display: none; }
.cp-prog-panel.on { display: block; }
.cp-sem-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 16px; }
.cp-sem-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; }
.cp-sem-card h5 { font-size: .82rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.cp-sem-card li { font-size: .8rem; color: var(--text2); padding: 3px 0; display: flex; align-items: flex-start; gap: 6px; }
.cp-sem-card li::before { content: '\25B8'; color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* SPORTS */
.cp-sports-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(130px,1fr)); gap: 12px; }
.cp-sport-chip { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 12px; text-align: center; transition: all .2s; }
.cp-sport-chip:hover { border-color: var(--gold); }
.cp-sport-chip .si { font-size: 1.5rem; margin-bottom: 6px; }
.cp-sport-chip .sn { font-size: .78rem; font-weight: 600; color: var(--text2); }

/* EVENTS */
.cp-event-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 24px; }
.cp-ev-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.cp-ev-img { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.cp-ev-body { padding: 20px; }
.cp-ev-tag { display: inline-block; background: rgba(224,155,42,.12); color: var(--gold); border: 1px solid rgba(224,155,42,.3); font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 12px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.cp-ev-body h4 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.cp-ev-body p { font-size: .8rem; color: var(--text2); line-height: 1.65; }
.cp-ev-date { font-size: .75rem; color: var(--text3); margin-top: 10px; display: flex; align-items: center; gap: 6px; }

/* FACULTY */
.cp-fac-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.cp-fac-btn { background: var(--bg2); border: 1px solid var(--border); color: var(--text2); padding: 7px 18px; border-radius: 20px; font-size: .8rem; font-weight: 600; cursor: pointer; transition: all .18s; }
.cp-fac-btn.on, .cp-fac-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.cp-fac-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap: 18px; }
.cp-fac-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 0; text-align: center; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.cp-fac-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.18); }
.cp-fac-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: top; display: block; background: #0D2135; }
.cp-fac-avatar { width: 100%; aspect-ratio: 1/1; background: linear-gradient(135deg,#0D2540,#1565C0); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; color: rgba(255,255,255,.7); }
.cp-fac-body { padding: 14px 12px 16px; }
.cp-fac-card h4 { font-size: .82rem; font-weight: 700; color: #fff; margin-bottom: 4px; line-height: 1.3; }
.cp-fac-card .desig { font-size: .7rem; color: var(--gold); font-weight: 600; }
.cp-fac-card .desig.hod { color: #22D3EE; }
.cp-fac-count { font-size: .82rem; color: var(--text2); margin-bottom: 16px; }
.cp-fac-count strong { color: var(--blue); }

/* SOFTWARE FACTORY */
.cp-sf-section { background: var(--bg2); }
.cp-sf-hero-band {
  background: linear-gradient(120deg,#07192B 0%,#0D2540 55%,#07192B 100%);
  border-radius: 16px; padding: 48px 40px; margin-bottom: 48px;
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0; position: relative; overflow: hidden;
}
.cp-sf-stat-big { text-align: center; padding: 0 32px; position: relative; z-index: 1; }
.cp-sf-stat-big .sfn { font-size: 3rem; font-weight: 900; color: #22D3EE; line-height: 1; display: block; font-family: 'Merriweather', serif; }
.cp-sf-stat-big .sfl { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 8px; display: block; letter-spacing: .04em; }
.cp-sf-divider-v { background: rgba(255,255,255,.1); width: 1px; }
.cp-sf-info-row { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; margin-bottom: 48px; }
.cp-sf-about p { font-size: .95rem; color: var(--text2); line-height: 1.8; margin-bottom: 16px; }
.cp-sf-blockquote { background: var(--bg); border-left: 4px solid var(--blue); border-radius: 0 10px 10px 0; padding: 20px 24px; margin: 0; }
.cp-sf-blockquote p { font-size: .9rem; color: var(--text2); line-height: 1.75; font-style: italic; margin: 0 0 10px; }
.cp-sf-blockquote cite { font-size: .78rem; color: var(--blue); font-style: normal; font-weight: 600; }
.cp-sf-categories { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 48px; }
.cp-sf-cat { background: var(--bg); border-radius: 14px; border: 1px solid var(--border); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.cp-sf-cat:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.cp-sf-cat-top { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.cp-sf-cat-top.c1 { background: linear-gradient(135deg,#0D2540,#1565C0); }
.cp-sf-cat-top.c2 { background: linear-gradient(135deg,#12203A,#0891B2); }
.cp-sf-cat-top.c3 { background: linear-gradient(135deg,#0D2A1C,#059669); }
.cp-sf-cat-top-label { position: absolute; bottom: 10px; right: 12px; font-size: .68rem; font-weight: 700; letter-spacing: .06em; color: rgba(255,255,255,.55); font-family: monospace; }
.cp-sf-cat-body { padding: 20px; }
.cp-sf-cat-body h4 { font-size: .97rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.cp-sf-cat-body p { font-size: .83rem; color: var(--text2); line-height: 1.65; margin: 0; }
.cp-sf-proj-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.cp-sf-proj-header h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 0; }
.cp-sf-proj-header::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.cp-sf-proj-count { background: var(--blue); color: #fff; font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.cp-sf-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.cp-sf-tag { background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 8px 14px; font-size: .8rem; color: var(--text2); display: flex; align-items: center; gap: 7px; transition: all .18s; cursor: default; }
.cp-sf-tag:hover { border-color: var(--blue); color: var(--blue); background: rgba(21,101,192,.05); }
.cp-sf-tag i { font-size: .65rem; color: var(--blue); }
.cp-sf-process-wrap { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-top: 40px; }
.cp-sf-process-head { background: linear-gradient(90deg,#0D2540,#1565C0); padding: 16px 28px; }
.cp-sf-process-head h4 { color: #fff; font-size: .9rem; font-weight: 700; margin: 0; display: flex; align-items: center; gap: 8px; }
.cp-sf-process-steps { display: grid; grid-template-columns: repeat(5,1fr); }
.cp-sf-step { padding: 22px 16px; text-align: center; border-right: 1px solid var(--border); position: relative; }
.cp-sf-step:last-child { border-right: none; }
.cp-sf-step::after { content: '\2192'; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); color: var(--blue); font-size: 1rem; z-index: 2; display: block; }
.cp-sf-step:last-child::after { display: none; }
.cp-sf-step-num { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,#1565C0,#0288D1); color: #fff; font-size: .82rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; box-shadow: 0 4px 12px rgba(21,101,192,.3); }
.cp-sf-step i { font-size: 1.1rem; color: var(--blue); display: block; margin-bottom: 8px; }
.cp-sf-step h5 { font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cp-sf-step p { font-size: .72rem; color: var(--text3); margin: 0; line-height: 1.5; }

/* PLACEMENTS */
.cp-place-stat { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; text-align: center; }
.cp-place-stat .pn { font-size: 2.4rem; font-weight: 800; color: var(--gold); }
.cp-place-stat .pl { font-size: .8rem; color: var(--text2); margin-top: 6px; }
.cp-co-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.cp-co-chip { background: var(--blue-l); border: 1px solid var(--border); border-radius: 4px; padding: 5px 12px; font-size: .75rem; color: var(--text2); font-weight: 500; }

/* MEDIA GALLERY */
.cp-media-tabs { display: flex; gap: 12px; margin-bottom: 32px; }
.cp-mtab { display: inline-flex; align-items: center; gap: 8px; padding: 11px 28px; border-radius: 24px; font-size: .85rem; font-weight: 700; cursor: pointer; border: 1.5px solid var(--border); color: var(--text2); background: var(--bg3); transition: all .2s; font-family: 'Inter', sans-serif; }
.cp-mtab.on, .cp-mtab:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.cp-media-panel { display: none; }
.cp-media-panel.on { display: block; }
.cp-sub-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.cp-stab { padding: 6px 18px; border-radius: 20px; font-size: .76rem; font-weight: 600; cursor: pointer; border: 1px solid var(--border); color: var(--text2); background: transparent; transition: all .18s; font-family: 'Inter', sans-serif; }
.cp-stab.on, .cp-stab:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.cp-no-results { text-align: center; padding: 60px 20px; color: var(--text2); font-size: .9rem; }

/* IMAGE SLIDER */
.cp-img-slider-wrap { position: relative; margin-bottom: 12px; }
.cp-img-slider-viewport { overflow: hidden; border-radius: var(--r); cursor: zoom-in; position: relative; }
.cp-img-slider-track { display: flex; transition: transform .48s cubic-bezier(.4,0,.2,1); }
.cp-img-slide { flex: 0 0 100%; height: 460px; background-size: cover; background-position: center; }
.cp-sl-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(0,0,0,.5); backdrop-filter: blur(6px); color: #fff; font-size: 1rem; border: none; cursor: pointer; z-index: 3; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.cp-sl-btn:hover { background: var(--blue); }
.cp-sl-prev { left: 14px; }
.cp-sl-next { right: 14px; }
.cp-sl-label { position: absolute; bottom: 14px; left: 16px; background: rgba(0,0,0,.5); backdrop-filter: blur(6px); color: #fff; font-size: .8rem; font-weight: 600; padding: 5px 14px; border-radius: 20px; pointer-events: none; z-index: 2; }
.cp-sl-counter { position: absolute; top: 14px; right: 16px; background: rgba(0,0,0,.5); backdrop-filter: blur(6px); color: #fff; font-size: .75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; pointer-events: none; z-index: 2; }
.cp-img-thumbs { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 8px; }
.cp-img-thumbs::-webkit-scrollbar { height: 4px; }
.cp-img-thumbs::-webkit-scrollbar-track { background: var(--bg3); }
.cp-img-thumbs::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }
.cp-img-thumb { width: 88px; height: 58px; flex-shrink: 0; border-radius: 6px; background-size: cover; background-position: center; cursor: pointer; border: 2px solid transparent; transition: all .2s; opacity: .55; }
.cp-img-thumb.active, .cp-img-thumb:hover { border-color: #22D3EE; opacity: 1; }

/* VIDEO GRID */
.cp-vid-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cp-vid-card { border-radius: var(--r); overflow: hidden; cursor: pointer; background: var(--bg3); border: 1px solid var(--border); transition: all .22s; }
.cp-vid-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(14,116,144,.18); }
.cp-vid-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.cp-vid-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.cp-vid-card:hover .cp-vid-thumb img { transform: scale(1.06); }
.cp-vid-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; transition: all .22s; }
.cp-vid-play-btn::after { content: ''; width: 0; height: 0; border-left: 20px solid #164E63; border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 5px; }
.cp-vid-card:hover .cp-vid-play-btn { background: #22D3EE; transform: translate(-50%,-50%) scale(1.12); }
.cp-vid-card:hover .cp-vid-play-btn::after { border-left-color: #fff; }
.cp-vid-info { padding: 14px 16px; }
.cp-vid-info h5 { font-size: .87rem; font-weight: 700; color: #fff; margin-bottom: 5px; line-height: 1.35; }
.cp-vid-info span { font-size: .74rem; color: var(--text2); }

/* TESTIMONIALS */
.cp-testi-section { background: linear-gradient(135deg,#040E14 0%,#0D2540 100%); border-radius: 16px; padding: 64px 0; }
.cp-testi-head { text-align: center; margin-bottom: 32px; }
.cp-testi-head h3 { font-family: 'Merriweather', serif; font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 6px; }
.cp-testi-head p { font-size: .85rem; color: rgba(255,255,255,.5); }
.cp-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cp-testi-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 24px; }
.cp-testi-stars { color: #F5A623; font-size: .85rem; margin-bottom: 12px; letter-spacing: 2px; }
.cp-testi-quote { font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.75; font-style: italic; margin-bottom: 16px; border-left: 2px solid #22D3EE; padding-left: 12px; }
.cp-testi-author { display: flex; align-items: center; gap: 12px; }
.cp-testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#1565C0,#0288D1); display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 800; color: #fff; flex-shrink: 0; overflow: hidden; }
.cp-testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cp-testi-name { font-size: .85rem; font-weight: 700; color: #fff; }
.cp-testi-prog { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: 1px; }

/* LIGHTBOX */
.cp-lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .28s; }
.cp-lightbox.open { opacity: 1; pointer-events: all; }
.cp-lb-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.94); }
.cp-lb-close, .cp-lb-nav { position: fixed; background: rgba(255,255,255,.12); border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; z-index: 2; }
.cp-lb-close { top: 18px; right: 22px; width: 42px; height: 42px; border-radius: 50%; font-size: 1.1rem; }
.cp-lb-close:hover, .cp-lb-nav:hover { background: var(--blue); }
.cp-lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; font-size: 1.3rem; }
.cp-lb-prev { left: 16px; }
.cp-lb-next { right: 16px; }
.cp-lb-content { position: relative; z-index: 1; width: 92vw; max-width: 1100px; display: flex; flex-direction: column; align-items: center; }
.cp-lb-img-wrap { width: 100%; max-height: 80vh; display: flex; align-items: center; justify-content: center; }
#cpLbImg { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 64px rgba(0,0,0,.6); }
.cp-lb-meta { margin-top: 16px; text-align: center; }
.cp-lb-meta-label { color: #fff; font-size: .92rem; font-weight: 600; }
.cp-lb-meta-counter { color: rgba(255,255,255,.45); font-size: .76rem; margin-top: 5px; }

/* VIDEO MODAL */
.cp-vid-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .28s; }
.cp-vid-modal.open { opacity: 1; pointer-events: all; }
.cp-vm-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.94); }
.cp-vm-close { position: fixed; top: 18px; right: 22px; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.12); border: none; color: #fff; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; z-index: 2; }
.cp-vm-close:hover { background: var(--blue); }
.cp-vm-content { position: relative; z-index: 1; width: 90vw; max-width: 980px; }
.cp-vm-content iframe { width: 100%; aspect-ratio: 16/9; border: none; border-radius: var(--r); display: block; }

/* APPLY BAND */
.cp-apply-band { background: linear-gradient(135deg,#164E63,#0E7490); padding: 80px 0; text-align: center; }
.cp-apply-band h2 { font-family: 'Merriweather', serif; font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 900; color: #fff; margin-bottom: 14px; }
.cp-apply-band p { font-size: .95rem; color: rgba(255,255,255,.65); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cp-apply-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cp-btn-white { background: #fff; color: #164E63; font-weight: 700; }
.cp-btn-white:hover { background: #CFFAFE; color: #164E63; }

/* FOOTER */
.cp-footer { background: #040E14; border-top: 1px solid var(--border); padding: 52px 0 24px; }
.cp-foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.cp-foot-brand p { font-size: .82rem; color: var(--text2); line-height: 1.8; margin-bottom: 16px; }
.cp-foot-social { display: flex; gap: 10px; }
.cp-fs-icon { width: 34px; height: 34px; border-radius: 6px; background: var(--blue-l); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .85rem; color: var(--text2); transition: all .15s; }
.cp-fs-icon:hover { background: var(--blue-d); color: #fff; }
.cp-foot-col h5 { font-size: .8rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.cp-foot-col li { margin-bottom: 8px; }
.cp-foot-col li a { font-size: .82rem; color: var(--text2); transition: color .15s; }
.cp-foot-col li a:hover { color: var(--gold); }
.cp-foot-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .75rem; color: var(--text3); }
.cp-foot-bottom a { color: var(--text3); }
.cp-foot-bottom a:hover { color: var(--gold); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media(max-width:1050px) {
  .cp-ranking-row { grid-template-columns: repeat(2,1fr); }
  .cp-why-grid { grid-template-columns: 1fr 1fr; }
  .cp-ljica-identity { grid-template-columns: 1fr; }
  .cp-ljica-badges { flex-direction: row; }
  .cp-testi-grid { grid-template-columns: 1fr 1fr; }
  .cp-unique-strip { grid-template-columns: repeat(2,1fr); }
  .cp-unique-pill:nth-child(2) { border-right: none; }
  .cp-unique-pill:nth-child(3) { border-top: 1px solid var(--border); }
  .cp-sf-info-row { grid-template-columns: 1fr; }
  .cp-sf-hero-band { grid-template-columns: 1fr; gap: 24px; }
  .cp-sf-divider-v { display: none; }
  .cp-sf-categories { grid-template-columns: 1fr 1fr; }
  .cp-sf-process-steps { grid-template-columns: 1fr 1fr; }
}
@media(max-width:900px) {
  .cp-prog-compare { grid-template-columns: 1fr; }
  .cp-mission-grid { grid-template-columns: repeat(2,1fr); }
  .cp-eh-services { grid-template-columns: 1fr 1fr; }
  .cp-eh-top { flex-direction: column; gap: 16px; }
}
@media(max-width:768px) {
  .cp-stat-grid { grid-template-columns: repeat(2,1fr); }
  .cp-foot-grid { grid-template-columns: 1fr 1fr; }
  .cp-vid-grid { grid-template-columns: 1fr; }
  .cp-img-slide { height: 240px; }
  .cp-lb-nav { display: none; }
  .cp-testi-grid { grid-template-columns: 1fr; }
}
@media(max-width:660px) {
  .cp-why-grid { grid-template-columns: 1fr; }
  .cp-unique-strip { grid-template-columns: 1fr; }
  .cp-unique-pill { border-right: none; border-bottom: 1px solid var(--border); }
  .cp-ljica-identity { padding: 28px 24px; }
  .cp-eh-services { grid-template-columns: 1fr; }
  .cp-sf-categories { grid-template-columns: 1fr; }
  .cp-sf-process-steps { grid-template-columns: 1fr; }
  .cp-sf-hero-band { padding: 32px 24px; }
}
@media(max-width:560px) {
  .cp-mission-grid { grid-template-columns: 1fr; }
  .cp-ranking-row { grid-template-columns: 1fr; }
  .cp-foot-grid { grid-template-columns: 1fr; }
}
