.cv-card {
    flex: 0 0 calc(20% - 1rem); /* 5 cards visibles */
}

.cv-box {
    height: 100%;
    background: #0f172a;
    border: 1px solid #334155;
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 160px;
    transition: all 0.3s ease;
}

.cv-box:hover {
    background: rgba(19, 236, 236, 0.08);
    border-color: #13ecec;
    box-shadow: 0 0 20px rgba(19,236,236,0.15);
}

.cv-num {
    font-size: 1.875rem;
    font-weight: 900;
    color: #475569;
}

.cv-title {
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cv-text {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.25;
}

.cv-box.highlight {
    background: rgba(19, 236, 236, 0.08);
    border-color: #13ecec;
    box-shadow: 0 0 20px rgba(19,236,236,0.15);
}

.cv-num:hover {
    color: #13ecec;
}

.mobile-link {
    font-size: 1.25rem;
    transition: color 0.2s ease;
}
.mobile-link:hover {
    color: #13ecec;
}
body.overflow-hidden {
    touch-action: none;
}

#mobile-menu {
    min-height: 100vh;
}
