:root {

    --primary-dark: #0B1D3A;
    --primary-blue: #114BAA;
    --primary-purple: #7C3AED;
    --accent-pink: #EC4899;
    --accent-orange: #FF8A3D;
    --light-gray: #F5F7FA;
    --border: #E4E7EC;
    --text-dark: #1F2937;

    --primary: var(--primary-blue);
    --secondary: var(--primary-purple);
    --accent: var(--accent-orange);
    --text-main: var(--text-dark);
    --text-light: rgba(31, 41, 55, 0.6);
    --bg-light: var(--light-gray);

    --footer-text: rgba(228, 231, 236, 0.85);
    --footer-muted: rgba(228, 231, 236, 0.55);
    --footer-dim: rgba(228, 231, 236, 0.4);

    --glass: rgba(255, 255, 255, 0.85);
    --card-shadow: 0 20px 40px -15px rgba(11, 29, 58, 0.12);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-container {
    width: 100%;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .brand {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.logo-text .dept {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    width: 100%;
    padding-left: 2rem;
    position: relative;
}

.nav-row {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin-bottom: 0;
    width: 100%;
    justify-content: flex-end;

    align-items: center;
}

.nav-row.bottom {
    display: none;

    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.nav-row.bottom.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1101px) {
    .nav-wrapper:has(.nav-row.top .nav-item:hover) .nav-row.bottom.active {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

}

.desktop-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(17, 75, 170, 0.1);
    color: var(--primary);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 0.5rem;
    border: 1px solid rgba(17, 75, 170, 0.1);
}

.desktop-toggle:hover {
    background: var(--primary);
    color: white;
}

.desktop-toggle.active i {
    transform: rotate(180deg);
}

@media (max-width: 1100px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        transition: var(--transition);
        color: var(--primary);
        font-size: 30px;

        line-height: 1;
    }

    .desktop-toggle {
        display: none;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 1rem 2rem;
        overflow-y: auto;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem !important;
        width: 100% !important;
        margin-bottom: 0;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .nav-row.bottom {
        margin-top: 0.75rem;
    }

    .nav-item {
        transition: opacity 0.2s ease;
    }

    .nav-wrapper:has(.nav-item:hover) .nav-item:not(:hover) {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-item:hover {

        z-index: 10;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1.5rem;
        display: none;
        min-width: auto;
        width: 100%;
        border: none;
        background: transparent;
    }

    .nav-item:hover .dropdown,
    .nav-item:focus-within .dropdown {
        display: block;
    }

    .nav-item:hover .nav-link {
        background: rgba(17, 75, 170, 0.08);
        color: var(--primary);
    }

    .nav-link {
        justify-content: center;
        width: 100%;
        text-align: center;
        background: rgba(17, 75, 170, 0.03);
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    background: rgba(17, 75, 170, 0.05);
    color: var(--primary);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: var(--transition);
}

.dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 1.25rem;
}

.mobile-toggle {
    display: none;
    color: var(--primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: rgba(17, 75, 170, 0.1);
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 4px;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-main);
}

.nav-btn:hover {
    border-color: var(--text-main);
    background: var(--bg-light);
}

.nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.progress-bar {
    flex-grow: 1;

    max-width: 200px;

    height: 2px;
    background: var(--border);
    position: relative;
    border-radius: 1px;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: black;
    width: 33%;

    transition: width 0.3s ease, left 0.3s ease;
}

@media (min-width: 1025px) {
    .slider-controls {
        display: none !important;
    }

    .programs-track {
        transform: none !important;

        justify-content: center;
        flex-wrap: wrap;
    }

    .program-card {
        flex: 0 0 calc(33.333% - 2rem);
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 10rem 3rem 6rem;
    color: white;
    background: linear-gradient(110deg,
            var(--primary-dark) 100%,
            var(--primary-blue) 35%,
            var(--primary-purple) 70%,
            var(--accent-pink) 10%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.hero::before {
    width: 520px;
    height: 520px;
    top: -160px;
    right: -80px;
    background: rgba(255, 138, 61, 0.35);
}

.hero::after {
    width: 460px;
    height: 460px;
    bottom: -180px;
    left: -120px;
    background: rgba(124, 58, 237, 0.45);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    max-width: 100%;
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 2.6vw, 2.9rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero h1 .subline {
    display: block;
    margin-top: 0.75rem;
    font-size: clamp(0.95rem, 1.2vw, 1.19rem);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.9);
}

.hero-intro {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-intro.expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

.know-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.75rem;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-orange);
    transition: var(--transition);
}

.know-more:hover {
    color: white;
}

.know-more i {
    transition: transform 0.3s ease;
}

.know-more.open i {
    transform: rotate(180deg);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.25rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 1.75rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: white;
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    width: 100%;
    max-width: 560px;
    padding: 2.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 60px -20px rgba(11, 29, 58, 0.5);
}

.hero-card h3 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.programme-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.25rem;
}

.programme-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.programme-list i {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--accent-orange);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat .value {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.75rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .hero-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 1.5rem 4rem;
        min-height: auto;
    }

    .hero-card {
        padding: 1.75rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat .value {
        font-size: 1.7rem;
    }

    .hero-actions .btn {
        flex: 1 1 100%;
        justify-content: center;
    }
}

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

.hero-wave path {
    fill: var(--bg-light);
}

.section-bridge {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.bridge-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: -68px;

    padding: 2.1rem 2.5rem;
    border-radius: 20px;
    background: var(--glass);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--card-shadow);
}

.bridge-stat {
    text-align: center;
    border-right: 1px solid var(--border);
}

.bridge-stat:last-child {
    border-right: none;
}

.bridge-stat .value {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bridge-stat .label {
    margin-top: 0.45rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .section-bridge {
        padding: 0 1.5rem;
    }

    .bridge-card {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -46px;
        padding: 1.5rem;
        gap: 1.5rem 1rem;
    }

    .bridge-stat {
        border-right: 1px solid var(--border);
        padding-bottom: 1rem;
    }

    .bridge-stat:nth-child(2n) {
        border-right: none;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.eyebrow::before {
    content: "";
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.eyebrow.c-primary { color: var(--primary); --pill-bg: rgba(17, 75, 170, 0.12); }
.eyebrow.c-pink { color: var(--accent-pink); --pill-bg: rgba(236, 72, 153, 0.12); }
.eyebrow.c-orange { color: var(--accent-orange); --pill-bg: rgba(255, 138, 61, 0.16); }
.eyebrow.c-purple { color: var(--primary-purple); --pill-bg: rgba(124, 58, 237, 0.12); }

.eyebrow.pill {
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    background: var(--pill-bg, rgba(31, 41, 55, 0.08));
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.eyebrow.pill::before {
    display: none;
}

h1 .hl,
h2 .hl,
h3 .hl,
h4 .hl {
    color: var(--primary);
}

.eyebrow.with-icon {

    gap: 24px;
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-bottom: 1.1rem;
}

.eyebrow.with-icon::before {
    display: none;
}

.eyebrow .eyebrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: currentColor;
    flex-shrink: 0;
}

.eyebrow .eyebrow-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.section-wrap {
    max-width: var(--wrap-max, 1400px);
    margin: 0 auto;
    padding: 5.5rem 3rem;
}

.vision-section {
    --wrap-max: 1560px;
    position: relative;
    padding-top: 1rem;
}

.vision-section .section-wrap {
    padding-top: 5rem;

}

.programmes-section {

    --wrap-max: 1560px;
}

.section-wrap.tight-top {
    padding-top: 4rem;
}

.vision-grid {
    position: relative;
    display: grid;

    grid-template-columns: 56% 44%;
    column-gap: 4.5rem;
}

.vision-col {
    --block-accent: var(--primary-blue);
    position: relative;
    display: flex;
    flex-direction: column;

    justify-content: flex-start;
}

.vision-col>* {
    position: relative;
    z-index: 1;
}

.heading-row {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 1.5rem;
}

.heading-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    flex-shrink: 0;
}

.heading-icon,
.eyebrow .eyebrow-icon {
    position: relative;
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(140deg, var(--block-accent), var(--block-soft) 55%, var(--block-accent)) border-box;
    box-shadow:
        0 0 0 5px var(--block-halo),
        0 12px 22px -12px var(--block-ring);
    transition: var(--transition);
}

.heading-icon::after,
.eyebrow .eyebrow-icon::after {
    content: "";
    position: absolute;
    inset: -11px;
    border-radius: 50%;
    border: 1px dashed var(--block-ring);
    opacity: 0.45;
    pointer-events: none;
}

.vision-col:hover .heading-icon,
.mission-block:hover .eyebrow-icon {
    box-shadow:
        0 0 0 8px var(--block-halo),
        0 16px 26px -12px var(--block-ring);
    transform: translateY(-2px);
}

.heading-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.vision-col h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.25;
    color: var(--primary-dark);
}

.vision-rule {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.vision-rule::before {
    content: "";
    width: 52px;
    height: 3px;
    border-radius: 2px;
    background: var(--block-accent);
}

.vision-rule::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--block-accent);
    opacity: 0.45;
}

.vision-col p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--text-light);
}

.vision-media {
    position: relative;
    flex: 1 1 auto;
    min-height: 210px;
    margin-top: 2.25rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.vision-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-media:hover img {
    transform: scale(1.06);
}

.vision-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(11, 29, 58, 0.78) 0%,
            rgba(11, 29, 58, 0.35) 32%,
            transparent 62%);
    pointer-events: none;
}

.vision-media figcaption {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.35rem;
    z-index: 2;
}

.vision-media .media-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 0.4rem;
}

.vision-media .media-label::before {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

.vision-media .media-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
}

.mission-col {
    display: flex;
    flex-direction: column;

    justify-content: center;
    gap: 2.75rem;
}

.mission-block {
    position: relative;
    padding: 0;
}

.block-vision {
    --block-accent: var(--primary-blue);
    --block-soft: rgba(17, 75, 170, 0.15);
    --block-halo: rgba(17, 75, 170, 0.09);
    --block-ring: rgba(17, 75, 170, 0.4);
}

.block-mission {
    --block-accent: var(--primary-purple);
    --block-soft: rgba(124, 58, 237, 0.15);
    --block-halo: rgba(124, 58, 237, 0.09);
    --block-ring: rgba(124, 58, 237, 0.4);
}

.block-enrol {
    --block-accent: var(--accent-orange);
    --block-soft: rgba(255, 138, 61, 0.18);
    --block-halo: rgba(255, 138, 61, 0.12);
    --block-ring: rgba(255, 138, 61, 0.45);
}

.mission-block h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.mission-block p {
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.85rem;
}

.mission-block p:last-child {
    margin-bottom: 0;
}

.mission-block p strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.mission-list {
    position: relative;
    list-style: none;
    padding-left: 1.9rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;

    --node: 13px;
    --first-line: 1.53rem;
}

.mission-list::before {
    content: "";
    position: absolute;
    left: calc(var(--node) / 2 - 0.5px);
    top: calc(var(--first-line) / 2);
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom,
            var(--border),
            var(--border) 60%,
            transparent);
}

