/* ═══════════════════════════════════════════════════════
   COUNTRY SHOW — COMPLETE REDESIGN
   Prefix: cs- (country-show)
═══════════════════════════════════════════════════════ */

/* ── Design tokens ──────────────────────────────────── */
:root {
    --cs-white:   #ffffff;
    --cs-light:   #f5f6fa;
    --cs-dark:    #0d1117;
    --cs-text:    #111827;
    --cs-muted:   #6b7280;
    --cs-border:  rgba(17,24,39,.09);
    --cs-accent:  var(--brand-accent, #f97316);
    --cs-primary: var(--brand-primary, #1d4ed8);
    --cs-second:  var(--brand-secondary, #7c3aed);
    --cs-r-sm:    10px;
    --cs-r-md:    16px;
    --cs-r-lg:    24px;
    --cs-sh-sm:   0 2px 8px rgba(0,0,0,.06);
    --cs-sh-md:   0 8px 32px rgba(0,0,0,.10);
    --cs-sh-lg:   0 20px 60px rgba(0,0,0,.14);
}

/* ── Layout helpers ─────────────────────────────────── */
.cs-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.cs-section          { padding: 80px 0; }
.cs-section--white   { background: var(--cs-white); }
.cs-section--light   { background: var(--cs-light); }
.cs-section--dark    { background: var(--cs-dark); }
.cs-section--accent  {
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--cs-primary) 92%, #000),
        color-mix(in srgb, var(--cs-second) 80%, #000)
    );
}

/* ── Typography helpers ─────────────────────────────── */
.cs-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cs-accent);
    margin: 0 0 10px;
}
.cs-eyebrow--light { color: rgba(255,255,255,.6); }

.cs-heading {
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--cs-text);
    margin: 0 0 16px;
}
.cs-heading--light { color: var(--cs-white); }

.cs-subtext {
    color: var(--cs-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 32px;
    max-width: 58ch;
}
.cs-subtext--light { color: rgba(255,255,255,.72); }

/* ── Buttons ────────────────────────────────────────── */
.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 0.93rem;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, opacity .2s;
    white-space: nowrap;
}
.cs-btn:hover { transform: translateY(-2px); }

.cs-btn--primary {
    background: var(--cs-accent);
    color: #fff;
    box-shadow: 0 6px 24px color-mix(in srgb, var(--cs-accent) 40%, transparent);
}
.cs-btn--primary:hover {
    box-shadow: 0 12px 32px color-mix(in srgb, var(--cs-accent) 50%, transparent);
}
.cs-btn--ghost {
    border: 1.5px solid rgba(255,255,255,.5);
    color: #fff;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
}

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.cs-hero {
    position: relative;
    min-height: 640px;
    background: linear-gradient(150deg,
        color-mix(in srgb, var(--cs-primary) 90%, #000),
        color-mix(in srgb, var(--cs-second) 75%, #000) 60%,
        #0d1117
    );
    display: flex;
    flex-direction: column;
}

.cs-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .3;
}

.cs-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.65) 70%, rgba(0,0,0,.9) 100%);
}

.cs-hero__body {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px 0 56px;
}

/* Breadcrumb */
.cs-crumbs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.6);
    font-size: .8rem;
    margin-bottom: 28px;
}
.cs-crumbs a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.cs-crumbs a:hover { color: #fff; }
.cs-crumbs svg { opacity: .5; }

/* Title row */
.cs-hero__title-row {
    display: flex;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 18px;
}
.cs-hero__flag {
    width: 72px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,.35);
    box-shadow: 0 6px 20px rgba(0,0,0,.4);
    margin-bottom: 8px;
}
.cs-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.6rem, 6.5vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
}
.cs-hero h1 em {
    font-style: normal;
    color: var(--cs-accent);
}

.cs-hero__sub {
    color: rgba(255,255,255,.82);
    font-size: 1.1rem;
    line-height: 1.72;
    max-width: 60ch;
    margin: 0 0 28px;
}

