
        :root {
            --primary: #00003C;
            --secondary: #FF7A41;
            --dark: #00003C;
            --light: #f8f9fa;
            --success: #4cd964;
            --warning: #ffcc00;
            --text: #333;
            --text-light: #666;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            overflow-x: hidden;
        }

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

        /* Header - UPDATED */
        header {
            background: white;
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 1001;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-icon img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            border-radius: 8px;
        }

        .logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: white;
        }

        .logo-tagline {
            font-size: 0.8rem;
            opacity: 0.9;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .course-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .site-nav-links li a {
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            opacity: 0.9;
            transition: opacity 0.25s ease;
        }
        .site-nav-links li a:hover { opacity: 1; text-decoration: underline; }
        @media (max-width: 991px) {
            .site-nav-links { display: none !important; }
        }

        .course-info div {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

        .course-info i {
            color: #ffcc00;
            font-size: 1.1rem;
        }

        /* Mobile Navigation */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            transition: transform 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            transform: scale(1.1);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: linear-gradient(135deg, var(--dark), #3a3770);
            padding: 80px 30px 30px;
            transition: right 0.4s ease;
            z-index: 1000;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            overflow-y: auto;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .mobile-nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-course-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .mobile-course-info div {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            padding: 12px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .mobile-course-info div:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .mobile-course-info i {
            color: #ffcc00;
            font-size: 1.2rem;
            min-width: 24px;
        }

        .mobile-contact {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-contact h4 {
            margin-bottom: 15px;
            color: var(--primary);
            font-size: 1.2rem;
        }

        .mobile-contact div {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 0.95rem;
            padding: 8px 0;
        }

        .mobile-contact i {
            color: var(--primary);
            min-width: 20px;
        }

        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 1002;
        }

        .close-menu:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        /* Hero Section */
        .hero {
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(0, 0, 60, 0.1);
            z-index: -1;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 122, 65, 0.1);
            z-index: -1;
        }

        .hero h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        /* Registration Form */
        .registration {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark);
        }

        .form-control {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid #e1e5eb;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 0, 60, 0.2);
        }

        .btn-submit {
            display: block;
            width: 100%;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 1.1rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1.5rem;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 122, 65, 0.3);
        }

        .btn-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Highlight Box */
        .highlight-box {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            max-width: 800px;
            margin: 2rem auto;
            text-align: left;
        }

        .highlight-box h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .highlight-box h3 i {
            color: var(--primary);
        }

        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .highlight-item {
            background: var(--light);
            border-radius: 8px;
            padding: 1.2rem;
            transition: transform 0.3s ease;
        }

        .highlight-item:hover {
            transform: translateY(-5px);
        }

        .highlight-item h4 {
            color: var(--dark);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Course Outline */
        .course-outline {
            padding: 4rem 0;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            color: var(--dark);
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            margin: 10px auto;
            border-radius: 2px;
        }

        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .course-item {
            background: var(--light);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .course-item:hover {
            border-color: var(--primary);
            box-shadow: 0 10px 20px rgba(0, 0, 60, 0.15);
        }

        .course-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        /* Payment Methods */
        .payment-methods {
            padding: 4rem 0;
            background: white;
        }

        .payment-toggle {
            background: var(--light);
            border: none;
            padding: 1rem 1.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 500px;
            margin: 0 auto 2rem;
            transition: all 0.3s ease;
        }

        .payment-toggle:hover {
            background: #e9ecef;
        }

        .payment-content {
            max-width: 700px;
            margin: 0 auto;
            background: var(--light);
            border-radius: 12px;
            padding: 2rem;
            display: none;
        }

        .payment-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .payment-option {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .payment-icon {
            font-size: 2rem;
            color: var(--secondary);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 122, 65, 0.1);
            border-radius: 50%;
        }

        .payment-details h4 {
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        /* Floating WhatsApp Button (replaced site-wide by the shared floating button) */
        .whatsapp-float {
            display: none !important;
        }
        ._unused_whatsapp_float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
            z-index: 1000;
            cursor: pointer;
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
        }

        /* Welcome Modal - UPDATED */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mc-modal {
            background: white;
            border-radius: 15px;
            max-width: 450px;
            width: 90%;
            padding: 2rem;
            text-align: center;
            position: relative;
            transform: translateY(-50px);
            transition: transform 0.5s ease;
        }

        .modal-overlay.active .mc-modal {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-light);
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: #f1f1f1;
            color: var(--dark);
        }

        .modal-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .modal-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .modal-text {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .down-arrow {
            font-size: 2rem;
            color: var(--secondary);
            margin: 1rem 0;
            animation: bounce 2s infinite;
        }

        /* Loading Spinner */
        .loading-spinner {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
            z-index: 3000;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .loading-spinner.active {
            display: flex;
        }

        .spinner {
            width: 70px;
            height: 70px;
            border: 6px solid #f3f3f3;
            border-top: 6px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 1.5rem;
        }

        /* Animations */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-15px); }
            60% { transform: translateY(-7px); }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Footer */
        footer {
            background: rgba(45, 43, 85, 0.9);
            backdrop-filter: blur(10px);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }

        .footer-logo {
            margin-bottom: 1.5rem;
        }

        .footer-logo h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .footer-tagline {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            max-width: 600px;
            margin-bottom: 2rem;
        }

        .footer-details {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.8);
        }

        .detail-item i {
            color: var(--primary);
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .social-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .social-btn.whatsapp { background: #25D366; }
        .social-btn.email { background: var(--primary); }
        .social-btn.phone { background: var(--secondary); }

        .copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            text-align: center;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .desktop-nav {
                gap: 20px;
            }
            
            .course-info {
                gap: 15px;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
            
            .desktop-nav {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .highlight-grid {
                grid-template-columns: 1fr;
            }
            
            .course-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .form-container {
                padding: 1.5rem;
            }
            
            .whatsapp-float {
                width: 60px;
                height: 60px;
                font-size: 1.7rem;
                bottom: 20px;
                right: 20px;
            }
            
            .mc-modal {
                max-width: 95%;
                padding: 1.5rem;
            }
            
            .logo-container {
                flex: 1;
            }
            
            .logo-text {
                font-size: 1.2rem;
            }
            
            .logo-tagline {
                display: none;
            }
            
            .mobile-nav {
                width: 280px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .payment-option {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .mobile-nav {
                width: 100%;
                right: -100%;
                max-width: 320px;
            }
            
            .logo-text {
                font-size: 1.1rem;
            }
            
            .logo-icon img {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .hero {
                padding: 3rem 0;
            }
            
            .logo-text {
                font-size: 1rem;
            }
            
            .mobile-nav {
                padding: 80px 20px 30px;
            }
        }
    
/* ============ UI Refresh Pass ============ */

.registration { background: linear-gradient(135deg, #f4f6fb 0%, #e8ecf5 100%); }
.payment-methods { background: #f9fafc; }

.section-title p { color: var(--text-light); margin-top: 0.4rem; }

.mc-modal {
  box-shadow: 0 30px 70px rgba(0, 0, 60, 0.28);
  border-top: 6px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), var(--secondary)) 1;
}

.modal-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 60, 0.08);
  color: var(--primary) !important;
  font-size: 2rem;
}

.btn-submit {
  box-shadow: 0 8px 20px rgba(0, 0, 60, 0.18);
}
.btn-submit:hover {
  box-shadow: 0 14px 30px rgba(255, 122, 65, 0.35) !important;
}

.form-container {
  border: 1px solid rgba(0,0,60,0.06);
}

.payment-toggle {
  border: 2px solid transparent;
  box-shadow: 0 6px 18px rgba(0,0,60,0.06);
}
.payment-toggle:hover {
  border-color: var(--primary);
  background: #fff;
}

.payment-option {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,60,0.05);
}
.payment-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,60,0.12);
}

.course-item {
  box-shadow: 0 6px 16px rgba(0,0,60,0.05);
}
.course-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0,0,60,0.14);
}

.highlight-box {
  border: 1px solid rgba(0,0,60,0.06);
}
.highlight-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlight-item:hover {
  box-shadow: 0 10px 24px rgba(0,0,60,0.1);
}

.form-control:focus {
  border-color: var(--primary) !important;
}

.whatsapp-float {
  display: none !important; /* superseded by the shared floating button */
}

/* ============ Hero Redesign ============ */
.mc-hero {
  background: #ffffff;
  padding: 5.5rem 0;
  position: relative;
}
.mc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,122,65,0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(0,0,60,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.mc-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.mc-hero-grid > * { min-width: 0; }
.mc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,122,65,0.1);
  color: #E0611F;
  border: 1px solid rgba(255,122,65,0.35);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 1.4rem;
}
.mc-hero-copy h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  line-height: 1.15;
  color: #00003C;
  margin-bottom: 1.3rem;
  font-weight: 700;
}
.mc-hero-copy h1 .mc-hl {
  color: #FF7A41;
  position: relative;
}
.mc-hero-copy p {
  color: #555;
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.mc-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.mc-hero-cta.btn-submit {
  display: inline-flex;
  width: auto;
  margin-top: 0;
  padding: 1rem 1.8rem;
}
.mc-hero-secondary {
  color: #00003C;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.85;
}
.mc-hero-secondary:hover { opacity: 1; color: #FF7A41; }

/* Code window signature */
.mc-hero-visual { position: relative; z-index: 1; }
.mc-code-window {
  background: #12142b;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  transform: rotate(1.2deg);
  border: 1px solid rgba(255,255,255,0.08);
}
.mc-code-titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mc-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.mc-code-filename {
  margin-left: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  font-family: monospace;
}
.mc-code-body {
  padding: 1.6rem 1.4rem;
  overflow-x: auto;
  background: #12142b;
}
.mc-code-body pre {
  margin: 0;
  background: transparent;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #d6deeb;
  white-space: pre;
}
.mc-c-kw { color: #c792ea; }
.mc-c-var { color: #82aaff; }
.mc-c-key { color: #7fdbca; }
.mc-c-str { color: #ecc48d; }
.mc-c-num { color: #f78c6c; }
.mc-c-fn { color: #82aaff; }

@media (max-width: 900px) {
  .mc-hero-grid { grid-template-columns: 1fr; }
  .mc-hero-copy h1 { font-size: 2.2rem; }
  .mc-code-window { transform: none; }
  .mc-hero { padding: 3.5rem 0; }
}

/* ============ Registration Two-Column Redesign ============ */
.mc-reg-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: start;
}
.mc-reg-form.form-container { margin: 0; min-width: 0; max-width: none; width: 100%; }
.mc-reg-benefits {
  background: #00003C;
  border-radius: 15px;
  padding: 2.2rem 2rem;
  color: #fff;
  position: sticky;
  top: 20px;
  min-width: 0;
}
.mc-reg-benefits h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mc-reg-benefits h3 i { color: #FF7A41; }
.mc-benefit-list { list-style: none; margin: 0; padding: 0; }
.mc-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.4rem;
}
.mc-benefit-list li:last-child { margin-bottom: 0; }
.mc-benefit-list li i {
  background: rgba(255,122,65,0.18);
  color: #FF9E6D;
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}
.mc-benefit-list li strong { display: block; margin-bottom: 3px; font-size: 0.98rem; }
.mc-benefit-list li span { display: block; color: rgba(255,255,255,0.65); font-size: 0.86rem; line-height: 1.5; }

@media (max-width: 900px) {
  .mc-reg-grid { grid-template-columns: 1fr; }
  .mc-reg-benefits { position: static; }
}

/* ============ Course Timeline Redesign ============ */
.mc-timeline {
  max-width: 780px;
  margin: 0 auto 3rem;
  position: relative;
}
.mc-timeline::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  opacity: 0.25;
}
.mc-timeline-item {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
  position: relative;
}
.mc-timeline-item:last-child { margin-bottom: 0; }
.mc-timeline-marker {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(0,0,60,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  z-index: 1;
  box-shadow: 0 6px 16px rgba(0,0,60,0.08);
}
.mc-timeline-content {
  background: #fff;
  border-radius: 12px;
  padding: 1.3rem 1.6rem;
  box-shadow: 0 6px 18px rgba(0,0,60,0.06);
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mc-timeline-item:hover .mc-timeline-content {
  transform: translateX(6px);
  box-shadow: 0 14px 30px rgba(0,0,60,0.12);
}
.mc-timeline-content i {
  font-size: 1.7rem;
  color: var(--secondary);
  width: 44px;
  text-align: center;
  flex-shrink: 0;
}
.mc-timeline-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: var(--dark);
}
.mc-timeline-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.mc-req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}
.mc-req-grid > * { min-width: 0; }
.mc-req-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 6px 18px rgba(0,0,60,0.06);
  border-top: 3px solid var(--primary);
}
.mc-req-card i {
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 0.8rem;
  display: block;
}
.mc-req-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.mc-req-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .mc-timeline::before { left: 24px; }
  .mc-timeline-marker { width: 50px; height: 50px; font-size: 0.95rem; }
  .mc-timeline-content { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .mc-req-grid { grid-template-columns: 1fr; }
}

/* ============ Payment Section Redesign ============ */
.mc-payment-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
  background: none !important;
  padding: 0 !important;
}
.mc-payment-grid > * { min-width: 0; }
.payment-option {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 0;
}
.payment-icon {
  margin-bottom: 0.4rem;
}

@media (max-width: 700px) {
  .mc-payment-grid { grid-template-columns: 1fr; }
}