.mission-list li {
    position: relative;
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-light);
}

.mission-list li::before {
    content: "";
    position: absolute;
    left: -1.9rem;

    top: calc((var(--first-line) - var(--node)) / 2);
    width: var(--node);
    height: var(--node);
    border-radius: 50%;

    background: radial-gradient(circle at 32% 30%,
            rgba(255, 255, 255, 0.9) 0 1px,
            var(--block-accent) 2.5px);
    border: 3px solid var(--bg-light);
    box-shadow:
        0 0 0 1.5px var(--block-accent),
        0 0 0 6px var(--block-halo),
        0 0 12px 1px var(--block-ring);
    transition: var(--transition);
}

.mission-list li:hover::before {
    box-shadow:
        0 0 0 1.5px var(--block-accent),
        0 0 0 8px var(--block-halo),
        0 0 16px 3px var(--block-ring);
}

.mission-list li strong {
    color: var(--block-accent);
    font-weight: 700;
    margin-right: 3px;
}

@media (max-width: 900px) {
    .vision-grid {
        grid-template-columns: 1fr;
        row-gap: 3rem;
    }

    .vision-col {
        padding: 0;
    }
}

@media (max-width: 600px) {
    .section-wrap {
        padding: 3.5rem 1.5rem;
    }

    .vision-section .section-wrap {
        padding-top: 3.5rem;
    }

    .mission-col {
        gap: 2.25rem;
    }
}

