/* ════════════════ DESIGN TOKENS (preserved brand system) ════════════════ */
:root {
    --c-primary: #51157C;
    --c-primary-d: #3D2C5E;
    --c-primary-l: #7969A5;
    --c-primary-50: #EEECF4;
    --c-primary-100: #DDD9E9;
    --c-secondary: #862E84;
    --c-sec-50: #F8EDF7;
    --c-accent: #F1A63E;
    --c-accent-d: #D98E23;
    --c-accent-l: #F6B765;
    --c-accent-50: #FEF6EC;
    --c-white: #FFFFFF;
    --c-bg: #F8F7FC;
    --c-text: #1A1228;
    --c-text-m: #463772;
    --c-text-l: #7A6E8A;
    --c-border: rgba(81, 21, 124, .1);
    --c-red: #DC2626;
    --c-green: #16A34A;
    --f-head: 'Inter', sans-serif;
    --f-body: 'Roboto', sans-serif;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --shadow-sm: 0 2px 8px rgba(81, 21, 124, .07);
    --shadow-md: 0 4px 20px rgba(81, 21, 124, .1);
    --shadow-lg: 0 12px 40px rgba(81, 21, 124, .15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .2);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--f-body);
    color: var(--c-text);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.6
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none
}

[id] {
    scroll-margin-top: 96px
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--f-head);
    line-height: 1.15;
    letter-spacing: -.02em
}

.primary {
    color: var(--c-primary)
}

.accent {
    color: var(--c-accent-d)
}

/* ════════════════ BUTTONS ════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: var(--r-sm);
    font-family: var(--f-head);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .01em;
    transition: all .2s;
    white-space: nowrap;
    text-align: center
}

.btn-primary {
    background: var(--c-accent);
    color: var(--c-primary-d)
}

.btn-primary:hover {
    background: var(--c-accent-l);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(241, 166, 62, .4)
}

.btn-purple {
    background: var(--c-primary);
    color: #fff
}

.btn-purple:hover {
    background: var(--c-primary-d);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(81, 21, 124, .3)
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .35)
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08)
}

.btn-full {
    width: 100%
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px
}

.btn-pulse {
    animation: btn-glow 2.4s ease-in-out infinite
}

@media (max-width: 400px) {
    .btn-lg {
        padding: 12px 18px;
        font-size: 12px
    }
}


@media (max-width: 300px) {
    .btn-lg {
        padding: 12px 18px;
        font-size: 12px
    }
}

@keyframes btn-glow {

    0%,
    100% {
        box-shadow: 0 4px 14px rgba(241, 166, 62, .3)
    }

    50% {
        box-shadow: 0 6px 28px rgba(241, 166, 62, .65)
    }
}

/* ════════════════ TAGS ════════════════ */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 30px;
    font-family: var(--f-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.tag-accent {
    background: rgba(241, 166, 62, .14);
    color: var(--c-accent-d);
    border: 1px solid rgba(241, 166, 62, .3)
}

.tag-red {
    background: #FEF2F2;
    color: var(--c-red)
}

.tag-primary {
    background: var(--c-primary-50);
    color: var(--c-primary)
}

.tag-white {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25)
}

.tag-live {
    background: rgba(22, 163, 74, .16);
    color: #4ADE80;
    border: 1px solid rgba(22, 163, 74, .4)
}

.dot-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    animation: dot-p 1.1s ease-in-out infinite;
    flex-shrink: 0
}

@keyframes dot-p {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.6);
        opacity: .6
    }
}

/* ════════════════ FORM ════════════════ */
.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    font-size: 15px;
    font-family: var(--f-body);
    color: var(--c-text);
    background: #FAFAFA;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
    -webkit-appearance: none
}

.form-control:focus {
    border-color: var(--c-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(81, 21, 124, .08)
}

.form-control::placeholder {
    color: #A0959F
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6E8A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px
}

.form-stack {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.form-note {
    text-align: center;
    font-size: 11.5px;
    color: var(--c-text-l);
    margin-top: 10px;
    font-family: var(--f-body)
}

.field-error {
    display: none;
    color: var(--c-red);
    font-size: 11.5px;
    margin-top: -4px;
    font-family: var(--f-body)
}

/* ════════════════ MEDIA PLACEHOLDERS (swap with real assets) ════════════════ */
.ph {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, #2B0854 0%, #51157C 55%, #862E84 100%);
    color: #fff;
    border-radius: var(--r-lg)
}

.ph::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,.07)'/%3E%3C/svg%3E") repeat;
    pointer-events: none
}

.ph-ico {
    font-size: 30px;
    opacity: .85;
    margin-bottom: 8px;
    position: relative;
    z-index: 1
}

.ph-lbl {
    font-family: var(--f-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .92);
    padding: 0 12px;
    position: relative;
    z-index: 1;
    line-height: 1.4
}

.ph-sub {
    font-family: var(--f-body);
    font-size: 10.5px;
    color: rgba(255, 255, 255, .6);
    margin-top: 3px;
    position: relative;
    z-index: 1
}

.ph-video::before {
    content: '▶';
    position: absolute;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    border: 2px solid rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.ph-video .ph-ico {
    display: none
}

/* ════════════════ URGENT STRIP ════════════════ */
.urgent-strip {
    background: var(--c-red);
    color: #fff;
    text-align: center;
    padding: 9px 16px;
    font-family: var(--f-head);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
    line-height: 1.4
}

.timer-wrap {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, .2);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 13.5px;
    font-weight: 900;
    letter-spacing: .04em
}

