:root {
    --b950: #092471;
    --b900: #092471;
    --b800: #092471;
    --b700: #0E3D8E;
    --b600: #1251B5;
    --b500: #1A6AD4;
    --b100: #DDEAFF;
    --b50: #EEF4FF;
    --o600: #de3b34;
    --o500: #de3b34;
    --o400: #FF7033;
    --o100: #FEE3D6;
    --o50: #FFF4EF;
    --g900: #0F172A;
    --g700: #334155;
    --g500: #64748B;
    --g300: #CBD5E1;
    --g100: #F1F5F9;
    --g50: #F8FAFC;
    --navy: #092471;
    --blue: #092471;
    --sky: #ff5722;
    --teal: #ff5722;
    --amber: #ff5722;
    --rose: #F43F5E;
    --cream: #FFF8F3;
    --white: #FFFFFF;
    --gray-50: #F9F6F2;
    --gray-100: #EEE8DF;
    --gray-200: #DDD4C6;
    --gray-400: #9E8F7E;
    --gray-600: #4A4035;
    --text: #0B1A3E;
    --text-muted: #4A4035;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(11, 26, 62, 0.08);
    --shadow-lg: 0 12px 48px rgba(11, 26, 62, 0.16);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ───────────────── NAV ───────────────── */
/* TOPBAR */
.topbar {
    background: var(--b900);
    color: rgba(255, 255, 255, .75);
    font-size: .78rem;
    text-align: center;
    padding: .45rem 1rem;
    letter-spacing: .01em
}

.topbar span {
    color: var(--o400);
    font-weight: 700
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--g100);
    padding: 0 15px;
    /* height: 64px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 20px rgba(10, 45, 107, .06)
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--b700), var(--b500));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: .9rem;
    color: var(--white);
    letter-spacing: -.03em
}

.nav-logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--b900);
    letter-spacing: -.02em
}

.nav-logo-text span {
    color: var(--o500)
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none
}

.nav-menu a {
    font-size: .85rem;
    font-weight: 500;
    color: var(--g700);
    text-decoration: none;
    padding: .4rem .75rem;
    border-radius: 6px;
    transition: all var(--t) var(--ease)
}

.nav-menu a:hover {
    background: var(--b50);
    color: var(--b700)
}

.nav-ctas {
    display: flex;
    gap: .5rem;
    align-items: center
}

.btn-ghost {
    font-size: .85rem;
    font-weight: 600;
    color: var(--b700);
    text-decoration: none;
    padding: .45rem 1rem;
    border-radius: 8px;
    border: 1.5px solid var(--b100);
    transition: all var(--t) var(--ease);
    white-space: nowrap
}

.btn-ghost:hover {
    background: var(--b50);
    border-color: var(--b500)
}

.btn-cta {
    font-size: .85rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    padding: .5rem 1.1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--o500), var(--o600));
    box-shadow: 0 3px 12px rgba(240, 90, 26, .35);
    transition: all var(--t) var(--ease);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-block
}

.btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(240, 90, 26, .4)
}

.logo-img {
    width: 180px;
    height: auto;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ───────────────── HERO ───────────────── */
.hero {
    background: var(--b900);
    position: relative;
    overflow: hidden;
    padding: 70px 5vw 0;
    display: grid;
    /* grid-template-columns: 1fr 420px; */
    gap: 4rem;
    align-items: end;
    min-height: calc(100vh - 84px);
    padding-bottom: 35px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none
}

.hero-bg-glow {
    position: absolute;
    top: -120px;
    right: 400px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 106, 212, .3) 0%, transparent 65%);
    pointer-events: none
}

.hero-bg-glow2 {
    position: absolute;
    bottom: -60px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 90, 26, .12) 0%, transparent 70%);
    pointer-events: none
}

.hero-bg-blob {
    position: fixed;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.1);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.hero-badge i {
    font-size: 11px;
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    color: var(--sky);
}

.hero-sub {
    font-size: 16px;
    color: var(--g300);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--g300);
    font-weight: 500;
}

.hero-bullets li i {
    color: var(--sky);
    /* margin-top: 2px; */
    font-size: 14px;
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sky) 0%, var(--teal) 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.5);
}

.btn-outline {
    background: white;
    color: var(--navy);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--gray-200);
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.trust-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 500;
}

.trust-item i {
    color: var(--sky);
    font-size: 13px;
    margin-top: 4px;
}

.trust-divider {
    width: 1px;
    height: 28px;
    background: var(--gray-200);
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 440px;
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom top;
}