.programmes-section {
    background: white;
    border-top: 1px solid var(--border);
}

.programmes-head {
    max-width: 720px;
    margin-bottom: 3rem;
}

.programmes-head h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.programmes-head p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-light);
}

.programme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

.programme-card {
    display: flex;
    flex-direction: column;
}

.programme-card .prog-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: var(--light-gray);
}

.programme-card .prog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.programme-card:hover .prog-media img {
    transform: scale(1.08);
}

.programme-card.is-mono .prog-media img {
    filter: grayscale(1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
}

.programme-card.is-mono:hover .prog-media img {
    filter: grayscale(0);
}

.prog-tag {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.programme-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--primary-dark);
    margin-bottom: 0.6rem;
}

.programme-card p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .programme-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.why-section {
    --wrap-max: 1560px;
    background: var(--bg-light);
}

.why-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4.5rem;

    align-items: stretch;
}

.why-split + .why-split {
    margin-top: 6rem;
}

.why-split.is-reversed .why-media {
    order: -1;
}

.why-copy h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.why-copy h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
}

.why-copy p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.1rem;
}

.why-copy p:last-child {
    margin-bottom: 0;
}

.why-media {
    position: relative;
    min-height: 320px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.why-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-media:hover img {
    transform: scale(1.06);
}

.why-badge {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
    background: var(--light-gray);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 34px -18px rgba(11, 29, 58, 0.55);
}

.why-badge .badge-mark {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--accent-orange);
    line-height: 1;
}

