@charset "UTF-8";
/*
Theme Name: new_theme
Description:name
Version: 1.0
*/


:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #f97316;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f3f4f6;
}

/* .mockup {
    width: 100%;
    max-width: 500px;
    height: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.popup-demo {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    z-index: 20;
    animation: slideIn 0.7s ease-out forwards, float 3s ease-in-out infinite;
    transition: transform 0.3s;
}

@keyframes slideIn {
    from {
        right: -300px;
        opacity: 0;
    }

    to {
        right: 10%;
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(-45%);
    }
}

.popup-demo h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.popup-demo p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.popup-buttons {
    display: flex;
    gap: 0.5rem;
}

.popup-cta {
    background-color: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    flex: 2;
}

.popup-close {
    border: 1px solid #e5e7eb;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
}


@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding: 3rem 5%;
    }

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

    .hero-content {
        margin-bottom: 2rem;
    }

    .feature-grid,
    .testimonial-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 100%;
        margin-bottom: 2rem;
    }

    .step:not(:last-child)::after {
        content: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .popup-demo {
        display: none;
    }
}
 */