.hero-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hero-stat-card {
    background: white;
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.hero-stat-card .stat-num {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-card .stat-label {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 500;
}

.hero-stat-card .stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 12px;
}

.icon-blue {
    background: rgba(13, 44, 110, 0.1);
    color: var(--blue);
}

.icon-teal {
    background: rgba(249, 115, 22, 0.12);
    color: var(--sky);
}

.icon-amber {
    background: rgba(234, 88, 12, 0.1);
    color: var(--teal);
}

.icon-rose {
    background: rgba(244, 63, 94, 0.1);
    color: var(--rose);
}

/* Floating badge on hero img */
.float-badge {
    position: absolute;
    top: 24px;
    right: -12px;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.float-badge .fb-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--sky), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.float-badge .fb-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.float-badge .fb-text span {
    font-size: 11px;
    color: var(--gray-400);
}

/* ───────────────── SECTION WRAPPER ───────────────── */
.section {
    padding: 40px 0;
}

.full-section {
    padding: 40px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--sky);
    margin-bottom: 12px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--sky);
    border-radius: 2px;
}

.section-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 100%;
    line-height: 1.7;
    margin-bottom: 26px;
}

/* ───────────────── MARQUEE ───────────────── */
.marquee-wrap {
    background: var(--navy);
    padding: 16px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

.marquee-item i {
    color: var(--sky);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ───────────────── WHY BCIPL ───────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.why-card.c1::before {
    background: linear-gradient(90deg, var(--blue), #1a4a9e);
}

.why-card.c2::before {
    background: linear-gradient(90deg, var(--sky), var(--amber));
}

.why-card.c3::before {
    background: linear-gradient(90deg, var(--teal), var(--sky));
}

.why-card.c4::before {
    background: linear-gradient(90deg, var(--rose), #fb7185);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.why-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ───────────────── PROGRAMS ───────────────── */
.programs-bg {
    background: var(--gray-50);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.prog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 8px rgba(10, 22, 40, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.prog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.prog-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.prog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.prog-card:hover .prog-img img {
    transform: scale(1.05);
}

.prog-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 22, 40, 0.7) 100%);
}

.prog-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: white;
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.prog-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prog-icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.prog-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.prog-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.prog-features {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}

.prog-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
}

.prog-features li i {
    color: var(--sky);
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.prog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.prog-ideal {
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 500;
}

.prog-ideal strong {
    color: var(--gray-600);
}

.prog-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--sky);
    text-decoration: none;
}

.prog-link i {
    font-size: 11px;
}

.view-all-wrap {
    text-align: center;
    margin-top: 48px;
}

/* ───────────────── WHO ───────────────── */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.who-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px 36px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
}

.who-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.who-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.who-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.who-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.who-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.who-list li i {
    width: 22px;
    height: 22px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--sky);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 0;
}

.who-note {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.06), rgba(13, 44, 110, 0.05));
    border-radius: var(--radius);
    padding: 24px 28px;
    border-left: 4px solid var(--sky);
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

.who-note strong {
    color: var(--navy);
}

/* 
   ───────────────── OFFERS (AFTER HS / MP) ───────────────── 
*/
.offers-section {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.offers-section .section-tag {
    color: var(--amber);
}

.offers-section .section-tag::before {
    background: var(--amber);
}

.offers-section .section-h2 {
    color: var(--navy);
    margin-bottom: 5px;
}

.offers-section .section-sub {
    color: var(--gray-600);
    max-width: 100%;
}

.swiper-pagination-bullet-active {
    background-color: var(--sky);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: -6px;
}

.offers-grid {
    display: flex;
    gap: 16px;
    padding: 6px 4px 18px;
    margin-top: 4px;
}

.offer-card {
    background: var(--sky);
    border-radius: var(--radius);
    padding: 20px 18px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    /* box-shadow: 0 12px 32px rgba(15, 23, 42, 0.65); */
    display: flex;
    height: 100%;
    flex-direction: column;
    /* min-width: 260px; */
    /* max-width: 300px; */
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.offer-card-highlight {
    border-color: var(--amber);
    /* box-shadow: 0 18px 50px rgba(249, 115, 22, 0.4); */
    position: relative;
    transform: translateY(-2px);
}

.offer-card:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 18px 48px rgba(15, 23, 42, 0.9); */
    border-color: rgba(249, 115, 22, 0.55);
}

.offer-card-highlight::before {
    content: 'Most Chosen';
    position: absolute;
    top: -10px;
    right: 16px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--navy), var(--b950));
    color: #fff;
}

.swiper-slide {
    height: unset;
}

.offer-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber);
    margin-bottom: 8px;
}

.offer-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 12px;
}

.offer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #fff;
}

