.vm-hero {
    position: relative;
    min-height: min(72vh, 620px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0A3442;
}

.vm-hero-media {
    position: absolute;
    inset: 0;
}

.vm-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.vm-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 52, 66, 0.15) 0%, rgba(10, 52, 66, 0.72) 100%),
        linear-gradient(90deg, rgba(10, 52, 66, 0.35) 0%, transparent 55%);
}

.vm-hero-content {
    position: relative;
    z-index: 1;
    width: min(1100px, calc(100% - 10%));
    margin: 0 auto 48px;
    color: #fff;
}

.vm-eyebrow {
    margin: 0 0 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #b8e4df;
    letter-spacing: 0.04em;
}

.vm-hero-content h1 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.25;
}

.vm-hero-lead {
    margin: 0;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 36ch;
    line-height: 1.7;
}

.vm-page {
    width: min(1100px, calc(100% - 10%));
    margin: -42px auto 64px;
    position: relative;
    z-index: 2;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.vm-card,
.vm-block {
    background: #fff;
    border: 1px solid rgba(51, 165, 160, 0.18);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(10, 52, 66, 0.08);
}

.vm-card {
    padding: 28px 26px;
}

.vm-card-icon,
.vm-block-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #33A5A0, #0A3442);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.vm-card h2,
.vm-block-head h2 {
    margin: 0 0 12px;
    color: #0A3442;
    font-size: 1.45rem;
}

.vm-card p {
    margin: 0;
    color: #334155;
    line-height: 1.95;
    font-size: 1.05rem;
}

.vm-block {
    padding: 28px 26px;
    margin-bottom: 22px;
}

.vm-block-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.vm-block-head .vm-block-icon {
    margin-bottom: 0;
}

.vm-block-head h2 {
    margin: 0;
}

.vm-goals {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.vm-goals li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 16px;
    background: #f4faf9;
    border: 1px solid #e4f2f0;
}

.vm-goal-num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #d4efec;
    color: #33A5A0;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.vm-goals p {
    margin: 0;
    color: #0A3442;
    line-height: 1.9;
    font-size: 1.02rem;
}

.vm-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.vm-value {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f7fbfb 0%, #eef7f6 100%);
    border: 1px solid #dcefee;
    color: #0A3442;
    font-weight: 700;
    font-size: 1.05rem;
}

.vm-value i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(51, 165, 160, 0.14);
    color: #33A5A0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .vm-grid,
    .vm-values {
        grid-template-columns: 1fr;
    }

    .vm-hero {
        min-height: 52vh;
    }

    .vm-page {
        margin-top: -28px;
    }
}

@media (max-width: 600px) {
    .vm-hero-content {
        margin-bottom: 32px;
    }

    .vm-card,
    .vm-block {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .vm-goals li {
        flex-direction: column;
        gap: 10px;
    }
}
