body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gold-badge-3d {
    background: linear-gradient(145deg, #fde047, #f59e0b);
    color: #422006;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1), inset 0 -2px 2px rgba(0,0,0,0.1);
}

.cta-button {
    background: linear-gradient(45deg, #facc15, #f59e0b);
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3), 0 4px 6px -4px rgba(245, 158, 11, 0.3);
}

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

@keyframes fade-in-delay {
    0% { opacity: 0; transform: translateY(10px); }
    33% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fade-in 0.6s ease-out forwards;
}
.animate-fade-in-delay {
    animation: fade-in-delay 0.9s ease-out forwards;
}

.faq-item[data-open="true"] .faq-question i {
    transform: rotate(180deg);
}

.faq-item[data-open="true"] .faq-answer {
    grid-template-rows: 1fr;
}


/* Scroll animation */
.step-card, .program-card, .info-card, .faq-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.step-card.is-visible, 
.program-card.is-visible, 
.info-card.is-visible,
.faq-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
