/* ===== HEADER ===== */

.mv-header{
    text-align:center;
    padding:120px 20px 60px;
    background:#f5f6f8;
}

.mv-header h1{
    font-size:56px;
    margin-bottom:20px;
}

.mv-header p{
    max-width:750px;
    margin:auto;
    font-size:18px;
    color:#555;
    line-height:1.6;
}


/* ===== CARD SECTIONS ===== */

.mv-card-section{
    padding:60px 20px;
    background:#f5f6f8;
}

.mv-large-card{
    max-width:1100px;
    margin:auto;
    background:#ffffff;
    border-radius:30px;
    padding:60px;
    box-shadow:0 25px 70px rgba(0,0,0,0.08);
}

.mv-title-row{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
}

.mv-icon{
    width:60px;
    height:60px;
    background:#ff6b6b;
    color:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.mv-icon.star{
    background:#ff9f1c;
}

.mv-large-card h2{
    font-size:36px;
}

.mv-main-text{
    font-size:18px;
    margin-bottom:40px;
    color:#444;
    line-height:1.6;
}

/* ===== MINI CARDS ===== */

.mv-small-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.mv-mini-card{
    background:#f8f9fb;
    padding:30px;
    border-radius:20px;
    transition:0.3s;
}

.mv-mini-card:hover{
    transform:translateY(-8px);
}

.mv-mini-card h4{
    margin-bottom:10px;
    font-size:18px;
}

.mv-mini-card p{
    font-size:14px;
    color:#666;
}

/* ===== CORE VALUES ===== */

.core-values-section{
    padding:100px 20px;
    background:linear-gradient(135deg,#ff6b6b,#ff9f1c);
    color:#fff;
}

.core-box{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.core-box h2{
    font-size:42px;
    margin-bottom:20px;
}

.core-box p{
    margin-bottom:50px;
    font-size:17px;
    opacity:.9;
}

.core-values-grid{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.core-pill{
    background:rgba(255,255,255,0.2);
    padding:18px 40px;
    border-radius:20px;
    font-weight:600;
    font-size:18px;
}


/* ===== REVEAL ===== */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:0.8s;
}

.reveal.show{
    opacity:1;
    transform:none;
}


/* ===== RESPONSIVE ===== */

@media(max-width:992px){

    .mv-small-cards{
        grid-template-columns:1fr;
    }

    .mv-header h1{
        font-size:38px;
    }

    .mv-large-card{
        padding:40px;
    }
}