.cs-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Stats strip */
.cs-hero__stats {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,.10);
}
.cs-hero__stats-inner {
    display: flex;
    divide-x: 1px solid rgba(255,255,255,.1);
}
.cs-hero__stat {
    flex: 1;
    padding: 20px 24px;
    border-right: 1px solid rgba(255,255,255,.1);
    text-align: center;
}
.cs-hero__stat:last-child { border-right: 0; }
.cs-hero__stat strong {
    display: block;
    color: #fff;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 800;
    line-height: 1.2;
}
.cs-hero__stat span {
    color: rgba(255,255,255,.55);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    margin-top: 3px;
    display: block;
}

/* ════════════════════════════════════════════════════
   HIGHLIGHTS + QUICK FACTS
════════════════════════════════════════════════════ */
.cs-split {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}
.cs-split__main {}
.cs-split__side {}

/* Highlights */
.cs-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.cs-hl-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border-radius: var(--cs-r-md);
    background: var(--cs-light);
    border: 1px solid var(--cs-border);
    transition: transform .2s, box-shadow .2s;
}
.cs-hl-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--cs-sh-sm);
}
.cs-hl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cs-accent);
    flex-shrink: 0;
    margin-top: 6px;
}
.cs-hl-item h3 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--cs-text);
    margin: 0 0 4px;
}
.cs-hl-item p {
    font-size: .84rem;
    color: var(--cs-muted);
    line-height: 1.6;
    margin: 0;
}

/* Quick facts sidebar */
.cs-facts-box {
    background: var(--cs-dark);
    border-radius: var(--cs-r-lg);
    padding: 28px;
    color: #fff;
    position: sticky;
    top: 80px;
}
.cs-facts-box__title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--cs-accent);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 16px;
}
.cs-facts-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--cs-r-sm);
    overflow: hidden;
    margin-bottom: 20px;
}
.cs-fact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    gap: 12px;
}
.cs-fact-row:last-child { border-bottom: 0; }
.cs-fact-row__label {
    color: rgba(255,255,255,.5);
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.cs-fact-row__value {
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    text-align: right;
}

/* Inquiry form inside sidebar */
.cs-inquiry {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cs-inquiry p {
    color: rgba(255,255,255,.6);
    font-size: .83rem;
    line-height: 1.5;
    margin: 0 0 4px;
}
.cs-inquiry input {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--cs-r-sm);
    padding: 10px 14px;
    color: #fff;
    font-size: .85rem;
    outline: none;
    transition: border-color .2s, background .2s;
    width: 100%;
    box-sizing: border-box;
}
.cs-inquiry input::placeholder { color: rgba(255,255,255,.35); }
.cs-inquiry input:focus {
    border-color: var(--cs-accent);
    background: rgba(255,255,255,.12);
}
.cs-inquiry .iti {
    width: 100%;
}
.cs-inquiry .iti input[data-phone-input] {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
}
.cs-inquiry .iti__selected-country-primary {
    background: transparent;
    border-radius: var(--cs-r-sm) 0 0 var(--cs-r-sm);
}
.cs-inquiry .iti__selected-dial-code,
.cs-inquiry .iti__arrow {
    color: #fff;
}
.cs-inquiry .iti__country-list {
    background: #111827;
    border-color: rgba(255,255,255,.12);
}
.cs-inquiry .iti__country {
    color: #e5e7eb;
}
.cs-inquiry .iti__country.iti__highlight {
    background: rgba(255,255,255,.08);
}
.cs-inquiry .iti button {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    transform: none;
    box-shadow: none;
}
.cs-inquiry > button[type="submit"] {
    margin-top: 4px;
    border: 0;
    border-radius: var(--cs-r-sm);
    padding: 12px;
    background: var(--cs-accent);
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}
.cs-inquiry > button[type="submit"]:hover { opacity: .9; transform: translateY(-1px); }

/* ════════════════════════════════════════════════════
   RICH CONTENT (Country Guide)
════════════════════════════════════════════════════ */
.cs-guide-wrap {
    max-width: 860px;
}
.cs-guide-badge {
    display: inline-block;
    background: color-mix(in srgb, var(--cs-accent) 12%, transparent);
    color: var(--cs-accent);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 5px 14px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--cs-accent) 25%, transparent);
    margin-bottom: 24px;
}
.cs-rich-body h2 {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--cs-text);
    margin: 2.2rem 0 .8rem;
    letter-spacing: -.02em;
}
.cs-rich-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cs-primary);
    margin: 1.6rem 0 .6rem;
}
.cs-rich-body p {
    color: #374151;
    line-height: 1.82;
    margin-bottom: 1.1rem;
    font-size: .97rem;
}
.cs-rich-body ul,
.cs-rich-body ol {
    padding-left: 1.6rem;
    margin-bottom: 1.1rem;
    color: #374151;
    line-height: 1.78;
}
.cs-rich-body strong { color: var(--cs-text); }
.cs-rich-body a { color: var(--cs-primary); }