.urgent-link {
    color: #FFE566;
    text-decoration: underline;
    font-size: 12.5px;
    white-space: nowrap
}

/* ════════════════ NAV ════════════════ */
.site-nav {
    background: var(--c-primary-d);
    position: sticky;
    display: flex;
    justify-content: space-between;
    padding: 16px 80px;
    top: 38px;
    z-index: 999;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .28)
}

.site-nav img {
    width: 180px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    max-width: 1360px;
    margin: 0 auto
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff
}

.nav-logo .mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--c-accent);
    color: var(--c-primary-d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-head);
    font-weight: 900;
    font-size: 16px
}

.nav-logo .name {
    font-family: var(--f-head);
    font-weight: 800;
    font-size: 16px;
    line-height: 1.05
}

.nav-logo .name small {
    display: block;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-top: 2px
}

.nav-cta {
    padding: 10px 20px;
    font-size: 13.5px;
    height: 45px;
}

/* ════════════════ HERO ════════════════ */
.hero {
    background: linear-gradient(140deg, #2B0854 0%, var(--c-primary) 45%, #3A0D7A 100%);
    color: #fff;
    padding: 60px 0 56px;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E") repeat;
    pointer-events: none
}

/* Optional hero photo: set background-image on .hero-photo to a real hiring-drive shot.
   Left empty = the premium gradient shows through. The image blends so text stays readable. */
.hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: center/cover no-repeat;
    opacity: .32;
    mix-blend-mode: luminosity;
    pointer-events: none
}

.hero-glow-a {
    position: absolute;
    top: -160px;
    right: -100px;
    width: 600px;
    height: 600px;
    z-index: 1;
    background: radial-gradient(circle, rgba(241, 166, 62, .1) 0%, transparent 68%);
    pointer-events: none
}

.hero-glow-b {
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 400px;
    height: 400px;
    z-index: 1;
    background: radial-gradient(circle, rgba(134, 46, 132, .2) 0%, transparent 68%);
    pointer-events: none
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 52px;
    align-items: center;
    position: relative;
    z-index: 2
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.tag-live-red {
    background: rgba(220, 38, 38, .20);
    color: #FF7A7A;
    border: 1px solid rgba(220, 38, 38, .5);
    font-size: 11.5px;
    padding: 6px 15px
}

.hero-title {
    font-size: clamp(34px, 5.8vw, 60px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -.03em;
    margin-bottom: 16px
}

.hero-title .accent {
    color: var(--c-accent)
}

.hero-lead {
    font-size: clamp(15px, 2vw, 17.5px);
    color: rgba(255, 255, 255, .88);
    line-height: 1.65;
    margin-bottom: 24px;
    font-family: var(--f-body);
    max-width: 540px
}

.hero-lead strong {
    color: var(--c-accent);
    font-weight: 700;
    font-family: var(--f-head)
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 30px;
    padding: 9px 16px;
    font-family: var(--f-head);
    font-size: 12.5px;
    font-weight: 700;
    color: #fff
}

.hero-chip .ck {
    width: 16px;
    height: 16px;
    background: var(--c-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.hero-chip .dot-pulse {
    color: #4ADE80
}

/* Hero lead-form card */
.lead-card {
    background: #fff;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative
}

.card-header {
    background: var(--c-primary);
    padding: 18px 24px;
    text-align: center
}

.card-header .lbl {
    font-family: var(--f-head);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 5px
}

.card-header .ttl {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3
}

.card-body {
    padding: 22px
}

.deadline-box {
    background: #FEF2F2;
    border: 1.5px solid #FCA5A5;
    border-radius: var(--r-sm);
    padding: 11px 16px;
    text-align: center;
    margin-bottom: 16px
}

.deadline-box .lbl {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--c-red);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-family: var(--f-head);
    margin-bottom: 3px
}

.deadline-box .val {
    font-family: var(--f-head);
    font-size: 20px;
    font-weight: 900;
    color: var(--c-red)
}

.countdown-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    margin-bottom: 16px
}

.count-box {
    background: var(--c-primary-d);
    border-radius: var(--r-sm);
    padding: 10px 4px;
    text-align: center
}

.count-num {
    font-family: var(--f-head);
    font-size: 22px;
    font-weight: 900;
    color: var(--c-accent);
    line-height: 1;
    display: block
}

.count-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 3px;
    display: block;
    font-weight: 600;
    font-family: var(--f-head)
}

.form-success {
    display: none;
    text-align: center;
    padding: 10px 4px 4px
}

.form-success .tick {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--c-green);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff
}

.form-success h3 {
    font-size: 21px;
    color: var(--c-primary);
    margin-bottom: 8px
}

.form-success p {
    font-size: 14px;
    color: var(--c-text-l);
    line-height: 1.6
}

/* ════════════════ STATS BAND ════════════════ */
.stats-band {
    background: var(--c-primary)
}

