@media (min-width: 1025px) {
    .site-footer .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .site-footer .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

.euro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.euro-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

    .euro-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
        border-color: #3b82f6;
    }

    .euro-card .flag-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        display: block;
    }

    .euro-card h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        color: #0f172a;
        margin-bottom: 1rem;
    }

    .euro-card p {
        font-size: 0.95rem;
        color: #64748b;
        line-height: 1.7;
    }

.badge-finance {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-digital {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: #3b82f6;
    display: block;
    margin-bottom: 0.5rem;
}

