/* ACMR About page — Mission, Vision & Values */
.acmr-mvv {
    --acmr-navy: #161439;
    --acmr-blue: var(--tg-theme-primary, #5751e1);
    --acmr-text: #3d3d4e;
    --acmr-muted: #6b6b80;
    --acmr-line: #e8e8f0;
    --acmr-soft: #f6f7fb;
    padding: 20px 0 80px;
    background: #fff;
}

.acmr-mvv-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.acmr-mvv-head span {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--acmr-blue);
    margin-bottom: 10px;
}

.acmr-mvv-head h2 {
    font-size: 32px;
    line-height: 1.25;
    color: var(--acmr-navy);
    font-weight: 700;
    margin: 0 0 10px;
}

.acmr-mvv-head p {
    margin: 0;
    color: var(--acmr-muted);
    font-size: 15px;
    line-height: 1.7;
}

.acmr-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.acmr-mvv-card {
    position: relative;
    background: var(--acmr-soft);
    border: 1px solid var(--acmr-line);
    border-radius: 20px;
    padding: 32px 28px 28px;
    overflow: hidden;
}

.acmr-mvv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--acmr-blue);
}

.acmr-mvv-card.is-vision::before {
    background: var(--acmr-navy);
}

.acmr-mvv-card.is-value::before {
    background: #1a7f4b;
}

.acmr-mvv-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--acmr-blue);
    font-size: 18px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(22, 20, 57, 0.06);
}

.acmr-mvv-card.is-vision .acmr-mvv-icon {
    color: var(--acmr-navy);
}

.acmr-mvv-card.is-value .acmr-mvv-icon {
    color: #1a7f4b;
}

.acmr-mvv-card h3 {
    font-size: 20px;
    color: var(--acmr-navy);
    font-weight: 700;
    margin: 0 0 10px;
}

.acmr-mvv-card p,
.acmr-mvv-card li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--acmr-text);
    margin: 0;
}

.acmr-mvv-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.acmr-mvv-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
}

.acmr-mvv-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1a7f4b;
}

.acmr-mvv-no {
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(22, 20, 57, 0.28);
}

@media (max-width: 991px) {
    .acmr-mvv-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .acmr-mvv-head h2 {
        font-size: 26px;
    }
}
