@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --odoo-purple: #714B67;
    --odoo-teal: #00A09D;
    --odoo-dark: #212529;
    --odoo-gray: #E9ECEF;
    --odoo-bg: #F8F9FA;
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    background-color: var(--odoo-bg);
    color: var(--odoo-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--odoo-purple) 0%, var(--odoo-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-odoo-purple {
    background-color: var(--odoo-purple);
    transition: all 0.3s ease;
}

.btn-odoo-purple:hover {
    background-color: #5a3c52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(113, 75, 103, 0.3);
}

.btn-odoo-teal {
    background-color: var(--odoo-teal);
    transition: all 0.3s ease;
}

.btn-odoo-teal:hover {
    background-color: #00817e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 160, 157, 0.3);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-down {
    animation: fadeInDown 0.3s ease-out forwards;
}

/* Custom animation for Hero */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* FAQ Accordion Customization */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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