.stats-head {
    text-align: center;
    padding: 28px 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.stats-head .kicker {
    font-family: var(--f-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(241, 166, 62, .75);
    margin-bottom: 6px
}

.stats-head h2 {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat-cell {
    text-align: center;
    padding: 28px 18px;
    border-right: 1px solid rgba(255, 255, 255, .1)
}

.stat-cell:last-child {
    border-right: none
}

.stat-num {
    font-family: var(--f-head);
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 900;
    color: var(--c-accent);
    line-height: 1;
    margin-bottom: 7px
}

.stat-lbl {
    font-size: 13px;
    color: rgba(255, 255, 255, .72);
    font-family: var(--f-body);
    line-height: 1.4
}

/* ════════════════ SECTION BASE ════════════════ */
.section {
    padding: 76px 0
}

.section--alt {
    background: var(--c-bg)
}

.section--dark {
    background: var(--c-primary-d);
    color: #fff
}

.section-head {
    margin-bottom: 44px;
    text-align: center
}

.section-title {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -.02em;
    color: var(--c-text);
    margin-top: 10px
}

.section-title--white {
    color: #fff
}

.section-lead {
    font-size: clamp(15px, 1.8vw, 16.5px);
    color: var(--c-text-l);
    line-height: 1.7;
    margin: 12px auto 0;
    max-width: 640px;
    font-family: var(--f-body)
}

.section-lead--white {
    color: rgba(255, 255, 255, .7)
}

/* ════════════════ PROOF (offer letters) ════════════════ */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.proof-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .14);
    aspect-ratio: 4/5;
    transition: transform .3s, box-shadow .3s
}

.proof-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(81, 21, 124, .22)
}

.proof-card .ph {
    position: absolute;
    inset: 0;
    border-radius: 0
}

.proof-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 34px 14px 12px;
    z-index: 3;
    background: linear-gradient(to top, rgba(13, 4, 40, .94) 0%, rgba(13, 4, 40, .4) 65%, transparent 100%)
}

.proof-badge {
    display: inline-block;
    background: rgba(22, 163, 74, .18);
    border: 1px solid rgba(22, 163, 74, .4);
    border-radius: 20px;
    padding: 3px 9px;
    font-size: 10.5px;
    font-weight: 700;
    color: #4ADE80;
    font-family: var(--f-head);
    margin-bottom: 5px
}

.proof-name {
    font-family: var(--f-head);
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2
}

.proof-edu {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .62);
    font-family: var(--f-body);
    margin-top: 2px
}

.proof-bottom-text {
    text-align: center;
    margin-top: 36px;
}

@media (max-width: 992px) {
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .proof-overlay {
        padding: 28px 12px 12px;
    }
}

@media (max-width: 768px) {
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .proof-card {
        aspect-ratio: 3 / 4;
    }

    .proof-overlay {
        padding: 24px 10px 10px;
    }

    .proof-badge {
        font-size: 9px;
        padding: 3px 8px;
        margin-bottom: 4px;
    }

    .proof-name {
        font-size: 13px;
    }

    .proof-edu {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .proof-card {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        aspect-ratio: 4 / 5;
    }

    .proof-overlay {
        padding: 28px 14px 12px;
    }

    .proof-badge {
        font-size: 10px;
    }

    .proof-name {
        font-size: 15px;
    }

    .proof-edu {
        font-size: 11px;
    }
}

/* ════════════════ VIDEO TESTIMONIALS ════════════════ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}


.video-thumb {
    aspect-ratio: 9/16;
    position: relative;
    overflow: hidden;
    background: #e4e4e4;
}

.video-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #d62828;
    font-size: 30px;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: #fff;
}

.play-btn.hide {
    display: none;
}

/* .video-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #fff
}

.video-thumb {
    aspect-ratio: 9/16;
    position: relative
}

.video-thumb .ph {
    position: absolute;
    inset: 0;
    border-radius: 0
}

.video-meta {
    padding: 14px 16px
}

.video-meta .vq {
    font-size: 13.5px;
    color: var(--c-text);
    font-style: italic;
    line-height: 1.55;
    font-family: var(--f-body);
    margin-bottom: 8px
}

.video-meta .vn {
    font-family: var(--f-head);
    font-size: 12.5px;
    font-weight: 800;
    color: var(--c-primary)
}

.video-meta .vr {
    font-size: 11px;
    color: var(--c-accent-d);
    font-weight: 700;
    font-family: var(--f-head);
    margin-top: 1px
} */

/* ════════════════ STEPS (Hiring Drive) ════════════════ */
.drive-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 28px;
    max-width: 760px;
    margin: 0 auto 36px;
    padding: 16px 26px;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, var(--c-primary) 0%, #3A0D7A 58%, var(--c-secondary) 100%);
    border: 1px solid rgba(241, 166, 62, .35);
    box-shadow: 0 14px 44px rgba(81, 21, 124, .30);
    position: relative;
    overflow: hidden
}

.drive-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 88% 0%, rgba(241, 166, 62, .18) 0%, transparent 60%);
    pointer-events: none
}

.db-item {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1
}

.db-ico {
    font-size: 17px;
    line-height: 1
}

.db-k {
    font-family: var(--f-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-accent);
    display: block;
    line-height: 1;
    margin-bottom: 3px
}

.db-v {
    font-family: var(--f-head);
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    display: block
}

.db-sep {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, .18);
    position: relative;
    z-index: 1
}

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

.step-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    position: relative;
    transition: transform .25s, box-shadow .25s
}

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

.step-num {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--c-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-head);
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(81, 21, 124, .28)
}

.step-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 8px;
    font-family: var(--f-head)
}

.step-card p {
    font-size: 14px;
    color: var(--c-text-l);
    line-height: 1.6;
    font-family: var(--f-body)
}

.step-card p .em {
    color: var(--c-text);
    font-weight: 700;
    font-family: var(--f-head)
}

.step-card .pill {
    display: inline-block;
    margin-top: 14px;
    background: var(--c-accent-50);
    color: var(--c-accent-d);
    font-family: var(--f-head);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 20px
}

