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

        :root {
            --blue: #1E458A;
            --blue-dark: #153470;
            --blue-light: #2A5FBB;
            --gold: #D4A017;
            --gold-light: #F5C842;
            --white: #ffffff;
            --off-white: #f8f9fc;
            --gray: #f1f4f9;
            --text: #222222;
            --text-muted: #666;
            --radius: 12px;
            --shadow: 0 4px 24px rgba(30,69,138,0.10);
            --shadow-lg: 0 8px 40px rgba(30,69,138,0.18);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.6;
        }

        html, body {
            max-width: 100%;
            overflow-x: hidden;
        }

        img, svg, video, canvas, iframe {
            max-width: 100%;
            height: auto;
        }

        * {
            min-width: 0;
        }

        .nav,
        .nav-right,
        .hero,
        .hero-stats,
        .hero-trust,
        .accred-bar,
        .why-grid,
        .prog-grid,
        .place-stats,
        .domain-grid,
        .crp-phases,
        .recruiters-grid,
        .recruiter-sectors,
        .testi-grid,
        .names-grid,
        .director-section,
        .faculty-grid,
        .cta-buttons,
        .sticky-cta {
            max-width: 100%;
        }

        /* ── STICKY NAV ── */
        .nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--blue);
            padding: 14px 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 2px 16px rgba(0,0,0,0.18);
        }

        .nav-logo {
            height: 48px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-link {
            color: rgba(255,255,255,0.85);
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
            padding: 7px 14px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
            letter-spacing: 0.2px;
        }

            .nav-link:hover {
                background: rgba(255,255,255,0.12);
                color: white;
            }

        .nav-link-cta {
            background: var(--gold);
            color: var(--blue-dark);
            font-weight: 800;
            padding: 8px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 13px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: background 0.2s;
            white-space: nowrap;
            margin-left: 6px;
        }

            .nav-link-cta:hover {
                background: var(--gold-light);
            }

        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255,255,255,0.22);
            border-radius: 8px;
            background: transparent;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .nav-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }


        /* ── URGENCY BAR ── */
        .urgency-bar {
            background: linear-gradient(90deg, #b91c1c, #dc2626);
            color: white;
            text-align: center;
            padding: 9px 5%;
            font-size: 13.5px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

            .urgency-bar span {
                background: rgba(255,255,255,0.2);
                padding: 2px 10px;
                border-radius: 4px;
                margin: 0 6px;
            }

        /* ── HERO ── */
        .hero {
            background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, #2d6cca 100%);
            padding: 60px 5% 50px;
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 50px;
            align-items: center;
        }

        .hero-badge {
            display: inline-block;
            background: var(--gold);
            color: var(--blue-dark);
            font-size: 12px;
            font-weight: 800;
            padding: 5px 14px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 18px;
        }

        .hero h1 {
            font-size: clamp(28px, 3.5vw, 44px);
            font-weight: 900;
            color: white;
            line-height: 1.18;
            margin-bottom: 18px;
        }

            .hero h1 em {
                color: var(--gold-light);
                font-style: normal;
            }

        .hero-sub {
            font-size: 16px;
            color: rgba(255,255,255,0.88);
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .hero-stats {
            display: flex;
            gap: 28px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
        }

        .stat-num {
            font-size: 32px;
            font-weight: 900;
            color: var(--gold-light);
            line-height: 1;
        }

        .stat-label {
            font-size: 12px;
            color: rgba(255,255,255,0.8);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        .stat-divider {
            width: 1px;
            background: rgba(255,255,255,0.2);
            align-self: stretch;
        }

        .hero-trust {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-trust-badge {
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.25);
            color: rgba(255,255,255,0.9);
            font-size: 12px;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 600;
        }

        /* ── LEAD FORM ── */
        .form-card {
            background: white;
            border-radius: 16px;
            padding: 32px 28px;
            box-shadow: 0 12px 50px rgba(0,0,0,0.22);
        }

            .form-card h3 {
                font-size: 18px;
                font-weight: 800;
                color: var(--blue);
                text-align: center;
                margin-bottom: 6px;
            }

        .form-sub {
            font-size: 12.5px;
            color: var(--text-muted);
            text-align: center;
            margin-bottom: 20px;
        }

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

        .form-group {
            margin-bottom: 12px;
        }

            .form-group label {
                font-size: 12px;
                font-weight: 600;
                color: #444;
                display: block;
                margin-bottom: 4px;
            }

            .form-group input, .form-group select {
                width: 100%;
                padding: 11px 14px;
                border: 1.5px solid #dde2ef;
                border-radius: 8px;
                font-size: 14px;
                font-family: inherit;
                transition: border-color 0.2s;
                background: #fafbff;
                color: var(--text);
            }

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

        .form-submit {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--gold) 0%, #e8b010 100%);
            color: var(--blue-dark);
            font-weight: 900;
            font-size: 16px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: transform 0.15s, box-shadow 0.15s;
            margin-top: 4px;
            box-shadow: 0 4px 14px rgba(212,160,23,0.4);
        }

            .form-submit:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(212,160,23,0.5);
            }

        .form-footer {
            font-size: 11px;
            color: #999;
            text-align: center;
            margin-top: 10px;
        }

        /* ── ACCREDITATION BAR ── */
        .accred-bar {
            background: var(--off-white);
            padding: 20px 5%;
            border-bottom: 1px solid #e5eaf4;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .accred-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-right: 8px;
        }

        .accred-pill {
            display: flex;
            align-items: center;
            gap: 6px;
            background: white;
            border: 1.5px solid #dde2ef;
            border-radius: 6px;
            padding: 7px 16px;
            font-size: 13px;
            font-weight: 700;
            color: var(--blue);
            box-shadow: 0 2px 6px rgba(30,69,138,0.06);
        }

            .accred-pill .dot {
                width: 8px;
                height: 8px;
                background: #22c55e;
                border-radius: 50%;
            }

        /* ── SECTIONS SHARED ── */
        section {
            padding: 70px 5%;
        }

        .section-tag {
            display: inline-block;
            background: rgba(30,69,138,0.08);
            color: var(--blue);
            font-size: 11.5px;
            font-weight: 800;
            padding: 4px 14px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 14px;
        }

        .section-title {
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 900;
            color: var(--blue);
            margin-bottom: 10px;
        }

        .section-sub {
            font-size: 15.5px;
            color: var(--text-muted);
            max-width: 680px;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .section-center {
            text-align: center;
        }

            .section-center .section-sub {
                margin: 0 auto 40px;
            }

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

        @media (max-width: 1100px) {
            .why-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 700px) {
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

        .why-card {
            background: white;
            border: 1.5px solid #e5eaf4;
            border-radius: var(--radius);
            padding: 28px 24px;
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
            position: relative;
            overflow: hidden;
        }

            .why-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, var(--blue), var(--blue-light));
            }

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

        .why-icon {
            font-size: 32px;
            margin-bottom: 14px;
        }

        .why-title {
            font-size: 15px;
            font-weight: 800;
            color: var(--blue);
            margin-bottom: 8px;
        }

        .why-desc {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ── PROGRAMMES ── */
        .prog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        .prog-card {
            border: 2px solid #e5eaf4;
            border-radius: var(--radius);
            padding: 26px 22px;
            transition: all 0.2s;
            cursor: default;
        }

            .prog-card:hover {
                border-color: var(--blue);
                box-shadow: var(--shadow);
                background: #f8faff;
            }

        .prog-badge {
            display: inline-block;
            background: var(--blue);
            color: white;
            font-size: 10.5px;
            font-weight: 800;
            padding: 3px 10px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 12px;
        }

        .prog-name {
            font-size: 17px;
            font-weight: 800;
            color: var(--blue);
            margin-bottom: 8px;
        }

        .prog-desc {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 14px;
            line-height: 1.6;
        }

        .prog-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }

        .prog-tag {
            background: rgba(30,69,138,0.08);
            color: var(--blue);
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 20px;
        }

        /* ── PLACEMENT STATS ── */
        .placement-bg {
            background: linear-gradient(135deg, var(--blue-dark), var(--blue));
        }

            .placement-bg .section-tag {
                background: rgba(255,255,255,0.15);
                color: white;
            }

            .placement-bg .section-title {
                color: white;
            }

            .placement-bg .section-sub {
                color: rgba(255,255,255,0.75);
            }

        .place-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
        }

        .place-stat {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: var(--radius);
            padding: 28px 20px;
            text-align: center;
        }

        .place-stat-num {
            font-size: 42px;
            font-weight: 900;
            color: var(--gold-light);
            line-height: 1;
        }

        .place-stat-label {
            font-size: 13px;
            color: rgba(255,255,255,0.85);
            margin-top: 8px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .domain-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 14px;
        }

        .domain-item {
            background: rgba(255,255,255,0.08);
            border-radius: 10px;
            padding: 16px 18px;
        }

        .domain-label {
            font-size: 13.5px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .domain-bar-wrap {
            background: rgba(255,255,255,0.15);
            border-radius: 4px;
            height: 8px;
        }

        .domain-bar {
            height: 8px;
            border-radius: 4px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
        }

        .domain-pct {
            font-size: 15px;
            font-weight: 900;
            color: var(--gold-light);
            float: right;
            margin-top: -20px;
        }

        /* ── CRP ── */
        .crp-bg {
            background: var(--gray);
        }

        .crp-phases {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 22px;
        }

        .crp-phase {
            background: white;
            border-radius: var(--radius);
            padding: 28px 24px;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--blue);
            position: relative;
        }

        .phase-num {
            width: 40px;
            height: 40px;
            background: var(--blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 18px;
            margin-bottom: 16px;
        }

        .phase-title {
            font-size: 15px;
            font-weight: 800;
            color: var(--blue);
            margin-bottom: 10px;
        }

        .phase-desc {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.65;
        }

        .crp-note {
            margin-top: 32px;
            background: linear-gradient(135deg, var(--blue), var(--blue-light));
            border-radius: var(--radius);
            padding: 28px 32px;
            color: white;
        }

            .crp-note p {
                font-size: 15px;
                line-height: 1.7;
            }

            .crp-note strong {
                color: var(--gold-light);
            }

        /* ── RECRUITERS ── */
        .recruiters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 16px;
        }

        .recruiter-logo {
            background: white;
            border: 1.5px solid #e5eaf4;
            border-radius: 10px;
            padding: 18px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 90px;
            transition: box-shadow 0.2s, border-color 0.2s;
        }

            .recruiter-logo:hover {
                box-shadow: var(--shadow);
                border-color: #c5d0e8;
            }

            .recruiter-logo img {
                max-height: 50px;
                max-width: 120px;
                object-fit: contain;
            }

        .recruiter-sectors {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
        }

        .sector-pill {
            background: white;
            border: 1.5px solid #e5eaf4;
            border-radius: 8px;
            padding: 10px 16px;
            font-size: 13px;
            font-weight: 600;
            color: var(--blue);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sector-dot {
            width: 8px;
            height: 8px;
            background: var(--blue);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ── TESTIMONIALS ── */
        .testi-bg {
            background: var(--off-white);
        }

        .testi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 24px;
        }

        .testi-card {
            background: white;
            border-radius: 16px;
            padding: 32px 26px;
            box-shadow: var(--shadow);
            border: 1.5px solid #e5eaf4;
            position: relative;
        }

            .testi-card::before {
                content: '\201C';
                position: absolute;
                top: 18px;
                left: 24px;
                font-size: 64px;
                color: rgba(30,69,138,0.08);
                font-family: Georgia, serif;
                line-height: 1;
            }

        .testi-text {
            font-size: 14px;
            color: #444;
            line-height: 1.75;
            margin-bottom: 22px;
            font-style: italic;
        }

        .testi-person {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .testi-photo {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--blue);
        }

        .testi-name {
            font-size: 14.5px;
            font-weight: 800;
            color: var(--blue);
        }

        .testi-role {
            font-size: 12.5px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .testi-company {
            display: inline-block;
            margin-top: 4px;
            background: rgba(30,69,138,0.08);
            color: var(--blue);
            font-size: 11px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ── PLACEMENT NAMES ── */
        .placement-names {
            background: var(--gray);
        }

        .names-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
        }

        .name-card {
            background: white;
            border-radius: 10px;
            padding: 16px 18px;
            border: 1.5px solid #e5eaf4;
        }

        .name-person {
            font-size: 13.5px;
            font-weight: 700;
            color: var(--blue);
        }

        .name-role {
            font-size: 12px;
            color: #555;
            margin-top: 3px;
        }

        .name-co {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 600;
            margin-top: 2px;
        }

        /* ── DIRECTOR ── */
        .director-section {
            background: linear-gradient(135deg, #f8faff, var(--off-white));
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 60px;
            align-items: start;
        }

        .director-card {
            background: var(--blue);
            border-radius: 16px;
            padding: 36px 28px;
            text-align: center;
            color: white;
            box-shadow: var(--shadow-lg);
        }

        .director-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
        }

        .director-name {
            font-size: 18px;
            font-weight: 900;
            color: var(--gold-light);
            margin-bottom: 4px;
        }

        .director-title {
            font-size: 13px;
            color: rgba(255,255,255,0.8);
        }

        .director-msg {
            font-size: 15px;
            color: #333;
            line-height: 1.8;
        }

            .director-msg p {
                margin-bottom: 16px;
            }

            .director-msg blockquote {
                border-left: 4px solid var(--blue);
                padding-left: 20px;
                font-style: italic;
                color: var(--blue);
                font-size: 16px;
                margin: 24px 0;
            }

        /* ── FACULTY ── */
        .faculty-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 18px;
        }

        .faculty-card {
            background: white;
            border: 1.5px solid #e5eaf4;
            border-radius: 12px;
            padding: 22px 18px;
            transition: box-shadow 0.2s;
        }

            .faculty-card:hover {
                box-shadow: var(--shadow);
            }

        .faculty-name {
            font-size: 14.5px;
            font-weight: 800;
            color: var(--blue);
            margin-bottom: 4px;
        }

        .faculty-role {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 8px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .faculty-expertise {
            font-size: 12.5px;
            color: #555;
            line-height: 1.5;
        }

        /* ── FINAL CTA ── */
        .cta-section {
            background: linear-gradient(135deg, var(--blue-dark), var(--blue), #2d6cca);
            text-align: center;
            padding: 80px 5%;
        }

        .cta-title {
            font-size: clamp(26px, 3.5vw, 42px);
            font-weight: 900;
            color: white;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .cta-sub {
            font-size: 16px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 36px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--blue-dark);
            font-weight: 900;
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 16px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: all 0.2s;
            box-shadow: 0 4px 18px rgba(212,160,23,0.5);
            display: inline-block;
        }

            .btn-primary:hover {
                background: var(--gold-light);
                transform: translateY(-2px);
            }

        .btn-outline {
            border: 2px solid rgba(255,255,255,0.6);
            color: white;
            font-weight: 700;
            padding: 15px 36px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.2s;
            display: inline-block;
        }

            .btn-outline:hover {
                background: rgba(255,255,255,0.1);
                border-color: white;
            }

        /* ── STICKY BOTTOM CTA ── */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: var(--blue-dark);
            padding: 12px 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
        }

        .sticky-cta-text {
            color: white;
            font-size: 14px;
            font-weight: 600;
        }

            .sticky-cta-text strong {
                color: var(--gold-light);
            }

        .sticky-cta-btn {
            background: var(--gold);
            color: var(--blue-dark);
            font-weight: 900;
            padding: 10px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: background 0.2s;
        }

            .sticky-cta-btn:hover {
                background: var(--gold-light);
            }

        .sticky-cta-close {
            background: none;
            border: none;
            color: rgba(255,255,255,0.5);
            font-size: 18px;
            cursor: pointer;
            padding: 0 0 0 12px;
        }

        /* ── FOOTER ── */
        footer {
            background: #111827;
            color: rgba(255,255,255,0.6);
            text-align: center;
            padding: 24px 5% 80px;
            font-size: 13px;
        }

            footer a {
                color: rgba(255,255,255,0.5);
                text-decoration: none;
            }

        /* ── RESPONSIVE ── */
        @media (max-width: 1100px) {
            .nav {
                flex-wrap: wrap;
                gap: 14px;
            }

            .nav-right {
                gap: 2px;
                flex-wrap: wrap;
                justify-content: flex-end;
            }

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

            .form-card {
                margin-top: 30px;
            }

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

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

        @media (max-width: 767px) {
            section {
                padding: 56px 5%;
            }

            .nav {
                padding: 12px 5%;
            }

            .nav-logo {
                height: 40px;
            }

            .nav-toggle {
                display: inline-flex;
                margin-left: auto;
            }

            .nav-right {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
                padding-top: 8px;
            }

            .nav-right.open {
                display: flex;
            }

            .nav-link,
            .nav-link-cta {
                width: 100%;
                text-align: left;
                margin-left: 0;
                padding: 12px 14px;
            }

            .urgency-bar {
                font-size: 12px;
                line-height: 1.6;
            }

            .hero {
                gap: 28px;
                padding: 40px 5% 36px;
            }

            .hero-sub {
                font-size: 15px;
            }

            .hero-stats {
                gap: 16px;
                justify-content: center;
            }

            .stat-divider {
                display: none;
            }

            .stat {
                flex: 1 1 calc(50% - 8px);
                min-width: 0;
            }

            .hero-trust {
                flex-wrap: wrap;
            }

            .form-card {
                padding: 24px 18px;
            }

            .place-stat-num {
                font-size: 34px;
            }

            .sticky-cta {
                gap: 10px;
                flex-wrap: wrap;
                justify-content: center;
                padding: 12px 14px;
            }

            .sticky-cta-text {
                width: 100%;
                text-align: center;
                font-size: 12px;
            }

            .sticky-cta-btn {
                flex: 1 1 auto;
                text-align: center;
                padding: 12px 18px;
            }

            .sticky-cta-close {
                padding-left: 0;
            }

            footer {
                padding-bottom: 110px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 30px;
            }

            .hero-badge,
            .hero-trust-badge,
            .section-tag,
            .prog-badge,
            .accred-pill,
            .domain-label,
            .sector-pill,
            .why-desc,
            .phase-desc,
            .testi-text,
            .name-role,
            .name-co,
            .faculty-expertise {
                overflow-wrap: anywhere;
            }

            .stat-num {
                font-size: 26px;
            }

            .form-card h3,
            .section-title,
            .cta-title {
                overflow-wrap: anywhere;
            }

            .sticky-cta-btn {
                width: 100%;
            }
        }