:root {
    --nwn-blue: #005B9E;
    --nwn-navy: #0a2540;
    --nwn-yellow: #FBED2A;
    --nwn-red: #ED3538;
    --nwn-green: #00A859;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Poppins', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============ UTILITY CLASSES ============ */
.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nwn-blue);
    margin-bottom: 1rem;
}

.section-tag--light {
    color: var(--nwn-yellow);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--nwn-blue);
}

.section-title--light {
    color: var(--white);
}

.section-title--light span {
    color: var(--nwn-yellow);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 100%;
    text-align: center;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn--primary {
    background: var(--nwn-blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 91, 158, 0.4);
}

.btn--primary:hover {
    background: #004a82;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 91, 158, 0.5);
}

.btn--secondary {
    background: var(--white);
    color: var(--nwn-blue);
    border: 2px solid var(--gray-200);
}

.btn--secondary:hover {
    border-color: var(--nwn-blue);
    background: var(--gray-50);
}

.btn--outline {
    background: transparent;
    color: var(--nwn-blue);
    border: 2px solid var(--nwn-blue);
}

.btn--outline:hover {
    background: var(--nwn-blue);
    color: var(--white);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ============ NAVIGATION ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.nav--scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 2rem;
}

.nav__container {
    max-width: 85%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.nav__logo-mark {
    width: 50px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav__logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: spinLogo 3s linear infinite;
}

@keyframes spinLogo {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nav--scrolled .nav__logo-mark {
    transform: scale(0.9);
}

.nav__logo-compass {
    width: 100%;
    height: 100%;
    position: relative;
}

.nav__compass-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 135deg,
            var(--nwn-green) 0deg 90deg,
            var(--nwn-yellow) 90deg 180deg,
            var(--nwn-red) 180deg 270deg,
            var(--nwn-blue) 270deg 360deg);
    -webkit-mask: radial-gradient(transparent 55%, black 56%);
    mask: radial-gradient(transparent 55%, black 56%);
    transition: opacity 0.3s;
}

.nav__compass-needle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 20px solid var(--white);
    transform: translate(-50%, -70%);
    transition: border-bottom-color 0.3s;
}

.nav--scrolled .nav__compass-needle {
    border-bottom-color: var(--nwn-blue);
}

.nav__logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    line-height: 1.1;
}

.nav__logo-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.nav--scrolled .nav__logo-title {
    color: var(--nwn-blue);
}

.nav__logo-a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.nav--scrolled .nav__logo-a {
    color: var(--gray-400);
}

.nav__logo-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.nav--scrolled .nav__logo-subtitle {
    color: var(--nwn-navy);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
    position: relative;
}

.nav--scrolled .nav__link {
    color: var(--gray-700);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nwn-blue);
    transition: width 0.3s;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    padding: 0.625rem 1.25rem;
    background: var(--nwn-blue);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav__cta:hover {
    background: #004a82;
    transform: translateY(-2px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.nav--scrolled .nav__toggle span {
    background: var(--gray-800);
}

@media (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s;
        box-shadow: var(--shadow-xl);
    }

    .nav__menu--open {
        right: 0;
    }

    .nav__link {
        color: var(--gray-800);
        font-size: 1.25rem;
    }

    .nav__toggle {
        display: flex;
        z-index: 1001;
    }
}

/* ============ NAV DROPDOWN ============ */
.nav__dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav__link--dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

/* No sliding underline on the dropdown trigger — it causes a jitter */
.nav__link--dropdown::after {
    display: none;
}

.nav__dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav__dropdown:hover .nav__dropdown-arrow {
    transform: rotate(180deg);
}

.nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 210px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 2000;
    border: 1px solid var(--gray-100);
}

.nav__dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    /* same as the gap below the trigger */
    left: 0;
    right: 0;
    height: 14px;
    background: transparent;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.nav__dropdown-item:hover {
    background: var(--gray-100);
    color: var(--nwn-blue);
}

.nav__dropdown-icon {
    font-size: 1rem;
    line-height: 1;
}