/* outcome card highlights the offer — the point of the drive */
.step-card--win {
    background: linear-gradient(162deg, #fff 0%, #FFFBF4 100%);
    border: 1.5px solid rgba(241, 166, 62, .55);
    box-shadow: 0 14px 40px rgba(241, 166, 62, .16)
}

.step-card--win .step-num {
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-d) 100%);
    color: #3a2a05;
    box-shadow: 0 6px 18px rgba(241, 166, 62, .42)
}

.step-card--win .pill {
    background: var(--c-primary);
    color: #fff
}

/* ════════════════ JOURNEY / TIMELINE ════════════════ */
.journey {
    position: relative;
    margin-top: 8px
}

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

/* connecting track behind the nodes (desktop) */
.journey-grid::before {
    content: '';
    position: absolute;
    top: 31px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-secondary) 55%, var(--c-accent));
    opacity: .30;
    z-index: 0;
    border-radius: 3px
}

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

.jnode {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: #fff;
    border: 2px solid var(--c-border);
    box-shadow: var(--shadow-md);
    position: relative
}

.jstep--hire .jnode {
    background: linear-gradient(150deg, var(--c-primary), #3A0D7A);
    border-color: transparent;
    color: #fff
}

.jstep--offer .jnode {
    background: linear-gradient(150deg, var(--c-accent), var(--c-accent-d));
    border-color: transparent
}

.jbadge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--c-primary);
    color: #fff;
    font-family: var(--f-head);
    font-size: 12px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15)
}

.jstep--offer .jbadge {
    background: var(--c-accent-d)
}

.jstep h3 {
    font-family: var(--f-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 6px;
    line-height: 1.25
}

.jstep p {
    font-size: 13px;
    color: var(--c-text-l);
    line-height: 1.55;
    font-family: var(--f-body)
}

.jstep .jtag {
    display: inline-block;
    margin-top: 10px;
    font-family: var(--f-head);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--c-primary-50);
    color: var(--c-primary)
}

.jstep--offer .jtag {
    background: var(--c-accent-50);
    color: var(--c-accent-d)
}

/* fee note */
.fee-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    max-width: 860px;
    margin: 38px auto 0;
    background: #fff;
    border: 1px solid var(--c-border);
    border-left: 4px solid var(--c-accent);
    border-radius: var(--r-md);
    padding: 18px 22px;
    box-shadow: var(--shadow-sm)
}

.fee-note .fic {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px
}

.fee-note p {
    font-size: 13.5px;
    color: var(--c-text-m);
    line-height: 1.65;
    font-family: var(--f-body)
}

.fee-note strong {
    font-family: var(--f-head);
    font-weight: 800;
    color: var(--c-text)
}

.fee-note .free {
    color: var(--c-green-d, #15803D);
    font-weight: 700
}

/* ════════════════ DATES ════════════════ */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.date-card {
    background: #fff;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
    transition: transform .25s, box-shadow .25s
}

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

.date-card--red {
    border-top: 4px solid var(--c-red)
}

.date-card--gold {
    border-top: 4px solid var(--c-accent-d)
}

.date-card--hl {
    background: linear-gradient(145deg, var(--c-primary) 0%, #3A0D7A 60%, var(--c-secondary) 100%);
    border: 2px solid rgba(241, 166, 62, .35);
    border-top: 4px solid var(--c-accent);
    box-shadow: 0 12px 48px rgba(81, 21, 124, .35);
    position: relative;
    overflow: hidden
}

.date-card--hl::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 10%, rgba(241, 166, 62, .12) 0%, transparent 65%);
    pointer-events: none
}

.date-hd {
    padding: 20px 20px 0;
    position: relative;
    z-index: 1
}

.date-bd {
    padding: 14px 20px 22px;
    position: relative;
    z-index: 1
}

.date-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-family: var(--f-head);
    margin-bottom: 10px
}

.date-pill--red {
    background: #FEF2F2;
    color: var(--c-red)
}

.date-pill--gold {
    background: #FFF7ED;
    color: #B45309
}

.date-pill--hl {
    background: rgba(241, 166, 62, .2);
    border: 1px solid rgba(241, 166, 62, .4);
    color: var(--c-accent)
}

.date-num {
    font-family: var(--f-head);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 3px;
    font-size: 38px
}

.date-num--red {
    color: var(--c-red)
}

.date-num--gold {
    color: #B45309
}

.date-num--hl {
    color: var(--c-accent);
    font-size: 42px;
    text-shadow: 0 0 32px rgba(241, 166, 62, .4)
}

.date-month {
    font-family: var(--f-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text-m)
}

.date-month--hl {
    color: rgba(255, 255, 255, .75)
}

.date-title {
    font-family: var(--f-head);
    font-size: 15.5px;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 7px;
    line-height: 1.35
}

.date-title--hl {
    color: #fff
}

.date-desc {
    font-size: 13px;
    color: var(--c-text-l);
    line-height: 1.6;
    font-family: var(--f-body)
}

.date-desc--hl {
    color: rgba(255, 255, 255, .78)
}

.date-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 14px
}

.date-chip {
    background: rgba(241, 166, 62, .15);
    border: 1px solid rgba(241, 166, 62, .3);
    border-radius: 20px;
    padding: 4px 11px;
    font-size: 11px;
    font-weight: 700;
    color: var(--c-accent);
    font-family: var(--f-head)
}

