body { font-family: 'Inter', sans-serif; }
.font-display { font-family: 'Playfair Display', serif; }
.fade-in { animation: fadeIn 0.3s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.slide-in-right { animation: slideInRight 0.3s ease-out; }
@keyframes slideInRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
.slide-in-left { animation: slideInLeft 0.3s ease-out; }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
.option-card:hover { transform: translateY(-2px); box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); }
.option-card.selected { border-color: #7CB342; background-color: #f2f8e9; }
.option-card svg { flex-shrink: 0; }
.progress-step.active { background-color: #7CB342; color: white; }
.progress-step.completed { background-color: #558B2F; color: white; }
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: white; border-top: 1px solid #e5e7eb; z-index: 40; box-shadow: 0 -2px 10px rgba(0,0,0,0.05); }
.btn-spinner { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.input-valid { border-color: #7CB342 !important; }
.input-invalid { border-color: #ef4444 !important; }

/* CTA pulse animation */
@keyframes subtle-pulse {
    0%, 100% { box-shadow: 0 10px 25px -5px rgba(124, 179, 66, 0.4); }
    50% { box-shadow: 0 10px 35px -5px rgba(124, 179, 66, 0.7); }
}
.cta-pulse { animation: subtle-pulse 3s ease-in-out infinite; }
.cta-pulse:hover { animation: none; box-shadow: 0 20px 40px -5px rgba(124, 179, 66, 0.5); }

/* Benefit items with green left border */
.benefit-item {
    border-left: 3px solid #7CB342;
    padding-left: 1rem;
}