/* ════════════════════════════════════════════════════
   STUDY AREAS (dark section)
════════════════════════════════════════════════════ */
.cs-courses {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.cs-course-tag {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.9);
    font-size: .88rem;
    font-weight: 600;
    background: rgba(255,255,255,.06);
    cursor: default;
    transition: background .2s, border-color .2s, transform .2s;
}
.cs-course-tag:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.36);
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════
   COST CARDS
════════════════════════════════════════════════════ */
.cs-costs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.cs-cost-card {
    border-radius: var(--cs-r-lg);
    padding: 28px 22px;
    border: 1px solid var(--cs-border);
    background: var(--cs-light);
    text-align: center;
    transition: transform .22s, box-shadow .22s;
    position: relative;
    overflow: hidden;
}
.cs-cost-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cs-primary), var(--cs-accent));
}
.cs-cost-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cs-sh-md);
}
.cs-cost-card__icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}
.cs-cost-card__label {
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--cs-muted);
    margin: 0 0 6px;
}
.cs-cost-card__value {
    font-size: .96rem;
    font-weight: 800;
    color: var(--cs-text);
    margin: 0;
    line-height: 1.35;
}

/* ════════════════════════════════════════════════════
   ENTRY REQUIREMENTS (accent bg)
════════════════════════════════════════════════════ */
.cs-req-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.cs-req-left {}

.cs-req-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cs-req-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--cs-r-sm);
    color: rgba(255,255,255,.9);
    font-size: .92rem;
    line-height: 1.5;
    transition: background .2s;
}
.cs-req-item:hover { background: rgba(255,255,255,.16); }

.cs-req-tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--cs-accent);
    color: #fff;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ════════════════════════════════════════════════════
   APPLICATION ROADMAP (horizontal steps)
════════════════════════════════════════════════════ */
.cs-steps {
    display: flex;
    gap: 0;
    align-items: stretch;
    margin-top: 32px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.cs-step {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 180px;
}
.cs-step__num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cs-primary), var(--cs-second));
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px color-mix(in srgb, var(--cs-primary) 35%, transparent);
}
.cs-step__body {
    flex: 1;
    padding: 16px 14px;
    background: var(--cs-light);
    border-radius: var(--cs-r-md);
    border: 1px solid var(--cs-border);
}
.cs-step__body p {
    margin: 0;
    font-size: .88rem;
    color: var(--cs-text);
    line-height: 1.6;
    font-weight: 500;
}
.cs-step__arrow {
    color: var(--cs-accent);
    font-size: 1.4rem;
    flex-shrink: 0;
    font-weight: 900;
}

/* ════════════════════════════════════════════════════
   INTAKES
════════════════════════════════════════════════════ */
.cs-intakes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.cs-intake-card {
    border-radius: var(--cs-r-md);
    padding: 24px 20px;
    background: var(--cs-white);
    border: 1px solid var(--cs-border);
    border-top: 3px solid var(--cs-accent);
    box-shadow: var(--cs-sh-sm);
    transition: transform .2s, box-shadow .2s;
}
.cs-intake-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--cs-sh-md);
}
.cs-intake-card strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--cs-text);
    margin-bottom: 8px;
}
.cs-intake-card p {
    margin: 0;
    font-size: .86rem;
    color: var(--cs-muted);
    line-height: 1.62;
}