/* Mobile: dropdown stacks inside the slide-in menu */
@media (max-width: 968px) {

    /* The dropdown wrapper sits in the vertical menu — centre it like other links */
    .nav__dropdown {
        flex-direction: column;
        align-items: center;
        /* matches the menu's text alignment */
        width: 100%;
    }

    /* The Alumni trigger row: centred, same size as other links */
    .nav__link--dropdown {
        justify-content: center;
        font-size: 1.25rem;
        width: 100%;
        text-align: center;
    }

    /* Sub-menu: hidden by default, slides open with JS toggle class */
    .nav__dropdown-menu {
        position: static;
        transform: none;
        /* Hidden state */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        box-shadow: none;
        border: none;
        background: var(--gray-50);
        border-radius: 10px;
        padding: 0;
        margin-top: 0;
        width: 100%;
    }

    /* Open state — toggled by JS */
    .nav__dropdown-menu--open {
        max-height: 200px;
        opacity: 1;
        pointer-events: auto;
        padding: 4px 0 4px 0;
        margin-top: 6px;
    }

    /* Centre dropdown items */
    .nav__dropdown-item {
        justify-content: center;
        font-size: 1rem;
        color: var(--gray-700);
    }

    .nav__dropdown-menu::before {
        display: none;
    }

    /* Arrow points down by default, up when open */
    .nav__dropdown-arrow {
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }

    .nav__dropdown--open .nav__dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 7.6rem 6rem 4rem;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--nwn-navy) 0%, #0d3a5c 50%, var(--nwn-blue) 100%);
}

.hero__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 168, 89, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 237, 42, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(237, 53, 56, 0.1) 0%, transparent 40%);
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero__content {
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--nwn-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 168, 89, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(0, 168, 89, 0);
    }
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--nwn-green);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__title-line {
    display: block;
}

.hero__title-accent {
    display: block;
    background: linear-gradient(135deg, var(--nwn-yellow), var(--nwn-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero__subtitle strong {
    color: var(--white);
}

.hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero__social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero__avatars {
    display: flex;
}

.hero__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--nwn-navy);
    margin-left: -10px;
    overflow: hidden;
    background: var(--nwn-blue);
}

.hero__avatar:first-child {
    margin-left: 0;
}

.hero__avatar-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

.hero__proof-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero__proof-text strong {
    color: var(--white);
}

.hero__visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero__logo-showcase {
    width: 150px;
    height: 150px;
    position: relative;
    margin-bottom: 1rem;
}

.hero__logo-main {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero__transformation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.hero__state {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__state-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.hero__state-emoji {
    font-size: 1.5rem;
}

.hero__state-title {
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.hero__state-list {
    list-style: none;
}

.hero__state-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 0.25rem 0;
}

.hero__x {
    color: var(--nwn-red);
    font-weight: bold;
}

.hero__check {
    color: var(--nwn-green);
    font-weight: bold;
}

.hero__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--nwn-blue);
    font-size: 0.75rem;
    font-weight: 600;
}

.hero__arrow span {
    color: rgba(255, 255, 255, 0.8);
}

.hero__quick-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__quick-stat {
    text-align: center;
}

.hero__quick-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.hero__quick-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero__quick-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.hero__scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-indicator::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.3;
    }
}

@media (max-width: 1200px) {
    .hero__visual {
        display: none;
    }
}

