/* Smooth transitions for FAQ accordion */
.faq-answer {
    transition: all 0.3s ease-in-out;
}

/* Pricing cards layout and hover effects */
.pricing-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    max-width: 100%;
    width: 100%;
}

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

/* Ensure pricing grid doesn't take full width */
.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing cards responsive sizing */
@media (min-width: 768px) {
    .pricing-card {
        max-width: 350px;
    }
}

@media (min-width: 1024px) {
    .pricing-card {
        max-width: 320px;
    }
}

/* Ensure smooth transitions for all interactive elements */
button, a {
    transition: all 0.2s ease-in-out;
}

/* FAQ icons transition */
.faq-question svg {
    transition: transform 0.3s ease-in-out;
}

/* Pricing text styles */
.text-4xl.font-extrabold {
    letter-spacing: -0.025em;
}

/* Feature list spacing */
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1rem;
}

/* Currency indicator styling */
.currency-indicator {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