/* ════════════════════════════════════════════════════
   ENTRY REQUIREMENTS TABS — PREMIUM
════════════════════════════════════════════════════ */
.cs-entry-section { background: #f1f5f9; }

.entry-reqs-wrap {
    margin-top: 36px;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.13), 0 4px 16px rgba(0,0,0,.06);
}

/* ── Left sidebar ── */
.entry-req-tabs {
    display: flex;
    flex-direction: column;
    width: 360px;
    flex-shrink: 0;
    background: #0f172a;
    padding: 18px 14px;
    gap: 6px;
    overflow-x: unset;
    scrollbar-width: none;
    border-bottom: none;
}
.entry-req-tabs::-webkit-scrollbar { display: none; }
.entry-req-tab {
    width: 100%;
    flex: unset;
    min-width: unset;
    padding: 18px 16px;
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    background: transparent;
    border: 0;
    border-bottom: none;
    border-radius: 14px;
    cursor: pointer;
    white-space: normal;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 14px;
    line-height: 1.35;
    transition: color .2s, background .2s;
}
.entry-req-tab:hover { background: rgba(255,255,255,.07); color: rgba(255,255,255,.8); }
.entry-tab-icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    font-weight: 800;
    font-size: .9rem;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.45);
    flex-shrink: 0;
    transition: background .25s, color .25s;
}
.entry-tab-label { flex: 1; }
.entry-req-tab.is-active { color: #fff; background: rgba(255,255,255,.1); }
.entry-req-tab.is-active .entry-tab-icon { background: var(--cs-accent); color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.35); }

/* ── Right panels ── */
.entry-req-panels {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 520px;
}
.entry-req-card { display: none; flex: 1; padding: 64px 60px 36px; animation: csEntryIn .32s ease; }
.entry-req-card.is-active { display: grid; grid-template-columns: 1.1fr 360px; gap: 52px; align-items: center; }
@keyframes csEntryIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: translateX(0); } }

.entry-req-card__num {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: #e2e8f0;
    margin-bottom: 12px;
    letter-spacing: -3px;
}
.entry-req-card h3 { margin: 0 0 16px; font-size: 1.6rem; font-weight: 800; color: var(--cs-primary); line-height: 1.3; }
.entry-req-card p  { margin: 0; color: var(--cs-muted); line-height: 1.82; font-size: 1rem; }

.entry-req-card__img { border-radius: 20px; overflow: hidden; aspect-ratio: 16/10; min-height: 260px; }
.entry-req-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* progress */
.entry-req-progress { display: flex; gap: 6px; padding: 24px 60px 26px; border-top: 1px solid #f1f5f9; margin-top: auto; }
.entry-req-progress-dot { flex: 1; height: 4px; border-radius: 99px; background: #e2e8f0; overflow: hidden; cursor: pointer; }
.entry-req-progress-dot.is-active { background: #e2e8f0; }
.entry-req-progress-fill { height: 100%; width: 0; background: var(--cs-accent); border-radius: 99px; transition: width linear; }

/* ════════════════════════════════════════════════════
   SUBJECTS
════════════════════════════════════════════════════ */
.cs-subjects {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 24px;
}
.cs-subject-card {
    position: relative;
    border-radius: var(--cs-r-md);
    overflow: hidden;
    min-height: 200px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--cs-primary) 30%, #1e293b), #0d1117);
    box-shadow: var(--cs-sh-sm);
    transition: transform .24s, box-shadow .24s;
}
.cs-subject-card:hover { transform: scale(1.03); box-shadow: var(--cs-sh-lg); }
.cs-subject-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; transition: transform .4s, opacity .3s; }
.cs-subject-card:hover img { transform: scale(1.06); opacity: .55; }
.cs-subject-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.82) 100%); }
.cs-subject-card span { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 1; color: #fff; font-size: .95rem; font-weight: 700; line-height: 1.3; }

/* ════════════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════════════ */
.cs-process {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
    counter-reset: cs-proc;
}
.cs-process-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    padding: 20px;
    border-radius: var(--cs-r-md);
    border: 1px solid var(--cs-border);
    background: var(--cs-light);
    transition: transform .2s, box-shadow .2s;
    counter-increment: cs-proc;
    position: relative;
    overflow: hidden;
}
.cs-process-item::before {
    content: counter(cs-proc, decimal-leading-zero);
    position: absolute;
    right: 18px;
    top: 12px;
    font-size: 2.4rem;
    font-weight: 900;
    color: color-mix(in srgb, var(--cs-primary) 8%, transparent);
    line-height: 1;
    pointer-events: none;
}
.cs-process-item:hover { transform: translateX(4px); box-shadow: var(--cs-sh-sm); }
.cs-process-item img { width: 100%; height: 130px; border-radius: var(--cs-r-sm); object-fit: cover; }
.cs-process-item__body h3 { margin: 0 0 6px; font-size: 1.02rem; font-weight: 800; color: var(--cs-primary); }
.cs-process-item__body p  { margin: 0; color: var(--cs-muted); font-size: .9rem; line-height: 1.65; }

