.elementor-7 .elementor-element.elementor-element-1bbda94{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7 .elementor-element.elementor-element-a17514f{--spacer-size:50px;}.elementor-7 .elementor-element.elementor-element-13c60a4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* --- SECURITY PROTECTION CSS --- */
        body {
            -webkit-user-select: none; /* Chrome/Safari */
            -moz-user-select: none; /* Firefox */
            -ms-user-select: none; /* IE10+ */
            user-select: none; /* Standard */
        }
        
        img {
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
            pointer-events: none; /* Disables clicking/interacting with images */
        }

        /* Re-enable text selection for the form so clients can type */
        input, textarea, .everest-form-wrapper {
            -webkit-user-select: text !important;
            -moz-user-select: text !important;
            -ms-user-select: text !important;
            user-select: text !important;
            pointer-events: auto !important;
        }

        /* --- CSS VARIABLES --- */
        :root {
            /* DARK MODE (DEFAULT) */
            --primary: #3B82F6; 
            --secondary: #10B981; 
            --accent: #F59E0B; 
            --danger: #EF4444; 
            
            --bg-body: #0f172a; 
            --bg-card: #1e293b; 
            --text-main: #f8fafc; 
            --text-muted: #94a3b8; 
            --border: #334155;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
            --hero-gradient: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
            
            --toggle-bg: #ffffff;
            --toggle-text: #0f172a;
        }

        /* LIGHT MODE OVERRIDES */
        [data-theme="light"] {
            --primary: #2563EB;
            --bg-body: #ffffff;
            --bg-card: #f9fafb;
            --text-main: #1f2937;
            --text-muted: #6b7280;
            --border: #e5e7eb;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --hero-gradient: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            
            --toggle-bg: #1f2937;
            --toggle-text: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        body {
            background-color: var(--bg-body);
            color: var(--text-main);
            line-height: 1.6;
            padding-top: 40px; /* Space for sticky bar */
        }

        a { text-decoration: none; color: inherit; cursor: pointer; }
        ul { list-style: none; }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- UTILITIES --- */
        .btn {
            display: inline-block;
            padding: 16px 32px;
            font-weight: 700;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
        }
        
        .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3); }
        .btn-primary { background-color: var(--primary); color: white; }
        .btn-accent { background-color: var(--accent); color: white; }
        .btn-block { display: block; width: 100%; }
        
        .text-center { text-align: center; }
        .highlight { color: var(--primary); }
        .highlight-red { color: var(--danger); }
        
        /* --- STICKY TOP BAR --- */
        .sticky-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--danger);
            color: white;
            text-align: center;
            padding: 10px 0;
            font-size: 14px;
            font-weight: 600;
            z-index: 999;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .timer { font-family: monospace; font-size: 16px; background: rgba(0,0,0,0.2); padding: 2px 6px; border-radius: 4px; }

        /* --- HEADER STYLES --- */
header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* This is crucial for the mobile positioning */
}

/* --- TOGGLE BUTTON STYLES --- */
.theme-toggle {
    background: var(--toggle-bg);
    color: var(--toggle-text);
    border: 2px solid var(--border);
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    outline: none;
    z-index: 10;
}
.theme-toggle:hover { opacity: 0.9; transform: scale(1.02); }

