.elementor-23548 .elementor-element.elementor-element-3b92a70{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}/* Start custom CSS *//* CSS Variables - Ultra Premium Dark Mode */
        :root {
            --brand-primary: #f28b00;
            /* CP Academy Orange */
            --brand-primary-glow: rgba(242, 139, 0, 0.4);

            --bg-base: #030712;
            /* Extreme dark */
            --bg-surface: #111827;
            /* Dark card */
            --bg-surface-elevated: #1e293b;
            /* Elevated card */

            --text-high: #f8fafc;
            --text-med: #cbd5e1;
            --text-low: #64748b;

            --accent-cyan: #06b6d4;
            --accent-cyan-glow: rgba(6, 182, 212, 0.3);
            --accent-green: #10b981;

            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-full: 9999px;

            --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Eduma & Elementor Overrides to prevent layout breaks and allow sticky positioning */
        .page-title,
        .thim-title-page,
        .breadcrumbs-wrapper {
            display: none !important;
        }

        .site-content {
            padding-top: 0 !important;
            margin-top: 0 !important;
            background: var(--bg-base) !important;
        }

        /* CRITICAL: Force Elementor wrapping sections to allow sticky elements */
        .elementor-section,
        .elementor-top-section,
        .elementor-widget-wrap,
        .elementor-widget-container,
        .elementor-widget-html {
            overflow: visible !important;
            clip-path: none !important;
        }

        /* Scoped Container Reset */
        .cp-masterclass {
            width: 100%;
            background: var(--bg-base);
            color: var(--text-med);
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            font-size: 16px;
            /* Explicitly avoiding overflow-x: hidden because it instantly breaks position: sticky down the tree */
            -webkit-font-smoothing: antialiased;
        }

        .cp-masterclass *,
        .cp-masterclass *::before,
        .cp-masterclass *::after {
            box-sizing: border-box;
        }

        .cp-masterclass h1,
        .cp-masterclass h2,
        .cp-masterclass h3,
        .cp-masterclass h4 {
            font-family: 'Outfit', sans-serif;
            color: var(--text-high);
            margin-top: 0;
            line-height: 1.2;
        }

        /* HERO SECTION */
        .cpx-hero {
            position: relative;
            padding: 120px 20px 80px;
            text-align: center;
            background: radial-gradient(circle at 50% 0%, #1e293b 0%, var(--bg-base) 70%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .cpx-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, var(--brand-primary-glow) 0%, transparent 60%);
            opacity: 0.15;
            z-index: 0;
            pointer-events: none;
        }

        .cpx-hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cpx-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--accent-cyan);
            padding: 6px 16px;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
        }

        .cpx-hero h1 {
            font-size: 56px;
            font-weight: 900;
            letter-spacing: -1px;
            margin-bottom: 24px;
            background: linear-gradient(to right, #ffffff, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cpx-hero p {
            font-size: 20px;
            color: var(--text-med);
            max-width: 650px;
            margin: 0 auto;
        }

        /* MAIN LAYOUT */
        .cpx-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 60px 20px;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 60px;
        }

        /* SIDEBAR NAVIGATION */
        .cpx-sidebar {
            position: sticky;
            top: 40px;
            height: max-content;
        }

        .cpx-nav {
            background: rgba(17, 24, 39, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-lg);
            padding: 24px;
            backdrop-filter: blur(12px);
        }

        .cpx-nav h4 {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-low);
            margin-bottom: 16px;
        }

        .cpx-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .cpx-nav li {
            margin-bottom: 8px;
        }

        .cpx-nav a {
            color: var(--text-med);
            text-decoration: none;
            font-size: 15px;
            display: block;
            padding: 8px 12px;
            border-radius: 8px;
            transition: var(--transition-smooth);
            border-left: 2px solid transparent;
        }

        .cpx-nav a:hover,
        .cpx-nav a.active {
            background: rgba(255, 255, 255, 0.03);
            color: var(--text-high);
            border-left-color: var(--brand-primary);
        }

        /* CONTENT AREA */
        .cpx-content {
            min-width: 0;
            /* Prevents grid blowout */
        }

        .cpx-section {
            margin-bottom: 80px;
            scroll-margin-top: 100px;
        }

        .cpx-section-title {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 16px;
            margin-bottom: 32px;
        }

        .cpx-section-title span {
            color: var(--brand-primary);
            font-size: 24px;
        }

        /* CREATIVE IMAGE INTEGRATION */
        .cpx-split-view {
            display: flex;
            gap: 40px;
            align-items: center;
            margin: 40px 0;
        }

        .cpx-split-content {
            flex: 1;
        }

        .cpx-split-image {
            flex: 0 0 320px;
            position: relative;
        }

        .cpx-split-image img {
            width: 100%;
            height: auto;
            border-radius: var(--radius-md);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .cpx-split-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: var(--brand-primary-glow);
            filter: blur(40px);
            opacity: 0.15;
            z-index: -1;
            border-radius: var(--radius-full);
        }

        /* ENGINEERING CARDS */
        .cpx-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }

        .cpx-card {
            background: var(--bg-surface);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-md);
            padding: 32px;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .cpx-card:hover {
            transform: translateY(-5px);
            background: var(--bg-surface-elevated);
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-cyan-glow);
        }

        .cpx-card-icon {
            font-size: 24px;
            margin-bottom: 16px;
            background: rgba(255, 255, 255, 0.05);
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
        }

        .cpx-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--text-high);
        }

        .cpx-card p {
            font-size: 15px;
            color: var(--text-low);
            margin: 0;
        }

        /* DEEP TECH CALLOUTS */
        .cpx-tech-box {
            background: linear-gradient(145deg, rgba(6, 182, 212, 0.05), rgba(0, 0, 0, 0));
            border-left: 3px solid var(--accent-cyan);
            padding: 24px 32px;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            margin: 32px 0;
        }

        .cpx-tech-box h4 {
            color: var(--accent-cyan);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 1px;
        }

        .cpx-data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 14px;
        }

        .cpx-data-table th,
        .cpx-data-table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .cpx-data-table th {
            color: var(--text-high);
            font-weight: 600;
        }

        .cpx-data-table tr:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        /* PREMIUM LEAD GEN */
        .cpx-lead-gen {
            background: linear-gradient(135deg, #0f172a 0%, #030712 100%);
            border: 1px solid rgba(242, 139, 0, 0.2);
            border-radius: var(--radius-lg);
            padding: 60px 40px;
            text-align: center;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .cpx-lead-gen::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--brand-primary-glow) 0%, transparent 70%);
            opacity: 0.3;
            transform: translate(30%, -30%);
            border-radius: var(--radius-full);
            pointer-events: none;
        }

        .cpx-lead-gen h2 {
            font-size: 36px;
            margin-bottom: 16px;
        }

        .cpx-btn-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #25D366;
            color: #ffffff !important;
            padding: 16px 40px;
            border-radius: var(--radius-full);
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 18px;
            text-decoration: none;
            transition: var(--transition-smooth);
            margin-top: 24px;
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
        }

        .cpx-btn-whatsapp:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .cpx-container {
                grid-template-columns: 1fr;
            }

            .cpx-sidebar {
                display: none;
            }

            .cpx-split-view {
                flex-direction: column;
            }

            .cpx-split-image {
                flex: 0 0 auto;
                width: 100%;
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .cpx-hero h1 {
                font-size: 40px;
            }

            .cpx-section-title {
                font-size: 26px;
            }
        }/* End custom CSS */