.elementor-124 .elementor-element.elementor-element-3db9935{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-124 .elementor-element.elementor-element-3cd89e1{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-3cd89e1 */<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #2d3748 100%);
            color: #e2e8f0;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        /* Floating Phone Number */
        .floating-phone {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #ffc107;
            color: #0a1628;
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 5px 25px rgba(255, 193, 7, 0.5);
            z-index: 1000;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: pulse 2s infinite;
        }

        .floating-phone:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 35px rgba(255, 193, 7, 0.7);
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 5px 25px rgba(255, 193, 7, 0.5);
            }
            50% {
                box-shadow: 0 5px 35px rgba(255, 193, 7, 0.8);
            }
        }

        @media (max-width: 768px) {
            .floating-phone {
                top: 10px;
                right: 10px;
                padding: 12px 20px;
                font-size: 1rem;
            }
        }

        /* Popup Overlay */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            animation: fadeIn 0.3s ease;
        }

        .popup-overlay.active {
            display: flex;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .popup-content {
            background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
            border: 2px solid rgba(255, 193, 7, 0.4);
            border-radius: 24px;
            padding: 45px 40px;
            max-width: 500px;
            width: 90%;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 193, 7, 0.2);
            animation: slideUp 0.4s ease;
        }

        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 193, 7, 0.2);
            border: none;
            color: #ffc107;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .popup-close:hover {
            background: #ffc107;
            color: #0a1628;
            transform: rotate(90deg);
        }

        .popup-headline {
            text-align: center;
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .popup-headline .highlight {
            color: #ffc107;
            text-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
        }

        .popup-subtext {
            text-align: center;
            color: #cbd5e0;
            font-size: 1rem;
            margin-bottom: 35px;
        }

        .popup-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .popup-btn {
            padding: 16px 28px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            cursor: pointer;
            border: none;
            text-align: center;
        }

        .popup-btn-whatsapp {
            background: #25D366;
            color: #ffffff;
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }

        .popup-btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
            background: #20ba5a;
        }

        .popup-btn-call {
            background: #ffc107;
            color: #0a1628;
            box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
        }

        .popup-btn-call:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255, 193, 7, 0.5);
            background: #ffca28;
        }

        .popup-btn-number {
            background: transparent;
            color: #ffc107;
            border: 2px solid #ffc107;
            font-size: 1.2rem;
            letter-spacing: 1px;
        }

        .popup-btn-number:hover {
            background: rgba(255, 193, 7, 0.1);
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .popup-content {
                padding: 35px 25px;
            }

            .popup-headline {
                font-size: 1.5rem;
            }

            .popup-btn {
                font-size: 1rem;
                padding: 14px 24px;
            }

            .popup-btn-number {
                font-size: 1.1rem;
            }
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 193, 7, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 193, 7, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Hero Section */
        .hero {
            padding: 100px 20px 80px;
            text-align: center;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .hero h1 .highlight {
            color: #ffc107;
            text-shadow: 0 0 30px rgba(255, 193, 7, 0.4);
        }

        .hero .subheadline {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            color: #cbd5e0;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .btn {
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: #ffc107;
            color: #0a1628;
            box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: #ffc107;
            border: 2px solid #ffc107;
        }

        .btn-secondary:hover {
            background: rgba(255, 193, 7, 0.1);
            transform: translateY(-3px);
        }

        .badges {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            max-width: 900px;
            margin: 0 auto;
        }

        .badge-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 193, 7, 0.2);
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 0.95rem;
            color: #e2e8f0;
        }

        /* Section Styling */
        section {
            padding: 80px 20px;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: #ffc107;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Who Is This For Section */
        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .audience-card {
            background: rgba(30, 41, 59, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 193, 7, 0.2);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .audience-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(255, 193, 7, 0.2);
            border-color: rgba(255, 193, 7, 0.5);
        }

        .audience-card h3 {
            color: #ffc107;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .audience-card p {
            color: #cbd5e0;
            font-size: 1rem;
        }

        /* Benefits Section */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: rgba(30, 41, 59, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 193, 7, 0.2);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(255, 193, 7, 0.2);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 193, 7, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
        }

        .benefit-card h3 {
            color: #ffc107;
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .benefit-card p {
            color: #cbd5e0;
        }

        /* How It Works */
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .step-card {
            background: rgba(30, 41, 59, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 193, 7, 0.2);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: #ffc107;
            color: #0a1628;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
        }

        .step-card h3 {
            color: #ffc107;
            margin-bottom: 12px;
            font-size: 1.2rem;
        }

        .step-card p {
            color: #cbd5e0;
        }

        /* Why Choose Section */
        .why-choose {
            background: rgba(30, 41, 59, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 193, 7, 0.2);
            border-radius: 16px;
            padding: 40px;
            max-width: 800px;
            margin: 0 auto;
        }

        .why-choose ul {
            list-style: none;
            display: grid;
            gap: 15px;
        }

        .why-choose li {
            color: #cbd5e0;
            font-size: 1.1rem;
            padding-left: 30px;
            position: relative;
        }

        .why-choose li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ffc107;
            font-weight: 700;
            font-size: 1.3rem;
        }

        .trust-line {
            text-align: center;
            color: #ffc107;
            font-size: 1.1rem;
            margin-top: 30px;
            font-style: italic;
        }

        /* CTA Cards Section */
        .cta-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .cta-card {
            background: rgba(30, 41, 59, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 193, 7, 0.2);
            border-radius: 16px;
            padding: 35px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .cta-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
        }

        .cta-card-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .cta-card h3 {
            color: #ffc107;
            font-size: 1.3rem;
            margin-bottom: 25px;
        }

        .cta-card-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .btn-small {
            padding: 12px 24px;
            font-size: 0.95rem;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(30, 41, 59, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 193, 7, 0.2);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
        }

        .faq-item h4 {
            color: #ffc107;
            font-size: 1.15rem;
            margin-bottom: 10px;
        }

        .faq-item p {
            color: #cbd5e0;
        }

        /* Final CTA Section */
        .final-cta {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
            border: 2px solid rgba(255, 193, 7, 0.3);
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
        }

        .final-cta h2 {
            color: #ffffff;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 30px;
        }

        .final-cta .highlight {
            color: #ffc107;
        }

        .final-cta .micro-trust {
            color: #cbd5e0;
            font-size: 1rem;
            margin-top: 25px;
            font-style: italic;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        .contact-card {
            background: rgba(30, 41, 59, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 193, 7, 0.2);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(255, 193, 7, 0.2);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 193, 7, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
            box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
        }

        .contact-card h3 {
            color: #ffc107;
            font-size: 1.2rem;
            margin-bottom: 12px;
        }

        .contact-card a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-card a:hover {
            color: #ffc107;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 30px 20px;
            color: #94a3b8;
            border-top: 1px solid rgba(255, 193, 7, 0.1);
        }

        @media (max-width: 768px) {
            .hero {
                padding: 60px 20px 50px;
            }

            section {
                padding: 50px 20px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }
    </style>/* End custom CSS */