/* Hero Compass Card */
.hero__compass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero__compass-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 168, 89, 0.3) 0%, rgba(0, 91, 158, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.hero__compass-svg {
    width: 180px;
    height: 180px;
    position: relative;
    z-index: 1;
    animation: gentleRotate 20s ease-in-out infinite;
}

@keyframes gentleRotate {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.hero__compass-stats {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    justify-content: center;
}

.hero__compass-stat {
    text-align: center;
    padding: 0 1rem;
}

.hero__compass-stat:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__compass-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.hero__compass-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============ TRANSFORMATION SECTION ============ */
.transformation {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.transformation__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.transformation__logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.transformation__logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.transformation__cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.transformation__card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 350px;
    flex: 1;
    min-width: 280px;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
}

.transformation__card:hover {
    transform: translateY(-5px);
}

.transformation__card--before {
    border-top: 4px solid var(--nwn-red);
}

.transformation__card--after {
    border-top: 4px solid var(--nwn-green);
}

.transformation__card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.transformation__card-emoji {
    font-size: 1.75rem;
}

.transformation__card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.transformation__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transformation__list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.4;
}

.transformation__list-item--negative::before {
    content: "✕";
    color: var(--nwn-red);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.transformation__list-item--positive::before {
    content: "✓";
    color: var(--nwn-green);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.transformation__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.transformation__arrow-icon {
    font-size: 2.5rem;
    color: var(--nwn-blue);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.transformation__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nwn-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid var(--nwn-blue);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.transformation__cta:hover {
    background: var(--nwn-blue);
    color: var(--white);
}

@media (max-width: 768px) {
    .transformation__cards {
        flex-direction: column;
        align-items: center;
    }

    .transformation__card {
        max-width: 100%;
    }
}

/* ============ IMPACT STATS ============ */
.impact-stats {
    background: var(--white);
    padding: 4rem 2rem;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.impact-stats__container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.impact-stats__item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.impact-stats__item--visible {
    opacity: 1;
    transform: translateY(0);
}

.impact-icon {
    font-size: 60px;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--nwn-blue);
}

.impact-stats .impact-stats__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nwn-blue);
    display: block;
}

.impact-stats__label {
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 600;
}

@media (max-width: 768px) {
    .impact-stats__container {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
    }
}

/* ============ THREE PILLARS ============ */
.pillars {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.pillars__container {
    max-width: 1200px;
    margin: 0 auto;
}

.pillars__header {
    text-align: center;
    margin-bottom: 4rem;
}

.pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
}

.pillar-card--visible {
    opacity: 1;
    transform: translateY(0);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
}

.pillar-card__icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 70%, white));
    border-radius: 20px;
    font-size: 2.5rem;
    transform: rotate(-5deg);
    transition: transform 0.3s;
}

.pillar-card:hover .pillar-card__icon-wrapper {
    transform: rotate(0deg) scale(1.1);
}

.pillar-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.pillar-card__description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pillar-card__features {
    list-style: none;
    text-align: left;
}

.pillar-card__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.pillar-card__features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

