/* FONT & ANIMATION SETUP */
:root {
    --font-heading: 'Inter', sans-serif;
    --font-sans: 'Open Sans', sans-serif;
    --color-accent: #6366f1;
}

body {
    font-family: var(--font-sans);
}

.font-heading {
    font-family: var(--font-heading);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeUp {
    animation: fadeUp 0.6s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
    .animate-fadeUp {
        animation: none;
    }
}

/* DEMO IMAGE STYLES */
.comparison-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0.5rem; /* Tailwind's rounded-lg */
}

/* TESTIMONIAL CAROUSEL */
.testimonial-carousel {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.testimonial-track {
    display: flex;
    flex-wrap: nowrap;
    animation: scroll 40s linear infinite;
}

.testimonial-card {
    flex-shrink: 0;
    width: 350px;
    margin-right: 2rem; /* gap */
    padding: 1.5rem;
    background-color: #f9fafb; /* gray-50 */
    border: 1px solid #e5e7eb; /* gray-200 */
    border-radius: 0.5rem;
}

.stars {
    color: #f59e0b; /* amber-500 */
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* FAQ ACCORDION */
.faq-item.open .faq-answer {
    max-height: 200px; /* Adjust as needed */
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-icon {
    transition: transform 0.3s ease;
}



