 
        :root {
            --navy: #0f2557;
            --navy-dark: #091840;
            --navy-light: #1a3570;
            --red: #e31837;
            --red-dark: #c0132e;
            --red-light: #ff3354;
            --gold: #f5a623;
            --white: #ffffff;
            --light-bg: #f4f6fb;
            --text-dark: #1a1a2e;
            --text-muted: #6c757d;
            --border: #e0e6f0;
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background: #fff;
            overflow-x: hidden;
        }

        /* ── NAVBAR ── */
        .top-navbar {
            background: var(--navy-dark);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }

        .top-navbar .brand-wrap {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .top-navbar .brand-logo {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
        }

        .top-navbar .brand-logo span {
            color: var(--red);
        }

        .top-navbar .divider {
            width: 1px;
            height: 28px;
            background: rgba(255, 255, 255, 0.25);
        }

        .top-navbar .uni-name {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.3;
        }

        .top-navbar .nav-cta {
            background: var(--red);
            color: #fff;
            border: none;
            padding: 8px 20px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s;
            white-space: nowrap;
        }

        .top-navbar .nav-cta:hover {
            background: var(--red-dark);
            color: #fff;
        }

        .top-navbar .nav-phone {
            color: rgba(255, 255, 255, 0.85);
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .top-navbar .nav-phone:hover {
            color: #fff;
        }

        /* ── URGENCY BANNER ── */
        .urgency-bar {
            background: linear-gradient(90deg, var(--red), #b5102b);
            color: #fff;
            text-align: center;
            padding: 9px 16px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.2px;
        }

        .urgency-bar strong {
            font-weight: 700;
        }

        .urgency-bar .countdown {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-left: 8px;
            background: rgba(255, 255, 255, 0.18);
            padding: 2px 10px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 13px;
        }

        /* ── HERO ── */
        .hero-section {
            background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e3a8a 100%);
            position: relative;
            overflow: hidden;
            padding: 56px 0 64px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(227, 24, 55, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -60px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(227, 24, 55, 0.18);
            border: 1px solid rgba(227, 24, 55, 0.4);
            color: #ff8096;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 18px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: clamp(30px, 4.5vw, 52px);
            font-weight: 900;
            color: #fff;
            line-height: 1.12;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .hero-title .accent {
            color: var(--red);
        }

        .hero-subtitle {
            font-size: clamp(16px, 2vw, 20px);
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            margin-bottom: 24px;
        }

        .hero-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }

        .hero-pill {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.9);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .hero-pill i {
            color: var(--gold);
            font-size: 14px;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 32px;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat .num {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }

        .hero-stat .num span {
            color: var(--red);
        }

        .hero-stat .label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.65);
            font-weight: 500;
            margin-top: 2px;
        }

        .accred-logos {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
            margin-top: 8px;
        }

        .accred-badge {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.85);
            padding: 5px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* ── LEAD FORM ── */
        .lead-form-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
            padding: 32px 28px;
            position: relative;
            z-index: 10;
        }

        .lead-form-card .form-title {
            font-size: 18px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 4px;
            text-align: center;
        }

        .lead-form-card .form-subtitle {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
            margin-bottom: 20px;
        }

        .lead-form-card .form-subtitle strong {
            color: var(--red);
        }

        .lead-form-card .form-control,
        .lead-form-card .form-select {
            border: 1.5px solid #dde3f0;
            border-radius: 8px;
            font-size: 14px;
            padding: 11px 14px;
            color: var(--text-dark);
            transition: border-color 0.2s;
        }

        .lead-form-card .form-control:focus,
        .lead-form-card .form-select:focus {
            border-color: var(--navy);
            box-shadow: 0 0 0 3px rgba(15, 37, 87, 0.1);
        }

        .lead-form-card .form-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 5px;
        }

        .btn-apply-now {
            background: linear-gradient(135deg, var(--red), var(--red-dark));
            color: #fff;
            border: none;
            padding: 14px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            width: 100%;
            letter-spacing: 0.3px;
            transition: all 0.25s;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(227, 24, 55, 0.35);
        }

        .btn-apply-now:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(227, 24, 55, 0.45);
            background: linear-gradient(135deg, var(--red-light), var(--red));
        }

        .form-disclaimer {
            font-size: 11px;
            color: #999;
            text-align: center;
            margin-top: 10px;
        }

        .form-secure {
            font-size: 11.5px;
            color: #5a7a2e;
            font-weight: 600;
            text-align: center;
            margin-top: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        /* ── TRUST BAR ── */
        .trust-bar {
            background: #fff;
            border-bottom: 1px solid var(--border);
            padding: 18px 0;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
        }

        .trust-item i {
            font-size: 22px;
            color: var(--red);
        }

        .trust-item .t-num {
            font-size: 20px;
            font-weight: 800;
            color: var(--navy);
            line-height: 1;
        }

        .trust-item .t-label {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* ── SECTION STYLES ── */
        .section-pad {
            padding: 64px 0;
        }

        .section-pad-sm {
            padding: 48px 0;
        }

        .section-title {
            font-size: clamp(24px, 3vw, 34px);
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .section-title .red {
            color: var(--red);
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 600px;
        }

        .section-tag {
            display: inline-block;
            background: rgba(227, 24, 55, 0.1);
            color: var(--red);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 12px;
        }

        .section-divider {
            width: 48px;
            height: 4px;
            background: var(--red);
            border-radius: 4px;
            margin: 12px 0 20px;
        }

        /* ── RANKINGS SECTION ── */
        .rankings-section {
            background: var(--light-bg);
        }

        .ranking-card {
            background: #fff;
            border-radius: 14px;
            padding: 28px 24px;
            height: 100%;
            border: 1px solid var(--border);
            transition: all 0.25s;
            position: relative;
            overflow: hidden;
        }

        .ranking-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--red), var(--gold));
        }

        .ranking-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
        }

        .ranking-card .rank-badge {
            background: linear-gradient(135deg, var(--red), var(--red-dark));
            color: #fff;
            font-size: 28px;
            font-weight: 900;
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
        }

        .ranking-card h5 {
            font-size: 15px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 6px;
        }

        .ranking-card p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
        }

        .ranking-card .source {
            font-size: 11px;
            color: var(--red);
            font-weight: 600;
            margin-top: 8px;
        }

        /* ── HIGHLIGHTS ── */
        .highlight-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 28px 22px;
            height: 100%;
            transition: all 0.25s;
            text-align: center;
        }

        .highlight-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
            border-color: var(--red);
        }

        .highlight-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 28px;
        }

        .highlight-card h5 {
            font-size: 15px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .highlight-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* ── PROGRAM JOURNEY ── */
        .journey-section {
            background: var(--navy-dark);
        }

        .journey-card {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 14px;
            padding: 26px 22px;
            height: 100%;
            transition: all 0.25s;
            position: relative;
        }

        .journey-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-3px);
        }

        .journey-card .phase-num {
            position: absolute;
            top: -16px;
            left: 22px;
            background: var(--red);
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            font-size: 14px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .journey-card .phase-title {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .journey-card .phase-duration {
            display: inline-block;
            background: rgba(227, 24, 55, 0.25);
            color: #ff8096;
            font-size: 11px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 12px;
            margin-bottom: 12px;
        }

        .journey-card ul {
            padding-left: 0;
            list-style: none;
            margin: 0;
        }

        .journey-card ul li {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.75);
            padding: 4px 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .journey-card ul li::before {
            content: '→';
            color: var(--red);
            flex-shrink: 0;
            font-weight: 700;
        }

        /* ── CURRICULUM ── */
        .curriculum-section {
            background: var(--light-bg);
        }

        .course-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px 20px;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
            overflow: hidden;
        }

        .course-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--red);
            transform: scaleY(0);
            transition: transform 0.2s;
            transform-origin: bottom;
        }

        .course-card:hover::before,
        .course-card.active::before {
            transform: scaleY(1);
        }

        .course-card:hover,
        .course-card.active {
            border-color: var(--red);
            box-shadow: 0 6px 20px rgba(227, 24, 55, 0.1);
            transform: translateX(3px);
        }

        .course-num {
            font-size: 11px;
            font-weight: 700;
            color: var(--red);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .course-card h6 {
            font-size: 14px;
            font-weight: 700;
            color: var(--navy);
            margin: 4px 0 6px;
        }

        .course-card p {
            font-size: 12px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.5;
        }

        .course-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 8px;
        }

        .course-tag {
            font-size: 10px;
            background: var(--light-bg);
            color: var(--navy);
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: 500;
        }

        /* ── CONCENTRATIONS ── */
        .concentration-card {
            background: #fff;
            border: 2px solid var(--border);
            border-radius: 14px;
            padding: 24px 20px;
            height: 100%;
            transition: all 0.25s;
            cursor: pointer;
        }

        .concentration-card:hover,
        .concentration-card.selected {
            border-color: var(--red);
            box-shadow: 0 8px 25px rgba(227, 24, 55, 0.12);
            transform: translateY(-3px);
        }

        .concentration-card .conc-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 12px;
        }

        .concentration-card h5 {
            font-size: 15px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .concentration-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .concentration-card ul li {
            font-size: 12px;
            color: var(--text-muted);
            padding: 3px 0;
            display: flex;
            align-items: flex-start;
            gap: 6px;
        }

        .concentration-card ul li i {
            color: var(--red);
            font-size: 11px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        /* ── FACULTY ── */
        .faculty-section {
            background: var(--light-bg);
        }

        .faculty-card {
            background: #fff;
            border-radius: 14px;
            padding: 24px 20px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.25s;
            height: 100%;
        }

        .faculty-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
        }

        .faculty-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            border: 3px solid var(--red);
        }

        .faculty-card h6 {
            font-size: 15px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 3px;
        }

        .faculty-card .role {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .faculty-orgs {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            justify-content: center;
        }

        .faculty-org-tag {
            font-size: 11px;
            background: var(--light-bg);
            color: var(--navy);
            padding: 3px 10px;
            border-radius: 10px;
            font-weight: 600;
        }

        /* ── PwC CERT ── */
        .pwc-section {
            background: linear-gradient(135deg, #f0f4ff, #fff);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .pwc-cert-box {
            background: #fff;
            border: 2px solid var(--border);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }

        .pwc-badge {
            background: linear-gradient(135deg, #d46c1c, #e8890c);
            color: #fff;
            font-size: 18px;
            font-weight: 900;
            padding: 8px 20px;
            border-radius: 8px;
            display: inline-block;
            margin-bottom: 12px;
        }

        .pwc-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
        }

        .pwc-feature-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .pwc-feature h6 {
            font-size: 14px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 3px;
        }

        .pwc-feature p {
            font-size: 12px;
            color: var(--text-muted);
            margin: 0;
        }

        /* ── IMMERSION ── */
        .immersion-section {
            background: var(--navy);
        }

        .immersion-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .immersion-icon {
            width: 46px;
            height: 46px;
            border-radius: 10px;
            background: rgba(227, 24, 55, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #ff8096;
            flex-shrink: 0;
        }

        .immersion-card h6 {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }

        .immersion-card p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        /* ── CAREER ── */
        .career-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 24px 20px;
            height: 100%;
            transition: all 0.25s;
        }

        .career-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
        }

        .career-icon {
            font-size: 32px;
            margin-bottom: 14px;
        }

        .career-card h5 {
            font-size: 15px;
            font-weight: 700;
            color: var(--red);
            margin-bottom: 8px;
        }

        .career-card p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
        }

        /* ── STEPS ── */
        .steps-section {
            background: var(--navy-dark);
        }

        .step-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        .step-num {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--red), var(--red-dark));
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .step-content h5 {
            font-size: 17px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .step-content p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        /* ── BOTTOM CTA ── */
        .bottom-cta {
            background: linear-gradient(135deg, var(--red-dark), var(--red));
            padding: 64px 0;
        }

        .bottom-cta h2 {
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 800;
            color: #fff;
        }

        .bottom-cta p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
        }

        .btn-cta-white {
            background: #fff;
            color: var(--red);
            border: none;
            padding: 14px 36px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            transition: all 0.25s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-cta-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            color: var(--red-dark);
        }

        .btn-cta-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
            padding: 13px 32px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.25s;
            text-decoration: none;
            display: inline-block;
            margin-left: 12px;
        }

        .btn-cta-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        /* ── FOOTER ── */
        .footer {
            background: #060f28;
            padding: 40px 0 20px;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-logo {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 6px;
        }

        .footer-logo span {
            color: var(--red);
        }

        .footer h6 {
            color: #fff;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .footer a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 13px;
            display: block;
            margin-bottom: 7px;
            transition: color 0.2s;
        }

        .footer a:hover {
            color: #fff;
        }

        .footer .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
            font-size: 13px;
        }

        .footer .contact-item i {
            color: var(--red);
            width: 16px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 32px;
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
        }

        /* ── FLOATING MOBILE CTA ── */
        .float-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--red);
            color: #fff;
            padding: 14px;
            text-align: center;
            font-size: 16px;
            font-weight: 700;
            z-index: 1040;
            cursor: pointer;
            display: none;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
            text-decoration: none;
        }

        .float-cta:hover {
            background: var(--red-dark);
            color: #fff;
        }

        /* ── WHATSAPP BUBBLE ── */
        .wa-bubble {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            z-index: 1039;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
            text-decoration: none;
            transition: transform 0.2s;
        }

        .wa-bubble:hover {
            transform: scale(1.1);
            color: #fff;
        }

        /* ── MISC ── */
        .bg-light-section {
            background: var(--light-bg);
        }

        .text-red {
            color: var(--red);
        }

        .text-navy {
            color: var(--navy);
        }

        .fw-800 {
            font-weight: 800;
        }

        .upgrad-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.9);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .program-details-box {
            background: var(--navy);
            border-radius: 16px;
            padding: 32px;
            color: #fff;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .detail-item:last-child {
            border-bottom: none;
        }

        .detail-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(227, 24, 55, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #ff8096;
            flex-shrink: 0;
        }

        .detail-item h6 {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
            margin-bottom: 3px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .detail-item p {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin: 0;
        }

        .detail-item small {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ── ANIMATIONS ── */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 991px) {
            .lead-form-card {
                margin-top: 40px;
            }

            .hero-stats .hero-stat .num {
                font-size: 22px;
            }
        }

        @media (max-width: 767px) {
            .float-cta {
                display: block;
            }

            .wa-bubble {
                bottom: 72px;
            }

            .hero-section {
                padding: 40px 0 48px;
            }

            .section-pad {
                padding: 48px 0;
            }

            .btn-cta-outline {
                margin-left: 0;
                margin-top: 12px;
            }

            .step-item {
                flex-direction: row;
            }

            .trust-bar .trust-item {
                justify-content: center;
            }
        }

        @media (max-width: 575px) {
            .hero-stats {
                gap: 12px;
            }

            .hero-pills .hero-pill {
                font-size: 12px;
                padding: 5px 10px;
            }

            .accred-badge {
                font-size: 10px;
                padding: 4px 10px;
            }
        }
 