@media (max-width: 968px) {
    .pillars__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============ FEATURED PROGRAMME (LRI) ============ */
.featured-prog {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.featured-prog__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

featured-image {
    width: 100%;
}

.featured-prog__content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-prog__content--visible {
    opacity: 1;
    transform: translateX(0);
}

.featured-prog__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--gray-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.featured-prog__title-badge {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    background: var(--nwn-blue);
    color: var(--white);
    font-size: 0.875rem;
    border-radius: 50px;
}

.featured-prog__description {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.featured-prog__highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.featured-prog__highlight {
    text-align: center;
}

.featured-prog__highlight-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--nwn-blue);
}

.featured-prog__highlight-label {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.featured-prog__tracks {
    margin-bottom: 2rem;
}

.featured-prog__tracks h4 {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.featured-prog__track-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.track-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.track-badge--student {
    background: rgba(0, 91, 158, 0.1);
    color: var(--nwn-blue);
}

.track-badge--professional {
    background: rgba(0, 168, 89, 0.1);
    color: var(--nwn-green);
}

.track-badge--entrepreneur {
    background: rgba(237, 53, 56, 0.1);
    color: var(--nwn-red);
}

.featured-prog__testimonial {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border-left: 4px solid var(--nwn-blue);
    box-shadow: var(--shadow-md);
}

.featured-prog__testimonial blockquote {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.featured-prog__testimonial cite {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-image {
    border-radius: 10px;
    width: 100%;
}


.feature-images {
    display: flex;
    gap: 10px;
    width: 100%;
}

.feature-image1 {
    border-radius: 10px;
    width: 49%;
}

@media (max-width: 968px) {
    .featured-prog__container {
        grid-template-columns: 1fr;
    }
}

/* ============ PROGRAMMES GRID ============ */
.programmes {
    padding: 6rem 2rem;
    background: var(--white);
}

.programmes__container {
    max-width: 1200px;
    margin: 0 auto;
}

.programmes__header {
    text-align: center;
    margin-bottom: 4rem;
}

.programmes__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.prog-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.prog-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.prog-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.prog-card__icon {
    font-size: 2.5rem;
}

.prog-card__tag {
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.prog-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.prog-card__description {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.prog-card__link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.prog-card__link:hover {
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .programmes__grid {
        grid-template-columns: 1fr;
    }
}

/* ============ ALUMNI SECTION ============ */
.alumni {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.alumni__container {
    max-width: 1200px;
    margin: 0 auto;
}

.alumni__header {
    text-align: center;
    margin-bottom: 4rem;
}

.alumni__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.alumni-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(20px);
}

.alumni-card--visible {
    opacity: 1;
    transform: translateY(0);
}

.alumni-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.alumni-card__avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto 1rem;
}


.alumni-card__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.alumni-card__meta {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.alumni-card__cohort {
    color: var(--nwn-blue);
    font-weight: 600;
}

.alumni-card__role {
    color: var(--gray-500);
}

.alumni-card__story {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-style: italic;
}

.alumni__cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.alumni__cta-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.alumni__cta-content p {
    color: var(--gray-600);
}

@media (max-width: 968px) {
    .alumni__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .alumni__cta {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .alumni__grid {
        grid-template-columns: 1fr;
    }
}


/* ============= EVENTS SECTION ============= */
.events {
    padding: 6rem 2rem;
}

.event-card {
    background: var(--gray-100);
    margin: 40px auto;
    max-width: 900px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
}

.event-image-container {
    flex: 0 0 40%;
    height: auto;
}

.event-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    flex: 1;
    padding: 40px;
    position: relative;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.status--upcoming {
    background: #dbeafe;
    color: #1e40af;
}

.status--completed {
    background: #028246;
    color: #fff;
}

.event-title {
    margin: 0 0 10px 0;
    font-size: 2rem;
    color: #004a82;
}

.event-details {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-top: 10px;
}

/* Button Styling */
.btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.2s;
    box-shadow: none;
}

.btn--primary svg {
    width: 18px;
}

.btn--primary:hover {
    background: #1d4ed8;
    box-shadow: none;
}

.event-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    background-color: white;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 19px;
    margin: 20px;
}

.event-btn:hover {
    background-color: var(--gray-300);
    border-color: var(--nwn-blue);
    /* Border gets significantly darker */
    color: var(--gray-900);
    /* Text becomes more prominent */
    transform: translateY(-1px);
    /* Optional: subtle "lift" effect */
}


/* ============ FOUNDER SECTION ============ */
.founder {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.founder__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
}

.founder__image {
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder__image--visible {
    opacity: 1;
    transform: translateX(0);
}

.founder__image-frame {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.founder-image {
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    object-fit: cover;
}

.founder__initials {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    opacity: 0.3;
}

.founder__role {
    font-size: 1rem;
    opacity: 0.7;
}

.founder__accent {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.founder__accent--1 {
    width: 100px;
    height: 100px;
    background: var(--nwn-yellow);
    opacity: 0.3;
    top: -20px;
    right: -20px;
}

.founder__accent--2 {
    width: 150px;
    height: 150px;
    background: var(--nwn-green);
    opacity: 0.2;
    bottom: -30px;
    left: -30px;
}

.founder__content {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
}

.founder__content--visible {
    opacity: 1;
    transform: translateX(0);
}

.founder__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.founder__subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.founder__quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--nwn-blue);
    padding-left: 1.5rem;
    border-left: 4px solid var(--nwn-blue);
    margin-bottom: 1.5rem;
}

.founder__bio {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.founder__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.founder__credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

@media (max-width: 968px) {
    .founder__container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .founder__image {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    background: url('img/13.png') no-repeat center/cover;
}

.overlay {
    background: rgba(0, 12, 39, 0.9);
    max-width: 100%;
    padding: 6rem 2rem;
}

.testimonials__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonials__header {
    margin-bottom: 3rem;
}

.testimonials__carousel {
    position: relative;
    min-height: 200px;
}

.testimonial {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial--active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial__quote {
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial__footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial__author {
    font-weight: 600;
    color: var(--white);
    font-style: normal;
}

.testimonial__role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonials__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonials__dot--active {
    background: var(--white);
    border-color: var(--white);
}

/* ============ GET INVOLVED ============ */
.involve {
    padding: 6rem 2rem;
    background: var(--white);
}

.involve__container {
    max-width: 1200px;
    margin: 0 auto;
}

.involve__header {
    text-align: center;
    margin-bottom: 4rem;
}

.involve__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.involve-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.involve-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.involve-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.involve-card:hover::before {
    transform: scaleX(1);
}

.involve-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.involve-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.involve-card__description {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.involve-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.involve-card__cta:hover {
    filter: brightness(1.1);
}

.involve-card__cta svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 968px) {
    .involve__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .involve__grid {
        grid-template-columns: 1fr;
    }
}

/* ============ NEWSLETTER ============ */
.newsletter {
    padding: 4rem 2rem;
    background: var(--gray-100);
}

.newsletter__container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.newsletter__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.newsletter__description {
    color: var(--gray-600);
}

.newsletter__form {
    display: flex;
    gap: 0.75rem;
}

.newsletter__input {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: 1rem;
    width: 280px;
    transition: border-color 0.3s;
}

.newsletter__input:focus {
    outline: none;
    border-color: var(--nwn-blue);
}

.newsletter__submit {
    padding: 0.875rem 1.75rem;
    background: var(--nwn-blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter__submit:hover {
    background: #004a82;
}

@media (max-width: 768px) {
    .newsletter__container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter__form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter__input {
        width: 100%;
    }
}

/* ============ FOOTER ============ */
.footer {
    background: var(--nwn-navy);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__main {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer__logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.1;
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer__links {
    display: flex;
    gap: 4rem;
}

.footer__column h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer__column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

.footer__column a:hover {
    color: var(--white);
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s;
}

.footer__social a:hover {
    background: var(--nwn-blue);
    transform: translateY(-3px);
}

.footer__social svg {
    width: 20px;
    height: 20px;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer__bottom p:last-child {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 968px) {
    .footer__main {
        flex-direction: column;
        gap: 2rem;
    }

    .footer__links {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

/* ============================================================
   RESPONSIVE OVERRIDES — Mobile & Tablet
   Desktop (≥1024px) layout is unchanged.
   ============================================================ */

/* ---- Responsive iframe wrapper ---- */
.video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* ---- Global overflow guard ---- */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ============ TABLET (max 1024px) ============ */
@media (max-width: 1024px) {

    /* Hero */
    .hero {
        padding: 7rem 3rem 4rem;
        flex-direction: column;
        align-items: flex-start;
    }

    /* Featured programme */
    .featured-prog__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Nav container max-width */
    .nav__container {
        max-width: 95%;
    }

    /* Events heading font */
    section#events h1 {
        font-size: 2.2em;
    }
}

/* ============ MOBILE (max 768px) ============ */
@media (max-width: 768px) {

    /* --- Navigation --- */
    .nav {
        padding: 0.75rem 1.25rem;
    }

    .nav--scrolled {
        padding: 0.6rem 1.25rem;
    }

    /* --- Hero --- */
    .hero {
        padding: 6rem 1.25rem 3rem;
        min-height: auto;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__ctas {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero__ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__social-proof {
        flex-wrap: wrap;
    }

    /* --- Impact stats --- */
    .impact-stats {
        padding: 3rem 1rem;
    }

    .impact-stats__container {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .impact-stats .impact-stats__number {
        font-size: 2rem;
    }

    .impact-icon {
        font-size: 40px;
    }

    /* --- Pillars --- */
    .pillars {
        padding: 4rem 1.25rem;
    }

    .pillars__grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    /* --- Featured programme (LRI) --- */
    .featured-prog {
        padding: 4rem 1.25rem;
    }

    .featured-prog__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-prog__highlights {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .feature-images {
        flex-direction: column;
    }

    .feature-image1 {
        width: 100%;
    }

    /* --- Programmes grid --- */
    .programmes {
        padding: 4rem 1.25rem;
    }

    .programmes__grid {
        grid-template-columns: 1fr;
    }

    /* --- Transformation --- */
    .transformation {
        padding: 3rem 1.25rem;
    }

    .transformation__cards {
        flex-direction: column;
        align-items: stretch;
    }

    .transformation__card {
        max-width: 100%;
        min-width: unset;
    }

    /* --- Alumni --- */
    .alumni {
        padding: 4rem 1.25rem;
    }

    .alumni__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .alumni__cta {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    /* --- Events section --- */
    .events {
        padding: 4rem 1.25rem;
    }

    section#events h1 {
        font-size: 2em;
        padding: 0 1rem;
    }

    section#events h3 {
        font-size: 12px;
    }

    .event-card {
        flex-direction: column;
        margin: 20px 0;
        max-width: 100%;
    }

    .event-image-container {
        flex: none;
        width: 100%;
        max-height: 220px;
        overflow: hidden;
    }

    .event-image-container img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .event-content {
        padding: 20px;
        width: 100%;
    }

    .event-title {
        font-size: 1.4rem;
    }

    .event-btn {
        font-size: 16px;
        padding: 10px 20px;
    }

    /* --- Founder --- */
    .founder {
        padding: 4rem 1.25rem;
    }

    .founder__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }

    .founder__image {
        max-width: 280px;
        margin: 0 auto;
    }

    .founder__title {
        font-size: 2rem;
    }

    .founder__quote {
        font-size: 1.1rem;
    }

    /* --- Testimonials --- */
    .overlay {
        padding: 4rem 1.25rem;
    }

    .testimonial__quote {
        font-size: 1.2rem;
    }

    /* --- Get Involved --- */
    .involve {
        padding: 4rem 1.25rem;
    }

    .involve__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* --- Newsletter --- */
    .newsletter {
        padding: 3rem 1.25rem;
    }

    .newsletter__container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter__form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter__input {
        width: 100%;
    }

    /* --- Footer --- */
    .footer {
        padding: 3rem 1.25rem 1.5rem;
    }

    .footer__main {
        flex-direction: column;
        gap: 2rem;
    }

    .footer__brand {
        max-width: 100%;
    }

    .footer__links {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

/* ============ SMALL MOBILE (max 480px) ============ */
@media (max-width: 480px) {

    /* Hero */
    .hero {
        padding: 5.5rem 1rem 2.5rem;
    }

    .hero__title {
        font-size: clamp(1.75rem, 9vw, 2.2rem);
    }

    .hero__badge {
        font-size: 0.78rem;
        padding: 0.4rem 0.75rem;
    }

    /* Impact stats — single column on very small screens */
    .impact-stats__container {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem;
        gap: 1rem;
    }

    /* Alumni */
    .alumni__grid {
        grid-template-columns: 1fr;
    }

    /* Involve grid */
    .involve__grid {
        grid-template-columns: 1fr;
    }

    /* Events */
    .event-title {
        font-size: 1.2rem;
    }

    section#events h1 {
        font-size: 1.7em;
    }

    /* Founder */
    .founder__title {
        font-size: 1.6rem;
    }

    /* Featured programme */
    .featured-prog__highlights {
        gap: 0.75rem;
    }

    .featured-prog__highlight-number {
        font-size: 1.5rem;
    }

    /* Transformation CTA */
    .transformation__cta {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    /* Section titles on very small screens */
    .section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    /* Footer links wrap tighter */
    .footer__links {
        gap: 1rem;
    }
}