.elementor-8507 .elementor-element.elementor-element-28648aa{--display:flex;}/* Start custom CSS for html, class: .elementor-element-acaecab */@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            color: #1a1a2e;
            line-height: 1.6;
        }
        
        /* Hero Section */
        .hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 40px 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            max-width: 540px;
        }

        .hero-label {
            display: inline-block;
            background: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
        }

        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.15;
            color: #1a1a2e;
            margin-bottom: 20px;
        }

        .hero h1 .highlight {
            color: #E67E22;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: #5a5a6a;
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .hero-cta {
            display: inline-block;
            background: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
            color: white;
            padding: 16px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(230, 126, 34, 0.35);
            cursor: pointer;
            border: none;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(230, 126, 34, 0.45);
        }

        .hero-note {
            margin-top: 16px;
            font-size: 0.85rem;
            color: #888;
        }

        .hero-note span {
            color: #28a745;
            font-weight: 600;
        }

        /* Guide Preview */
        .guide-preview {
            position: relative;
        }

        .preview-container {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .preview-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #E67E22;
            margin-bottom: 20px;
        }

        .preview-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .preview-item:last-child {
            border-bottom: none;
        }

        .preview-icon {
            width: 40px;
            height: 40px;
            background: rgba(230, 126, 34, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .preview-text {
            flex: 1;
        }

        .preview-text h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: white;
            margin-bottom: 2px;
        }

        .preview-text p {
            font-size: 0.8rem;
            color: #a0a0b0;
        }

        .preview-badge {
            position: absolute;
            top: -15px;
            right: -15px;
            background: #E67E22;
            color: white;
            padding: 12px 20px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 0.9rem;
            box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
        }

        /* Stats Section */
        .stats-section {
            background: #f8f9fa;
            padding: 60px 40px;
        }

        .stats-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            text-align: center;
        }

        .stat-item .number {
            font-size: 3rem;
            font-weight: 900;
            color: #E67E22;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-item .label {
            font-size: 1rem;
            color: #5a5a6a;
            font-weight: 500;
        }

        /* What You'll Learn */
        .learn-section {
            max-width: 1000px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 900;
            color: #1a1a2e;
            margin-bottom: 12px;
        }

        .section-header h2 .highlight {
            color: #E67E22;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #5a5a6a;
        }

        .learn-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .learn-card {
            background: #f8f9fa;
            border-radius: 16px;
            padding: 28px;
            border-left: 4px solid #E67E22;
            transition: all 0.3s ease;
        }

        .learn-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }

        .learn-card h3 {
            font-size: 1.15rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 8px;
        }

        .learn-card p {
            font-size: 0.95rem;
            color: #5a5a6a;
            line-height: 1.6;
        }

        /* Patterns Section */
        .patterns-section {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
            padding: 80px 40px;
        }

        .patterns-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .patterns-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .patterns-header h2 {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            margin-bottom: 12px;
        }

        .patterns-header h2 .highlight {
            color: #F39C12;
        }

        .patterns-header p {
            font-size: 1.1rem;
            color: #a0a0b0;
        }

        .patterns-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .pattern-card {
            background: rgba(255,255,255,0.05);
            border-radius: 16px;
            padding: 28px 20px;
            text-align: center;
            border-top: 3px solid #E67E22;
            transition: all 0.3s ease;
        }

        .pattern-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-4px);
        }

        .pattern-number {
            font-size: 2rem;
            font-weight: 900;
            color: #E67E22;
            margin-bottom: 12px;
        }

        .pattern-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .pattern-card p {
            font-size: 0.85rem;
            color: #a0a0b0;
        }

        /* Who Is This For */
        .audience-section {
            max-width: 1000px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .audience-card {
            background: #f8f9fa;
            border-radius: 16px;
            padding: 28px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .audience-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }

        .audience-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 1.5rem;
        }

        .audience-card h3 {
            font-size: 1.1rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 8px;
        }

        .audience-card p {
            font-size: 0.9rem;
            color: #5a5a6a;
        }

        /* CTA Section */
        .cta-section {
            background: #f8f9fa;
            padding: 80px 40px;
            text-align: center;
        }

        .cta-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 2.2rem;
            font-weight: 900;
            color: #1a1a2e;
            margin-bottom: 16px;
        }

        .cta-section h2 .highlight {
            color: #E67E22;
        }

        .cta-section p {
            font-size: 1.1rem;
            color: #5a5a6a;
            margin-bottom: 32px;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
            color: white;
            padding: 18px 48px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(230, 126, 34, 0.35);
            cursor: pointer;
            border: none;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(230, 126, 34, 0.45);
        }

        .cta-benefits {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-top: 24px;
        }

        .cta-benefit {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #5a5a6a;
        }

        .cta-benefit .check {
            color: #28a745;
            font-weight: 700;
        }

 

        /* Responsive */
        @media (max-width: 900px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 40px 24px 60px;
                gap: 40px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-content {
                text-align: center;
                max-width: 100%;
            }

            .guide-preview {
                max-width: 400px;
                margin: 0 auto;
            }

            .preview-badge {
                top: -10px;
                right: 10px;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .learn-grid {
                grid-template-columns: 1fr;
            }

            .patterns-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .audience-grid {
                grid-template-columns: 1fr;
            }

            .cta-benefits {
                flex-direction: column;
                gap: 12px;
            }
        }

        @media (max-width: 600px) {
         

            .hero {
                padding: 30px 20px 50px;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .patterns-grid {
                grid-template-columns: 1fr;
            }

            .section-header h2,
            .patterns-header h2,
            .cta-section h2 {
                font-size: 1.8rem;
            }
        }/* End custom CSS */