/* ============================================
   CTA - FINAL CALL TO ACTION
   Gradient shimmer effect
   ============================================ */

.cta-final {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 24px;
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
            border: 2px solid #E5E5E5;
        }

        /* Animated gradient mesh background */
        .cta-final::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 15% 30%, rgba(255, 107, 74, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 85% 70%, rgba(255, 107, 74, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 107, 74, 0.02) 0%, transparent 70%);
            pointer-events: none;
            animation: meshShift 8s ease-in-out infinite;
        }

        @keyframes meshShift {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .cta-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #FF6B4A;
            margin-bottom: 20px;
        }

        .cta-title {
            font-size: 56px;
            font-weight: 700;
            color: #171717;
            margin-bottom: 20px;
            letter-spacing: -1px;
            line-height: 1.1;
            background: linear-gradient(
                90deg,
                #171717 0%,
                #171717 30%,
                #FF6B4A 50%,
                #171717 70%,
                #171717 100%
            );
            background-size: 200% 100%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 8s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% {
                background-position: -100% 0;
            }
            50% {
                background-position: 100% 0;
            }
            100% {
                background-position: -100% 0;
            }
        }

        .cta-subtitle {
            font-size: 20px;
            color: #737373;
            margin-bottom: 48px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .cta-button-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            background: #FF6B4A;
            color: white;
            font-size: 18px;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid #FF6B4A;
        }

        .cta-button-primary:hover {
            background: #FF5733;
            border-color: #FF5733;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 74, 0.4);
        }

        .cta-button-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            background: transparent;
            color: #171717;
            font-size: 18px;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid #E5E5E5;
        }

        .cta-button-secondary:hover {
            background: #FAFAFA;
            border-color: #171717;
            transform: translateY(-2px);
        }

        .cta-icon {
            font-size: 22px;
        }

        .cta-features {
            display: flex;
            gap: 40px;
            justify-content: center;
            margin-top: 48px;
            padding-top: 48px;
            border-top: 1px solid #E5E5E5;
            flex-wrap: wrap;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #737373;
            font-size: 15px;
        }

        .cta-feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(255, 107, 74, 0.08);
            border: 1px solid rgba(255, 107, 74, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .cta-feature-text {
            text-align: left;
        }

        .cta-feature-label {
            font-weight: 600;
            color: #171717;
            margin-bottom: 4px;
        }

        .cta-feature-value {
            font-size: 13px;
        }

        /* Mobile responsive */
        @media (max-width: 968px) {
            .cta-final {
                padding: 60px 40px;
            }

            .cta-title {
                font-size: 42px;
            }

            .cta-subtitle {
                font-size: 18px;
            }

            .cta-actions {
                flex-direction: column;
                width: 100%;
            }

            .cta-button-primary,
            .cta-button-secondary {
                width: 100%;
                justify-content: center;
            }

            .cta-features {
                gap: 24px;
            }
        }

        @media (max-width: 640px) {
            body {
                padding: 40px 16px;
            }

            .cta-final {
                padding: 48px 24px;
                border-radius: 16px;
            }

            .cta-title {
                font-size: 36px;
            }

            .cta-subtitle {
                font-size: 16px;
                margin-bottom: 36px;
            }

            .cta-button-primary,
            .cta-button-secondary {
                padding: 16px 32px;
                font-size: 16px;
            }

            .cta-features {
                flex-direction: column;
                gap: 20px;
                margin-top: 36px;
                padding-top: 36px;
            }

            .cta-feature {
                justify-content: center;
            }
        }

        /* Demo section */
        .demo-section {
            margin-top: 80px;
            padding: 40px;
            background: white;
            border-radius: 12px;
            border: 2px dashed #E5E5E5;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .demo-section h3 {
            color: #171717;
            margin-bottom: 20px;
            font-size: 20px;
        }

        .demo-section p {
            color: #737373;
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .demo-section code {
            background: #FAFAFA;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 14px;
            color: #FF6B4A;
        }
