        /* ========================================
           ACCELERATED PROGRAMS - HERO SECTION
           ======================================== */
        .ap-hero {
            position: relative;
            min-height: 580px;
            display: flex;
            align-items: center;
            padding: 140px 60px 100px;
            overflow: hidden;
            background: linear-gradient(135deg, #0a1628 0%, #1a365d 40%, #0066cc 100%);
        }
        .ap-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
            pointer-events: none;
            animation: pulseGlow 8s ease-in-out infinite;
        }
        .ap-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }
        @keyframes pulseGlow {
            0%, 100% { transform: scale(1); opacity: 0.15; }
            50% { transform: scale(1.1); opacity: 0.25; }
        }
        .ap-hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
        }
        /* Speed lines decoration */
        .ap-hero-speed-lines {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        .ap-speed-line {
            position: absolute;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
            border-radius: 2px;
        }
        .ap-speed-line-1 {
            width: 250px;
            top: 18%;
            right: 10%;
            animation: speedLine 3s ease-in-out infinite;
        }
        .ap-speed-line-2 {
            width: 180px;
            top: 35%;
            right: 20%;
            animation: speedLine 4s ease-in-out infinite 0.5s;
            background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.5), transparent);
        }
        .ap-speed-line-3 {
            width: 220px;
            top: 55%;
            right: 8%;
            animation: speedLine 3.5s ease-in-out infinite 1s;
        }
        .ap-speed-line-4 {
            width: 160px;
            top: 72%;
            right: 25%;
            animation: speedLine 4.5s ease-in-out infinite 1.5s;
            background: linear-gradient(90deg, transparent, rgba(0, 163, 163, 0.5), transparent);
        }
        @keyframes speedLine {
            0%, 100% { transform: translateX(0); opacity: 0.3; }
            50% { transform: translateX(-30px); opacity: 0.7; }
        }
        .ap-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .ap-hero-content { color: #ffffff; }
        .ap-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(0, 212, 255, 0.15);
            border: 1px solid rgba(0, 212, 255, 0.3);
            padding: 10px 20px;
            border-radius: 30px;
            margin-bottom: 28px;
        }
        .ap-hero-badge svg {
            width: 20px;
            height: 20px;
            stroke: #00d4ff;
        }
        .ap-hero-badge span {
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(255,255,255,0.9);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .ap-hero-title {
            font-family: var(--font-heading);
            font-size: 3.2rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.15;
            margin: 0 0 24px;
        }
        .ap-hero-title .accent {
            background: linear-gradient(135deg, #00d4ff, #00a3a3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .ap-hero-subtitle {
            font-family: var(--font-body);
            font-size: 1.15rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            margin: 0 0 32px;
            max-width: 520px;
        }
        .ap-hero-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 36px;
        }
        .ap-hero-highlight {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.9);
            transition: all 0.3s ease;
        }
        .ap-hero-highlight:hover {
            background: rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.4);
            transform: translateY(-2px);
        }
        .ap-hero-highlight svg {
            width: 16px;
            height: 16px;
            stroke: #00d4ff;
        }
        .ap-hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .ap-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: linear-gradient(135deg, #0066cc 0%, #00a3a3 50%, #00d4ff 100%);
            color: #ffffff;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(0, 102, 204, 0.35);
        }
        .ap-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 102, 204, 0.45);
            color: #ffffff;
        }
        .ap-btn-primary svg { width: 18px; height: 18px; }
        .ap-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.25);
            color: #ffffff;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .ap-btn-secondary:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-3px);
            color: #ffffff;
        }
        .ap-btn-secondary svg { width: 18px; height: 18px; }
        /* Hero Visual - Acceleration Cards */
        .ap-hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .ap-accel-visual {
            position: relative;
            width: 100%;
            max-width: 420px;
        }
        .ap-accel-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 20px;
            padding: 28px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
        }
        .ap-accel-card:hover {
            transform: translateX(-8px);
            background: rgba(255,255,255,0.15);
        }
        .ap-accel-card:last-child { margin-bottom: 0; }
        .ap-accel-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .ap-accel-icon svg {
            width: 28px;
            height: 28px;
            stroke: #ffffff;
        }
        .ap-accel-icon.blue { background: #0066cc; }
        .ap-accel-icon.teal { background: #00a3a3; }
        .ap-accel-icon.gold { background: #c9a227; }
        .ap-accel-icon.cyan { background: #00d4ff; }
        .ap-accel-text h4 {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0 0 4px;
        }
        .ap-accel-text p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
            margin: 0;
        }
        .ap-floating-stat {
            position: absolute;
            bottom: -30px;
            right: -20px;
            background: linear-gradient(135deg, #0066cc 0%, #00a3a3 50%, #00d4ff 100%);
            border-radius: 16px;
            padding: 18px 24px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4);
        }
        .ap-floating-stat-icon {
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .ap-floating-stat-icon svg {
            width: 24px;
            height: 24px;
            stroke: #ffffff;
        }
        .ap-floating-stat-text h5 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
        }
        .ap-floating-stat-text p {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.85);
            margin: 0;
        }
        @media (max-width: 1024px) {
            .ap-hero-container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
            .ap-hero-subtitle { margin-left: auto; margin-right: auto; }
            .ap-hero-highlights { justify-content: center; }
            .ap-hero-ctas { justify-content: center; }
            .ap-hero-visual { display: none; }
        }
        @media (max-width: 768px) {
            .ap-hero { padding: 120px 24px 80px; min-height: auto; }
            .ap-hero-title { font-size: 2.2rem; }
            .ap-hero-ctas { flex-direction: column; }
            .ap-btn-primary, .ap-btn-secondary { width: 100%; justify-content: center; }
        }

        /* ========================================
           ACCELERATED PROGRAMS - CUSTOM STYLES
           ======================================== */

        /* Custom Color Variables */
        :root {
            --ap-electric-blue: #0066cc;
            --ap-deep-navy: #0a1628;
            --ap-teal: #00a3a3;
            --ap-cyan: #00d4ff;
            --ap-gold: #c9a227;
            --ap-light-bg: #f8fafc;
            --ap-card-bg: #ffffff;
            --ap-gradient-speed: linear-gradient(135deg, #0066cc 0%, #00a3a3 50%, #00d4ff 100%);
            --ap-gradient-dark: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #0a1628 100%);
        }

        /* Hero Override for Accelerated Theme */
        .bu-hero {
            background: linear-gradient(155deg, #0a1628 0%, #1a365d 40%, #0066cc 100%);
        }
        .bu-hero::before {
            background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
        }
        .bu-hero::after {
            background: radial-gradient(circle, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
        }

        /* Speed Lines Decoration */
        .ap-speed-lines {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }
        .ap-speed-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
            animation: speedLine 3s ease-in-out infinite;
        }
        .ap-speed-line:nth-child(1) { top: 20%; width: 200px; right: 10%; animation-delay: 0s; }
        .ap-speed-line:nth-child(2) { top: 35%; width: 150px; right: 5%; animation-delay: 0.5s; }
        .ap-speed-line:nth-child(3) { top: 50%; width: 180px; right: 15%; animation-delay: 1s; }
        .ap-speed-line:nth-child(4) { top: 65%; width: 120px; right: 8%; animation-delay: 1.5s; }
        .ap-speed-line:nth-child(5) { top: 80%; width: 160px; right: 12%; animation-delay: 2s; }

        @keyframes speedLine {
            0%, 100% { opacity: 0; transform: translateX(50px); }
            50% { opacity: 1; transform: translateX(-100px); }
        }

        /* ========================================
           WHAT IS SECTION
           ======================================== */
        .ap-what-section {
            padding: 100px 40px;
            background: var(--ap-light-bg);
        }
        .ap-what-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .ap-what-content h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--ap-deep-navy);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .ap-what-content h2 span {
            color: var(--ap-electric-blue);
        }
        .ap-what-content p {
            font-size: 1.1rem;
            color: var(--er-text-light);
            line-height: 1.8;
            margin-bottom: 30px;
        }
        .ap-what-highlights {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .ap-what-highlight {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .ap-what-highlight-icon {
            width: 28px;
            height: 28px;
            min-width: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--ap-electric-blue), var(--ap-teal));
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .ap-what-highlight-icon svg {
            width: 14px;
            height: 14px;
            stroke: #fff;
        }
        .ap-what-highlight span {
            font-size: 1rem;
            color: var(--er-text);
            line-height: 1.5;
        }
        .ap-what-visual {
            position: relative;
        }
        .ap-what-image {
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 102, 204, 0.15);
        }
        .ap-what-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        .ap-what-stat-card {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background: #fff;
            padding: 24px 30px;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .ap-what-stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--ap-electric-blue), var(--ap-teal));
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .ap-what-stat-icon svg {
            width: 24px;
            height: 24px;
            stroke: #fff;
        }
        .ap-what-stat-text h4 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--ap-deep-navy);
            margin: 0;
        }
        .ap-what-stat-text p {
            font-size: 0.85rem;
            color: var(--er-text-light);
            margin: 0;
        }
        @media (max-width: 900px) {
            .ap-what-container { grid-template-columns: 1fr; gap: 40px; }
            .ap-what-content h2 { font-size: 2rem; }
            .ap-what-stat-card { position: relative; bottom: 0; left: 0; margin-top: 20px; }
        }

        /* ========================================
           PROGRAM TYPES SECTION
           ======================================== */
        .ap-types-section {
            padding: 100px 40px;
            background: #fff;
        }
        .ap-types-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .ap-types-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .ap-types-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(0, 102, 204, 0.08);
            border-radius: 30px;
            margin-bottom: 16px;
        }
        .ap-types-badge svg {
            width: 16px;
            height: 16px;
            stroke: var(--ap-electric-blue);
        }
        .ap-types-badge span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--ap-electric-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .ap-types-header h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--ap-deep-navy);
            margin-bottom: 16px;
        }
        .ap-types-header p {
            font-size: 1.1rem;
            color: var(--er-text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        .ap-types-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .ap-type-card {
            background: var(--ap-light-bg);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 102, 204, 0.08);
        }
        .ap-type-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 102, 204, 0.12);
            border-color: rgba(0, 102, 204, 0.2);
        }
        .ap-type-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--card-accent, var(--ap-electric-blue));
        }
        .ap-type-card.blue { --card-accent: var(--ap-electric-blue); }
        .ap-type-card.teal { --card-accent: var(--ap-teal); }
        .ap-type-card.gold { --card-accent: var(--ap-gold); }
        .ap-type-card.cyan { --card-accent: var(--ap-cyan); }

        .ap-type-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--card-accent), rgba(0, 102, 204, 0.7));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        .ap-type-icon svg {
            width: 28px;
            height: 28px;
            stroke: #fff;
        }
        .ap-type-card h3 {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--ap-deep-navy);
            margin-bottom: 12px;
        }
        .ap-type-card p {
            font-size: 0.95rem;
            color: var(--er-text-light);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .ap-type-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .ap-type-feature {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: #fff;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--er-text);
        }
        .ap-type-feature svg {
            width: 12px;
            height: 12px;
            stroke: var(--card-accent);
        }
        @media (max-width: 900px) {
            .ap-types-grid { grid-template-columns: 1fr; }
            .ap-types-header h2 { font-size: 2rem; }
        }

        /* ========================================
           HOW IT WORKS SECTION
           ======================================== */
        .ap-how-section {
            padding: 100px 40px;
            background: var(--ap-gradient-dark);
            position: relative;
            overflow: hidden;
        }
        .ap-how-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }
        .ap-how-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        .ap-how-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .ap-how-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 30px;
            margin-bottom: 16px;
        }
        .ap-how-badge svg {
            width: 16px;
            height: 16px;
            stroke: var(--ap-cyan);
        }
        .ap-how-badge span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--ap-cyan);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .ap-how-header h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }
        .ap-how-header p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.7);
            max-width: 600px;
            margin: 0 auto;
        }
        .ap-how-timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
            padding: 40px 0;
        }
        .ap-how-timeline::before {
            content: '';
            position: absolute;
            top: 75px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: linear-gradient(90deg, var(--ap-electric-blue), var(--ap-teal), var(--ap-cyan));
            border-radius: 2px;
        }
        .ap-how-step {
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 0 10px;
        }
        .ap-how-step-number {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--ap-electric-blue), var(--ap-teal));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
            border: 4px solid var(--ap-deep-navy);
        }
        .ap-how-step h4 {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }
        .ap-how-step p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            max-width: 200px;
            margin: 0 auto;
            line-height: 1.5;
        }
        @media (max-width: 900px) {
            .ap-how-timeline {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .ap-how-timeline::before {
                top: 0;
                bottom: 0;
                left: 50%;
                right: auto;
                width: 3px;
                height: 100%;
            }
            .ap-how-step-number {
                width: 60px;
                height: 60px;
                font-size: 1.3rem;
            }
            .ap-how-header h2 { font-size: 2rem; }
        }

        /* ========================================
           WHO SHOULD APPLY SECTION
           ======================================== */
        .ap-who-section {
            padding: 100px 40px;
            background: var(--ap-light-bg);
        }
        .ap-who-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .ap-who-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .ap-who-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(0, 163, 163, 0.08);
            border-radius: 30px;
            margin-bottom: 16px;
        }
        .ap-who-badge svg {
            width: 16px;
            height: 16px;
            stroke: var(--ap-teal);
        }
        .ap-who-badge span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--ap-teal);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .ap-who-header h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--ap-deep-navy);
            margin-bottom: 16px;
        }
        .ap-who-header p {
            font-size: 1.1rem;
            color: var(--er-text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        .ap-who-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .ap-who-card {
            background: #fff;
            border-radius: 20px;
            padding: 35px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }
        .ap-who-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 102, 204, 0.1);
        }
        .ap-who-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            background: var(--card-bg, rgba(0, 102, 204, 0.08));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .ap-who-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--card-color, var(--ap-electric-blue));
        }
        .ap-who-card.blue { --card-bg: rgba(0, 102, 204, 0.08); --card-color: var(--ap-electric-blue); }
        .ap-who-card.teal { --card-bg: rgba(0, 163, 163, 0.08); --card-color: var(--ap-teal); }
        .ap-who-card.gold { --card-bg: rgba(201, 162, 39, 0.08); --card-color: var(--ap-gold); }
        .ap-who-card.cyan { --card-bg: rgba(0, 212, 255, 0.08); --card-color: var(--ap-cyan); }
        .ap-who-card.navy { --card-bg: rgba(10, 22, 40, 0.08); --card-color: var(--ap-deep-navy); }
        .ap-who-card.green { --card-bg: rgba(34, 139, 34, 0.08); --card-color: #228b22; }

        .ap-who-card h3 {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--ap-deep-navy);
            margin-bottom: 10px;
        }
        .ap-who-card p {
            font-size: 0.9rem;
            color: var(--er-text-light);
            line-height: 1.6;
            margin: 0;
        }
        @media (max-width: 900px) {
            .ap-who-grid { grid-template-columns: repeat(2, 1fr); }
            .ap-who-header h2 { font-size: 2rem; }
        }
        @media (max-width: 600px) {
            .ap-who-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           BENEFITS SECTION
           ======================================== */
        .ap-benefits-section {
            padding: 100px 40px;
            background: #fff;
        }
        .ap-benefits-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .ap-benefits-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .ap-benefits-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(201, 162, 39, 0.08);
            border-radius: 30px;
            margin-bottom: 16px;
        }
        .ap-benefits-badge svg {
            width: 16px;
            height: 16px;
            stroke: var(--ap-gold);
        }
        .ap-benefits-badge span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--ap-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .ap-benefits-header h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--ap-deep-navy);
            margin-bottom: 16px;
        }
        .ap-benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .ap-benefit-card {
            background: var(--ap-light-bg);
            border-radius: 20px;
            padding: 35px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .ap-benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 102, 204, 0.1);
        }
        .ap-benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, transparent 50%, rgba(0, 102, 204, 0.05) 50%);
            border-radius: 0 20px 0 0;
        }
        .ap-benefit-icon {
            width: 55px;
            height: 55px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--ap-electric-blue), var(--ap-teal));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .ap-benefit-icon svg {
            width: 26px;
            height: 26px;
            stroke: #fff;
        }
        .ap-benefit-card h3 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--ap-deep-navy);
            margin-bottom: 12px;
        }
        .ap-benefit-card p {
            font-size: 0.95rem;
            color: var(--er-text-light);
            line-height: 1.7;
            margin: 0;
        }
        @media (max-width: 900px) {
            .ap-benefits-grid { grid-template-columns: repeat(2, 1fr); }
            .ap-benefits-header h2 { font-size: 2rem; }
        }
        @media (max-width: 600px) {
            .ap-benefits-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           CTA SECTION
           ======================================== */
        .ap-cta-section {
            padding: 100px 40px;
            background: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #0066cc 100%);
            position: relative;
            overflow: hidden;
        }
        .ap-cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .ap-cta-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .ap-cta-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
        }
        .ap-cta-icon svg {
            width: 36px;
            height: 36px;
            stroke: var(--ap-cyan);
        }
        .ap-cta-container h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
        }
        .ap-cta-container p {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.75);
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }
        .ap-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .ap-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .ap-cta-btn.primary {
            background: linear-gradient(135deg, var(--ap-cyan), var(--ap-teal));
            color: #fff;
        }
        .ap-cta-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
        }
        .ap-cta-btn.secondary {
            background: rgba(255,255,255,0.1);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .ap-cta-btn.secondary:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-3px);
        }
        .ap-cta-btn svg {
            width: 18px;
            height: 18px;
        }
        @media (max-width: 768px) {
            .ap-cta-container h2 { font-size: 2rem; }
            .ap-cta-buttons { flex-direction: column; align-items: center; }
        }