/* ════════════════ WHY (hire-first) ════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.compare-col {
    border-radius: var(--r-lg);
    padding: 22px 20px
}

.compare-old {
    background: #F3F0F7;
    border: 1px solid var(--c-border)
}

.compare-new {
    background: linear-gradient(160deg, var(--c-primary), #3A0D7A);
    color: #fff
}

.compare-col h4 {
    font-family: var(--f-head);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px
}

.compare-old h4 {
    color: var(--c-text-l)
}

.compare-new h4 {
    color: var(--c-accent)
}

.compare-step {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--f-head);
    font-size: 14px;
    font-weight: 600;
    padding: 7px 0
}

.compare-old .compare-step {
    color: var(--c-text-m)
}

.compare-new .compare-step {
    color: #fff
}

.compare-step .arr {
    color: var(--c-text-l);
    font-size: 12px
}

.why-points {
    list-style: none
}

.why-points li {
    display: flex;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--c-border)
}

.why-points li:last-child {
    border-bottom: none
}

.why-points .ico {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--c-accent-50);
    color: var(--c-accent-d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0
}

.why-points h4 {
    font-family: var(--f-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 2px
}

.why-points p {
    font-size: 13.5px;
    color: var(--c-text-l);
    line-height: 1.55;
    font-family: var(--f-body)
}

/* ════════════════════════════════════════════
   COMPANIES MARQUEE
   ════════════════════════════════════════════ */
.fun-fact-warp {
    background-color: #fff;
    padding: 80px 0;
}

.fun-fact-warp .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--c-primary-d);
    margin-bottom: 16px;
    line-height: 1.1;
}

.fun-fact-warp .highlight {
    color: var(--c-accent-d);
}

.fun-fact-warp .section-lead {
    color: var(--c-text-l);
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 500;
    /* max-width: 850px; */
}

.fun-fact-warp .sub-highlight {
    color: var(--c-primary);
    font-size: 16px;
    font-weight: 500;
    margin-top: 6px;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 60px;
}

.marquee-row {
    display: flex;
    gap: 30px;
    width: max-content;
}

.fun-fact-item {
    flex: 0 0 auto;
}

.fun-fact-card {
    width: 200px;
    height: 120px;
    background-color: #fff;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border-radius: var(--r-xl);
    border: 1px solid rgba(81, 21, 124, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fun-fact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(81, 21, 124, 0.15);
}

.fun-fact-card .icon {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fun-fact-card .icon img {
    max-width: 140px;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Scroll Right Animation (Row 1) */
.scroll-right {
    animation: scrollRight 40s linear infinite;
}

/* Scroll Left Animation (Row 2) */
.scroll-left {
    animation: scrollLeft 40s linear infinite;
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

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

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

/* Pause on hover optional */
.marquee-wrapper:hover .marquee-row {
    animation-play-state: paused;
}

/* ════════════════ CAREERS ════════════════ */
.careers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.career-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 20px 18px;
    text-align: center
}

.career-card .ic {
    font-size: 24px;
    margin-bottom: 8px
}

.career-card h4 {
    font-family: var(--f-head);
    font-size: 14.5px;
    font-weight: 800;
    color: var(--c-primary);
    margin-bottom: 3px
}

.career-card p {
    font-size: 12px;
    color: var(--c-text-l);
    font-family: var(--f-body)
}

/* ════════════════════════════════════════════
   CAMPUS GALLERY
════════════════════════════════════════════ */
.campus-hero-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    margin-bottom: 14px;
    position: relative;
    box-shadow: var(--shadow-xl)
}

.campus-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 30%;
    display: block
}

.campus-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    background: linear-gradient(to top, rgba(29, 10, 62, .96) 0%, transparent 100%)
}

.campus-caption-sub {
    font-family: var(--f-head);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 5px
}

.campus-caption-title {
    font-family: var(--f-head);
    font-size: 20px;
    font-weight: 900;
    color: #fff
}

.campus-caption-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    margin-top: 3px;
    font-family: var(--f-body)
}

.campus-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 14px
}

.campus-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 14px
}

.campus-tile {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25)
}

.campus-tile img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .4s
}

.campus-tile:hover img {
    transform: scale(1.04)
}

.campus-tile-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 14px;
    background: linear-gradient(to top, rgba(29, 10, 62, .92) 0%, transparent 100%)
}

.campus-tile-sub {
    font-family: var(--f-head);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 3px
}

.campus-tile-name {
    font-family: var(--f-head);
    font-size: 13.5px;
    font-weight: 800;
    color: #fff
}

.campus-cta-strip {
    background: rgba(241, 166, 62, .08);
    border: 1px solid rgba(241, 166, 62, .25);
    border-radius: var(--r-lg);
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 6px;
    flex-wrap: wrap
}

.campus-cta-text h4 {
    font-family: var(--f-head);
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px
}

.campus-cta-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    font-family: var(--f-body)
}

