.elementor-12225 .elementor-element.elementor-element-4d0448fa{padding:0px 0px 0px 0px;}.elementor-12225 .elementor-element.elementor-element-7678a63f > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-c568b55 */.cta-wrapper {
            width: 100%;
            max-width: 380px;
            margin: 00px auto;
            padding: 20px;
            box-sizing: border-box;
        }

        .cta-wrapper[data-align="left"] {
            margin-left: 0;
            margin-right: auto;
        }

        .cta-wrapper[data-align="center"] {
            margin-left: auto;
            margin-right: auto;
        }

        .cta-container {
            position: relative;
            width: 100%;
            opacity: 0;
            transform: translateY(50px) scale(0.8);
            animation: loadIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
        }

        @keyframes loadIn {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .cta-button-discovery {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            width: 100%;
            max-width: 340px;
            padding: 18px 36px;
            background: linear-gradient(145deg, #030303 0%, #0A090D 100%);
            border: 2px solid #333;
            border-radius: 50px;
            color: white;
            text-decoration: none;
            font-size: 20px;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow: hidden;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                0 2px 8px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            box-sizing: border-box;
        }

        .cta-button-discovery::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s;
        }

        .cta-button-discovery:hover::before {
            left: 100%;
        }

        .cta-button-discovery::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(145deg, #faff00 0%, #e6e600 100%);
            border-radius: 50px;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: -1;
        }

        .cta-button-discovery:hover {
            transform: translateY(-0px) scale(1.05);
            border-color: #faff00;
            box-shadow: 
                0 20px 60px rgba(250, 255, 0, 0.3),
                0 8px 30px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .cta-button-discovery:hover::after {
            opacity: 1;
        }

        .cta-button-discovery:hover .button-text {
            color: #1a1a2e;
            text-shadow: 0 0 20px rgba(250, 255, 0, 0.5);
        }

        .cta-button-discovery:active {
            transform: translateY(-2px) scale(1.02);
        }

        .button-text {
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    letter-spacing: -.4px;
    FONT-WEIGHT: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .d-symbol {
            position: relative;
            z-index: 2;
            width: 48px;
            height: 48px;
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                filter: drop-shadow(0 0 8px rgba(250, 255, 0, 0.6));
            }
            50% {
                transform: scale(1.1);
                filter: drop-shadow(0 0 16px rgba(250, 255, 0, 0.8));
            }
        }

        .d-symbol svg {
            width: 100%;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .d-symbol svg path {
            transition: fill 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .cta-button-discovery:hover .d-symbol {
            animation: spin 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg) scale(1);
            }
            50% {
                transform: rotate(180deg) scale(1.2);
            }
            100% {
                transform: rotate(360deg) scale(1);
            }
        }

        .cta-button-discovery:hover .d-symbol svg path[fill="#010101"] {
            fill: #1a1a2e;
        }

        /* Glow ring animation */
        .glow-ring {
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            border: 3px solid transparent;
            border-radius: 50px;
            background: linear-gradient(45deg, #faff00, #e6e600, #faff00) border-box;
            mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            mask-composite: xor;
            -webkit-mask-composite: xor;
            opacity: 0;
            animation: ringGlow 4s ease-in-out infinite 2s;
        }

        @keyframes ringGlow {
            0%, 100% {
                opacity: 0;
                transform: scale(0.8);
            }
            50% {
                opacity: 0.6;
                transform: scale(1.1);
            }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .cta-wrapper {
                max-width: 350px;
            }
            
            .cta-button-discovery {
                padding: 16px 28px;
                font-size: 18px;
                gap: 12px;
                max-width: 320px;
            }
            
            .d-symbol {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .cta-wrapper {
                max-width: 300px;
            }
            
            .cta-button-discovery {
                padding: 14px 24px;
                font-size: 16px;
                gap: 10px;
                max-width: 280px;
            }
            
            .d-symbol {
                width: 36px;
                height: 36px;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            .cta-container {
                animation: none;
                opacity: 1;
                transform: none;
            }
            
            .d-symbol {
                animation: none;
            }
            
            .glow-ring {
                animation: none;
            }
        }

        /* High contrast mode */
        @media (prefers-contrast: high) {
            .cta-button-discovery {
                border: 3px solid #fff;
                background: #000;
            }
            
            .cta-button-discovery:hover {
                background: #faff00;
                color: #000;
            }
        }/* End custom CSS */