/* MVV CSS */
.mvv-section {
    padding-bottom: 80px;
}

.mission-block {
    text-align: center;
    margin-bottom: 60px;
}

.mvv-label {
    display: inline-block;
    font-family: var(--font-en);
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.mvv-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--text-main);
}

.mvv-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.mvv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.mvv-card {
    background: transparent;
    padding: 20px;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    border: none;
    transition: transform 0.3s;
}



.mvv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-muted);
}

.vision-card .mvv-icon {
    background: rgba(0, 0, 0, 0.05);
    color: var(--secondary);
}

.value-card .mvv-icon {
    background: rgba(0, 0, 0, 0.05);
    color: var(--accent);
}

.mvv-card h3 {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.mvv-card h4 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-main);
}

.mvv-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .mvv-title {
        font-size: 2rem;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }
}