

/* Start:/local/css/o-nas.css?17810338006354*/
/* =========================================================
   /o-nas/ — страница «О нас»
   ========================================================= */

/* ── Hero ─────────────────────────────────────────────────── */

.onas-hero {
    background: linear-gradient(135deg, #1f4080 0%, #0d2347 100%);
    padding: 72px 20px 64px;
}

.onas-hero__inner {
    max-width: 760px;
    margin: 0 auto;
}

.onas-hero__title {
    font-family: 'Gilroy', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 20px;
}

.onas-hero__lead {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    margin: 0;
}

/* ── Основной контейнер ───────────────────────────────────── */

.onas-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* ── Секции ───────────────────────────────────────────────── */

.onas-section {
    padding: 56px 0 0;
}

.onas-section--accent {
    background: #f4f7ff;
    border-radius: 16px;
    padding: 40px;
    margin-top: 56px;
}

.onas-section__title {
    font-family: 'Gilroy', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #343650;
    margin: 0 0 20px;
}

.onas-section__text p {
    font-size: 16px;
    line-height: 1.75;
    color: #4a4a6a;
    margin: 0 0 14px;
}

.onas-section__text p:last-child {
    margin-bottom: 0;
}

/* ── Статистика ───────────────────────────────────────────── */

.onas-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
    padding: 40px;
    background: #f4f7ff;
    border-radius: 16px;
}

.onas-stat {
    text-align: center;
}

.onas-stat__num {
    font-family: 'Gilroy', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0069FF;
    line-height: 1;
    margin-bottom: 8px;
}

.onas-stat__label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* ── Шаги ─────────────────────────────────────────────────── */

.onas-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 8px;
}

.onas-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.onas-step__num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0069FF;
    color: #fff;
    font-family: 'Gilroy', sans-serif;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onas-step__title {
    font-family: 'Gilroy', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #343650;
    margin: 0 0 6px;
}

.onas-step__text {
    font-size: 15px;
    line-height: 1.65;
    color: #4a4a6a;
    margin: 0;
}

/* ── Кнопка ───────────────────────────────────────────────── */

.onas-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 13px 28px;
    background: #0069FF;
    color: #fff;
    font-family: 'Gilroy', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.18s ease;
}

.onas-btn:hover {
    background: #0054cc;
}

/* ── Контакты ─────────────────────────────────────────────── */

.onas-contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 8px;
}

.onas-contact {
    padding: 20px 24px;
    background: #f4f7ff;
    border-radius: 12px;
}

.onas-contact__label {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.onas-contact__value {
    font-size: 16px;
    font-weight: 600;
    color: #343650;
    text-decoration: none;
}

a.onas-contact__value:hover {
    color: #0069FF;
}

/* ── Адаптив ──────────────────────────────────────────────── */

@media (max-width: 768px) {
    .onas-hero__title {
        font-size: 26px;
    }

    .onas-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
    }

    .onas-section--accent {
        padding: 28px 20px;
    }

    .onas-contacts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .onas-stats {
        grid-template-columns: 1fr 1fr;
    }

    .onas-stat__num {
        font-size: 28px;
    }
}

/* ── Перелинковка ─────────────────────────────────────────── */
.site-links {
    max-width: 860px;
    margin: 56px auto 0;
    padding: 0 20px 64px;
}
.site-links__title {
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #343650;
    margin: 0 0 20px;
}
.site-links__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.site-links__card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 22px;
    background: #f4f7ff;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.site-links__card:hover {
    border-color: #0069FF;
    box-shadow: 0 2px 12px rgba(0,105,255,0.10);
}
.site-links__card-title {
    display: block;
    font-family: 'Gilroy', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0069FF;
}
.site-links__card-desc {
    display: block;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}
@media (max-width: 600px) {
    .site-links__grid { grid-template-columns: 1fr; }
}

/* End */
/* /local/css/o-nas.css?17810338006354 */