.why-badge .badge-logo {
    display: block;
    height: 82px;
    width: auto;
    flex-shrink: 0;
}

.lab-index {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5rem;
    row-gap: 0;
    margin-top: 2rem;
}

.lab-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.lab-item .lab-no {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-blue);
    padding-top: 2px;
    flex-shrink: 0;
}

.lab-item .lab-name {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-dark);
}

.careers-panel {
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
    padding: 4rem 3.5rem;
    border-radius: 24px;
    background: var(--primary-dark);
}

.careers-panel::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(124, 58, 237, 0.35) 0%,
            transparent 70%);
    pointer-events: none;
}

.careers-panel::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -8%;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 138, 61, 0.22) 0%,
            transparent 70%);
    pointer-events: none;
}

.careers-head {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin-bottom: 2.5rem;
}

.careers-head h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.4px;
    color: #fff;
    margin-bottom: 0.8rem;
}

.careers-head h3 .hl {
    color: var(--accent-orange);
}

.careers-head p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--footer-text);
}

.career-list {
    position: relative;
    z-index: 1;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.career-list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--footer-text);
    transition: var(--transition);
}

.career-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-orange);
    flex-shrink: 0;
}

.career-list li:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .why-split {
        grid-template-columns: 1fr;
        row-gap: 2.5rem;
    }

    .why-split.is-reversed .why-media {
        order: 0;
    }

    .lab-index {
        grid-template-columns: 1fr;
    }

    .careers-panel {
        margin-top: 4rem;
        padding: 2.75rem 1.75rem;
        border-radius: 18px;
    }
}

.testimonials-section {
    --wrap-max: 1560px;
    background: #fff;
    overflow: hidden;
}

.tm-head {
    max-width: 660px;
    margin-bottom: 3.5rem;
}

.tm-head h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.tm-head p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--text-light);
}

.tm-stage {
    position: relative;
}

.tm-slide {
    display: none;

    grid-template-columns: 2fr 3fr;
    column-gap: 4.5rem;
    align-items: center;
}

.tm-slide.active {
    display: grid;
    animation: tmFade 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes tmFade {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.tm-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem 1.5rem;
}

.tm-media::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 4%;
    right: 16%;
    width: 34%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.10);
}

.tm-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: var(--light-gray);
    box-shadow: 0 26px 50px -24px rgba(11, 29, 58, 0.5);
}

.tm-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: 50% 18%;
    display: block;
}

.tm-body {
    position: relative;

    padding-top: 4.1rem;
}

.tm-mark {
    position: absolute;
    top: -1.15rem;
    left: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 8.5rem;
    font-weight: 700;
    line-height: 1;
    color: #012265;
    opacity: 0.85;
    pointer-events: none;
}

.tm-body blockquote p {
    font-size: 0.9rem;
    line-height: 1.95;
    color: var(--text-light);
    margin-bottom: 1.1rem;
}

.tm-body blockquote p:last-child {
    margin-bottom: 0;
}

.tm-meta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.tm-name {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.2px;
    color: var(--primary-dark);
}