/* ════════════════════════════════════════════════════
   PARTNER INSTITUTIONS
════════════════════════════════════════════════════ */
.cs-institutions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.cs-inst-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 24px 16px 18px;
    border-radius: var(--cs-r-md);
    border: 1px solid var(--cs-border);
    background: var(--cs-white);
    text-align: center;
    min-height: 150px;
    transition: transform .22s, box-shadow .22s, border-color .22s;
    box-shadow: var(--cs-sh-sm);
}
.cs-inst-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cs-sh-md);
    border-color: color-mix(in srgb, var(--cs-primary) 25%, transparent);
}
.cs-inst-card img { max-width: 140px; max-height: 60px; object-fit: contain; filter: grayscale(20%); transition: filter .2s; }
.cs-inst-card:hover img { filter: grayscale(0); }
.cs-inst-card__initials {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--cs-light);
    color: var(--cs-primary);
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cs-inst-card p { margin: 0; font-size: .84rem; font-weight: 700; color: var(--cs-text); line-height: 1.35; }

/* ════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════ */
.cs-faq-wrap {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}
.cs-faq-header { position: sticky; top: 90px; }
.cs-faq { display: flex; flex-direction: column; gap: 0; }
.cs-faq__item {
    border-bottom: 1px solid var(--cs-border);
}
.cs-faq__item:first-child { border-top: 1px solid var(--cs-border); }
.cs-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 4px;
    cursor: pointer;
    font-weight: 700;
    font-size: .96rem;
    color: var(--cs-text);
    list-style: none;
    user-select: none;
    transition: color .2s;
}
.cs-faq__item summary::-webkit-details-marker { display: none; }
.cs-faq__item[open] > summary { color: var(--cs-primary); }
.cs-faq__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--cs-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--cs-muted);
    background: var(--cs-light);
    transition: background .2s, color .2s, border-color .2s;
}
.cs-faq__icon::before { content: '+'; }
.cs-faq__item[open] .cs-faq__icon { background: var(--cs-primary); color: #fff; border-color: var(--cs-primary); }
.cs-faq__item[open] .cs-faq__icon::before { content: '×'; }
.cs-faq__answer {
    padding: 0 4px 18px;
    color: var(--cs-muted);
    font-size: .93rem;
    line-height: 1.72;
}

/* ════════════════════════════════════════════════════
   STUDENT VIDEOS
════════════════════════════════════════════════════ */
.cs-videos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.cs-video-card {
    border-radius: var(--cs-r-md);
    overflow: hidden;
    border: 1px solid var(--cs-border);
    background: var(--cs-white);
    box-shadow: var(--cs-sh-sm);
    transition: transform .22s, box-shadow .22s;
}
.cs-video-card:hover { transform: translateY(-4px); box-shadow: var(--cs-sh-md); }
.cs-video-card__thumb {
    position: relative;
    overflow: hidden;
}
.cs-video-card__thumb img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.cs-video-card:hover .cs-video-card__thumb img { transform: scale(1.05); }
.cs-video-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.35);
    transition: background .2s;
}
.cs-video-card__play:hover { background: rgba(0,0,0,.55); }
.cs-video-card__play svg {
    width: 44px;
    height: 44px;
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
.cs-video-card__info { padding: 14px 16px; }
.cs-video-card__info strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--cs-text);
    margin-bottom: 6px;
    line-height: 1.4;
}
.cs-video-card__info a {
    font-size: .82rem;
    font-weight: 700;
    color: var(--cs-primary);
    text-decoration: none;
    transition: opacity .2s;
}
.cs-video-card__info a:hover { opacity: .7; }