.offer-list li i {
    color: #fff;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.offer-footnote {
    font-size: 12px;
    color: #fff;
    margin-top: auto;
}

.offers-cta {
    margin-top: 40px;
    text-align: center;
}

.offers-hint {
    margin-top: 14px;
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
}

/* ───────────────── RESULT NEWS POPUP (BOOTSTRAP MODAL) ───────────────── */
.result-modal .modal-dialog {
    /* max-width: 420px; */
}

.modal-dialog-scrollable .modal-content {
    max-height: unset;
}

.result-modal-content {
    background: #0b1120;
    color: #e5e7eb;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.9);
    padding: 30px;
    position: relative;
}

.result-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    filter: invert(1) grayscale(1);
    opacity: 0.7;
}

.result-modal-close:hover {
    opacity: 1;
}

.result-modal-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.5);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #bae6fd;
    margin-bottom: 10px;
    width: fit-content;
}

.result-modal-pill i {
    font-size: 12px;
}

.result-modal h3 {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #f9fafb;
}

.result-modal-text {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.result-modal-list {
    list-style: none;
    margin: 0 0 14px;
    padding-left: 0;
}

.result-modal-list li {
    font-size: 13px;
    color: #e5e7eb;
    padding-left: 16px;
    position: relative;
    margin-bottom: 4px;
}

.result-modal-list li::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #f97316;
}

.result-modal-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
}

.result-modal-btn {
    flex: 1;
    justify-content: center;
    padding-inline: 14px;
    font-size: 13px;
    width: 100%;
}

.result-modal-later {
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .result-modal-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .result-modal-btn {
        width: 100%;
    }
}

/* ───────────────── HOW IT WORKS ───────────────── */
.how-bg {
    background: var(--sky);
    color: white;
}

.how-bg .section-tag {
    color: #fff;
}

.how-bg .section-tag::before {
    background: #fff;
}

.how-bg .section-h2 {
    color: white;
}

.how-bg .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 800;
    color: white;
    position: relative;
    transition: background 0.2s;
}

.step:hover .step-num {
    background: #fff;
    border-color: var(--amber);
    color: var(--navy);
}

.step-num::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.486);
}

.step-icon {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--b50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--navy);
    z-index: 1;
}

.step h3 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.step p {
    font-size: 13px;
    color: #fff;
    line-height: 1.65;
}

.how-cta {
    text-align: center;
    margin-top: 52px;
}

.btn-white {
    background: white;
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* ───────────────── FOUNDER ───────────────── */
.founder-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: center;
}

.founder-img-side {
    position: relative;
}

.founder-img-frame {
    border-radius: 20px;
    overflow: hidden;
    height: 440px;
    box-shadow: var(--shadow-lg);
}

.founder-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.founder-awards {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
}

.award-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.award-row:last-child {
    margin-bottom: 0;
}

.award-badge {
    background: var(--sky);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    min-width: 48px;
    text-align: center;
}

.award-row span {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 500;
}

.founder-content .section-tag {
    margin-bottom: 16px;
}

.founder-content h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(26px, 2.5vw, 38px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.founder-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 16px;
}

.founder-quote {
    margin: 28px 0;
    padding: 24px 28px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 4px solid var(--sky);
    font-size: 16px;
    font-style: italic;
    color: var(--navy);
    line-height: 1.7;
}

.founder-quote cite {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    color: var(--sky);
}

/* ───────────────── OUTCOMES ───────────────── */
.outcomes-bg {
    background: var(--gray-50);
}

.outcomes-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.outcomes-img {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-lg);
}

.outcomes-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.roles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.role-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: 0 1px 4px rgba(10, 22, 40, 0.04);
}

.role-chip i {
    color: var(--sky);
    font-size: 14px;
}

.skills-section h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(249, 115, 22, 0.08);
    color: var(--sky);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin: 4px;
}

/* ───────────────── FAQ ───────────────── */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    height: max-content;
}

.faq-q {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-q h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    flex: 1;
    padding-right: 16px;
}

.faq-q .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 12px;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.faq-item.open .faq-icon {
    background: var(--sky);
    color: white;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
}

/* ───────────────── Exam ───────────────── */
.exam-section {
    background: var(--navy);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.exam-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(56, 189, 248, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.exam-section .section-tag {
    color: #38bdf8;
}

.exam-section .section-h2 {
    color: #f1f5f9;
}

.exam-section .section-sub {
    color: #94a3b8;
}

.exam-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    justify-content: center;
}

.exam-filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(56, 189, 248, 0.3);
    background: rgba(56, 189, 248, 0.06);
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s ease;
    font-family: inherit;
}