.tm-role {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--accent-pink);
    margin-top: 0.15rem;
}

.tm-ctc {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 0.9rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(17, 75, 170, 0.1);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--primary-blue);
}

.tm-ctc::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.tm-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.tm-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition);
}

.tm-arrow:hover {
    border-color: transparent;
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
}

.tm-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tm-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.tm-dot.active {
    width: 30px;
    background: var(--primary-blue);
}

@media (max-width: 1024px) {
    .tm-media::before {
        top: 10%;
        right: 24%;
        width: 24%;
    }
}

@media (max-width: 900px) {
    .tm-slide {
        grid-template-columns: 1fr;
        row-gap: 2.5rem;
    }

    .tm-media {
        padding: 1.5rem 1rem;
    }

    .tm-photo {
        max-width: 260px;
    }
}

@media (max-width: 600px) {
    .tm-media::before {
        top: 2%;
        right: 6%;
        width: 46%;
    }
}

.faq-section {
    --wrap-max: 1560px;
    background: var(--bg-light);
}

.faq-head {
    max-width: 880px;
    margin: 0 auto 3rem;
    text-align: center;
}

.faq-head .eyebrow {

    display: inline-flex;
}

.faq-head h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.faq-head p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--text-light);
}

.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(17, 75, 170, 0.22);
    box-shadow: 0 16px 30px -22px rgba(11, 29, 58, 0.5);
    transform: translateY(-1px);
}

.faq-item.open {
    border-color: rgba(17, 75, 170, 0.28);
    box-shadow: 0 18px 34px -24px rgba(11, 29, 58, 0.55);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.1rem;

    padding: 1.05rem 1.35rem;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--primary-dark);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-q:hover {
    background: rgba(17, 75, 170, 0.04);
}

.faq-q:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: -3px;
}

.faq-item.open .faq-q {
    color: var(--primary-blue);
}

.faq-topic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(17, 75, 170, 0.1);
    color: var(--primary-blue);
    transition: var(--transition);
}

.faq-item.open .faq-topic {
    background: var(--primary-blue);
    color: #fff;
}

.faq-text {
    flex: 1;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--primary-blue);
    transition: transform 0.3s ease-in-out,
                background 0.3s ease-in-out,
                color 0.3s ease-in-out;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    background: var(--primary-blue);
    color: #fff;
}

.faq-a {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out,
                opacity 0.3s ease-in-out;
}

.faq-item.open .faq-a {
    opacity: 1;
}

.faq-a p {
    max-width: 68ch;

    padding: 0 1.35rem 1.4rem calc(1.35rem + 44px + 1.1rem);
    font-size: 0.875rem;
    line-height: 1.9;
    color: var(--text-light);
}

@media (max-width: 600px) {
    .faq-head {
        margin-bottom: 2.25rem;
    }

    .faq-list {
        gap: 0.7rem;
    }

    .faq-q {
        gap: 0.8rem;
        padding: 0.9rem 1rem;
        font-size: 0.88rem;
    }

    .faq-topic {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-a p {
        padding: 0 1rem 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-a,
    .faq-icon {
        transition: none;
    }
}

.news-section {
    --wrap-max: 1560px;
    background: #fff;
}

.nc-grid {
    display: grid;

    grid-template-columns: 3fr 2fr;
    gap: 2.5rem;
    align-items: stretch;
}

.nc-panel {
    display: flex;
    flex-direction: column;
    padding: 2.75rem;
    border: 1px solid var(--border);
    border-radius: 20px;
}

.nc-news {
    background: linear-gradient(140deg,
            rgba(17, 75, 170, 0.07),
            rgba(124, 58, 237, 0.05));
}

.nc-contact {
    background: #fff;
    box-shadow: var(--card-shadow);
}

.nc-panel h3 {
    font-size: clamp(1.25rem, 1.9vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--primary-dark);
    margin-bottom: 1.75rem;
}

.news-track {
    display: grid;
    flex: 1;
}

.news-item {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(14px);

    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.6s;
    pointer-events: none;
}

.news-item.active {
    opacity: 1;
    transform: none;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s;
    pointer-events: auto;
}

.news-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.9rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 138, 61, 0.16);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--accent-orange);
}

.news-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.news-item h4 {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-weight: 700;
    line-height: 1.5;
    color: var(--primary-dark);
}