/* ════════════════════════════════════════════════════
   FINAL CTA BAND
════════════════════════════════════════════════════ */
.cs-cta-band {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(140deg,
        color-mix(in srgb, var(--cs-primary) 90%, #000),
        color-mix(in srgb, var(--cs-second) 72%, #000) 55%,
        color-mix(in srgb, var(--cs-accent) 55%, var(--cs-primary))
    );
    text-align: center;
}
.cs-cta-band__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .15;
}
.cs-cta-band__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.25);
}
.cs-cta-band__body {
    position: relative;
    z-index: 1;
}
.cs-cta-band h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    margin: 0 0 14px;
    letter-spacing: -.03em;
}
.cs-cta-band p {
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    line-height: 1.72;
    max-width: 54ch;
    margin: 0 auto 28px;
}

/* Mobile sticky CTA */
.cs-mobile-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 40;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--cs-border);
    padding: 10px 16px;
    display: none;
}
.cs-mobile-cta button {
    width: 100%;
    border: 0;
    border-radius: 14px;
    padding: 14px;
    font-weight: 700;
    font-size: .96rem;
    color: #fff;
    background: linear-gradient(135deg, var(--cs-primary), var(--cs-second));
    box-shadow: 0 6px 20px color-mix(in srgb, var(--cs-primary) 35%, transparent);
}

/* ════════════════════════════════════════════════════
   LEGACY — keep entry reqs working
════════════════════════════════════════════════════ */
.entry-reqs  { display: none; }
.entry-req-icon { display: none; }

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .cs-split { grid-template-columns: 1fr; }
    .cs-facts-box { position: static; }
    .cs-faq-wrap { grid-template-columns: 1fr; }
    .cs-faq-header { position: static; }
    .entry-reqs-wrap { flex-direction: column; }
    .entry-req-tabs { width: 100%; flex-direction: row; overflow-x: auto; padding: 10px; gap: 6px; background: #0f172a; border-radius: 0; }
    .entry-req-tab { flex: 1; min-width: 130px; white-space: nowrap; border-radius: 10px; }
    .entry-tab-label { display: none; }
    .entry-req-tab.is-active .entry-tab-label { display: inline; }
    .entry-req-card { padding: 28px 24px 16px; }
    .entry-req-card.is-active { grid-template-columns: 1fr; }
    .entry-req-progress { padding: 12px 24px 16px; }
    .cs-institutions { grid-template-columns: repeat(3, 1fr); }
    .cs-subjects,
    .cs-videos     { grid-template-columns: repeat(3, 1fr); }
    .cs-costs      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .cs-section { padding: 56px 0; }
    .cs-hero, .cs-hero { min-height: auto; }
    .cs-hero__body { padding: 32px 0 40px; }
    .cs-hero__stats-inner { flex-wrap: wrap; }
    .cs-hero__stat { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,.1); }
    .cs-costs,
    .cs-intakes,
    .cs-institutions,
    .cs-subjects,
    .cs-videos { grid-template-columns: repeat(2, 1fr); }
    .cs-steps { flex-direction: column; }
    .cs-step__arrow { display: none; }
    .cs-step { flex-direction: column; align-items: flex-start; }
    .cs-req-wrap { grid-template-columns: 1fr; gap: 32px; }
    .cs-process-item { grid-template-columns: 1fr; }
    .cs-highlights { grid-template-columns: 1fr; }
    .cs-mobile-cta { display: block; }
    body { padding-bottom: 78px; }
    .cs-cta-band { padding: 72px 0; }
}

@media (max-width: 480px) {
    .cs-hero h1 { font-size: 2.4rem; }
    .cs-costs,
    .cs-intakes,
    .cs-institutions,
    .cs-subjects,
    .cs-videos { grid-template-columns: 1fr; }
}