/* --- MOBILE SPECIFIC LAYOUT (The Magic Part) --- */
@media (max-width: 768px) {
    header {
        /* Remove Flexbox so they don't sit side-by-side */
        display: block; 
        /* Add padding to top so the logo moves down */
        padding-top: 60px; 
        padding-bottom: 20px;
    }

    .theme-toggle {
        /* Force the button to the Top Right */
        position: absolute;
        top: 10px;
        right: 0;
    }

    .logo-container {
        /* Ensure logo stays on the left */
        display: block;
        text-align: left;
    }
}

        /* --- HERO SECTION --- */
        .hero {
            padding: 80px 0;
            background: var(--hero-gradient);
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--text-main);
        }
        .hero p.subhead {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        /* VIDEO WRAPPER */
        .video-wrapper {
            max-width: 800px;
            margin: 0 auto 40px;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid var(--border);
            box-shadow: var(--shadow);
            background: #000;
        }
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hook-box {
            background: var(--bg-card);
            border: 2px solid var(--primary);
            padding: 20px;
            border-radius: 12px;
            display: inline-block;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        .subtext { font-size: 0.85rem; margin-top: 10px; color: var(--text-muted); }

        /* --- SECTIONS --- */
        section { padding: 80px 0; border-bottom: 1px solid var(--border); }
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 60px;
            font-size: 1.1rem;
        }

        /* --- REALITY CHECK FIXED CSS --- */
        .reality-box {
            background: rgba(239, 68, 68, 0.1); 
            border: 2px solid var(--danger);
            padding: 40px;
            border-radius: 12px;
            max-width: 800px;
            margin: 0 auto;
        }

        .reality-list {
            padding: 0;
            margin: 0;
        }

        .reality-list li { 
            margin-bottom: 20px; 
            display: flex; 
            align-items: flex-start; /* Aligns icon to top */
            gap: 15px; /* Space between icon and text */
        }
        
        .reality-list i { 
            margin-top: 4px; /* Adjusts icon height to match text */
            font-size: 1.2rem;
            flex-shrink: 0; /* Prevents icon from getting squashed */
        }

        /* The text wrapper to stop scattering */
        .reality-text-group {
            flex: 1; /* Takes up all remaining space */
            font-size: 1rem;
            line-height: 1.5;
        }

        /* --- PROOF SECTION (FUNNEL -> DASHBOARD) --- */
        .case-study-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 60px;
            background: var(--bg-card);
            padding: 20px;
            border-radius: 16px;
            border: 1px solid var(--border);
        }
        .case-img-box {
            flex: 1;
            text-align: center;
        }
        .case-img {
            width: 100%;
            border-radius: 8px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }
        .case-img:hover { transform: scale(1.02); }
        
        .arrow-box {
            flex: 0 0 100px;
            text-align: center;
            color: var(--accent);
            font-weight: 900;
            font-size: 1.5rem;
        }
        .arrow-icon { font-size: 2rem; display: block; margin-bottom: 5px; animation: pulse 2s infinite; }
        
        @keyframes pulse {
            0% { transform: translateX(0); }
            50% { transform: translateX(5px); }
            100% { transform: translateX(0); }
        }

        .live-link {
            display: inline-block;
            margin-top: 10px;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: underline;
        }

        /* --- WHATSAPP TESTIMONIALS --- */
        .whatsapp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        .whatsapp-card {
            background: transparent;
            text-align: center;
        }
        .whatsapp-img {
            width: 100%;
            max-width: 350px; /* Phone width */
            border-radius: 16px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2); /* Deep Shadow */
            border: 4px solid #25D366; /* WhatsApp Green Border */
            transition: transform 0.3s;
        }
        .whatsapp-img:hover { transform: translateY(-10px); }

        /* --- STEPS --- */
        .steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        .step {
            flex: 1;
            min-width: 250px;
            background: var(--bg-card);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid var(--border);
            text-align: center;
        }
        .step-number {
            background: var(--primary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-weight: bold;
        }

        /* --- PRICING TABLE --- */
        .pricing-table {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .plan {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 40px 30px;
            position: relative;
            text-align: center;
        }
        .plan.recommended {
            border: 2px solid var(--primary);
            transform: scale(1.05);
            z-index: 10;
        }
        .badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }
        .price-big { font-size: 2rem; font-weight: 900; margin: 20px 0; }
        .plan-features { text-align: left; margin: 30px 0; }
        .plan-features li { margin-bottom: 10px; font-size: 0.95rem; }
        .plan-features i { color: var(--secondary); margin-right: 10px; }

        /* --- RULES & FORM --- */
        .rules-box {
            border: 1px dashed var(--text-muted);
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 50px;
        }
        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background: var(--bg-card);
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border-top: 5px solid var(--primary);
        }
        .everest-form-wrapper { width: 100%; }
        
        /* --- FAQ --- */
        .accordion-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .accordion-header {
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
        }
        .accordion-body {
            padding: 0 20px 20px;
            display: none;
            color: var(--text-muted);
        }
        .accordion-body.active { display: block; }

        /* --- FOOTER --- */
        footer {
            background: #020617; /* Very Dark */
            color: #d1d5db;
            padding: 60px 0 20px;
            font-size: 0.9rem;
            border-top: 1px solid var(--border);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a:hover { color: white; }
        .disclaimer {
            font-size: 0.75rem;
            color: #6b7280;
            border-top: 1px solid #334155;
            padding-top: 20px;
            text-align: center;
            line-height: 1.5;
        }

        /* --- MODALS (POPUPS) --- */
        .modal {
            display: none; 
            position: fixed; 
            z-index: 2000; 
            left: 0;
            top: 0;
            width: 100%; 
            height: 100%; 
            overflow: auto; 
            background-color: rgba(0,0,0,0.8); 
            backdrop-filter: blur(5px);
        }
        .modal-content {
            background-color: var(--bg-card);
            color: var(--text-main);
            margin: 5% auto; 
            padding: 40px;
            border: 1px solid var(--border);
            width: 80%;
            max-width: 800px;
            border-radius: 12px;
            position: relative;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .close {
            color: var(--text-muted);
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        .close:hover { color: var(--danger); }
        .modal h2 { margin-bottom: 20px; color: var(--primary); }
        .modal h3 { font-size: 1.1rem; margin-top: 20px; margin-bottom: 10px; color: var(--text-main); }
        .modal p, .modal li { margin-bottom: 10px; font-size: 0.95rem; color: var(--text-muted); }
        .modal ul { margin-left: 20px; list-style: disc; }

        /* --- MOBILE --- */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .plan.recommended { transform: scale(1); margin: 20px 0; }
            .modal-content { width: 95%; padding: 20px; margin: 20% auto; }
            
            /* Fix Reality Check Padding */
            .reality-box { padding: 25px 20px; }
            .reality-text-group { font-size: 0.95rem; }
            .reality-list li { gap: 12px; }

            /* Responsive Case Studies */
            .case-study-row { flex-direction: column; text-align: center; }
            .arrow-icon { transform: rotate(90deg); margin: 10px 0; }
            @keyframes pulse {
                0% { transform: translateY(0) rotate(90deg); }
                50% { transform: translateY(5px) rotate(90deg); }
                100% { transform: translateY(0) rotate(90deg); }
            }

            /* Responsive WhatsApp */
            .whatsapp-grid { grid-template-columns: 1fr; justify-items: center; }
        }
        
        /* --- CHAT WIDGET --- */
        .chat-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            z-index: 1000;
        }
        
        /* --- EVEREST FORMS DARK MODE FIX --- */

/* 1. Force Labels to be White */
[data-theme="dark"] .everest-forms label, 
[data-theme="dark"] .evf-field-label,
[data-theme="dark"] .evf-frontend-row {
    color: #ffffff !important;
    font-weight: 600;
}

/* 2. Style Input Boxes (Dark Background, White Text) */
[data-theme="dark"] .everest-forms input[type="text"],
[data-theme="dark"] .everest-forms input[type="email"],
[data-theme="dark"] .everest-forms input[type="tel"],
[data-theme="dark"] .everest-forms input[type="url"],
[data-theme="dark"] .everest-forms textarea {
    background-color: #1e293b !important; /* Lighter navy than body */
    color: #ffffff !important;             /* White typing text */
    border: 1px solid #334155 !important;  /* Subtle grey border */
    border-radius: 6px !important;
}

/* 3. Input Focus State (Blue Glow when typing) */
[data-theme="dark"] .everest-forms input:focus,
[data-theme="dark"] .everest-forms textarea:focus {
    border-color: #3B82F6 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2) !important;
}

/* 4. Fix Placeholder Text (The grey text inside empty boxes) */
[data-theme="dark"] ::placeholder {
    color: #94a3b8 !important;
    opacity: 1;
}

/* 5. Radio & Checkbox Text Fix */
[data-theme="dark"] .everest-forms .evf-field-radio-group label,
[data-theme="dark"] .everest-forms .evf-field-checkbox-group label {
    color: #e2e8f0 !important; /* Slightly softer white */
    font-weight: 400;
}

/* 6. Submit Button Styling (To match your theme) */
[data-theme="dark"] .everest-forms button.evf-submit {
    background-color: #F59E0B !important; /* Your Accent Orange */
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    padding: 15px 30px !important;
    border: none !important;
    width: 100%;
}

[data-theme="dark"] .everest-forms button.evf-submit:hover {
    background-color: #d97706 !important; /* Darker orange on hover */
    transform: translateY(-2px);
}



/* --- LOGO SWITCHING CSS --- */

.logo-container {
    display: flex;
    align-items: center;
}

.logo-white, 
.logo-black {
    height: 30px; /* Adjust size */
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

/* === DARK MODE LOGIC (Default) === */
/* Show White Logo, Hide Black Logo */
[data-theme="dark"] .logo-white { display: block !important; }
[data-theme="dark"] .logo-black { display: none !important; }

/* === LIGHT MODE LOGIC === */
/* Show Black Logo, Hide White Logo */
[data-theme="light"] .logo-white { display: none !important; }
[data-theme="light"] .logo-black { display: block !important; }

/* === MOBILE ADJUSTMENT === */
@media (max-width: 720px) {
    .logo-white, 
    .logo-black {
        height: 32px;
    }
}/* End custom CSS */