/* Focus Styles */
*:focus-visible {
    outline: 2px solid #f97316;
    outline-offset: 2px;
    border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #f97316;
    outline-offset: 3px;
}

/* Payment Card Styles */
.payment-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e5e7eb;
    position: relative;
}

.payment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    border-color: #f97316;
}

.payment-card.featured {
    border-color: #f97316;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
}

.payment-card.featured::before {
    content: 'CONSIGLIATO';
    position: absolute;
    top: -1px;
    right: -1px;
    background: #f97316;
    color: white;
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 0 1rem 0 0.5rem;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.15);
}

/* Accordion Styles */
.accordion-btn {
    width: 100%;
    background-color: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-btn:hover {
    background-color: #e5e7eb;
    border-color: #f97316;
}

.accordion-btn[aria-expanded="true"] {
    background-color: #fff7ed;
    border-color: #f97316;
}

.accordion-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.accordion-content.active {
    max-height: 3000px;
    padding: 1.5rem 1.25rem;
}

.badge-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.blob-animated {
    animation: blob 8s ease-in-out infinite;
}

@keyframes blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.05); }
    50% { transform: translate(-10px, 15px) scale(0.95); }
    75% { transform: translate(15px, 20px) scale(1.02); }
}

.gradient-bg {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.stat-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