/* ════════════════ FAQ ════════════════ */
.faq-grid {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-item {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    overflow: hidden
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 18px 22px;
    font-family: var(--f-head);
    font-weight: 700;
    font-size: 15.5px;
    color: var(--c-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px
}

.faq-q .chev {
    transition: transform .25s;
    color: var(--c-primary);
    flex-shrink: 0;
    font-size: 18px
}

.faq-item.open .chev {
    transform: rotate(180deg)
}

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

.faq-a-inner {
    padding: 0 22px 20px;
    font-size: 14px;
    color: var(--c-text-l);
    line-height: 1.65;
    font-family: var(--f-body)
}

/* ════════════════ FINAL CTA ════════════════ */
.final-cta {
    background: linear-gradient(140deg, #2B0854, var(--c-primary) 55%, var(--c-secondary));
    color: #fff;
    padding: 76px 0;
    position: relative;
    overflow: hidden
}

.final-cta .hero-glow-a {
    top: -200px
}

.final-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center
}

.final-inner h2 {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 14px
}

.final-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 28px;
    line-height: 1.7
}

.final-card {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 28px 26px;
    box-shadow: var(--shadow-xl);
    max-width: 480px;
    margin: 0 auto;
    text-align: left
}

/* ════════════════ FOOTER ════════════════ */
.footer {
    background: #1A0B30;
    color: rgba(255, 255, 255, .65);
    padding: 44px 0 28px;
    font-size: 13px;
    font-family: var(--f-body)
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer .name {
    font-family: var(--f-head);
    font-weight: 800;
    color: #fff;
    font-size: 16px
}

.footer .name small {
    display: block;
    font-size: 9.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-top: 3px
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .45)
}

/* ════════════════ STICKY MOBILE BAR ════════════════ */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--c-primary-d);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .3);
    transform: translateY(100%);
    transition: transform .35s ease;
    z-index: 998;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    display: none
}

.sticky-bar-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 560px;
    margin: 0 auto
}

.sticky-bar .info {
    flex: 1;
    min-width: 0
}

.sticky-bar .info .t {
    font-family: var(--f-head);
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    line-height: 1.2
}

.sticky-bar .info .s {
    font-size: 10.5px;
    color: var(--c-accent);
    font-family: var(--f-head);
    font-weight: 600
}

.sticky-bar .btn {
    padding: 12px 18px;
    font-size: 13.5px;
    flex-shrink: 0
}

/* ════════════════ MODAL ════════════════ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 4, 40, .7);
    z-index: 10010;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(2px)
}

.modal-card {
    background: #fff;
    border-radius: var(--r-xl);
    max-width: 420px;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: modal-in .3s ease
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.98)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center
}

body.modal-open {
    overflow: hidden
}

/* ════════════════ FADE ════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease
}

.fade-up.in {
    opacity: 1;
    transform: translateY(0)
}

@media(prefers-reduced-motion:reduce) {
    .fade-up {
        opacity: 1;
        transform: none;
        transition: none
    }

    * {
        animation: none !important
    }
}

/* ════════════════ RESPONSIVE ════════════════ */
@media(max-width:1100px) {
    .hero-inner {
        grid-template-columns: 1fr 370px;
        gap: 36px
    }

    .logo-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(max-width:900px) {
    .site-nav {
        top: 36px
    }

    .nav-logo .name small {
        display: none
    }

    .hero {
        padding: 44px 0 40px
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .lead-card {
        max-width: 480px;
        margin: 0 auto
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-cell {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .stat-cell:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, .1)
    }

    .stat-cell:nth-child(3),
    .stat-cell:nth-child(4) {
        border-bottom: none
    }

    .section {
        padding: 56px 0
    }

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

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 18px
    }

    .journey-grid::before {
        display: none
    }

    .drive-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 22px
    }

    .db-sep {
        display: none
    }

    .dates-grid {
        grid-template-columns: 1fr;
        gap: 14px
    }

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

    .video-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .careers-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .campus-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 170px
    }

    .campus-tile.big {
        grid-row: span 1;
        grid-column: span 2
    }

    .sticky-bar {
        display: block
    }

    body {
        padding-bottom: 74px
    }
}

@media(max-width:640px) {
    .urgent-strip {
        font-size: 11.5px;
        padding: 8px 12px;
        gap: 6px
    }

    .urgent-link {
        display: none
    }

    .site-nav {
        top: 35px
    }

    .nav-inner {
        padding: 10px 16px
    }

    .nav-cta {
        display: none
    }

    .hero-title {
        font-size: clamp(30px, 9vw, 42px)
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

    .video-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 20px;
    }

    .video-card {
        width: 260px;
        /* Change to 240-300px as you like */
        max-width: 100%;
    }

    .video-thumb {
        aspect-ratio: 9 / 16;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .careers-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .campus-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px
    }

    .campus-tile.big {
        grid-column: span 1
    }

    .countdown-row {
        grid-template-columns: repeat(4, 1fr)
    }

    .section-head {
        margin-bottom: 32px
    }
}

/* ════════════════ CALENDAR MODAL ════════════════ */
.calendar-container {
    background: var(--c-primary-50);
    border-radius: var(--r-md);
    padding: 20px;
    border: 1px solid var(--c-primary-100);
    margin-top: 10px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-primary-d);
    margin: 0;
}

.cal-nav-btn {
    background: var(--c-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.cal-nav-btn:hover:not(:disabled) {
    background: var(--c-accent);
    color: var(--c-primary-d);
    transform: scale(1.05);
}

.cal-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    color: var(--c-text-l);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.cal-day-cell {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    font-family: var(--f-head);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
    position: relative;
    background: #fff;
    border: 1px solid rgba(81, 21, 124, 0.08);
    cursor: pointer;
}

.cal-day-cell.weekend {
    color: var(--c-red);
    background: #FEF2F2;
    border-color: rgba(220, 38, 38, 0.12);
}

.cal-day-cell.available {
    background: #F0FDF4;
    border-color: rgba(22, 163, 74, 0.2);
    color: var(--c-text);
}

.cal-day-cell.available:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
    border-color: var(--c-green);
}

.cal-day-cell.unavailable {
    background: #F3F4F6;
    color: #9CA3AF;
    border-color: #E5E7EB;
    cursor: not-allowed;
    opacity: 0.55;
}

.cal-day-cell.selected {
    background: var(--c-primary) !important;
    color: #fff !important;
    border-color: var(--c-primary) !important;
    transform: scale(1.06) !important;
    box-shadow: 0 6px 16px rgba(81, 21, 124, 0.25) !important;
}

.cal-slots {
    font-size: 9px;
    font-weight: 600;
    margin-top: 3px;
    color: var(--c-green);
}

.cal-day-cell.weekend.available .cal-slots {
    color: var(--c-red);
}

.cal-day-cell.unavailable .cal-slots {
    color: #9CA3AF;
}

.cal-day-cell.selected .cal-slots {
    color: var(--c-accent) !important;
}

.cal-day-cell.empty {
    background: transparent;
    border: none;
    cursor: default;
    pointer-events: none;
}

#calendar-info {
    background: rgba(81, 21, 124, 0.04);
    border-radius: var(--r-sm);
    padding: 12px;
    margin-top: 15px;
    border-left: 4px solid var(--c-primary);
}

