.elementor-44109 .elementor-element.elementor-element-9295065{--display:flex;overflow:visible;}/* Start custom CSS for text-editor, class: .elementor-element-d4ed1e5 */:root {
            --fs-white: #ffffff;
            --fs-lime: #a8e85e;
            --fs-teal: #66d6c0;
            --fs-off-white: #fffffe;
            --fs-dark: #2d3436;
            --fs-gray: #636e72;
            --fs-light-gray: #f8f9fa;
            --fs-red: #e74c3c;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            font-size: 17px;
            line-height: 1.7;
            color: var(--fs-dark);
            background: var(--fs-white);
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            line-height: 1.2;
        }
        
        h1 { font-size: 2.8rem; }
        h2 { font-size: 2rem; margin-bottom: 1.5rem; }
        h3 { font-size: 1.4rem; margin-bottom: 1rem; }
        
        p { margin-bottom: 1.25rem; }
        
        /* ═══════════════════════════════════════
           HERO SECTION - ABOVE THE FOLD
        ═══════════════════════════════════════ */
        .hero {
            background: linear-gradient(135deg, #1a3a2a 0%, #2d5a3d 50%, #3d7a5d 100%);
            padding: 5rem 0 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            color: var(--fs-white);
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .hero h1 span {
            color: var(--fs-lime);
        }
        
        .hero-hook {
            color: rgba(255,255,255,0.95);
            font-size: 1.25rem;
            max-width: 650px;
            margin: 0 auto 1.5rem;
        }
        
        .hero-outcome {
            color: var(--fs-lime);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }
        
        /* CTA Button */
        .cta-btn {
            display: inline-block;
            background: var(--fs-lime);
            color: var(--fs-dark);
            padding: 18px 48px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.2rem;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(168, 232, 94, 0.4);
            border: none;
            cursor: pointer;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(168, 232, 94, 0.5);
            background: #b8f06e;
        }
        
        .cta-subtext {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        
        .cta-subtext strong {
            color: var(--fs-lime);
        }
        
        /* ═══════════════════════════════════════
           SECTIONS
        ═══════════════════════════════════════ */
        section {
            padding: 4rem 0;
        }
        
        .section-light {
            background: var(--fs-light-gray);
        }
        
        .section-dark {
            background: var(--fs-dark);
            color: var(--fs-white);
        }
        
        .section-dark h2,
        .section-dark h3 {
            color: var(--fs-lime);
        }
        
        .section-gradient {
            background: linear-gradient(135deg, var(--fs-teal) 0%, var(--fs-lime) 100%);
            color: var(--fs-dark);
        }
        
        .text-center { text-align: center; }
        
        /* ═══════════════════════════════════════
           WHAT THIS CHALLENGE IS
        ═══════════════════════════════════════ */
        .challenge-details {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .detail-card {
            background: var(--fs-white);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        
        .detail-card .icon {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
        }
        
        .detail-card h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--fs-teal);
            margin-bottom: 0.5rem;
        }
        
        .wins-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }
        
        .wins-list li {
            padding: 1rem 1rem 1rem 3.5rem;
            margin-bottom: 0.75rem;
            background: var(--fs-white);
            border-radius: 8px;
            position: relative;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .wins-list li::before {
            content: "✓";
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 28px;
            height: 28px;
            background: var(--fs-lime);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--fs-dark);
        }
        
        /* ═══════════════════════════════════════
           WHO THIS IS FOR
        ═══════════════════════════════════════ */
        .for-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .for-box {
            padding: 2rem;
            border-radius: 16px;
        }
        
        .for-box.yes {
            background: linear-gradient(135deg, rgba(168, 232, 94, 0.15) 0%, rgba(102, 214, 192, 0.15) 100%);
            border: 2px solid var(--fs-lime);
        }
        
        .for-box.no {
            background: rgba(231, 76, 60, 0.08);
            border: 2px solid rgba(231, 76, 60, 0.3);
        }
        
        .for-box h3 {
            margin-bottom: 1.25rem;
        }
        
        .for-box.yes h3 { color: var(--fs-teal); }
        .for-box.no h3 { color: var(--fs-red); }
        
        .for-list {
            list-style: none;
            padding: 0;
        }
        
        .for-list li {
            padding: 0.5rem 0 0.5rem 2rem;
            position: relative;
        }
        
        .for-box.yes .for-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--fs-lime);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .for-box.no .for-list li::before {
            content: "✗";
            position: absolute;
            left: 0;
            color: var(--fs-red);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* ═══════════════════════════════════════
           HOW IT WORKS - STEPS
        ═══════════════════════════════════════ */
        .steps {
            counter-reset: step;
            margin: 2rem 0;
        }
        
        .step {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            align-items: flex-start;
        }
        
        .step-number {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--fs-teal) 0%, var(--fs-lime) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--fs-white);
        }
        
        .step-content h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--fs-dark);
        }
        
        .step-content p {
            margin: 0;
            color: var(--fs-gray);
        }
        
        /* ═══════════════════════════════════════
           PROOF / TESTIMONIALS
        ═══════════════════════════════════════ */
        .testimonial-card {
            background: var(--fs-white);
            padding: 2rem;
            border-radius: 16px;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: relative;
            color: var(--fs-dark);
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-size: 4rem;
            color: var(--fs-lime);
            opacity: 0.5;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            padding-left: 2rem;
            color: var(--fs-dark);
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--fs-teal);
            padding-left: 2rem;
        }
        
        .testimonial-result {
            display: inline-block;
            background: var(--fs-lime);
            color: var(--fs-dark);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-left: 0.5rem;
        }
        
        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .stat-box {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
        }
        
        .stat-number {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 2.5rem;
            color: var(--fs-lime);
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* ═══════════════════════════════════════
           WHAT YOU GET
        ═══════════════════════════════════════ */
        .package-box {
            background: var(--fs-white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border: 3px solid var(--fs-lime);
            margin: 2rem 0;
        }
        
        .package-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px dashed var(--fs-light-gray);
        }
        
        .package-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--fs-dark);
            margin-bottom: 0.5rem;
        }
        
        .package-subtitle {
            color: var(--fs-gray);
        }
        
        .package-items {
            list-style: none;
            padding: 0;
        }
        
        .package-items li {
            padding: 1rem 0;
            border-bottom: 1px solid var(--fs-light-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .package-items li:last-child {
            border-bottom: none;
        }
        
        .package-items li.item-description {
            padding: 0 0 1rem 2.5rem;
            border-bottom: 1px solid var(--fs-light-gray);
            color: var(--fs-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .package-items li.item-description:last-of-type {
            border-bottom: none;
        }
        
        .guarantee-item {
            background: rgba(168, 232, 94, 0.1);
            margin: 0 -1.5rem;
            padding: 1rem 1.5rem !important;
            border-radius: 8px;
        }
        
        .guarantee-item .shield {
            font-size: 1.2rem;
            margin-right: 0.5rem;
        }
        
        .guarantee-desc {
            background: rgba(168, 232, 94, 0.1);
            margin: 0 -1.5rem;
            padding: 0 1.5rem 1rem 4rem !important;
            border-radius: 0 0 8px 8px;
            border-bottom: none !important;
        }
        
        .item-name {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .item-name .check {
            width: 24px;
            height: 24px;
            background: var(--fs-lime);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--fs-dark);
            font-weight: bold;
            font-size: 0.8rem;
        }
        
        .item-value {
            color: var(--fs-gray);
            font-size: 0.9rem;
        }
        
        .item-value s {
            color: var(--fs-red);
        }
        
        .package-total {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 2px solid var(--fs-lime);
        }
        
        .total-value {
            font-size: 0.95rem;
            color: var(--fs-gray);
            margin-bottom: 0.5rem;
        }
        
        .total-value s {
            color: var(--fs-red);
        }
        
        .total-price {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 3rem;
            color: var(--fs-teal);
        }
        
        .total-price sup {
            font-size: 1.5rem;
            vertical-align: super;
        }
        
        /* ═══════════════════════════════════════
           FAQ
        ═══════════════════════════════════════ */
        .faq-item {
            background: var(--fs-white);
            margin-bottom: 1rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            padding: 1.25rem 1.5rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--fs-dark);
            background: var(--fs-light-gray);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--fs-teal);
        }
        
        .faq-answer {
            padding: 1.25rem 1.5rem;
            color: var(--fs-gray);
        }
        
        /* ═══════════════════════════════════════
           FINAL CTA
        ═══════════════════════════════════════ */
        .final-cta {
            background: linear-gradient(135deg, #1a3a2a 0%, #2d5a3d 100%);
            padding: 5rem 0;
            text-align: center;
        }
        
        .final-cta h2 {
            color: var(--fs-white);
            margin-bottom: 1.5rem;
        }
        
        .final-cta h2 span {
            color: var(--fs-lime);
        }
        
        .final-cta p {
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            margin: 0 auto 2rem;
        }
        
        .urgency-badge {
            display: inline-block;
            background: var(--fs-red);
            color: var(--fs-white);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .guarantee-box {
            background: rgba(255,255,255,0.1);
            padding: 1.5rem;
            border-radius: 12px;
            max-width: 500px;
            margin: 2rem auto 0;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .guarantee-box h4 {
            color: var(--fs-lime);
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 0.5rem;
        }
        
        .guarantee-box p {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            margin: 0;
        }
        
        /* ═══════════════════════════════════════
           RESPONSIVE
        ═══════════════════════════════════════ */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            
            .hero { padding: 3rem 0; }
            
            .challenge-details,
            .for-grid,
            .stats-row {
                grid-template-columns: 1fr;
            }
            
            .step {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .cta-btn {
                padding: 16px 32px;
                font-size: 1rem;
            }
        }/* End custom CSS */