* {
    font-family: 'Inter', sans-serif;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

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

.animate-marquee {
    display: flex;
    width: fit-content;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.neo-card {
    border: 2px solid #1a1a1a;
    box-shadow: 3px 3px 0px 0px #1a1a1a;
    transition: all 0.2s ease;
}

.neo-card:hover {
    box-shadow: 5px 5px 0px 0px #1a1a1a;
    transform: translate(-2px, -2px);
}

.neo-btn {
    border: 2px solid #1a1a1a;
    box-shadow: 3px 3px 0px 0px #1a1a1a;
    transition: all 0.15s ease;
}

.neo-btn:hover {
    box-shadow: 1px 1px 0px 0px #1a1a1a;
    transform: translate(2px, 2px);
}

.neo-btn:active {
    box-shadow: 0px 0px 0px 0px #1a1a1a;
    transform: translate(3px, 3px);
}

.neo-input {
    border: 2px solid #1a1a1a;
    box-shadow: 3px 3px 0px 0px #e0e0e0;
    transition: all 0.2s ease;
}

.neo-input:focus {
    box-shadow: 3px 3px 0px 0px #00E676;
    outline: none;
}

.neo-badge {
    border: 2px solid #1a1a1a;
    box-shadow: 2px 2px 0px 0px #1a1a1a;
}

.toast {
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

html {
    scroll-behavior: smooth;
}

/* FAQ Accordion */
.faq-item {
    overflow: hidden;
}

.faq-question {
    cursor: pointer;
    background: none;
    transition: background 0.15s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-question[aria-expanded="true"] {
    background-color: #EDFFF5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s ease;
}

.faq-answer:not(.hidden) {
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