.gcc-section {
    width: 90%;
    max-width: 1300px;
    margin: 80px auto;
    /* background-color: #f8f9fa; */
}

.gcc-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 42px;
    font-weight: 700;
}

.gcc-section span {
    color: #f5a623;
}

.card-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 380px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: #222;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.card-image {
    position: relative;
    height: 330px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.card:hover img {
    transform: scale(1.08);
}

/* Overlay */

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(64, 0, 64, .45);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .4s;
}

.card:hover .overlay {
    opacity: 1;
}

.overlay button {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    background: #fff;
    color: #4b145d;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transform: translateY(20px);
    transition: .35s;
}

.card:hover .overlay button {
    transform: translateY(0);
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 20px;
    margin-bottom: 18px;
}

.card-content p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

@media (max-width: 400px) {
    .gcc-section h2 {
        font-size: 30px;
    }
}


/* AI-prowered Section */
.program-section {
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
}

.section-title span {
    color: #f3a531;
}

.line {
    width: 70px;
    height: 4px;
    background: #f3a531;
    margin: 18px auto;
    border-radius: 10px;
}

.section-title p {
    font-size: 18px;
    color: #555;
    font-weight: 600;
}


.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
}


.program-card {
    height: 170px;
    border-radius: 14px;
    padding: 18px;
    position: relative;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    transition: .35s;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}


.blue {
    background: #1d2050;
}

.pink {
    background: #ba1b94;
}

.purple {
    background: #63189f;
}

.icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 8px;
    /* font-size: ; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon img {
    width: 22px;
}

.icon i {
    font-size: 24px;
}

.blue .icon i {
    color: #23295e;
}

.pink .icon i {
    color: #d31c97;
}

.purple .icon i {
    color: #7c22b6;
}

.content {
    position: absolute;
    left: 18px;
    bottom: 18px;
}

.content h3 {
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.content span {
    font-size: 14px;
    opacity: .9;
}

@media(max-width:992px) {

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:600px) {

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

    .section-title h2 {
        font-size: 32px;
    }

    .program-card {
        height: 160px;
    }

}

@media(max-width:400px) {

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

    .section-title h2 {
        font-size: 25px;
    }

    .program-card {
        height: 160px;
    }

}

/* Card Flip */
.certification-section {
    width: 90%;
    max-width: 1300px;
    margin: 80px auto;
}

.heading {
    text-align: center;
    margin-bottom: 50px;
}

.heading h2 {
    font-size: 32px;
    color: #10193d;

}

.heading span {
    display: inline-block;
    width: 70px;
    height: 4px;
    background: #f4a52b;
    border-radius: 20px;
    margin-top: 18px;
}

/* GRID */
.flip-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;

}

/* CARD */

.flip-card {

    perspective: 1200px;
    height: 320px;

}

.flip-card-inner {

    position: relative;
    width: 100%;
    height: 100%;

    transition: transform .7s;

    transform-style: preserve-3d;

}

.flip-card:hover .flip-card-inner {

    transform: rotateY(180deg);

}

/* BOTH SIDES */

.flip-front,
.flip-back {

    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 18px;

    background: #fff;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    backface-visibility: hidden;

}

/* FRONT */

.flip-front {

    display: flex;
    justify-content: center;
    align-items: center;

}

.flip-front img {
    max-width: 70%;
    transition: .4s;

}

.flip-card:hover img {

    transform: scale(.95);

}

/* BACK */

.flip-back {

    transform: rotateY(180deg);

    padding: 28px;

}

.flip-back h3 {

    color: #222;
    margin-bottom: 10px;

}

.underline {

    width: 55px;
    height: 3px;
    background: #d326ff;
    margin-bottom: 20px;

}

.flip-back p {

    color: #666;
    line-height: 1.7;
    font-size: 15px;

}

.flip-back ul {

    margin-top: 20px;
    padding-left: 18px;

}

.flip-back li {

    margin-bottom: 10px;
    color: #444;

}

.highlight {

    background: #eef0ff;
    padding: 16px;
    border-radius: 12px;
    margin-top: 18px;

}

.highlight strong {

    color: #5d2bb8;

}

/* Responsive */

@media(max-width:992px) {

    .flip-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:600px) {

    .flip-grid {

        grid-template-columns: 1fr;

    }
}

@media (max-width: 400px) {
    .heading h2 {
        font-size: 25px;
    }
}

/* Global PassPort Section */
.acca-section {
    width: 90%;
    max-width: 1300px;
    margin: 80px auto;
    margin-top: 200px;
}

/* Heading */

.section-heading {
    text-align: center;
    margin-bottom: 35px;
}

