/* Сброс и базовые стили */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    width: 100%; min-height: 100%;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f6f8fb;
    color: #232931;
    font-size: 16px;
    line-height: 1.5;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: #2176ff; }
body { margin: 0; background: #f6f8fb; }

/* HEADER */
.header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(30,60,120,.07);
    position: sticky; top: 0; z-index: 50;
    border-bottom: 2px solid #e8effa;
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 36px 18px 36px;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}
.logo img { height: 48px; width: auto; }
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-main { font-size: 24px; font-weight: 700; color: #2176ff; letter-spacing: -0.5px; }
.logo-accent { color: #fa4e29; }
.logo-desc { font-size: 12px; color: #7b8aaf; font-weight: 400; }
.main-nav { display: flex; gap: 32px; }
.nav-link {
    font-size: 17px; font-weight: 500; color: #384868;
    padding: 4px 0; border-bottom: 2px solid transparent; transition: .2s;
    position: relative;
}
.nav-link.active, .nav-link:hover {
    color: #2176ff;
    border-bottom: 2px solid #2176ff;
    background: linear-gradient(to top, #eaf2fb 60%, transparent 100%);
    border-radius: 2px 2px 0 0;
}
.search-form {
    display: flex; align-items: center;
    background: #f3f8fc; border-radius: 24px;
    box-shadow: 0 1px 4px rgba(50,90,200,0.03);
    border: 1px solid #e3eaf6;
    transition: box-shadow .2s, border .2s;
}
.search-form:focus-within {
    box-shadow: 0 0 0 2px #d8e8fd;
    border: 1.5px solid #b3cfff;
}
.search-input {
    border: none; outline: none; background: none;
    font-size: 16px; padding: 9px 15px 9px 16px;
    min-width: 180px;
    color: #252c37;
}
.search-input::placeholder {
    color: #a1adc6;
    font-size: 15px;
    letter-spacing: 0.1px;
}
.search-btn {
    background: none; border: none; color: #2176ff;
    font-size: 20px; padding: 0 14px; cursor: pointer;
    transition: background .15s;
    border-radius: 50%;
    height: 38px; width: 38px;
    display: flex; align-items: center; justify-content: center;
}
.search-btn:active { background: #e8effa; }
.search-btn::before { content: "🔍"; }

/* Адаптив */
@media (max-width: 1100px) {
    .header-main { padding: 14px 18px; }
    .main-nav { gap: 15px; }
}
@media (max-width: 700px) {
    .header-main { flex-direction: column; align-items: stretch; gap: 8px; padding: 10px 6px; }
    .logo img { height: 32px; }
    .logo-main { font-size: 16px; }
    .logo-desc { font-size: 8.5px; }
    .main-nav { gap: 7px; }
    .nav-link { font-size: 13px; padding: 3px 0; }
    .search-input { min-width: 70px; font-size: 13px; padding: 7px 9px 7px 11px; }
    .search-btn { font-size: 17px; height: 32px; width: 32px; }
}
.footer {
    width: 100%;
    background: #232e3e;
    color: #fff;
    margin-top: 40px;
    border-top: 2px solid #e8effa;
    font-size: 15px;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 36px 22px 36px;
    flex-wrap: wrap;
    gap: 48px;
}
.footer-block {
    min-width: 220px;
    max-width: 330px;
    margin-bottom: 20px;
}
.footer-logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    gap: 10px;
    margin-bottom: 9px;
}
.footer-logo img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}
.logo-accent { color: #fa4e29; }
.footer-desc {
    color: #c1cadd;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.footer-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: .3px;
}
.footer-block ul {
    list-style: none;
    margin: 0; padding: 0;
}
.footer-block ul li {
    margin-bottom: 6px;
}
.footer-block a {
    color: #aac8ff;
    transition: color .2s;
    font-size: 15px;
}
.footer-block a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-contact div {
    margin-bottom: 5px;
    color: #c1cadd;
    font-size: 15px;
}
.footer-contact a {
    color: #aac8ff;
    text-decoration: none;
}
.footer-contact a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid #334157;
    padding: 12px 36px;
    text-align: center;
    color: #a9b6d3;
    font-size: 14px;
    background: #1d2531;
}
@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        padding: 30px 16px 14px 16px;
        gap: 18px;
    }
    .footer-block {
        max-width: 100%;
        min-width: 0;
    }
}
@media (max-width: 500px) {
    .footer-main {
        padding: 22px 4vw 10px 4vw;
        gap: 12px;
    }
    .footer-logo img { width: 28px; height: 28px; }
}
/* hero */
.hero-block {
    position: relative;
    display: flex; align-items: center; justify-content: flex-start;
    min-height: 410px; background: #e8f2fd;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
    margin-bottom: 36px;
    padding: 0 0 0 5vw;
}
.hero-bg {
    position: absolute; left: 0; top: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 60% 20%, #2176ff2a 0%, #e8f2fd 80%);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 540px;
    padding: 40px 0 40px 0;
}
.hero-content h1 {
    font-size: 38px; font-weight: 700; color: #232e3e; margin-bottom: 20px;
}
.hero-desc {
    font-size: 19px; color: #32476b; margin-bottom: 30px; line-height: 1.5;
}
.hero-btn {
    display: inline-block; background: #2176ff; color: #fff;
    padding: 13px 32px; font-size: 17px; border-radius: 24px;
    font-weight: 600; transition: background .2s;
    box-shadow: 0 2px 10px #2176ff13;
}
.hero-btn:hover { background: #194a90; }
.hero-img {
    position: absolute; right: 0; bottom: 0;
    height: 420px; max-width: 48vw; z-index: 2;
    pointer-events: none; user-select: none;
}
@media (max-width: 900px) {
    .hero-content h1 { font-size: 26px; }
    .hero-desc { font-size: 15px; }
    .hero-img { height: 220px; max-width: 52vw; }
    .hero-block { min-height: 220px; }
}
@media (max-width: 600px) {
    .hero-block { flex-direction: column; padding: 0 2vw 0 2vw; min-height: 110px; }
    .hero-img { position: static; width: 100%; height: 120px; margin-bottom: 8px; }
    .hero-content { padding: 24px 0 10px 0; }
}

/* Разделы главной */
.index-section {
    max-width: 1240px;
    margin: 0 auto 54px auto;
    padding: 0 24px;
}
.index-section h2 {
    font-size: 28px;
    color: #232e3e;
    font-weight: 700;
    margin-bottom: 26px;
    letter-spacing: -0.3px;
}

/* Популярные категории */
.popular-section .popular-cards {
    display: flex; gap: 30px; flex-wrap: wrap; justify-content: flex-start;
}
.popular-card {
    display: flex; flex-direction: column; align-items: center; 
    background: #fff; border-radius: 18px; box-shadow: 0 1px 7px #2176ff09;
    padding: 28px 23px 22px 23px; text-align: center;
    min-width: 140px; max-width: 160px; width: 18vw;
    transition: box-shadow .17s, transform .18s;
    font-size: 16px; color: #2b3854;
    font-weight: 500; margin-bottom: 10px;
}
.popular-card img { width: 60px; height: 60px; margin-bottom: 13px; }
.popular-card:hover {
    box-shadow: 0 4px 20px #2176ff17;
    transform: translateY(-4px) scale(1.03);
    color: #2176ff;
}

/* Новости */
.news-list {
    display: flex; gap: 30px; flex-wrap: wrap;
}
.news-card {
    display: flex; background: #fff; border-radius: 16px;
    box-shadow: 0 1px 8px #2176ff12;
    overflow: hidden; min-width: 260px; max-width: 340px; flex:1 1 260px;
    transition: box-shadow .18s, transform .18s;
    text-decoration: none; color: inherit;
}
.news-card img { width: 100px; height: 100px; object-fit: cover; }
.news-card > div { padding: 14px 16px; display: flex; flex-direction: column; justify-content: center; }
.news-title { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.news-meta { font-size: 13px; color: #8593b1; }
.news-card:hover { box-shadow: 0 4px 18px #2176ff23; transform: translateY(-3px) scale(1.03); }
.news-more { margin-top: 19px; }
.news-more-btn {
    display: inline-block; background: #2176ff;
    color: #fff; border-radius: 20px; padding: 10px 32px;
    font-weight: 600; font-size: 15px; transition: background .2s;
    box-shadow: 0 1px 8px #2176ff14;
}
.news-more-btn:hover { background: #194a90; }

/* О портале */
.about-inner {
    display: flex; align-items: flex-start; gap: 40px;
    background: #fff; border-radius: 24px;
    box-shadow: 0 2px 14px #2176ff10;
    padding: 32px 34px; flex-wrap: wrap;
}
.about-text { flex: 2; }
.about-text ul { margin-top: 12px; margin-bottom: 0; padding-left: 20px; color: #40537e; }
.about-img { flex: 1; min-width: 200px; display: flex; justify-content: center; }
.about-img img { width: 220px; height: auto; border-radius: 14px; box-shadow: 0 2px 12px #2176ff13; }
@media (max-width: 800px) {
    .about-inner { flex-direction: column; gap: 18px; padding: 20px 10px; }
    .about-img img { width: 120px; }
}

/* Преимущества */
.benefits-list {
    display: flex; gap: 38px; flex-wrap: wrap;
    justify-content: flex-start;
}
.benefit-card {
    display: flex; flex-direction: column; align-items: center;
    background: #fff; border-radius: 17px;
    box-shadow: 0 1px 8px #2176ff0b;
    padding: 26px 24px 16px 24px;
    min-width: 170px; max-width: 200px; text-align: center;
    margin-bottom: 10px; font-size: 16px; color: #2b3854; font-weight: 500;
}
.benefit-card img { width: 54px; height: 54px; margin-bottom: 13px; }

/* Отзывы */
.reviews-list {
    display: flex; gap: 30px; flex-wrap: wrap;
}
.review-card {
    background: #fff; border-radius: 15px; box-shadow: 0 1px 8px #2176ff12;
    padding: 22px 18px 18px 18px; flex: 1 1 220px; min-width: 220px; max-width: 320px;
    font-size: 16px; color: #30456e; margin-bottom: 8px;
}
.review-text { margin-bottom: 13px; }
.review-author { color: #7b93b2; font-size: 14px; font-weight: 500; }

/* FAQ */
.faq-list { margin-top: 0; }
.faq-item {
    background: #fff; border-radius: 13px; box-shadow: 0 1px 7px #2176ff0a;
    padding: 18px 16px 14px 16px; margin-bottom: 14px;
}
.faq-q { font-weight: 600; color: #232e3e; margin-bottom: 8px; }
.faq-a { color: #546e94; font-size: 15px; }

/* Подписка */
.subscribe-section {
    margin-top: 32px; margin-bottom: 48px;
}
.subscribe-inner {
    display: flex; align-items: center; justify-content: space-between;
    background: #2176ff;
    color: #fff; border-radius: 18px;
    padding: 34px 40px; box-shadow: 0 3px 12px #2176ff15;
    gap: 38px; flex-wrap: wrap;
}
.subscribe-text h2 { margin: 0 0 10px 0; color: #fff; }
.subscribe-text p { margin: 0 0 0 0; }
.subscribe-form {
    display: flex; gap: 10px;
}
.subscribe-form input[type="email"] {
    border: none; border-radius: 19px; padding: 12px 19px;
    font-size: 15px; outline: none;
    color: #252c37;
    min-width: 180px;
}
.subscribe-form button {
    background: #fa4e29; color: #fff; border: none;
    border-radius: 19px; padding: 12px 26px;
    font-size: 15px; font-weight: 600; cursor: pointer;
    transition: background .2s;
}
.subscribe-form button:hover { background: #d03e1e; }
@media (max-width: 800px) {
    .subscribe-inner { flex-direction: column; align-items: stretch; gap: 12px; padding: 20px 8px; }
}
.page-title {
    max-width: 1200px;
    margin: 0 auto 32px auto;
    padding: 0 24px;
}
.page-title h1 {
    font-size: 34px; font-weight: 800; color: #232e3e; margin-bottom: 3px; letter-spacing: -1px;
}
.page-title .subtitle {
    font-size: 18px; color: #7b93b2; font-weight: 500; margin-bottom: 0; margin-top: 6px;
}
.news-layout {
    display: flex; gap: 38px; max-width: 1240px; margin: 0 auto 50px auto; padding: 0 24px;
}
.news-main { flex: 3; min-width: 0; }
.news-sidebar { flex: 1.1; min-width: 250px; max-width: 320px; display: flex; flex-direction: column; gap: 30px; }

/* Главная аналитика недели */
.news-card-lg {
    display: flex; flex-direction: column; background: #fff; border-radius: 22px;
    box-shadow: 0 3px 22px #2176ff12; padding: 34px 38px 30px 38px; margin-bottom: 40px;
}
.news-card-lg img {
    width: 100%; max-width: 540px; height: 210px; object-fit: cover;
    border-radius: 15px; margin-bottom: 24px;
    background: #eaf2ff;
}
.news-card-lg-body { max-width: 780px; }
.news-card-lg-body h2 {
    font-size: 28px; color: #232e3e; font-weight: 800; margin: 0 0 8px 0;
}
.news-meta {
    font-size: 14px; color: #9eb4d1; margin-bottom: 12px;
}
.news-lead {
    font-size: 18px; color: #3a4667; margin-bottom: 19px; font-weight: 500;
}

/* Список новостей */
.news-list {
    display: flex; flex-wrap: wrap; gap: 25px 28px; margin-bottom: 38px;
}
.news-card {
    background: #fff; border-radius: 17px; box-shadow: 0 1px 10px #2176ff13;
    display: flex; flex-direction: column; max-width: 310px; width: 100%; flex: 1 1 260px;
    overflow: hidden; transition: box-shadow .14s, transform .13s;
}
.news-card img { width: 100%; height: 120px; object-fit: cover; background: #dbeaff; }
.news-body { padding: 17px 16px 18px 16px; display: flex; flex-direction: column; gap: 6px; }
.news-title { font-size: 16px; font-weight: 700; color: #26324e; margin-bottom: 3px; }
.news-date { font-size: 13px; color: #9eb4d1; margin-bottom: 4px; }
.news-snippet { font-size: 15px; color: #4b5478; margin-bottom: 7px; }
.news-link { color: #2176ff; font-weight: 600; font-size: 14px; margin-top: 2px; text-decoration: underline; }
.news-link:hover { color: #fa4e29; }

/* Инфобаннер */
.infobanner {
    display: flex; align-items: center; gap: 24px;
    background: #f6f7fb; border-radius: 16px; margin: 36px 0 26px 0; padding: 18px 20px;
    box-shadow: 0 1px 8px #2176ff07;
}
.infobanner img { width: 96px; height: 96px; border-radius: 10px; object-fit: cover; background: #e3eefe; }
.infobanner-text { font-size: 16px; color: #32476b; }
.infobanner-text span { color: #2176ff; font-weight: 600; font-size: 15px; }

/* FAQ */
.faq-section { margin-top: 44px; margin-bottom: 20px; }
.faq-section h3 { font-size: 21px; color: #232e3e; font-weight: 700; margin-bottom: 15px; }
.faq-list { margin: 0; }
.faq-item {
    background: #fff; border-radius: 13px; box-shadow: 0 1px 7px #2176ff0a;
    padding: 16px 16px 11px 16px; margin-bottom: 10px;
}
.faq-q { font-weight: 600; color: #232e3e; margin-bottom: 7px; }
.faq-a { color: #546e94; font-size: 15px; }

/* Архив */
.news-archive-link { margin: 24px 0 0 0; }
.news-archive-link a {
    color: #2176ff; text-decoration: underline; font-size: 15px; font-weight: 500;
    transition: color .16s;
}
.news-archive-link a:hover { color: #fa4e29; }

/* Sidebar */
.sidebar-block { background: #fff; border-radius: 13px; padding: 19px 17px 17px 17px; margin-bottom: 0; box-shadow: 0 1px 7px #2176ff0a; }
.sidebar-title { font-size: 15px; color: #2176ff; font-weight: 800; margin-bottom: 11px; }
.sidebar-cats ul, .sidebar-events ul { list-style: none; margin: 0; padding: 0; }
.sidebar-cats li, .sidebar-events li { margin-bottom: 7px; }
.sidebar-cats a, .sidebar-events a { color: #34496c; font-size: 15px; }
.sidebar-cats a:hover, .sidebar-events a:hover { color: #2176ff; text-decoration: underline; }
.tags-list { display: flex; flex-wrap: wrap; gap: 7px; }
.tags-list a {
    background: #f2f7fd; color: #2176ff; border-radius: 7px; padding: 3px 12px;
    font-size: 13px; font-weight: 600; text-decoration: none;
    transition: background .15s, color .15s;
}
.tags-list a:hover { background: #2176ff; color: #fff; }
.sidebar-more {
    display: inline-block; margin-top: 10px; color: #2176ff; font-size: 13px; text-decoration: underline;
}
.sidebar-more:hover { color: #fa4e29; }

@media (max-width: 1100px) {
    .news-layout { flex-direction: column; gap: 20px; }
    .news-sidebar { max-width: 100%; flex-direction: row; flex-wrap: wrap; gap: 14px; }
}
@media (max-width: 700px) {
    .news-card-lg { padding: 14px 5vw 14px 5vw; }
    .news-card-lg img { max-width: 100%; height: 110px; }
    .news-list { gap: 12px; }
    .news-card { max-width: 100%; }
    .infobanner { flex-direction: column; gap: 12px; }
    .news-sidebar { flex-direction: column; gap: 8px; }
}
.nutrition-intro {
    display: flex; gap: 36px; align-items: center;
    max-width: 1200px; margin: 0 auto 38px auto; padding: 0 24px;
    flex-wrap: wrap;
}
.nutrition-intro-text { flex: 2; font-size: 17px; color: #3b4663; }
.nutrition-intro-img { flex: 1; min-width: 200px; }
.nutrition-intro-img img {
    width: 220px; height: auto; border-radius: 17px; box-shadow: 0 2px 14px #2176ff18;
}

.nutrition-categories { max-width: 1220px; margin: 0 auto 56px auto; padding: 0 24px; }
.nutrition-cards {
    display: flex; flex-wrap: wrap; gap: 30px 28px; justify-content: flex-start;
}
.nutrition-card {
    background: #fff; border-radius: 17px; box-shadow: 0 1px 9px #2176ff0e;
    padding: 30px 18px 23px 18px; width: 220px; min-width: 160px; max-width: 250px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: 10px; margin-bottom: 12px;
    transition: box-shadow .15s, transform .15s;
}
.nutrition-card img { width: 52px; height: 52px; margin-bottom: 7px; }
.nutr-title { font-size: 17px; font-weight: 700; color: #26324e; }
.nutr-desc { font-size: 15px; color: #526391; min-height: 42px; }
.nutr-link {
    color: #2176ff; font-weight: 600; font-size: 14px; margin-top: 7px; text-decoration: underline;
}
.nutr-link:hover { color: #fa4e29; }

.nutrition-tip {
    display: flex; align-items: center; gap: 16px; background: #f2f7fd;
    border-radius: 13px; box-shadow: 0 1px 6px #2176ff07;
    max-width: 800px; margin: 0 auto 40px auto; padding: 17px 20px;
    font-size: 16px; color: #32476b;
}
.nutrition-tip img { width: 56px; height: 56px; border-radius: 9px; object-fit: cover; }

.nutrition-table-block { max-width: 1060px; margin: 0 auto 44px auto; padding: 0 24px; }
.nutrition-table-block h2 { font-size: 23px; margin-bottom: 17px; }
.table-scroll { overflow-x: auto; }
.nutrition-table {
    width: 100%; border-collapse: collapse; font-size: 15px; background: #fff;
    border-radius: 9px; overflow: hidden; min-width: 760px;
    box-shadow: 0 1px 8px #2176ff10;
}
.nutrition-table th, .nutrition-table td {
    border: 1px solid #e3eaf6; padding: 10px 12px; text-align: center;
}
.nutrition-table th { background: #f5f7fa; color: #2176ff; font-weight: 700; }
.nutrition-table td { color: #384868; }
.nutrition-table tr:hover { background: #f8faff; }

.nutrition-brands { max-width: 1100px; margin: 0 auto 48px auto; padding: 0 24px; }
.brands-grid {
    display: flex; flex-wrap: wrap; gap: 24px 20px; justify-content: flex-start;
    align-items: center;
}
.brand-logo { background: #fff; border-radius: 13px; box-shadow: 0 1px 8px #2176ff0a;
    padding: 15px 24px; display: flex; align-items: center; justify-content: center;
    min-width: 120px; min-height: 56px;
}
.brand-logo img { max-height: 40px; width: auto; object-fit: contain; }

.nutrition-articles { max-width: 1060px; margin: 0 auto 48px auto; padding: 0 24px; }
.articles-list { display: flex; flex-wrap: wrap; gap: 24px; }
.article-card {
    background: #fff; border-radius: 15px; box-shadow: 0 1px 8px #2176ff11;
    display: flex; align-items: flex-start; gap: 17px; min-width: 240px; max-width: 340px;
    padding: 13px 12px 13px 13px; transition: box-shadow .15s, transform .15s;
    color: inherit; text-decoration: none;
}
.article-card:hover { box-shadow: 0 3px 16px #2176ff18; transform: translateY(-3px) scale(1.03); }
.article-card img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; }
.article-title { font-size: 15.5px; font-weight: 700; color: #232e3e; }
.article-excerpt { font-size: 13.5px; color: #7b93b2; margin-top: 4px; }

.nutrition-faq { max-width: 800px; margin: 0 auto 38px auto; padding: 0 24px; }
.nutrition-faq h3 { font-size: 19px; color: #232e3e; font-weight: 700; margin-bottom: 13px; }
.faq-list { margin: 0; }
.faq-item {
    background: #fff; border-radius: 13px; box-shadow: 0 1px 7px #2176ff0a;
    padding: 14px 16px 9px 16px; margin-bottom: 10px;
}
.faq-q { font-weight: 600; color: #232e3e; margin-bottom: 7px; }
.faq-a { color: #546e94; font-size: 15px; }

@media (max-width: 950px) {
    .nutrition-intro { flex-direction: column; gap: 16px; }
    .nutrition-intro-img img { width: 140px; }
    .nutrition-cards { gap: 16px 10px; }
    .nutrition-card { min-width: 140px; padding: 16px 7px; }
    .brands-grid { gap: 14px 10px; }
}
@media (max-width: 700px) {
    .nutrition-categories, .nutrition-brands, .nutrition-table-block, .nutrition-articles, .nutrition-faq {
        padding: 0 6px;
    }
    .nutrition-card { min-width: 95px; max-width: 98vw; }
    .brands-grid { flex-direction: column; gap: 9px; }
    .articles-list { flex-direction: column; gap: 9px; }
}
.contacts-layout {
    display: flex; gap: 40px;
    max-width: 1200px; margin: 0 auto 50px auto; padding: 0 24px;
}
.contacts-main { flex: 2.1; min-width: 0; }
.contacts-side { flex: 1.1; min-width: 260px; max-width: 340px; display: flex; flex-direction: column; gap: 30px; }

/* Контактные карточки */
.contact-info { display: flex; flex-wrap: wrap; gap: 17px 34px; margin-bottom: 36px; }
.contact-card {
    display: flex; align-items: center; gap: 13px; min-width: 210px;
    background: #fff; border-radius: 12px; box-shadow: 0 1px 8px #2176ff10;
    padding: 17px 18px 14px 13px; font-size: 16px;
}
.contact-card-icon img { width: 34px; height: 34px; }
.contact-label { color: #2176ff; font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.contact-card a, .contact-card span { color: #34496c; font-size: 15.5px; }

/* Форма */
.contact-form-block { background: #fff; border-radius: 16px; box-shadow: 0 1px 10px #2176ff11; padding: 24px 24px 17px 24px; margin-bottom: 40px; }
.contact-form-block h2 { font-size: 20px; color: #232e3e; font-weight: 700; margin-bottom: 14px; }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea {
    border: 1.3px solid #e3eaf6; border-radius: 12px; font-size: 15px;
    padding: 12px 14px; color: #22304a; background: #f8fbfe; outline: none; resize: none;
    transition: border .15s;
}
.contact-form input:focus, .contact-form textarea:focus { border: 1.3px solid #2176ff; }
.contact-form button {
    background: #2176ff; color: #fff; font-size: 15px; font-weight: 700; border: none;
    border-radius: 12px; padding: 13px 0; cursor: pointer; margin-top: 7px; transition: background .16s;
}
.contact-form button:hover { background: #fa4e29; }
.form-note { font-size: 13.5px; color: #7b93b2; margin-top: 10px; }

/* FAQ */
.contact-faq h3 { font-size: 17px; color: #232e3e; font-weight: 700; margin-bottom: 10px; }
.faq-list { margin: 0; }
.faq-item {
    background: #fff; border-radius: 10px; box-shadow: 0 1px 7px #2176ff0a;
    padding: 12px 13px 8px 13px; margin-bottom: 8px;
}
.faq-q { font-weight: 600; color: #232e3e; margin-bottom: 6px; }
.faq-a { color: #546e94; font-size: 15px; }

/* Сайдбар */
.contacts-map-block { background: #fff; border-radius: 13px; padding: 18px 14px 14px 14px; box-shadow: 0 1px 7px #2176ff0a; margin-bottom: 0; }
.map-title { font-size: 14px; color: #2176ff; font-weight: 700; margin-bottom: 8px; }
.contacts-map { width: 100%; max-width: 290px; border-radius: 9px; object-fit: cover; }

.contacts-socials { background: #fff; border-radius: 13px; padding: 18px 14px 12px 14px; box-shadow: 0 1px 7px #2176ff0a; margin-bottom: 0; }
.socials-title { font-size: 14px; color: #2176ff; font-weight: 700; margin-bottom: 7px; }
.socials-list { display: flex; gap: 15px; }
.socials-list a img { width: 33px; height: 33px; border-radius: 50%; background: #f2f7fd; transition: box-shadow .14s; }
.socials-list a:hover img { box-shadow: 0 1px 8px #2176ff25; }

.contacts-about { background: #fff; border-radius: 13px; padding: 16px 14px 12px 14px; box-shadow: 0 1px 7px #2176ff0a; }
.about-title { font-size: 14px; color: #2176ff; font-weight: 700; margin-bottom: 6px; }
.about-desc { color: #32476b; font-size: 15px; }

@media (max-width: 900px) {
    .contacts-layout { flex-direction: column; gap: 22px; }
    .contacts-side { max-width: 100%; flex-direction: row; flex-wrap: wrap; gap: 12px; }
    .contacts-map-block, .contacts-socials, .contacts-about { max-width: 340px; }
}
@media (max-width: 700px) {
    .contacts-layout { padding: 0 5vw; }
    .contacts-side { flex-direction: column; gap: 8px; }
    .contacts-map { max-width: 100%; }
    .contact-card { min-width: 0; }
}
.brand-logo {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 1px 8px #2176ff0a;
    padding: 15px 24px 10px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 70px;
}
.brand-logo svg {
    display: block;
    margin-bottom: 6px;
}
.brand-name {
    display: block;
    margin-top: 3px;
    font-size: 15px;
    font-weight: 600;
    color: #2b3854;
    letter-spacing: 0.2px;
    text-align: center;
    word-break: break-word;
}
.benefit-icon {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 8px auto;
}
.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}