.exam-filter-btn:hover,
.exam-filter-btn.active {
    background: rgba(56, 189, 248, 0.18);
    border-color: #38bdf8;
    color: #e0f2fe;
}

.exam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 20px;
}

.exam-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px 24px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.exam-card:hover {
    background: rgba(56, 189, 248, 0.08);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.exam-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.badge-wb {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.badge-national {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.badge-college {
    background: rgba(251, 146, 60, 0.15);
    color: #fdba74;
    border: 1px solid rgba(251, 146, 60, 0.25);
}

.badge-entrance {
    background: rgba(244, 63, 94, 0.15);
    color: #fda4af;
    border: 1px solid rgba(244, 63, 94, 0.25);
}

.exam-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 8px;
    line-height: 1.4;
}

.exam-card-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}

.exam-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #94a3b8;
}

.exam-meta-row i {
    color: #38bdf8;
    width: 14px;
    flex-shrink: 0;
}

.exam-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
}

.status-open {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.status-upcoming {
    background: rgba(251, 191, 36, 0.15);
    color: #fcd34d;
}

.status-closed {
    background: rgba(148, 163, 184, 0.15);
    color: #94a3b8;
}

.exam-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #38bdf8;
    text-decoration: none;
    margin-top: 4px;
    transition: gap 0.2s;
}

.exam-card-link:hover {
    gap: 10px;
    color: #7dd3fc;
}

.exam-search-wrap {
    max-width: 480px;
    margin: 0 auto 32px;
    position: relative;
}

.exam-search-wrap input {
    width: 100%;
    padding: 13px 20px 13px 46px;
    border-radius: 50px;
    border: 1.5px solid rgba(56, 189, 248, 0.25);
    background: rgba(255, 255, 255, 0.05);
    color: #f1f5f9;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.exam-search-wrap input::placeholder {
    color: #64748b;
}

.exam-search-wrap input:focus {
    border-color: #38bdf8;
}

.exam-search-wrap i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #38bdf8;
}

.exam-cta-bar {
    margin-top: 48px;
    text-align: center;
}

.exam-cta-bar p {
    color: #64748b;
    font-size: 0.88rem;
    margin-top: 12px;
}

.btn-exam-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    color: #0f172a;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}

.btn-exam-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(14, 165, 233, 0.4);
    color: #0f172a;
}

.exam-disclaimer {
    margin-top: 28px;
    padding: 16px 20px;
    background: rgba(251, 191, 36, 0.07);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    color: #fcd34d;
    font-size: 0.82rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.exam-disclaimer i {
    margin-top: 2px;
    flex-shrink: 0;
}

.prog-new-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

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

/* ───────────────── CTA FINAL ───────────────── */
.cta-final-bg {
    background: linear-gradient(135deg, var(--navy) 0%, #0D2C6E 60%, #1a3a80 100%);
    position: relative;
    overflow: hidden;
}

.cta-final-bg::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    pointer-events: none;
}


.cta-copy h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-copy p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.contact-list li .c-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    font-size: 14px;
    flex-shrink: 0;
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.form-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.form-group input,
.form-group select {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--navy);
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--sky);
    background: white;
}

.form-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.btn-form-primary {
    background: linear-gradient(135deg, var(--sky), var(--teal));
    color: white;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.btn-form-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.btn-form-outline {
    background: white;
    color: var(--navy);
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid var(--gray-200);
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: border-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.btn-form-outline:hover {
    border-color: var(--blue);
}

/* ───────────────── FOOTER ───────────────── */
footer {
    background: #060D1A;
    padding:10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    display: flex;
    justify-content: space-between;
}

footer a {
    color: var(--sky);
    text-decoration: none;
}

/* ───────────────── ANIMATIONS ───────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

.d1 {
    animation-delay: 0.05s;
}

.d2 {
    animation-delay: 0.15s;
}

.d3 {
    animation-delay: 0.25s;
}

.d4 {
    animation-delay: 0.35s;
}

/* ───────────────── RESPONSIVE ───────────────── */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px 60px;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .programs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .steps-grid::before {
        display: none;
    }

    .founder-wrap {
        grid-template-columns: 1fr;
    }

    .founder-img-frame {
        height: 300px;
    }

    .outcomes-layout {
        grid-template-columns: 1fr;
    }

    .outcomes-img {
        height: 260px;
    }

    .cta-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .section,
    .full-section {
        padding: 60px 20px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-btns {
        grid-template-columns: 1fr;
    }

    .hero-cards-row {
        grid-template-columns: 1fr 1fr;
    }

    .trust-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .trust-divider {
        display: none;
    }
}