.section-heading h2 {
    font-size: 40px;
    color: #12193a;
    font-weight: 700;
    line-height: 1.4;

}

.section-heading span {
    color: #F2A431;
}

.heading-line {
    width: 70px;
    height: 4px;
    background: #F2A431;
    margin: 18px auto;
    border-radius: 20px;
}

/* Banner */

.acca-banner {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.acca-banner img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.acca-description {
    margin: 28px 0;
}

.acca-description p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.acca-cta {
    background: #4a005b;
    color: #fff;
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
}

.acca-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}

.acca-cta h4 {
    color: #fff;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    line-height: 49.392px;
    text-align: center;
}

@media(max-width: 400px) {

    .acca-section {
        margin: 10px auto;
    }

    .acca-description p {
        font-size: 12px;
    }

    .section-heading h2 {
        font-size: 20px;
    }

    .acca-cta h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .acca-cta h4 {
        font-size: 15px;
    }

    .acca-cta {
        padding: 25px 15px;
    }
}

/* I-GEN PATHWAY SECTION */
.pathway-section {
    width: 90%;
    max-width: 1300px;
    margin: 80px auto;
}

.pathway-container {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
}

.pathway-table-header {
    display: flex;
    width: 100%;
}

.pathway-header-left {
    width: 250px;
    height: 100px;
    background: #78225d;
    color: #fff;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 14.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid white;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pathway-header-right {
    flex: 1;
    background: #3c0c3e;
    color: #fff;
    padding: 18px 25px;
    font-weight: 700;
    font-size: 14.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.pathway-row {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #eaeaea;
}

.pathway-row:last-child {
    border-bottom: none;
}

.pathway-sidebar {
    width: 49px;
    background-color: #78225d;
    color: #fff;
    display: flex;
    height: 250px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pathway-sidebar span {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    /* text-transform: uppercase; */
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.5px;
    white-space: nowrap;
    text-align: center;
}

.pathway-image-card {
    width: 200px;
    height: 250px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.pathway-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pathway-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 4, 40, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
}

.trimester-title {
    color: #f3a531;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trimester-date {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
}

.trimester-year {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-top: 2px;
}

.pathway-content {
    flex: 1;
    background: #fff;
    padding: 25px 35px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 25px;
    align-items: center;
}

.pathway-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pathway-content li {
    font-size: 18px;
    line-height: 1.8;
    color: #1d1d1d;
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
}

.pathway-content li:last-child {
    margin-bottom: 0;
}

.pathway-content li::before {
    content: "•";
    color: #f3a531;
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* RESPONSIVE FOR PATHWAY */
@media (max-width: 768px) {
    .pathway-table-header {
        display: none;
    }

    .pathway-row {
        flex-direction: column;
    }

    .pathway-sidebar {
        width: 100%;
        padding: 10px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pathway-sidebar span {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 12px;
    }

    .pathway-image-card {
        width: 100%;
        height: 140px;
    }

    .pathway-content {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }
}

.available {
    cursor: pointer;
}

.many-slots {
    background: #22c55e;
    color: #fff;
}

.medium-slots {
    background: #facc15;
    color: #000;
}

.few-slots {
    background: #fb923c;
    color: #fff;
}

.full {
    background: #ef4444;
    color: #fff;
    cursor: not-allowed;
}

.unavailable {
    opacity: .35;
    cursor: not-allowed;
}

/* Responsive Calendar Modal */
@media (max-width: 480px) {
    .modal {
        padding: 8px;
    }

    .modal-card {
        max-width: 100% !important;
        margin: 0 auto;
        border-radius: var(--r-lg);
    }

    .modal-card .card-header {
        padding: 12px 16px !important;
    }

    .modal-card .card-header .ttl {
        font-size: 16px !important;
    }

    .modal-card .card-header .lbl {
        font-size: 9px !important;
        margin-bottom: 2px !important;
    }

    .modal-card .card-body {
        padding: 12px 10px !important;
    }

    .calendar-container {
        padding: 8px;
        margin-top: 5px;
    }

    .calendar-header {
        margin-bottom: 12px;
    }

    .calendar-header h4 {
        font-size: 14px;
    }

    .cal-nav-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .calendar-weekdays {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .calendar-days {
        gap: 4px;
    }

    .cal-day-cell {
        font-size: 12px;
        border-radius: 4px;
    }

    .cal-slots {
        font-size: 8px;
        margin-top: 1px;
        line-height: 1;
    }

    .cal-slots-label {
        display: none;
    }

    #calendar-info {
        padding: 8px;
        margin-top: 10px;
    }

    #slots-count-display {
        font-size: 11.5px !important;
    }

    #book-slot-btn {
        margin-top: 10px !important;
        padding: 10px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 360px) {
    .modal {
        padding: 4px;
    }

    .modal-card .card-body {
        padding: 10px 8px !important;
    }

    .calendar-container {
        padding: 6px;
    }

    .calendar-days {
        gap: 2px;
    }

    .cal-day-cell {
        font-size: 11px;
    }

    .cal-slots {
        font-size: 7px;
    }
}

@media (max-width: 360px) {
    .modal {
        padding: 4px;
    }

    .modal-card .card-body {
        padding: 10px 8px !important;
    }

    .pathway-sidebar {
        height: 30px;
    }

    .calendar-container {
        padding: 6px;
    }

    .calendar-days {
        gap: 2px;
    }

    .cal-day-cell {
        font-size: 11px;
    }

    .cal-slots {
        font-size: 7px;
    }
}