.about-hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    padding: 5rem 5% 4rem;
    text-align: center;
}
.about-hero__inner { max-width: 720px; margin: 0 auto; }
.about-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1e1e2e;
    margin: 1rem 0 .75rem;
}
.about-hero p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}
.values-section { padding: 5rem 5%; }
.values-section__inner { max-width: 1100px; margin: 0 auto; }
.values-section__header { text-align: center; margin-bottom: 3rem; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}
.value-card {
    background: #f8f9fc;
    border-radius: 14px;
    padding: 1.6rem;
    border: 1px solid #eef0f5;
    transition: transform .2s;
}
.value-card:hover { transform: translateY(-3px); }
.value-card__icon {
    font-size: 1.6rem;
    margin-bottom: .85rem;
}
.value-card__title { font-weight: 700; font-size: .97rem; color: #1e1e2e; margin-bottom: .35rem; }
.value-card__desc  { font-size: .87rem; color: #64748b; line-height: 1.65; }
.mission-section {
    background: #f8f9fc;
    padding: 5rem 5%;
}
.mission-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.mission-box h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #1e1e2e;
    margin-bottom: 1rem;
}
.mission-box p {
    font-size: .95rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: .85rem;
}
.highlight-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-top: 1rem;
}
.highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .92rem;
    color: #475569;
}
.highlight-list li .ico {
    color: var(--primary);
    font-size: .95rem;
    flex-shrink: 0;
    margin-top: .15rem;
}
.contact-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 5%;
    text-align: center;
    color: #fff;
}
.contact-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: .75rem; }
.contact-banner p  { font-size: .97rem; opacity: .88; margin-bottom: 1.75rem; }
.contact-banner a  {
    padding: .8rem 2rem;
    background: #fff;
    color: var(--primary);
    border-radius: 10px;
    font-weight: 700;
    font-size: .97rem;
    text-decoration: none;
    display: inline-block;
    transition: all .2s;
}
.contact-banner a:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

@media (max-width: 768px) {
    .mission-section__inner { grid-template-columns: 1fr; gap: 2rem; }
}