.news-item h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.news-item h4 a:hover,
.news-item h4 a:focus-visible {
    color: var(--primary-blue);
}

.news-item h4 a:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 4px;
    border-radius: 3px;
}

.news-item p {
    margin-top: 0.7rem;
    font-size: 0.875rem;
    line-height: 1.85;
    color: var(--text-light);
}

.news-dots {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 2rem;
}

.news-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.news-dot.active {
    width: 28px;
    background: var(--primary-blue);
}

.news-dot:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 3px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(17, 75, 170, 0.1);
    color: var(--primary-blue);
}

.contact-label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact-value {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.75;
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

a.contact-value:hover,
a.contact-value:focus-visible {
    color: var(--primary-blue);
}

@media (max-width: 900px) {
    .nc-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nc-panel {
        padding: 2rem 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-item {
        transition: none;
        transform: none;
    }
}

.outcomes-block {
    margin-top: 4.5rem;
    padding-top: 3.5rem;
}

.outcomes-head {
    max-width: 640px;
    margin-bottom: 2rem;
}

.outcomes-head h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
}

.outcomes-head p {
    font-size: 0.875rem;
    line-height: 1.85;
    color: var(--text-light);
}

.outcomes-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.outcome-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.outcome-btn:hover {
    border-color: var(--primary);
    box-shadow: var(--card-shadow);
    transform: translateY(-3px);
}

.outcome-btn .tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 0.35rem;
}

.outcome-btn h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.4;
}

.outcome-btn .arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 75, 170, 0.08);
    color: var(--primary);
    transition: var(--transition);
}

.outcome-btn:hover .arrow {
    background: var(--primary);
    color: white;
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .outcomes-buttons {
        grid-template-columns: 1fr;
    }
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 29, 58, 0.55);
    backdrop-filter: blur(2px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(560px, 100%);
    background: white;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -30px 0 60px -20px rgba(11, 29, 58, 0.35);
}

.drawer-overlay.active .drawer-panel {
    transform: translateX(0);
}

.drawer-handle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0 0.3rem;
    cursor: grab;
    touch-action: none;
}

.drawer-handle:active {
    cursor: grabbing;
}

.drawer-handle::before {
    content: "";
    width: 42px;
    height: 4px;
    border-radius: 2px;
    background: var(--border);
}

.drawer-head {
    padding: 0.25rem 2rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.drawer-head .tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 0.4rem;
}

.drawer-head h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.35;
}

.drawer-close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
}

.drawer-close:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.drawer-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 1.25rem 2rem 0;
}

.drawer-tab {
    flex: 1;
    padding: 0.65rem 0.5rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-light);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.drawer-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.75rem 2rem 2.5rem;
}

.drawer-panel-section {
    display: none;
}

.drawer-panel-section.active {
    display: block;
}

.drawer-item {
    display: flex;
    gap: 12px;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.drawer-item:last-child {
    border-bottom: none;
}

.drawer-item .code {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(17, 75, 170, 0.08);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-item p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--text-main);
}

@media (max-width: 600px) {
    .drawer-panel {
        width: 100%;
    }

    .drawer-head,
    .drawer-tabs,
    .drawer-body {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active .reveal-item:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.active .reveal-item:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.active .reveal-item:nth-child(3) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

footer {
    background: var(--primary-dark);
    color: white;
    padding: 5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-heading {
    color: var(--accent-orange);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links.is-lg {
    gap: 1rem;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    transition: color 0.25s ease;
}

.footer-links.is-lg a {
    font-size: 0.85rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--accent-orange);
}

.footer-links a > svg {
    margin-top: 4px;
    flex-shrink: 0;
    color: var(--footer-dim);
}

.footer-block {
    margin-bottom: 2rem;
}

.footer-label {
    color: var(--footer-muted);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer-row {
    display: flex;
    gap: 12px;
}

.footer-row.is-tight {
    align-items: center;
    gap: 10px;
}

.footer-row > svg {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.footer-address {
    color: var(--footer-text);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-link {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-link.is-strong {
    color: #fff;
    font-weight: 600;
}

.footer-social a {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-orange);
    color: #fff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--footer-muted);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

.prog-media img,
.why-media img,
.vision-media img,
.tm-photo img {
    pointer-events: none;
}
