/**
 * Стили partial'ов нового шаблона услуг.
 * Префикс srv-* — чтобы не конфликтовать с глобальным style.css темы.
 * Mobile-first.
 */

/* ===== Общее ===== */
[data-srv-block] { padding: 48px 0; }
.srv-admin-notice {
    margin: 16px 0;
    padding: 12px 16px;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    border-radius: 4px;
    font-size: 14px;
}

/* ===== Breadcrumbs ===== */
.srv-breadcrumbs { padding: 16px 0; font-size: 14px; }
.srv-breadcrumbs__list {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin: 0; padding: 0; list-style: none;
}
.srv-breadcrumbs__item { color: #666; }
.srv-breadcrumbs__item + .srv-breadcrumbs__item::before {
    content: "→"; margin-right: 8px; color: #999;
}
.srv-breadcrumbs__link { color: #0066cc; text-decoration: none; }
.srv-breadcrumbs__link:hover { text-decoration: underline; }
.srv-breadcrumbs__item--current { color: #333; font-weight: 500; }

/* ===== Hero ===== */
.srv-hero { padding: 48px 0 64px; }
.srv-hero__row { display: flex; flex-direction: column; gap: 32px; }
.srv-hero__title {
    font-size: 28px; line-height: 1.2; margin: 0 0 20px;
    color: #1a1a1a; font-weight: 800; letter-spacing: -0.01em;
    text-transform: none; /* override global h1 uppercase */
}
.srv-hero__subtitle {
    font-size: 18px; line-height: 1.55; color: #555; margin: 0 0 28px; max-width: 560px;
}
.srv-hero__cta {
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 0 0 14px;
}
.srv-hero__btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 30px; font-size: 16px; font-weight: 600;
    border-radius: 8px; cursor: pointer; transition: all .2s ease;
    text-decoration: none; line-height: 1;
}
.srv-hero__btn--primary {
    background: #2c8ee8; color: #fff; border: 2px solid #2c8ee8;
    box-shadow: 0 4px 14px rgba(44, 142, 232, 0.35);
}
.srv-hero__btn--primary:hover {
    background: #1c75c8; border-color: #1c75c8; color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(44, 142, 232, 0.45);
}
.srv-hero__btn--secondary {
    background: transparent; color: #222; border: 2px solid #d0d4da;
}
.srv-hero__btn--secondary:hover {
    border-color: #222; color: #222; transform: translateY(-1px);
}
.srv-hero__btn-arrow {
    display: inline-block; transition: transform .2s ease;
}
.srv-hero__btn:hover .srv-hero__btn-arrow { transform: translateX(3px); }
.srv-hero__offer {
    display: block; color: #777; font-size: 13px; margin: 0 0 28px;
}
.srv-hero__trust {
    list-style: none; padding: 24px 0 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 18px 28px;
    border-top: 1px solid #eaecef;
}
.srv-hero__trust-item {
    color: #444; font-size: 14px; line-height: 1.3;
    display: inline-flex; align-items: baseline; gap: 6px;
}
.srv-hero__trust-num {
    color: #2c8ee8; font-weight: 800; font-size: 20px;
    line-height: 1; letter-spacing: -0.02em;
}

/* Hero — Director card (compact, aligned left under hero row) */
.srv-hero__director {
    display: flex; align-items: center; gap: 20px;
    margin: 40px auto 0 0; padding: 20px 24px;
    background: #fafbfc; border: 1px solid #eaecef; border-radius: 12px;
    max-width: 640px;
}
.srv-hero__director-photo {
    flex: 0 0 72px;
}
.srv-hero__director-photo img {
    width: 72px; height: 72px; border-radius: 50%;
    object-fit: cover; display: block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.srv-hero__director-body { flex: 1; min-width: 0; }
.srv-hero__director-quote {
    margin: 0 0 6px; font-size: 15px; line-height: 1.5;
    color: #333; font-style: italic;
}
.srv-hero__director-quote::before { content: "«"; color: #2c8ee8; margin-right: 2px; }
.srv-hero__director-quote::after  { content: "»"; color: #2c8ee8; margin-left: 2px; }
.srv-hero__director-attribution {
    font-size: 13px; line-height: 1.4; color: #666;
}
.srv-hero__director-name {
    font-weight: 700; color: #1a1a1a;
}
.srv-hero__director-name + .srv-hero__director-role::before {
    content: " · "; color: #999; margin: 0 4px;
}
.srv-hero__director-role { color: #666; }

@media (max-width: 575px) {
    .srv-hero__director { gap: 12px; padding: 14px 16px; }
    .srv-hero__director-photo, .srv-hero__director-photo img { width: 52px; height: 52px; flex-basis: 52px; }
    .srv-hero__director-quote { font-size: 14px; }
}
.srv-hero__media { text-align: center; }
.srv-hero__image {
    max-width: 100%; height: auto; border-radius: 12px;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.25);
}

/* Hero — Cases slider (replaces static image) */
.srv-hero__media--slider { text-align: left; width: 100%; min-width: 0; }
.srv-hero__slider-wrap { position: relative; width: 100%; }
.srv-hero__slider {
    width: 100%;
    height: 500px; /* фиксированная высота слайдера */
    border-radius: 20px;
    overflow: hidden; /* критично: режем всё что выходит за рамки */
    background: #1a1a1a;
}
.srv-hero__slider:not(.slick-initialized) .srv-hero__slide ~ .srv-hero__slide { display: none; }

.srv-hero__slide { padding: 0; height: 500px; }
.srv-hero__slide-card {
    position: relative;
    display: flex; flex-direction: column; justify-content: space-between;
    width: 100%; height: 100%;
    overflow: hidden;
    background: #1a1a1a center/cover no-repeat;
    color: #fff; text-decoration: none;
    padding: 22px;
}
.srv-hero__slide-card:hover { color: #fff; }
@media (max-width: 991px) {
    .srv-hero__slider, .srv-hero__slide { height: 420px; }
}
@media (max-width: 575px) {
    .srv-hero__slider, .srv-hero__slide { height: 360px; }
}
.srv-hero__slide-overlay {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.85) 100%);
}
.srv-hero__slide-badge {
    position: relative; z-index: 2;
    display: inline-flex; flex-direction: column; align-items: flex-start;
    align-self: flex-start;
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 14px; border-radius: 10px;
    max-width: max-content;
}
.srv-hero__slide-badge-label {
    font-size: 10px; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase; font-weight: 600;
}
.srv-hero__slide-badge-text {
    font-size: 15px; font-weight: 700; color: #2c8ee8; margin-top: 2px;
}
.srv-hero__slide-body {
    position: relative; z-index: 2;
}
.srv-hero__slide-title {
    font-size: 18px; line-height: 1.3; font-weight: 700;
    color: #fff; margin: 0 0 16px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden;
}
.srv-hero__slide-cta {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff; font-size: 14px; font-weight: 600;
    transition: background .2s ease;
}
.srv-hero__slide-card:hover .srv-hero__slide-cta {
    background: #2c8ee8; border-color: #2c8ee8;
}

/* Slick slide internals */
.srv-hero__slider .slick-list,
.srv-hero__slider .slick-track,
.srv-hero__slider .slick-slide { height: 100%; }
.srv-hero__slider .slick-slide div { height: auto; }
.srv-hero__slider .slick-list { overflow: hidden; }

/* Стрелки (наши кастомные, отрендерены slick внутри .slick-slider) */
.srv-hero__slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 5;
    width: 44px; height: 44px;
    background: rgba(255, 255, 255, 0.92);
    border: none; border-radius: 50%;
    cursor: pointer;
    font-size: 26px; line-height: 1; color: #222;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: background .2s ease, color .2s ease;
}
.srv-hero__slider-arrow:hover { background: #2c8ee8; color: #fff; }
.srv-hero__slider-arrow--prev { left: 12px; }
.srv-hero__slider-arrow--next { right: 12px; }

/* Точки навигации — снаружи слайдера, под ним */
.srv-hero__slider-dots {
    margin-top: 14px;
    display: flex; justify-content: center; gap: 6px;
}
.srv-hero__slider-dots .slick-dots,
.srv-hero__slider-dots ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: 6px;
}
.srv-hero__slider-dots li { width: auto; height: auto; margin: 0; }
.srv-hero__slider-dots li button {
    width: 28px; height: 4px; padding: 0;
    background: rgba(0, 0, 0, 0.2); border: none; border-radius: 2px;
    cursor: pointer; font-size: 0;
    transition: background .2s ease;
}
.srv-hero__slider-dots li button::before { display: none; }
.srv-hero__slider-dots li.slick-active button { background: #2c8ee8; }

@media (max-width: 767px) {
    .srv-hero__slide-title { font-size: 16px; }
    /* На мобильных стрелки скрываем — слайдер листается свайпом, а кнопки налезали на меню/контент */
    .srv-hero__slider-arrow { display: none; }
}

@media (min-width: 768px) {
    .srv-hero { padding: 64px 0 80px; }
    .srv-hero__row {
        flex-direction: row;
        align-items: flex-start;
        gap: 56px;
    }
    .srv-hero__content { flex: 1 1 56%; min-width: 0; }
    .srv-hero__media { flex: 1 1 44%; }
    .srv-hero__title { font-size: 38px; line-height: 1.15; }
    .srv-hero__subtitle { font-size: 18px; }
}
@media (min-width: 1200px) {
    .srv-hero__title { font-size: 44px; }
}

/* ===== Benefits ===== */
.srv-benefits__title { font-size: 28px; margin: 0 0 32px; text-align: center; }
.srv-benefits__grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
.srv-benefits__card {
    padding: 24px; background: #f8f9fa;
    border-radius: 8px; border: 1px solid #e9ecef;
}
.srv-benefits__icon { margin-bottom: 16px; }
.srv-benefits__icon img { width: 48px; height: 48px; object-fit: contain; }
.srv-benefits__card-title { font-size: 18px; margin: 0 0 12px; color: #222; }
.srv-benefits__card-text { color: #555; line-height: 1.5; margin: 0; }

@media (min-width: 576px) { .srv-benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .srv-benefits__grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== Stages ===== */
.srv-stages__title { font-size: 28px; margin: 0 0 32px; text-align: center; }
.srv-stages__list { list-style: none; margin: 0; padding: 0; }
.srv-stages__item {
    display: flex; gap: 20px; padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.srv-stages__item:last-child { border-bottom: none; }
.srv-stages__number {
    flex: 0 0 48px; width: 48px; height: 48px;
    border-radius: 50%; background: #2c8ee8; color: #fff;
    font-weight: 700; font-size: 20px;
    display: flex; align-items: center; justify-content: center;
}
.srv-stages__body { flex: 1; }
.srv-stages__step-title { font-size: 18px; margin: 0 0 8px; color: #222; }
.srv-stages__duration {
    display: inline-block; margin-bottom: 8px;
    padding: 2px 10px; background: #f0f4ff; color: #0066cc;
    font-size: 12px; border-radius: 12px;
}
.srv-stages__desc { color: #555; line-height: 1.5; margin: 0; }

/* ===== FAQ ===== */
.srv-faq__title { font-size: 28px; margin: 0 0 24px; text-align: center; }
.srv-faq__list { max-width: 800px; margin: 0 auto; }
.srv-faq__item { border-bottom: 1px solid #e9ecef; }
.srv-faq__item:last-child { border-bottom: none; }
.srv-faq__question {
    cursor: pointer; padding: 18px 40px 18px 0;
    list-style: none; position: relative; user-select: none;
}
.srv-faq__question::-webkit-details-marker { display: none; }
.srv-faq__question-text { display: inline; font-size: 17px; margin: 0; color: #222; }
.srv-faq__toggle {
    position: absolute; right: 0; top: 50%;
    width: 24px; height: 24px; transform: translateY(-50%);
}
.srv-faq__toggle::before, .srv-faq__toggle::after {
    content: ""; position: absolute; background: #333;
}
.srv-faq__toggle::before { top: 11px; left: 4px; right: 4px; height: 2px; }
.srv-faq__toggle::after {
    left: 11px; top: 4px; bottom: 4px; width: 2px;
    transition: transform .2s;
}
.srv-faq__item[open] .srv-faq__toggle::after { transform: scaleY(0); }
.srv-faq__answer { padding: 0 0 18px; color: #444; line-height: 1.6; }
.srv-faq__answer p:first-child { margin-top: 0; }
.srv-faq__answer p:last-child { margin-bottom: 0; }

/* ===== TOC ===== */
.srv-toc { background: #f8f9fa; padding: 24px 0; }
.srv-toc__title { font-size: 14px; text-transform: uppercase; color: #666; margin: 0 0 12px; letter-spacing: .5px; }
.srv-toc__list { list-style: decimal inside; padding: 0; margin: 0; columns: 1; }
.srv-toc__item { padding: 4px 0; }
.srv-toc__link { color: #0066cc; text-decoration: none; }
.srv-toc__link:hover { text-decoration: underline; }
@media (min-width: 768px) { .srv-toc__list { columns: 2; column-gap: 32px; } }

/* ===== Numbers ===== */
.srv-numbers__title { font-size: 28px; margin: 0 0 32px; text-align: center; }
.srv-numbers__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 24px; text-align: center; }
.srv-numbers__value { font-size: 42px; font-weight: 700; color: #2c8ee8; line-height: 1; }
.srv-numbers__label { font-size: 16px; color: #222; margin-top: 8px; }
.srv-numbers__caption { font-size: 13px; color: #777; margin-top: 4px; }
@media (min-width: 576px) { .srv-numbers__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .srv-numbers__list { grid-template-columns: repeat(3, 1fr); } }

/* ===== Clients ===== */
.srv-clients__title { font-size: 28px; margin: 0 0 32px; text-align: center; }
.srv-clients__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: center; }
.srv-clients__item { text-align: center; }
.srv-clients__logo { max-width: 140px; max-height: 80px; object-fit: contain; opacity: .7; transition: opacity .2s; }
.srv-clients__logo:hover { opacity: 1; }
@media (min-width: 576px) { .srv-clients__list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .srv-clients__list { grid-template-columns: repeat(6, 1fr); } }

/* ===== Guarantees ===== */
.srv-guarantees__title { font-size: 28px; margin: 0 0 32px; text-align: center; }
.srv-guarantees__grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
.srv-guarantees__card { padding: 24px; background: #fff8e1; border-radius: 8px; border: 1px solid #ffe082; }
.srv-guarantees__icon img { width: 40px; height: 40px; object-fit: contain; margin-bottom: 12px; }
.srv-guarantees__card-title { font-size: 18px; margin: 0 0 12px; color: #222; }
.srv-guarantees__card-text { color: #555; line-height: 1.5; margin: 0; }
@media (min-width: 768px) { .srv-guarantees__grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Certifications ===== */
.srv-certs__title { font-size: 28px; margin: 0 0 32px; text-align: center; }
.srv-certs__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.srv-certs__item { text-align: center; padding: 16px; background: #fff; border: 1px solid #e9ecef; border-radius: 8px; }
.srv-certs__logo { max-width: 100%; max-height: 60px; object-fit: contain; margin-bottom: 8px; display: block; margin-left: auto; margin-right: auto; }
.srv-certs__name { font-size: 13px; color: #555; display: block; }
@media (min-width: 768px) { .srv-certs__list { grid-template-columns: repeat(4, 1fr); } }

/* ===== Pricing ===== */
.srv-pricing__title { font-size: 28px; margin: 0 0 32px; text-align: center; }
.srv-pricing__from, .srv-pricing__range { text-align: center; padding: 32px; background: #f8f9fa; border-radius: 8px; }
.srv-pricing__from-label { display: block; font-size: 16px; color: #555; }
.srv-pricing__from-value, .srv-pricing__range-value { display: block; font-size: 42px; font-weight: 700; color: #2c8ee8; margin-top: 8px; }
.srv-pricing__packages { display: grid; gap: 24px; grid-template-columns: 1fr; }
.srv-pricing__package { padding: 24px; background: #fff; border: 1px solid #e9ecef; border-radius: 8px; display: flex; flex-direction: column; }
.srv-pricing__package--highlighted { border-color: #2c8ee8; box-shadow: 0 8px 24px rgba(44, 142, 232,.15); }
.srv-pricing__package-name { font-size: 20px; margin: 0 0 8px; color: #222; }
.srv-pricing__package-price { font-size: 32px; font-weight: 700; color: #2c8ee8; margin-bottom: 16px; }
.srv-pricing__package-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.srv-pricing__package-features li { padding: 6px 0 6px 24px; position: relative; color: #555; }
.srv-pricing__package-features li::before { content: "✓"; position: absolute; left: 0; color: #28a745; font-weight: 700; }
.srv-pricing__package-btn { background: #2c8ee8; color: #fff; border: none; padding: 12px 24px; border-radius: 4px; cursor: pointer; font-weight: 600; }
@media (min-width: 768px) { .srv-pricing__packages { grid-template-columns: repeat(3, 1fr); } }

/* ===== Calculator placeholder ===== */
.srv-calculator__title { font-size: 28px; margin: 0 0 16px; text-align: center; }
.srv-calculator__intro { text-align: center; color: #555; margin-bottom: 24px; }
.srv-calculator__placeholder { text-align: center; }

/* ===== Cases ===== */
.srv-cases__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.srv-cases__title { font-size: 28px; margin: 0; }
.srv-cases__more { color: #0066cc; text-decoration: none; font-size: 14px; }
.srv-cases__more:hover { text-decoration: underline; }
.srv-cases__grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 24px; }
.srv-cases__item { display: flex; }
.srv-cases__link {
    display: flex; flex-direction: column;
    flex: 1 1 auto;
    color: inherit; text-decoration: none;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.srv-cases__link:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px -18px rgba(20, 50, 110, 0.3);
    border-color: #b3d4f5;
}
.srv-cases__media {
    display: block; width: 100%; padding-top: 58%;
    background-size: cover; background-position: center top;
    background-color: #eef2f7;
}
.srv-cases__media--empty {
    background-image: linear-gradient(135deg, #e8eef6, #f5f8fc);
}
.srv-cases__body {
    display: flex; flex-direction: column; gap: 8px;
    flex: 1 1 auto;
    padding: 16px 18px 18px;
    border-top: 1px solid #f0f2f5;
}
.srv-cases__heading {
    display: block; font-size: 16px; font-weight: 700; color: #16202e;
    line-height: 1.35;
}
.srv-cases__link:hover .srv-cases__heading { color: #2c8ee8; }
.srv-cases__more-link {
    margin-top: auto;
    font-size: 13px; font-weight: 600; color: #2c8ee8;
}
.srv-cases__link:hover .srv-cases__more-link { color: #1565a8; }
@media (min-width: 768px) { .srv-cases__grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Team ===== */
.srv-team__title { font-size: 28px; margin: 0 0 32px; text-align: center; }
.srv-team__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 32px; }
.srv-team__item { display: flex; gap: 20px; align-items: flex-start; }
.srv-team__photo { flex: 0 0 96px; }
.srv-team__photo img { width: 96px; height: 96px; object-fit: cover; border-radius: 50%; }
.srv-team__name { font-size: 18px; margin: 0 0 4px; color: #222; }
.srv-team__role { font-size: 14px; color: #2c8ee8; margin-bottom: 8px; }
.srv-team__bio { color: #555; line-height: 1.5; margin: 0 0 8px; }
.srv-team__socials { list-style: none; padding: 0; margin: 0; display: flex; gap: 12px; }
.srv-team__social { color: #0066cc; text-decoration: none; font-size: 14px; }
@media (min-width: 768px) { .srv-team__list { grid-template-columns: repeat(2, 1fr); } }

/* ===== Testimonials ===== */
.srv-testimonials__title { font-size: 28px; margin: 0 0 32px; text-align: center; }
.srv-testimonials__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 24px; }
.srv-testimonials__card { padding: 24px; background: #fff; border: 1px solid #e9ecef; border-radius: 8px; }
.srv-testimonials__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.srv-testimonials__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.srv-testimonials__name { margin: 0; font-size: 16px; color: #222; }
.srv-testimonials__rating { color: #ffc107; font-size: 14px; }
.srv-testimonials__text { color: #444; line-height: 1.6; }
.srv-testimonials__text p:first-child { margin-top: 0; }
.srv-testimonials__text p:last-child { margin-bottom: 0; }
@media (min-width: 768px) { .srv-testimonials__list { grid-template-columns: repeat(2, 1fr); } }

/* ===== Articles ===== */
.srv-articles__title { font-size: 28px; margin: 0 0 32px; text-align: center; }
.srv-articles__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 16px; }
.srv-articles__link { display: flex; gap: 16px; color: inherit; text-decoration: none; padding: 16px; background: #fff; border: 1px solid #e9ecef; border-radius: 8px; }
.srv-articles__link:hover { border-color: #2c8ee8; }
.srv-articles__thumb { flex: 0 0 120px; height: 80px; background-size: cover; background-position: center; border-radius: 4px; }
.srv-articles__heading { display: block; font-size: 16px; font-weight: 600; color: #222; margin-bottom: 4px; }
.srv-articles__excerpt { display: block; color: #777; font-size: 14px; }
@media (min-width: 768px) { .srv-articles__list { grid-template-columns: repeat(2, 1fr); } }

/* ===== CTA ===== */
.srv-cta__inner { text-align: center; padding: 48px 24px; background: linear-gradient(135deg, #2c8ee8, #1c75c8); color: #fff; border-radius: 12px; }
.srv-cta__title { font-size: 32px; margin: 0 0 16px; color: #fff; }
.srv-cta__subtitle { font-size: 18px; margin: 0 0 24px; opacity: .9; }
.srv-cta__btn { background: #fff; color: #2c8ee8; border: none; padding: 14px 32px; font-size: 16px; font-weight: 600; border-radius: 4px; cursor: pointer; }

/* ===== Related ===== */
.srv-related__title { font-size: 28px; margin: 0 0 32px; text-align: center; }
.srv-related__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 16px; }
.srv-related__link { display: block; padding: 20px; background: #fff; border: 1px solid #e9ecef; border-radius: 8px; color: inherit; text-decoration: none; }
.srv-related__link:hover { border-color: #2c8ee8; }
.srv-related__heading { display: block; font-size: 17px; font-weight: 600; color: #222; margin-bottom: 6px; }
.srv-related__desc { display: block; color: #777; font-size: 14px; }
@media (min-width: 768px) { .srv-related__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .srv-related__list { grid-template-columns: repeat(4, 1fr); } }

/* ===== Description (длинный SEO-контент) ===== */
.srv-description { padding: 56px 0; background: #fff; }
.srv-description__inner {
    max-width: 760px;
    margin: 0 auto;
    color: #333;
    font-size: 17px;
    line-height: 1.7;
}
.srv-description__inner > *:first-child { margin-top: 0; }
.srv-description__inner > *:last-child { margin-bottom: 0; }

/* Headings inside */
.srv-description__inner h2 {
    font-size: 28px;
    line-height: 1.25;
    color: #222;
    margin: 48px 0 16px;
    padding-top: 16px;
    border-top: 3px solid #2c8ee8;
    font-weight: 700;
}
.srv-description__inner h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.srv-description__inner h3 {
    font-size: 21px;
    line-height: 1.3;
    color: #222;
    margin: 32px 0 12px;
    font-weight: 600;
}
.srv-description__inner h4 {
    font-size: 18px;
    color: #222;
    margin: 24px 0 8px;
    font-weight: 600;
}

/* Paragraphs */
.srv-description__inner p { margin: 0 0 18px; }

/* Links */
.srv-description__inner a {
    color: #0066cc;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
.srv-description__inner a:hover { color: #2c8ee8; text-decoration-thickness: 2px; }

/* Lists */
.srv-description__inner ul,
.srv-description__inner ol {
    margin: 8px 0 28px;
    padding: 0;
    list-style: none;
}

/* Bulleted list — feature-card style */
.srv-description__inner ul > li {
    position: relative;
    padding: 14px 18px 14px 22px;
    margin: 0 0 10px;
    background: #fafbfc;
    border-left: 3px solid #2c8ee8;
    border-radius: 0 8px 8px 0;
    line-height: 1.6;
}
.srv-description__inner ul > li::before { display: none; }
.srv-description__inner ul > li > strong:first-child,
.srv-description__inner ul > li > b:first-child {
    color: #1a1a1a;
    font-size: 1.05em;
}

/* Numbered list — big orange circles */
.srv-description__inner ol {
    counter-reset: srv-desc-list;
}
.srv-description__inner ol > li {
    counter-increment: srv-desc-list;
    position: relative;
    padding: 4px 0 4px 56px;
    margin: 0 0 18px;
    min-height: 40px;
    line-height: 1.6;
}
.srv-description__inner ol > li::before {
    content: counter(srv-desc-list);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2c8ee8;
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    line-height: 40px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(44, 142, 232, 0.3);
}
.srv-description__inner ol > li > strong:first-child,
.srv-description__inner ol > li > b:first-child {
    color: #1a1a1a;
    font-size: 1.05em;
}

/* Nested lists keep simple style */
.srv-description__inner li ul,
.srv-description__inner li ol { margin: 10px 0 0; }
.srv-description__inner li ul > li {
    background: transparent;
    border-left: none;
    padding: 0 0 0 22px;
    margin: 0 0 6px;
    border-radius: 0;
}
.srv-description__inner li ul > li::before {
    display: block;
    content: "";
    position: absolute;
    left: 4px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2c8ee8;
}

/* First paragraph after H2 — lead style */
.srv-description__inner h2 + p {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 24px;
}

/* Tables */
.srv-description__inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 28px;
    font-size: 15px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}
.srv-description__inner thead { background: #f8f9fa; }
.srv-description__inner th,
.srv-description__inner td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}
.srv-description__inner th {
    font-weight: 600;
    color: #222;
    border-bottom-width: 2px;
}
.srv-description__inner tbody tr:last-child td { border-bottom: none; }
.srv-description__inner tbody tr:hover { background: #fcfcfd; }

/* Emphasis */
.srv-description__inner strong { color: #222; font-weight: 700; }
.srv-description__inner em { color: #555; }

/* Blockquote — pull-quote стиль с кавычками */
.srv-description__inner blockquote {
    position: relative;
    margin: 32px 0;
    padding: 24px 28px 24px 56px;
    background: #f5faff;
    border-left: 4px solid #2c8ee8;
    border-radius: 0 12px 12px 0;
    color: #2a2a2a;
    font-style: italic;
    font-size: 1.05em;
    line-height: 1.55;
}
.srv-description__inner blockquote::before {
    content: "“";
    position: absolute;
    left: 16px; top: 8px;
    font-size: 48px; line-height: 1;
    color: #2c8ee8; opacity: 0.7;
    font-family: Georgia, serif;
    font-style: normal;
}
.srv-description__inner blockquote p:last-child { margin-bottom: 0; }

/* Hover на карточках списков — subtle interactivity */
.srv-description__inner > ul > li,
.srv-description__inner > ol > li {
    transition: transform .15s ease, box-shadow .15s ease;
}
.srv-description__inner > ul > li:hover {
    background: #fff;
    box-shadow: 0 4px 12px -4px rgba(44, 142, 232, 0.18);
    transform: translateX(2px);
}
.srv-description__inner > ol > li:hover .srv-description__inner > ol > li::before,
.srv-description__inner > ol > li:hover::before {
    box-shadow: 0 6px 16px rgba(44, 142, 232, 0.45);
}

/* H3 с левым акцентом (decorative) */
.srv-description__inner h3 {
    position: relative;
    padding-left: 16px;
}
.srv-description__inner h3::before {
    content: "";
    position: absolute;
    left: 0; top: 0.2em;
    bottom: 0.2em;
    width: 4px;
    background: #2c8ee8;
    border-radius: 2px;
}

/* 2-колоночный grid для длинных <ul> (от 6+ элементов на широких экранах) */
@media (min-width: 992px) {
    .srv-description__inner > ul:has(> li:nth-child(6)) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 16px;
        margin: 12px 0 28px;
    }
    .srv-description__inner > ul:has(> li:nth-child(6)) > li {
        margin: 0;
    }
}

/* «Интро» — самый первый параграф в описании, более крупный */
.srv-description__inner > p:first-of-type {
    font-size: 1.1em;
    color: #1a1a1a;
    line-height: 1.55;
}

/* Section dividers — лёгкая декоративная разделительная точка перед H2 */
.srv-description__inner h2:not(:first-child)::before {
    content: "";
    display: block;
    width: 32px; height: 4px;
    background: #2c8ee8;
    border-radius: 2px;
    margin: 0 0 16px;
}
.srv-description__inner h2 {
    border-top: none; /* убираем border-top, заменили на декоративный bar */
    padding-top: 0;
    margin-top: 56px;
}

/* Code (на случай терминов в <code>) */
.srv-description__inner code {
    background: #f4f4f6;
    color: #d6336c;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.92em;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

/* HR */
.srv-description__inner hr {
    border: 0;
    height: 1px;
    background: #e9ecef;
    margin: 32px 0;
}

@media (max-width: 767px) {
    .srv-description { padding: 36px 0; }
    .srv-description__inner { font-size: 16px; line-height: 1.65; }
    .srv-description__inner h2 { font-size: 24px; }
    .srv-description__inner h3 { font-size: 19px; }
}

/* ===== Comparison table ===== */
.srv-comparison__title {
    font-size: 28px; line-height: 1.2; font-weight: 800; color: #1a1a1a;
    margin: 0 0 32px; text-align: center; letter-spacing: -0.01em;
}
.srv-comparison__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
}
.srv-comparison__table {
    width: 100%; min-width: 720px;
    border-collapse: separate; border-spacing: 0;
    background: #fff;
    font-size: 15px;
}
.srv-comparison__head {
    padding: 18px 16px;
    text-align: center; vertical-align: middle;
    font-weight: 700; color: #444;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    font-size: 14px;
}
.srv-comparison__head--criterion {
    text-align: left; color: #777; font-weight: 500;
    background: #fff;
}
.srv-comparison__head--us {
    position: relative;
    background: #2c8ee8; color: #fff;
    border-bottom-color: #1c75c8;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.srv-comparison__head-badge {
    display: block;
    margin-top: 4px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}
.srv-comparison__cell-criterion {
    padding: 16px; text-align: left;
    font-weight: 600; color: #222;
    border-bottom: 1px solid #f0f1f3;
    background: #fafbfc;
    min-width: 200px;
}
.srv-comparison__cell {
    padding: 16px; text-align: center;
    color: #555; border-bottom: 1px solid #f0f1f3;
    vertical-align: middle;
}
.srv-comparison__cell--us {
    background: #eef5fd;
    color: #1a1a1a; font-weight: 600;
    border-left: 1px solid #b3d4f5;
    border-right: 1px solid #b3d4f5;
}
.srv-comparison__table tbody tr:last-child .srv-comparison__cell-criterion {
    border-bottom: none;
}
.srv-comparison__table tbody tr:last-child .srv-comparison__cell {
    border-bottom: none;
}
.srv-comparison__table tbody tr:last-child .srv-comparison__cell--us {
    border-bottom: 1px solid #b3d4f5;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.srv-comparison__cell-yes {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: #e6f7ed; color: #28a745;
    font-size: 16px; font-weight: 700;
}
.srv-comparison__cell-no {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: #ffe6e6; color: #dc3545;
    font-size: 14px; font-weight: 700;
}
.srv-comparison__cell--us .srv-comparison__cell-yes {
    background: #fff; color: #2c8ee8;
}
.srv-comparison__cell-empty {
    color: #bbb; font-size: 18px;
}

@media (max-width: 767px) {
    .srv-comparison__title { font-size: 24px; }
    .srv-comparison__head, .srv-comparison__cell-criterion, .srv-comparison__cell { padding: 12px 10px; font-size: 14px; }
    .srv-comparison__head-badge { font-size: 10px; }
}

/* ===== Outcomes (что вы получите) ===== */
.srv-outcomes { background: #fafbfc; }
.srv-outcomes__title {
    font-size: 28px; line-height: 1.2; font-weight: 800; color: #1a1a1a;
    margin: 0 0 12px; text-align: center; letter-spacing: -0.01em;
}
.srv-outcomes__subtitle {
    text-align: center; max-width: 640px; margin: 0 auto 40px;
    color: #555; font-size: 17px; line-height: 1.5;
}
.srv-outcomes__grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 576px) { .srv-outcomes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .srv-outcomes__grid { grid-template-columns: repeat(3, 1fr); } }

.srv-outcomes__item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 22px;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 14px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.srv-outcomes__item:hover {
    transform: translateY(-2px);
    border-color: #2c8ee8;
    box-shadow: 0 12px 24px -12px rgba(44, 142, 232, 0.25);
}
.srv-outcomes__num {
    flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%;
    background: #2c8ee8; color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px;
    box-shadow: 0 4px 10px rgba(44, 142, 232, 0.35);
}
.srv-outcomes__body { flex: 1; min-width: 0; }
.srv-outcomes__item-title {
    margin: 0 0 8px;
    font-size: 17px; line-height: 1.3; font-weight: 700;
    color: #1a1a1a;
}
.srv-outcomes__item-text {
    margin: 0;
    font-size: 14px; line-height: 1.55;
    color: #555;
}

@media (max-width: 767px) {
    .srv-outcomes__title { font-size: 24px; }
    .srv-outcomes__subtitle { font-size: 15px; }
    .srv-outcomes__item { padding: 18px; }
}

/* ===== Calculator wizard ===== */
.srv-calculator { background: #fafbfc; }
.srv-calculator__header { text-align: center; margin: 0 0 32px; }
.srv-calculator__title { font-size: 28px; line-height: 1.2; font-weight: 800; color: #1a1a1a; margin: 0 0 12px; letter-spacing: -0.01em; }
.srv-calculator__intro { max-width: 640px; margin: 0 auto; color: #555; font-size: 17px; line-height: 1.55; }

.srv-calculator__shortcuts {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
    margin: 0 auto 24px; max-width: 720px;
}
.srv-calculator__shortcut {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: 999px; border: none; cursor: pointer;
    background: #2c8ee8; color: #fff; font-weight: 600; font-size: 14px;
    transition: background .2s ease, transform .2s ease;
}
.srv-calculator__shortcut:hover { background: #1c75c8; transform: translateY(-1px); }
.srv-calculator__shortcut--ghost { background: #fff; color: #444; border: 1px solid #d0d4da; }
.srv-calculator__shortcut--ghost:hover { background: #f4f4f6; color: #222; border-color: #888; transform: translateY(-1px); }

.srv-calculator__shell {
    max-width: 880px; margin: 0 auto;
    background: #fff; border: 1px solid #eaecef; border-radius: 20px;
    box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.15);
    padding: 40px 32px;
}

/* Progress bar */
.wizard-progressbar.srv-calculator__progress {
    list-style: none; padding: 0;
    margin: 0 0 32px;
    display: flex; gap: 8px;
    counter-reset: srv-wizard-step;
}
.srv-calculator__progress li {
    flex: 1; height: 6px; background: #eaecef; border-radius: 3px;
    position: relative; transition: background .3s ease;
}
.srv-calculator__progress li.active { background: #2c8ee8; }
.srv-calculator__progress li span { display: none; }

/* Step container */
.srv-calculator__form > fieldset {
    border: none; padding: 0; margin: 0;
}
.srv-calculator__form > fieldset ~ fieldset { display: none; }

.srv-calculator__step-head { margin: 0 0 24px; }
.srv-calculator__step-num {
    display: inline-block;
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: #2c8ee8; margin-bottom: 6px;
}
.srv-calculator__step-title { font-size: 22px; line-height: 1.3; font-weight: 700; color: #1a1a1a; margin: 0; }

/* Options grid */
.srv-calculator__options {
    display: grid; grid-template-columns: 1fr; gap: 12px;
    margin: 0 0 32px;
}
@media (min-width: 720px) { .srv-calculator__options { grid-template-columns: 1fr 1fr; } }

.srv-calculator__option {
    position: relative; display: flex; cursor: pointer;
    padding: 0; margin: 0; /* override bootstrap defaults */
}
.srv-calculator__input {
    position: absolute; opacity: 0; pointer-events: none;
}
.srv-calculator__option-body {
    flex: 1 1 auto;
    display: block; padding: 18px 20px 18px 56px;
    background: #fff; border: 2px solid #e9ecef; border-radius: 12px;
    transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
    position: relative;
}
.srv-calculator__option-body::before,
.srv-calculator__option-body::after { /* override default Bootstrap label markers */
    display: none;
}
.srv-calculator__option-body {
    /* Custom indicator (radio/checkbox circle on the left) */
}
.srv-calculator__option-body::before {
    content: ""; display: block !important;
    position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
    width: 22px; height: 22px;
    border: 2px solid #d0d4da;
    background: #fff;
    transition: border-color .15s ease, background .15s ease;
}
.custom-radio .srv-calculator__option-body::before { border-radius: 50%; }
.custom-checkbox .srv-calculator__option-body::before { border-radius: 4px; }
.srv-calculator__option-body::after {
    content: "";
    position: absolute; left: 26px; top: 50%; transform: translateY(-50%);
    opacity: 0; transition: opacity .15s ease;
}
.custom-radio .srv-calculator__option-body::after {
    width: 10px; height: 10px; border-radius: 50%; background: #fff;
    display: block !important;
}
.custom-checkbox .srv-calculator__option-body::after {
    width: 14px; height: 8px;
    border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff;
    transform: translateY(-65%) rotate(-45deg);
    display: block !important;
}

.srv-calculator__option:hover .srv-calculator__option-body { border-color: #2c8ee8; }
.srv-calculator__input:checked + .srv-calculator__option-body {
    border-color: #2c8ee8; background: #eef5fd;
    box-shadow: 0 4px 14px -6px rgba(44, 142, 232, 0.35);
}
.srv-calculator__input:checked + .srv-calculator__option-body::before {
    border-color: #2c8ee8; background: #2c8ee8;
}
.srv-calculator__input:checked + .srv-calculator__option-body::after { opacity: 1; }

.srv-calculator__option-title {
    display: block; font-weight: 600; font-size: 15px; color: #1a1a1a;
    line-height: 1.35; padding-right: 12px;
}
.srv-calculator__option-price {
    position: absolute; top: 18px; right: 20px;
    color: #2c8ee8; font-weight: 700; font-size: 14px;
}
.srv-calculator__option-desc {
    display: block; margin-top: 4px;
    font-size: 13px; color: #777; line-height: 1.4;
}

/* Navigation */
.srv-calculator__nav {
    display: flex; gap: 12px; align-items: center; justify-content: space-between;
    margin: 24px 0 0;
}
.srv-calculator__btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 24px; border-radius: 8px; border: 2px solid transparent;
    font-weight: 600; font-size: 15px; cursor: pointer; line-height: 1;
    transition: all .2s ease;
}
.srv-calculator__btn--primary {
    background: #2c8ee8; color: #fff; border-color: #2c8ee8;
    box-shadow: 0 4px 12px rgba(44, 142, 232, 0.3);
    margin-left: auto;
}
.srv-calculator__btn--primary:hover:not([disabled]) {
    background: #1c75c8; border-color: #1c75c8;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(44, 142, 232, 0.4);
}
.srv-calculator__btn--primary[disabled] {
    background: #d0d4da; border-color: #d0d4da; box-shadow: none;
    cursor: not-allowed; opacity: 0.6;
}
.srv-calculator__btn--ghost {
    background: transparent; color: #555; border-color: #d0d4da;
}
.srv-calculator__btn--ghost:hover { color: #222; border-color: #555; }

/* Final step — result + form */
.srv-calculator__step--final .srv-calculator__result {
    text-align: center;
    padding: 28px;
    background: linear-gradient(135deg, #eef5fd, #fff);
    border: 1px solid #b3d4f5;
    border-radius: 14px;
    margin: 0 0 28px;
}
.srv-calculator__result-label {
    font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: #2c8ee8; margin: 0 0 8px;
}
.srv-calculator__result-value {
    font-size: 40px; font-weight: 800; color: #1a1a1a;
    line-height: 1; margin: 0 0 8px; letter-spacing: -0.02em;
}
.srv-calculator__result-value #result { color: #2c8ee8; }
.srv-calculator__result-headline {
    font-family: "Montserrat", sans-serif;
    font-size: 22px; font-weight: 800; color: #16202e;
    line-height: 1.3; margin: 0 auto 10px; max-width: 520px;
    letter-spacing: -0.01em;
}
.srv-calculator__result-unit { font-size: 24px; color: #555; font-weight: 700; }
.srv-calculator__result-note {
    font-size: 13px; color: #777;
    display: inline-flex; align-items: center; gap: 6px;
}
.srv-calculator__quest-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; border-radius: 50%;
    background: #eaecef; color: #555;
    font-size: 12px; font-weight: 700;
    cursor: help;
}
.srv-calculator__team {
    margin-top: 16px; padding-top: 16px;
    border-top: 1px dashed #b3d4f5;
    font-size: 14px; color: #444;
    text-align: left;
}
.srv-calculator__team span { font-weight: 700; color: #2c8ee8; }
.srv-calculator__team ul { margin: 8px 0 0; padding-left: 22px; }

.srv-calculator__contact { margin: 0 0 24px; }
.srv-calculator__contact-title {
    font-size: 20px; font-weight: 700; color: #1a1a1a;
    margin: 0 0 8px;
}
.srv-calculator__contact-intro {
    color: #555; font-size: 14px; line-height: 1.5;
    margin: 0 0 24px;
}

.srv-calculator__field { margin: 0 0 18px; }
.srv-calculator__field-label {
    display: block;
    font-size: 13px; font-weight: 600; color: #1a1a1a;
    margin: 0 0 6px;
    text-transform: none;
}
.srv-calculator__required { color: #2c8ee8; }
.srv-calculator__input-text {
    width: 100%; padding: 13px 16px;
    border-radius: 10px; border: 2px solid #e9ecef;
    background: #fff;
    font-size: 15px; line-height: 1.4; color: #1a1a1a;
    transition: border-color .15s ease, box-shadow .15s ease;
    box-sizing: border-box;
}
.srv-calculator__input-text::placeholder { color: #bbb; }
.srv-calculator__input-text:focus {
    outline: none; border-color: #2c8ee8;
    box-shadow: 0 0 0 4px rgba(44, 142, 232, 0.12);
}

.srv-calculator__sposob {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.srv-calculator__sposob > div {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 16px; border-radius: 10px;
    background: #fff; border: 2px solid #e9ecef;
    cursor: pointer;
    font-size: 14px; font-weight: 600; color: #555;
    transition: all .15s ease;
    text-align: center;
}
.srv-calculator__sposob > div img { width: 18px; height: 18px; flex-shrink: 0; }
.srv-calculator__sposob > div:hover { border-color: #2c8ee8; color: #1a1a1a; }
.srv-calculator__sposob > div.active {
    background: #2c8ee8; color: #fff; border-color: #2c8ee8;
    box-shadow: 0 4px 12px rgba(44, 142, 232, 0.3);
}
.srv-calculator__sposob > div.active img { filter: brightness(0) invert(1); }

.srv-calculator__consents { margin: 18px 0 0; }
.srv-calculator__consent {
    display: flex; gap: 10px; align-items: flex-start;
    margin: 0 0 10px;
    font-size: 13px; color: #555; line-height: 1.45;
    cursor: pointer;
    user-select: none;
}
.srv-calculator__consent input[type="checkbox"] {
    flex: 0 0 18px;
    width: 18px; height: 18px; margin: 0;
    accent-color: #2c8ee8;
    margin-top: 1px;
}
.srv-calculator__consent a { color: #0066cc; }
.srv-calculator__consent a:hover { color: #2c8ee8; }

@media (max-width: 575px) {
    .srv-calculator__sposob { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
    .srv-calculator__shell { padding: 24px 18px; border-radius: 14px; }
    .srv-calculator__title { font-size: 24px; }
    .srv-calculator__step-title { font-size: 18px; }
    .srv-calculator__option-body { padding: 14px 16px 14px 48px; }
    .srv-calculator__option-body::before { left: 16px; }
    .srv-calculator__option-body::after { left: 22px; }
    .srv-calculator__option-title { padding-right: 0; }
    .srv-calculator__option-price { position: static; display: block; margin-top: 4px; }
    .srv-calculator__result-value { font-size: 32px; }
}

/* ===== Category — Catalog of services ===== */
.srv-catalog { background: #fff; }
.srv-catalog__section-title {
    font-size: 32px; line-height: 1.15; font-weight: 800; color: #1a1a1a;
    margin: 0 0 12px; text-align: center; letter-spacing: -0.02em;
}
.srv-catalog__section-subtitle {
    text-align: center; max-width: 640px; margin: 0 auto 40px;
    color: #555; font-size: 17px; line-height: 1.55;
}

/* Hero */
.srv-catalog__hero {
    padding: 56px 0 64px;
    background: linear-gradient(180deg, #f5faff 0%, #fff 100%);
    text-align: center;
}
.srv-catalog__hero-eyebrow {
    display: inline-block; padding: 6px 16px; border-radius: 999px;
    background: rgba(44, 142, 232, 0.12); color: #1565a8;
    font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
    margin: 0 0 20px;
}
.srv-catalog__hero-title {
    font-size: 34px; line-height: 1.1; font-weight: 800; color: #1a1a1a;
    margin: 0 0 20px; letter-spacing: -0.02em;
    text-transform: none;
    max-width: 880px; margin-left: auto; margin-right: auto;
}
.srv-catalog__hero-subtitle {
    max-width: 720px; margin: 0 auto 32px;
    font-size: 18px; line-height: 1.55; color: #444;
}
.srv-catalog__hero-cta {
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: center;
    margin: 0 0 32px;
}
/* На главной hero — 2 колонки, текст слева, поэтому кнопки тоже слева */
.srv-home__hero .srv-catalog__hero-cta { justify-content: flex-start; }
.srv-home__hero .srv-catalog__hero-trust { justify-content: flex-start; }
.srv-catalog__hero-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 30px; border-radius: 8px;
    font-weight: 600; font-size: 16px; line-height: 1;
    text-decoration: none; cursor: pointer; border: 2px solid transparent;
    transition: all .2s ease;
}
.srv-catalog__hero-btn--primary {
    background: #2c8ee8; color: #fff; border-color: #2c8ee8;
    box-shadow: 0 4px 14px rgba(44, 142, 232, 0.35);
}
.srv-catalog__hero-btn--primary:hover {
    background: #1c75c8; border-color: #1c75c8; color: #fff;
    transform: translateY(-1px); box-shadow: 0 6px 18px rgba(44, 142, 232, 0.45);
}
.srv-catalog__hero-btn--ghost {
    background: transparent; color: #222; border-color: #d0d4da;
}
.srv-catalog__hero-btn--ghost:hover {
    border-color: #222; transform: translateY(-1px);
}
.srv-catalog__hero-trust {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 24px 32px; justify-content: center;
    font-size: 14px; color: #555;
}
.srv-catalog__hero-trust li {
    display: inline-flex; align-items: baseline; gap: 6px;
}
.srv-catalog__hero-trust li span {
    color: #2c8ee8; font-weight: 800; font-size: 20px; line-height: 1;
}

@media (min-width: 768px) { .srv-catalog__hero-title { font-size: 44px; } }
@media (min-width: 1200px) { .srv-catalog__hero-title { font-size: 52px; } }

/* Router (сегменты — какая услуга под какую боль) */
.srv-catalog__router { padding: 64px 0; background: #fafbfc; }
.srv-catalog__router-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 22px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) { .srv-catalog__router-grid { grid-template-columns: repeat(2, 1fr); } }
.srv-catalog__router-card {
    background: #fff; border: 1px solid #eaecef; border-radius: 16px;
    padding: 30px 32px 26px;
    border-left: 3px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr auto;
    column-gap: 20px;
    row-gap: 0;
    height: 100%;
}
.srv-catalog__router-card:hover {
    transform: translateY(-3px);
    border-color: rgba(44, 142, 232, 0.25);
    border-left-color: #2c8ee8;
    box-shadow: 0 22px 44px -22px rgba(44, 142, 232, 0.35);
}
.srv-catalog__router-icon {
    grid-column: 1; grid-row: 1;
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(44, 142, 232, 0.18), rgba(44, 142, 232, 0.08));
    font-size: 26px; line-height: 1;
    margin: 0;
    align-self: start;
    box-shadow: 0 6px 14px -6px rgba(44, 142, 232, 0.22);
    flex-shrink: 0;
}
.srv-catalog__router-title {
    grid-column: 2; grid-row: 1;
    align-self: center;
    font-family: "Montserrat", sans-serif;
    font-size: 20px; line-height: 1.3; color: #1a1a1a; font-weight: 800;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.srv-catalog__router-desc {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: start;
    color: #555; font-size: 15px; line-height: 1.6; margin: 0 0 16px;
}
.srv-catalog__router-links {
    grid-column: 1 / -1;
    grid-row: 3;
    align-self: end;
}
.srv-catalog__router-links {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 6px;
}
.srv-catalog__router-links a {
    color: #0066cc; font-weight: 500; font-size: 14px;
    text-decoration: none; padding: 4px 0;
    transition: color .15s ease;
}
.srv-catalog__router-links a:hover { color: #2c8ee8; }

/* Grid catalog */
.srv-catalog__grid-section { padding: 72px 0; }
.srv-catalog__grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) { .srv-catalog__grid { grid-template-columns: repeat(2, 1fr); } }

.srv-catalog__card {
    background: #fff; border: 1px solid #eaecef; border-radius: 16px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.srv-catalog__card:hover {
    transform: translateY(-4px); border-color: #2c8ee8;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(44, 142, 232, 0.1);
}
.srv-catalog__card-link {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr auto auto; /* icon+title | desc (растёт) | meta | more */
    column-gap: 22px;
    row-gap: 0;
    height: 100%;
    padding: 32px 36px 28px;
    text-decoration: none; color: inherit;
}
.srv-catalog__card-link:hover { color: inherit; }
.srv-catalog__card-icon {
    grid-column: 1; grid-row: 1;
    margin: 0;
    align-self: start;
}
.srv-catalog__card-title {
    grid-column: 2; grid-row: 1;
    align-self: center;
    margin: 0 0 18px;
}
.srv-catalog__card-desc {
    grid-column: 1 / -1; grid-row: 2;
    align-self: start;
    margin-top: 6px;
}
.srv-catalog__card-meta {
    grid-column: 1 / -1; grid-row: 3;
}
.srv-catalog__card-more {
    grid-column: 1 / -1; grid-row: 4;
}
.srv-catalog__card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; border-radius: 16px;
    font-size: 30px; line-height: 1;
    margin: 0; /* в grid-режиме margin не нужен */
    background: rgba(44, 142, 232, 0.12);
    flex-shrink: 0;
}
.srv-catalog__card--blue   .srv-catalog__card-icon { background: rgba(0, 102, 204, 0.12); }
.srv-catalog__card--green  .srv-catalog__card-icon { background: rgba(40, 167, 69, 0.12); }
.srv-catalog__card--purple .srv-catalog__card-icon { background: rgba(123, 79, 235, 0.12); }
.srv-catalog__card--pink   .srv-catalog__card-icon { background: rgba(232, 62, 140, 0.12); }
.srv-catalog__card--cyan   .srv-catalog__card-icon { background: rgba(23, 162, 184, 0.12); }
.srv-catalog__card--amber  .srv-catalog__card-icon { background: rgba(255, 193, 7, 0.16); }
.srv-catalog__card--teal   .srv-catalog__card-icon { background: rgba(0, 150, 136, 0.14); }
.srv-catalog__card--red    .srv-catalog__card-icon { background: rgba(220, 53, 69, 0.12); }
.srv-catalog__card-title {
    font-size: 22px; line-height: 1.25; color: #1a1a1a; font-weight: 800;
    margin: 0 0 18px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: -0.015em;
}
.srv-catalog__card-desc {
    color: #555; font-size: 15px; line-height: 1.6; margin: 0 0 22px;
    flex-grow: 1;
    max-width: 520px;
}
.srv-catalog__card-meta {
    margin: 0 0 18px; padding: 14px 16px;
    background: #fafbfc; border-radius: 10px;
    font-size: 13px;
}
.srv-catalog__card-meta-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 4px 0;
}
.srv-catalog__card-meta-row + .srv-catalog__card-meta-row {
    border-top: 1px dashed #eaecef;
}
.srv-catalog__card-meta dt { color: #777; font-weight: 500; margin: 0; }
.srv-catalog__card-meta dd { margin: 0; color: #1a1a1a; font-weight: 700; text-align: right; }
.srv-catalog__card-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: #2c8ee8; font-weight: 600; font-size: 14px;
    margin-top: auto;
}
.srv-catalog__card:hover .srv-catalog__card-more { color: #1c75c8; }
.srv-catalog__card:hover .srv-catalog__card-more span { transform: translateX(4px); transition: transform .2s ease; }

/* Numbers */
.srv-catalog__numbers { padding: 64px 0; background: #1a1a1a; color: #fff; }
.srv-catalog__numbers .srv-catalog__section-title { color: #fff; }
.srv-catalog__numbers-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 24px;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
}
@media (min-width: 768px) { .srv-catalog__numbers-grid { grid-template-columns: repeat(4, 1fr); } }
.srv-catalog__numbers-grid li {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
}
.srv-catalog__numbers-grid li strong {
    display: block; font-size: 48px; line-height: 1; font-weight: 800;
    color: #2c8ee8; letter-spacing: -0.02em; margin: 0 0 8px;
}
.srv-catalog__numbers-grid li span {
    display: block; font-size: 14px; color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Why us */
.srv-catalog__why { padding: 72px 0; }
.srv-catalog__why-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 600px) { .srv-catalog__why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .srv-catalog__why-grid { grid-template-columns: repeat(3, 1fr); } }
.srv-catalog__why-card {
    padding: 24px; background: #fff;
    border: 1px solid #eaecef; border-radius: 14px;
    transition: border-color .2s ease, transform .2s ease;
}
.srv-catalog__why-card:hover { border-color: #2c8ee8; transform: translateY(-2px); }
.srv-catalog__why-icon { display: block; font-size: 36px; line-height: 1; margin: 0 0 14px; }
.srv-catalog__why-title { font-size: 17px; font-weight: 700; color: #1a1a1a; margin: 0 0 8px; }
.srv-catalog__why-desc { color: #555; font-size: 14px; line-height: 1.55; margin: 0; }

/* Process */
.srv-catalog__process { padding: 72px 0; background: #fafbfc; }
.srv-catalog__process-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 18px;
    max-width: 760px; margin: 0 auto;
}
.srv-catalog__process-item {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 24px;
    background: #fff; border: 1px solid #eaecef; border-radius: 14px;
}
.srv-catalog__process-num {
    flex: 0 0 48px; width: 48px; height: 48px; border-radius: 50%;
    background: #2c8ee8; color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 20px;
    box-shadow: 0 6px 14px rgba(44, 142, 232, 0.35);
}
.srv-catalog__process-body { flex: 1; }
.srv-catalog__process-title { font-size: 18px; font-weight: 700; color: #1a1a1a; margin: 0 0 6px; }
.srv-catalog__process-desc { color: #555; font-size: 15px; line-height: 1.55; margin: 0; }

/* FAQ */
.srv-catalog__faq { padding: 72px 0; }
.srv-catalog__faq-list { max-width: 760px; margin: 0 auto; }
.srv-catalog__faq-item {
    background: #fff; border: 1px solid #eaecef; border-radius: 12px;
    margin: 0 0 12px; padding: 0 20px;
    transition: border-color .15s ease;
}
.srv-catalog__faq-item[open] { border-color: #2c8ee8; }
.srv-catalog__faq-q {
    cursor: pointer; padding: 16px 0; font-weight: 700; font-size: 16px; color: #1a1a1a;
    list-style: none;
    position: relative; padding-right: 32px;
}
.srv-catalog__faq-q::-webkit-details-marker { display: none; }
.srv-catalog__faq-q::after {
    content: "+";
    position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    background: #2c8ee8; color: #fff; border-radius: 50%;
    font-size: 16px; font-weight: 700; line-height: 1;
    transition: transform .2s ease;
}
.srv-catalog__faq-item[open] .srv-catalog__faq-q::after { content: "−"; }
.srv-catalog__faq-a {
    padding: 0 0 18px;
    color: #444; font-size: 15px; line-height: 1.6;
}
.srv-catalog__faq-a p { margin: 0; }

/* CTA final */
.srv-catalog__cta-final { padding: 64px 0; }
.srv-catalog__cta-inner {
    background: linear-gradient(135deg, #2c8ee8, #1c75c8);
    color: #fff;
    padding: 56px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 30px 60px -30px rgba(44, 142, 232, 0.5);
}
.srv-catalog__cta-title { font-size: 28px; line-height: 1.2; font-weight: 800; color: #fff; margin: 0 0 14px; letter-spacing: -0.01em; }
.srv-catalog__cta-subtitle { max-width: 640px; margin: 0 auto 28px; font-size: 17px; line-height: 1.55; color: rgba(255, 255, 255, 0.9); }
.srv-catalog__cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 36px; border-radius: 10px;
    background: #fff; color: #2c8ee8; border: none; cursor: pointer;
    font-weight: 700; font-size: 16px; line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease;
}
.srv-catalog__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 600px) {
    .srv-catalog__section-title { font-size: 24px; }
    .srv-catalog__hero { padding: 40px 0 48px; }
    .srv-catalog__cta-inner { padding: 36px 22px; }
    .srv-catalog__cta-title { font-size: 22px; }
    .srv-catalog__numbers-grid li strong { font-size: 36px; }
}

/* ===== Home — Cases / Team / Blog ===== */
.srv-home__cases-head {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px; margin: 0 0 32px;
}
.srv-home__cases-head .srv-catalog__section-title { text-align: left; margin: 0; }
.srv-home__cases-all {
    display: inline-flex; align-items: center; gap: 6px;
    color: #2c8ee8; font-weight: 600; font-size: 15px; text-decoration: none;
    padding: 8px 16px; border-radius: 8px;
    border: 1px solid rgba(44, 142, 232, 0.2);
    transition: all .2s ease;
}
.srv-home__cases-all:hover { background: #2c8ee8; color: #fff; border-color: #2c8ee8; transform: translateY(-1px); }

.srv-home__cases { padding: 72px 0; background: #fafbfc; }
.srv-home__cases-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 24px; grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .srv-home__cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .srv-home__cases-grid { grid-template-columns: repeat(3, 1fr); } }
.srv-home__case-link {
    display: block; height: 100%;
    background: #fff; border: 1px solid #eaecef; border-radius: 16px;
    overflow: hidden; text-decoration: none; color: inherit;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.srv-home__case-link:hover {
    border-color: #2c8ee8; color: inherit; transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.15);
}
.srv-home__case-media { display: block; height: 220px; background-size: cover; background-position: center; background-color: #1a1a1a; }
.srv-home__case-body { display: block; padding: 22px; }
.srv-home__case-label {
    display: inline-block; padding: 4px 10px; border-radius: 999px;
    background: rgba(44, 142, 232, 0.12); color: #1565a8;
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; margin: 0 0 10px;
}
.srv-home__case-title { font-size: 17px; line-height: 1.3; font-weight: 700; color: #1a1a1a; margin: 0 0 8px; }
.srv-home__case-excerpt { color: #555; font-size: 14px; line-height: 1.55; margin: 0 0 14px; }
.srv-home__case-more { display: inline-flex; align-items: center; gap: 6px; color: #2c8ee8; font-weight: 600; font-size: 14px; }
.srv-home__case-link:hover .srv-home__case-more span { transform: translateX(4px); transition: transform .2s ease; }

.srv-home__team { padding: 72px 0; }
.srv-home__team-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px)  { .srv-home__team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .srv-home__team-grid { grid-template-columns: repeat(4, 1fr); } }
.srv-home__team-card {
    text-align: center; background: #fff; border: 1px solid #eaecef; border-radius: 14px;
    padding: 20px; transition: border-color .2s ease, transform .2s ease;
}
.srv-home__team-card:hover { border-color: #2c8ee8; transform: translateY(-2px); }
.srv-home__team-photo {
    position: relative;
    display: block; width: 96px; height: 96px; margin: 0 auto 14px;
    border-radius: 50%; background-size: cover; background-position: center top;
    background-color: #eaecef; box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.15);
}
.srv-home__team-name { font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 0 0 4px; }
.srv-home__team-role { display: block; color: #777; font-size: 13px; }

.srv-home__blog { padding: 72px 0; background: #fafbfc; }
.srv-home__blog-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 24px; grid-template-columns: 1fr;
}
@media (min-width: 600px) { .srv-home__blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .srv-home__blog-grid { grid-template-columns: repeat(3, 1fr); } }
.srv-home__blog-link {
    display: block; height: 100%;
    background: #fff; border: 1px solid #eaecef; border-radius: 16px;
    overflow: hidden; text-decoration: none; color: inherit;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.srv-home__blog-link:hover {
    border-color: #2c8ee8; color: inherit; transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.15);
}
.srv-home__blog-media { display: block; height: 180px; background-size: cover; background-position: center; background-color: #eaecef; }
.srv-home__blog-body { display: block; padding: 22px; }
.srv-home__blog-date {
    display: block; font-size: 12px; color: #888;
    text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 8px;
}
.srv-home__blog-title { font-size: 17px; line-height: 1.35; font-weight: 700; color: #1a1a1a; margin: 0 0 10px; }
.srv-home__blog-excerpt { color: #555; font-size: 14px; line-height: 1.55; margin: 0 0 14px; }

@media (max-width: 600px) {
    .srv-home__cases, .srv-home__team, .srv-home__blog { padding: 48px 0; }
    .srv-home__cases-head { flex-direction: column; align-items: flex-start; }
    .srv-home__case-media { height: 180px; }
    .srv-home__blog-media { height: 160px; }
}

/* ===== Home — Hero с 2 колонками + 3 benefits + Founder ===== */
.srv-home__hero {
    padding: 56px 0 64px;
    background: linear-gradient(180deg, #f5faff 0%, #fff 100%);
}
.srv-home__hero-row {
    display: flex; flex-direction: column; gap: 36px;
}
.srv-home__hero-content { min-width: 0; }
.srv-home__hero-title {
    font-size: 28px; line-height: 1.15; margin: 0 0 20px;
    color: #1a1a1a; font-weight: 800; letter-spacing: -0.02em;
    text-transform: none;
}
.srv-home__hero-subtitle {
    font-size: 18px; line-height: 1.55; color: #444; max-width: 560px; margin: 0 0 28px;
}
.srv-home__hero-media { min-width: 0; }
@media (min-width: 992px) {
    .srv-home__hero-row { flex-direction: row; align-items: flex-start; gap: 56px; }
    .srv-home__hero-content { flex: 1 1 52%; }
    .srv-home__hero-media   { flex: 1 1 48%; }
    .srv-home__hero-title { font-size: 38px; }
}
@media (min-width: 1200px) {
    .srv-home__hero-title { font-size: 44px; line-height: 1.1; }
}

/* Benefits — 3 главных выгоды клиента */
.srv-home__benefits { padding: 64px 0; }
.srv-home__benefits-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 20px; grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .srv-home__benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.srv-home__benefit {
    padding: 28px;
    background: #fff; border: 1px solid #eaecef; border-radius: 14px;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.srv-home__benefit:hover {
    border-color: #2c8ee8; transform: translateY(-3px);
    box-shadow: 0 16px 32px -16px rgba(44, 142, 232, 0.25);
}
.srv-home__benefit-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(44, 142, 232, 0.12);
    font-size: 28px; line-height: 1; margin: 0 0 16px;
}
.srv-home__benefit-title { font-size: 18px; line-height: 1.3; font-weight: 700; color: #1a1a1a; margin: 0 0 10px; }
.srv-home__benefit-desc  { color: #555; font-size: 15px; line-height: 1.55; margin: 0; }

/* Founder section — E-E-A-T */
.srv-home__founder { padding: 72px 0; background: linear-gradient(180deg, #fff 0%, #f5faff 100%); }
.srv-home__founder-row {
    display: flex; flex-direction: column; gap: 28px; align-items: center;
    max-width: 960px; margin: 0 auto;
}
@media (min-width: 768px) {
    .srv-home__founder-row { flex-direction: row; align-items: center; gap: 48px; }
}
.srv-home__founder-photo {
    flex: 0 0 240px;
}
.srv-home__founder-photo img {
    width: 240px; height: 240px; border-radius: 50%;
    object-fit: cover; display: block;
    box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.2);
    border: 4px solid #fff;
}
.srv-home__founder-body { flex: 1; min-width: 0; text-align: center; }
@media (min-width: 768px) { .srv-home__founder-body { text-align: left; } }
.srv-home__founder-eyebrow {
    display: inline-block; padding: 4px 12px; border-radius: 999px;
    background: rgba(44, 142, 232, 0.12); color: #1565a8;
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; margin: 0 0 12px;
}
.srv-home__founder-name {
    font-size: 28px; line-height: 1.2; font-weight: 800; color: #1a1a1a;
    margin: 0 0 6px; letter-spacing: -0.01em;
}
.srv-home__founder-role { color: #2c8ee8; font-size: 16px; font-weight: 600; margin: 0 0 16px; }
.srv-home__founder-quote {
    margin: 0 0 16px; padding: 0;
    border: none;
    font-size: 18px; line-height: 1.55; color: #1a1a1a;
    font-style: italic; font-weight: 500;
}
.srv-home__founder-bio { color: #555; font-size: 15px; line-height: 1.6; margin: 0 0 18px; }
.srv-home__founder-socials {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: center;
}
@media (min-width: 768px) { .srv-home__founder-socials { justify-content: flex-start; } }
.srv-home__founder-socials a {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 6px 14px; border-radius: 999px;
    background: #fff; border: 1px solid rgba(44, 142, 232, 0.3);
    color: #2c8ee8; font-size: 13px; font-weight: 600; text-decoration: none;
    transition: all .15s ease;
}
.srv-home__founder-socials a:hover {
    background: #2c8ee8; color: #fff; border-color: #2c8ee8;
}

@media (max-width: 767px) {
    .srv-home__founder-photo, .srv-home__founder-photo img { width: 160px; height: 160px; flex-basis: 160px; }
    .srv-home__founder-name { font-size: 22px; }
    .srv-home__founder-quote { font-size: 16px; }
}

/* ===== Home — Niches cloud (тематическая экспертиза) ===== */
.srv-home__niches { padding: 64px 0; background: #fafbfc; }
.srv-home__niches-list {
    list-style: none; padding: 0; margin: 0 0 28px;
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center;
}
.srv-home__niche span {
    display: inline-block; padding: 10px 18px;
    background: #fff; border: 1px solid #eaecef; border-radius: 999px;
    font-size: 14px; color: #444; font-weight: 500;
    transition: all .15s ease;
    cursor: default;
}
.srv-home__niche:hover span {
    background: #2c8ee8; color: #fff; border-color: #2c8ee8;
    transform: translateY(-1px);
}
.srv-home__niches-foot {
    text-align: center; color: #555; font-size: 15px;
    margin: 24px 0 0;
}
.srv-home__niches-cta {
    background: none; border: none; padding: 0;
    color: #2c8ee8; font-weight: 600; cursor: pointer;
    text-decoration: underline; text-underline-offset: 3px;
}
.srv-home__niches-cta:hover { color: #1c75c8; }

/* ===== Home — Telegram nurture card ===== */
.srv-home__telegram { padding: 56px 0; }
.srv-home__telegram-card {
    max-width: 920px; margin: 0 auto;
    display: flex; flex-direction: column-reverse; gap: 28px; align-items: center;
    padding: 36px 32px;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 60px -30px rgba(44, 142, 232, 0.5);
}
@media (min-width: 768px) {
    .srv-home__telegram-card { flex-direction: row; padding: 48px 44px; gap: 40px; }
}
.srv-home__telegram-body { flex: 1; min-width: 0; }
.srv-home__telegram-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; opacity: 0.85;
    margin: 0 0 10px;
}
.srv-home__telegram-title {
    font-size: 26px; line-height: 1.2; font-weight: 800; color: #fff;
    margin: 0 0 12px; letter-spacing: -0.01em;
}
.srv-home__telegram-desc {
    color: rgba(255, 255, 255, 0.9); font-size: 16px; line-height: 1.5;
    margin: 0 0 18px;
}
.srv-home__telegram-topics {
    list-style: none; padding: 0; margin: 0 0 22px;
    display: grid; gap: 8px;
    grid-template-columns: 1fr;
}
@media (min-width: 600px) { .srv-home__telegram-topics { grid-template-columns: repeat(2, 1fr); } }
.srv-home__telegram-topics li {
    font-size: 14px; color: rgba(255, 255, 255, 0.95);
}
.srv-home__telegram-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 10px;
    background: #fff; color: #1565a8; font-weight: 700; font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform .2s ease, box-shadow .2s ease;
}
.srv-home__telegram-btn:hover { color: #1c75c8; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3); }
.srv-home__telegram-icon {
    flex: 0 0 96px;
    color: rgba(255, 255, 255, 0.18);
}
.srv-home__telegram-icon svg { width: 96px; height: 96px; }
@media (min-width: 768px) { .srv-home__telegram-icon { flex-basis: 140px; } .srv-home__telegram-icon svg { width: 140px; height: 140px; } }

@media (max-width: 575px) {
    .srv-home__telegram-card { padding: 28px 22px; }
    .srv-home__telegram-title { font-size: 22px; }
}

/* Team — placeholder с инициалами для имён без фото */
.srv-home__team-photo--placeholder {
    background: linear-gradient(135deg, #2c8ee8, #1565a8);
    color: #fff;
    display: inline-flex !important;
    align-items: center; justify-content: center;
    font-weight: 700; font-size: 32px;
    letter-spacing: 0.04em;
    font-family: "Montserrat", sans-serif;
}
.srv-home__team-photo--placeholder::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    box-shadow: inset 0 -8px 18px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

/* ===== Home — Showcase blocks (300+ компаний / международные / госпроекты) ===== */
.srv-home__showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5faff 0%, #e8f2fd 100%);
}
.srv-home__showcase--intl {
    background: linear-gradient(180deg, #1565a8 0%, #2c8ee8 100%);
    color: #fff;
}
.srv-home__showcase--gov {
    background: linear-gradient(180deg, #e8f2fd 0%, #f5faff 100%);
}
.srv-home__showcase-title {
    text-align: center;
    font-size: 28px; line-height: 1.2; font-weight: 800;
    margin: 0 auto 12px; max-width: 880px;
    color: inherit;
    letter-spacing: -0.01em;
}
.srv-home__showcase-title strong { color: #2c8ee8; }
.srv-home__showcase--intl .srv-home__showcase-title { color: #fff; }
.srv-home__showcase--intl .srv-home__showcase-title strong { color: #ffd166; }
.srv-home__showcase-subtitle {
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px; line-height: 1.5;
    margin: 0 auto 40px; max-width: 640px;
}
.srv-home__showcase--intl .srv-home__showcase-subtitle { color: rgba(255, 255, 255, 0.85); }

.srv-home__showcase-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) {
    .srv-home__showcase-grid--2 { grid-template-columns: repeat(2, 1fr); }
    .srv-home__showcase-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .srv-home__showcase-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Home — SEO-результаты (живые цифры роста по проектам) ===== */
.srv-home__seo-results {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    text-align: center;
}
.srv-home__seo-eyebrow {
    display: inline-block; margin: 0 0 14px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(44, 142, 232, 0.12); color: #1565a8;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
}
.srv-home__seo-grid {
    list-style: none; padding: 0; margin: 36px 0 0;
    display: grid; gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .srv-home__seo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .srv-home__seo-grid { grid-template-columns: repeat(3, 1fr); } }

.srv-home__seo-card {
    position: relative;
    background: #fff; border: 1px solid #e3edf9; border-radius: 16px;
    padding: 26px 24px 22px;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    display: flex; flex-direction: column; gap: 6px;
    text-align: left;
}
.srv-home__seo-card:hover {
    border-color: #2c8ee8;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -22px rgba(44, 142, 232, 0.35);
}
.srv-home__seo-growth {
    font-family: "Montserrat", sans-serif;
    font-size: 44px; font-weight: 800; line-height: 1.05;
    color: #2c8ee8; letter-spacing: -0.02em;
    margin: 0 0 2px;
}
.srv-home__seo-metric {
    font-size: 13px; font-weight: 600; color: #555;
    text-transform: lowercase; letter-spacing: 0.02em;
    margin: 0 0 12px;
}
.srv-home__seo-delta {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; color: #1a1a1a;
    padding: 6px 12px; border-radius: 999px;
    background: #f5f9fe; border: 1px solid #e3edf9;
    align-self: flex-start;
    margin: 0 0 14px;
}
.srv-home__seo-before { color: #888; font-weight: 500; }
.srv-home__seo-arrow  { color: #2c8ee8; font-weight: 700; }
.srv-home__seo-after  { color: #1565a8; font-weight: 700; }
.srv-home__seo-niche {
    font-size: 15px; font-weight: 700; color: #1a1a1a;
    margin: 0;
}
.srv-home__seo-domain {
    font-family: "JetBrains Mono", "Courier New", monospace;
    font-size: 12px; color: #2c8ee8;
    letter-spacing: 0.01em;
    margin: 0 0 8px;
}
.srv-home__seo-note {
    font-size: 13px; line-height: 1.5; color: #555;
    margin: 0;
}
.srv-home__seo-cta {
    margin-top: 32px;
    text-align: center;
}
.srv-home__seo-link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 8px;
    background: #2c8ee8; color: #fff;
    font-weight: 600; font-size: 15px; text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}
.srv-home__seo-link:hover {
    background: #1565a8; color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 600px) {
    .srv-home__seo-results { padding: 56px 0; }
    .srv-home__seo-growth { font-size: 36px; }
}

.srv-home__showcase-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.18);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex; flex-direction: column;
}
.srv-home__showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px -20px rgba(44, 142, 232, 0.35);
}
.srv-home__showcase-card--dark {
    background: #1a2a40;
    color: #fff;
}

/* Mockup — laptop frame с screen */
.srv-home__showcase-mockup {
    padding: 36px 36px 0;
    background: linear-gradient(180deg, #f5faff 0%, #fff 100%);
}
.srv-home__showcase-card--dark .srv-home__showcase-mockup {
    background: linear-gradient(180deg, #243a55 0%, #1a2a40 100%);
}
.srv-home__showcase-mockup-frame {
    display: block;
    background: #2a3548;
    border-radius: 12px 12px 4px 4px;
    padding: 14px 14px 14px;
    position: relative;
}
.srv-home__showcase-mockup-frame::before {
    content: "● ● ●";
    position: absolute;
    top: 4px; left: 12px;
    font-size: 8px; color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
}
.srv-home__showcase-mockup-screen {
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    background-size: cover;
    background-position: center top;
    border-radius: 4px;
    color: #fff;
    overflow: hidden;
    position: relative;
}
.srv-home__showcase-mockup-screen::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}
/* Скриншоты сайтов: убираем градиентный фон и декоративный overlay */
.srv-home__showcase-mockup-screen--shot {
    background-image: none;
    background-color: #fff;
}
.srv-home__showcase-mockup-screen--shot::before { display: none; }
.srv-home__showcase-tag {
    position: relative; z-index: 2;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.92);
    color: #1565a8;
    border-radius: 999px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.srv-home__showcase-body {
    padding: 26px 28px 28px;
    flex: 1;
    display: flex; flex-direction: column;
}
.srv-home__showcase-name {
    font-size: 20px; line-height: 1.25; font-weight: 800;
    margin: 0 0 10px; color: #1a1a1a;
}
.srv-home__showcase-card--dark .srv-home__showcase-name { color: #fff; }
.srv-home__showcase-desc {
    color: #555; font-size: 14px; line-height: 1.55;
    margin: 0 0 16px;
    flex: 1;
}
.srv-home__showcase-card--dark .srv-home__showcase-desc { color: rgba(255, 255, 255, 0.75); }
.srv-home__showcase-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: #2c8ee8; font-weight: 600; font-size: 14px;
    text-decoration: none;
    transition: color .15s ease, transform .15s ease;
}
.srv-home__showcase-link:hover {
    color: #1c75c8; transform: translateX(2px);
}
.srv-home__showcase-card--dark .srv-home__showcase-link { color: #6cb3ff; }

@media (max-width: 600px) {
    .srv-home__showcase { padding: 48px 0; }
    .srv-home__showcase-title { font-size: 22px; }
    .srv-home__showcase-mockup { padding: 22px 22px 0; }
    .srv-home__showcase-body { padding: 20px 22px 22px; }
}

/* ===== Home — Отзывы / социальные доказательства ===== */
.srv-home__reviews {
    padding: 80px 0;
    background: #fafbfc;
}
.srv-home__reviews-row {
    margin: 40px 0 0;
    display: grid; gap: 28px;
    grid-template-columns: 1fr;
}
@media (min-width: 992px) {
    .srv-home__reviews-row { grid-template-columns: 1.4fr 1fr; align-items: stretch; }
}

/* ТВ-карточка — главный блок отзыва */
/* Колонка с 2 видео-отзывами в reviews-блоке */
.srv-home__reviews-videos {
    display: grid; gap: 18px;
    grid-template-columns: 1fr;
}

.srv-home__reviews-tv {
    position: relative;
    display: flex; flex-direction: column; justify-content: flex-end;
    min-height: 240px; padding: 28px;
    border-radius: 20px; overflow: hidden;
    text-decoration: none; color: #fff;
    /* Слои сверху вниз: 1) синий градиент-вуаль (читаемость текста)
                          2) фото из видео (--review-poster, задаётся inline)
                          3) запасной чёрный фон */
    background:
        linear-gradient(115deg, rgba(15, 35, 70, 0.85) 0%, rgba(10, 20, 40, 0.55) 65%, rgba(10, 20, 40, 0.25) 100%),
        var(--review-poster, none) center/cover no-repeat,
        #0e1117;
    box-shadow: 0 24px 50px -25px rgba(20, 30, 60, 0.5);
    transition: transform .25s ease, box-shadow .25s ease;
    width: 100%;
    border: 0; cursor: pointer; text-align: left;
    font-family: inherit;
}

/* Вторая карточка — фиолетово-сливовый оттенок, чтобы 2 отзыва не сливались */
.srv-home__reviews-tv--alt {
    background:
        linear-gradient(115deg, rgba(60, 25, 95, 0.85) 0%, rgba(20, 10, 40, 0.55) 65%, rgba(20, 10, 40, 0.25) 100%),
        var(--review-poster, none) center/cover no-repeat,
        #0e1117;
}

/* Карточка-заглушка пока видео не пришло */
.srv-home__reviews-tv--placeholder {
    cursor: default;
    opacity: 0.92;
}
.srv-home__reviews-tv--placeholder:hover {
    transform: none;
    box-shadow: 0 24px 50px -25px rgba(20, 30, 60, 0.5);
}
.srv-home__reviews-tv--placeholder::before { display: none; }
.srv-home__reviews-tv::before {
    content: "▶";
    position: absolute; top: 28px; right: 32px;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: #fff; color: #1565a8;
    font-size: 18px; border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform .25s ease, background .25s ease;
}
.srv-home__reviews-tv:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 30px 60px -25px rgba(20, 30, 60, 0.6);
}
.srv-home__reviews-tv:hover::before {
    transform: scale(1.08); background: #2c8ee8; color: #fff;
}
.srv-home__reviews-tv-eyebrow {
    display: inline-block; margin: 0 0 14px;
    padding: 5px 12px; border-radius: 999px;
    background: rgba(255, 255, 255, 0.18); color: #fff;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    align-self: flex-start;
}
.srv-home__reviews-tv-title {
    display: block; font-size: 22px; line-height: 1.3; font-weight: 700;
    margin: 0 0 12px; max-width: 480px;
}
.srv-home__reviews-tv-meta {
    display: block; font-size: 13px; opacity: 0.8;
    line-height: 1.5; margin: 0 0 16px;
}
.srv-home__reviews-tv-play {
    display: inline-flex; align-self: flex-start; align-items: center;
    padding: 10px 20px; border-radius: 999px;
    background: #fff; color: #1565a8;
    font-size: 14px; font-weight: 700;
    transition: background .2s ease, color .2s ease;
}

/* Список ссылок на отзывные площадки */
.srv-home__reviews-links {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.srv-home__reviews-link {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px 22px; border-radius: 14px;
    background: #fff; border: 1px solid #eaecef;
    text-decoration: none; color: inherit;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.srv-home__reviews-link:hover {
    border-color: #2c8ee8; color: inherit;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -16px rgba(44, 142, 232, 0.4);
}
.srv-home__reviews-link-icon {
    flex: 0 0 auto;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: #f0f7ff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.srv-home__reviews-link-icon--ya-maps { background: #fff3e0; }
.srv-home__reviews-link-icon--ya-maps::after { content: "Я"; color: #ff5733; font-weight: 900; font-size: 18px; font-family: "Montserrat", sans-serif; }
.srv-home__reviews-link-icon--vk      { background: #e6f0fb; }
.srv-home__reviews-link-icon--vk::after { content: "VK"; color: #0077ff; font-weight: 900; font-size: 13px; font-family: "Montserrat", sans-serif; letter-spacing: 0.5px; }
.srv-home__reviews-link-icon--tg      { background: #e3f4ff; }
.srv-home__reviews-link-icon--tg::after { content: "↗"; color: #2c8ee8; font-weight: 900; font-size: 18px; }
.srv-home__reviews-link-body {
    display: flex; flex-direction: column; gap: 3px; min-width: 0;
}
.srv-home__reviews-link-label {
    font-size: 15px; font-weight: 700; color: #1a1a1a;
}
.srv-home__reviews-link-desc {
    font-size: 13px; line-height: 1.5; color: #555;
    margin: 2px 0 4px;
}
.srv-home__reviews-link-cta {
    font-size: 13px; color: #2c8ee8; font-weight: 600;
}

/* Слайдер скриншотов чат-отзывов */
.srv-home__reviews-chats {
    position: relative;
    margin: 48px 0 0;
}
.srv-home__reviews-chats-title {
    font-size: 18px; font-weight: 700; color: #1a1a1a;
    text-align: center; margin: 0 0 24px;
    font-family: "Montserrat", sans-serif;
}
.srv-home__reviews-chats-slider {
    margin: 0 -10px 0;
}
.srv-home__reviews-chats-slider .slick-track { display: flex; align-items: stretch; }
.srv-home__reviews-chats-slider .slick-slide { height: auto; }
.srv-home__reviews-chats-slider .slick-slide > div { height: 100%; }
.srv-home__reviews-chat {
    padding: 0 10px;
    height: 100%;
}
.srv-home__reviews-chat-link {
    display: flex; align-items: center; justify-content: center;
    height: 360px;
    padding: 16px;
    background: #fff;
    border: 1px solid #eaecef; border-radius: 14px;
    overflow: hidden;
    cursor: zoom-in;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
}
.srv-home__reviews-chat-link:hover {
    border-color: #2c8ee8;
    transform: translateY(-3px);
    box-shadow: 0 18px 36px -22px rgba(44, 142, 232, 0.4);
}
.srv-home__reviews-chat-img {
    max-width: 100%; max-height: 100%;
    width: auto; height: auto;
    object-fit: contain;
    display: block;
}

/* Стрелки слайдера */
.srv-home__reviews-chats-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 4;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: #fff;
    border: 1px solid #e3edf9; border-radius: 50%;
    cursor: pointer;
    font-size: 22px; line-height: 1; color: #1565a8;
    box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.18);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.srv-home__reviews-chats-arrow:hover { background: #2c8ee8; color: #fff; }
.srv-home__reviews-chats-arrow--prev { left: -8px; }
.srv-home__reviews-chats-arrow--next { right: -8px; }
@media (min-width: 768px) {
    .srv-home__reviews-chats-arrow--prev { left: -22px; }
    .srv-home__reviews-chats-arrow--next { right: -22px; }
}

/* Точки навигации */
.srv-home__reviews-chats-slider .slick-dots {
    position: relative;
    margin: 20px 0 0; padding: 0;
    list-style: none;
    display: flex !important; justify-content: center; gap: 6px;
}
.srv-home__reviews-chats-slider .slick-dots li { width: auto; height: auto; margin: 0; }
.srv-home__reviews-chats-slider .slick-dots li button {
    width: 22px; height: 4px; padding: 0;
    background: rgba(0, 0, 0, 0.15); border: none; border-radius: 2px;
    cursor: pointer; font-size: 0;
    transition: background .2s ease, width .2s ease;
}
.srv-home__reviews-chats-slider .slick-dots li button::before { display: none; }
.srv-home__reviews-chats-slider .slick-dots li.slick-active button {
    background: #2c8ee8; width: 32px;
}

@media (max-width: 600px) {
    .srv-home__reviews-chat-link { height: 320px; }
    .srv-home__reviews-chats-title { font-size: 16px; }
}

/* Агрегатные показатели доверия */
.srv-home__reviews-stats {
    list-style: none; padding: 0; margin: 40px 0 0;
    display: grid; gap: 18px;
    grid-template-columns: 1fr;
    text-align: center;
}
@media (min-width: 700px) {
    .srv-home__reviews-stats { grid-template-columns: repeat(3, 1fr); }
}
.srv-home__reviews-stats li {
    padding: 24px 18px;
    background: #fff; border: 1px solid #eaecef; border-radius: 14px;
}
.srv-home__reviews-stats strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 38px; font-weight: 800; color: #2c8ee8;
    line-height: 1; margin: 0 0 8px;
}
.srv-home__reviews-stats span {
    display: block;
    font-size: 13px; line-height: 1.5; color: #555;
}

@media (max-width: 600px) {
    .srv-home__reviews { padding: 56px 0; }
    .srv-home__reviews-tv { min-height: 280px; padding: 24px; }
    .srv-home__reviews-tv-title { font-size: 18px; }
    .srv-home__reviews-tv::before { width: 44px; height: 44px; font-size: 14px; top: 20px; right: 22px; }
    .srv-home__reviews-stats strong { font-size: 32px; }
}


/* ===== Home — Музейные проекты (VIP-стенд + 3 проекта) ===== */
.srv-home__culture {
    padding: 88px 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(44, 142, 232, 0.06) 0%, transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    text-align: center;
}
.srv-home__culture-eyebrow {
    display: inline-block; margin: 0 0 14px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(21, 101, 168, 0.1); color: #1565a8;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.srv-home__culture-title {
    font-family: "Montserrat", sans-serif;
    font-size: 34px; line-height: 1.2; font-weight: 800;
    color: #1a1a1a; margin: 0 0 14px; letter-spacing: -0.01em;
}
.srv-home__culture-title strong { color: #2c8ee8; font-weight: 800; }
.srv-home__culture-subtitle {
    font-size: 17px; line-height: 1.55; color: #555;
    max-width: 760px; margin: 0 auto 40px;
}

/* --- VIP-стенд --- */
.srv-home__culture-vips-title {
    font-size: 13px; font-weight: 700;
    color: #777; letter-spacing: 0.12em; text-transform: uppercase;
    margin: 0 0 20px;
}
.srv-home__culture-vips {
    list-style: none; padding: 0; margin: 0 0 56px;
    display: grid; gap: 18px;
    grid-template-columns: 1fr;
    text-align: left;
}
@media (min-width: 640px)  { .srv-home__culture-vips { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .srv-home__culture-vips { grid-template-columns: repeat(4, 1fr); } }

.srv-home__culture-vip {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; padding: 22px 16px;
    background: #fff; border: 1px solid #e3edf9; border-radius: 14px;
    text-align: center;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.srv-home__culture-vip:hover {
    border-color: #2c8ee8; transform: translateY(-3px);
    box-shadow: 0 18px 36px -22px rgba(44, 142, 232, 0.35);
}
.srv-home__culture-vip-avatar {
    flex: 0 0 auto;
    width: 64px; height: 64px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c8ee8, #1565a8);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 22px; font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 16px -6px rgba(44, 142, 232, 0.5);
}
.srv-home__culture-vip-name {
    font-size: 15px; font-weight: 700; color: #1a1a1a;
}
.srv-home__culture-vip-role {
    font-size: 12px; line-height: 1.4; color: #777;
}

/* --- 3 проекта --- */
.srv-home__culture-projects {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 28px;
    grid-template-columns: 1fr;
    text-align: left;
}
@media (min-width: 992px)  { .srv-home__culture-projects { grid-template-columns: repeat(3, 1fr); } }

.srv-home__culture-project {
    background: #fff; border: 1px solid #eaecef; border-radius: 18px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: border-color .2s ease, transform .25s ease, box-shadow .25s ease;
}
.srv-home__culture-project:hover {
    border-color: #2c8ee8;
    transform: translateY(-4px);
    box-shadow: 0 28px 54px -28px rgba(44, 142, 232, 0.32);
}

.srv-home__culture-media {
    position: relative;
    background: #0e1117;
    overflow: hidden;
}

/* Slick-слайдер с фото проекта */
.srv-home__culture-slider {
    width: 100%;
    background: #000;
}
.srv-home__culture-slider .slick-list,
.srv-home__culture-slider .slick-track,
.srv-home__culture-slider .slick-slide,
.srv-home__culture-slider .slick-slide > div { height: 100%; }
.srv-home__culture-slide {
    aspect-ratio: 4 / 3;
    background: #000;
}
.srv-home__culture-slide-link {
    display: block; width: 100%; height: 100%;
    cursor: zoom-in;
    transition: opacity .2s ease;
}
.srv-home__culture-slide-link:hover { opacity: 0.92; }
.srv-home__culture-slide-img {
    display: block; width: 100%; height: 100%;
    background-size: cover; background-position: center;
}
.srv-home__culture-slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 4;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    border: none; border-radius: 50%;
    cursor: pointer;
    font-size: 22px; line-height: 1; color: #222;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background .2s ease, color .2s ease;
}
.srv-home__culture-slider-arrow:hover { background: #2c8ee8; color: #fff; }
.srv-home__culture-slider-arrow--prev { left: 10px; }
.srv-home__culture-slider-arrow--next { right: 10px; }
.srv-home__culture-slider .slick-dots {
    position: absolute; bottom: 10px; left: 0; right: 0;
    z-index: 3;
    display: flex !important; justify-content: center; gap: 6px;
    list-style: none; padding: 0; margin: 0;
}
.srv-home__culture-slider .slick-dots li { width: auto; height: auto; margin: 0; }
.srv-home__culture-slider .slick-dots li button {
    width: 24px; height: 4px; padding: 0;
    background: rgba(255, 255, 255, 0.5); border: none; border-radius: 2px;
    cursor: pointer; font-size: 0;
    transition: background .2s ease, width .2s ease;
}
.srv-home__culture-slider .slick-dots li button::before { display: none; }
.srv-home__culture-slider .slick-dots li.slick-active button { background: #2c8ee8; width: 32px; }

/* Кнопка-плашка «Смотреть видео» — первая в карточке, выровнена в одну линию */
.srv-home__culture-play {
    display: inline-flex; align-items: center; gap: 10px;
    align-self: flex-start;
    margin: 0 0 6px;
    padding: 11px 20px;
    background: #2c8ee8;
    border: none; border-radius: 10px;
    color: #fff; font-size: 14px; font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px -10px rgba(44, 142, 232, 0.6);
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    font-family: inherit;
}
.srv-home__culture-play:hover {
    background: #1565a8; color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -10px rgba(44, 142, 232, 0.7);
}
.srv-home__culture-play-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 10px;
}

/* Видео-модалка */
.srv-home__culture-modal[hidden] { display: none; }
.srv-home__culture-modal {
    position: fixed; inset: 0;
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 4vh 4vw;
}
.srv-home__culture-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(8, 12, 24, 0.85);
    backdrop-filter: blur(6px);
}
.srv-home__culture-modal-dialog {
    position: relative;
    width: 100%; max-width: 1100px;
    background: #0e1117;
    border-radius: 16px; padding: 28px 24px 24px;
    box-shadow: 0 30px 80px -10px rgba(0, 0, 0, 0.6);
}
.srv-home__culture-modal-close {
    position: absolute; top: 8px; right: 14px;
    width: 36px; height: 36px;
    background: transparent; border: none;
    color: #fff; font-size: 32px; line-height: 1;
    cursor: pointer;
    transition: opacity .2s ease, transform .2s ease;
}
.srv-home__culture-modal-close:hover { opacity: 0.7; transform: scale(1.1); }
.srv-home__culture-modal-title {
    color: #fff; font-size: 16px; font-weight: 700;
    margin: 0 36px 14px 0;
    font-family: "Montserrat", sans-serif;
}
.srv-home__culture-modal-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000; border-radius: 10px; overflow: hidden;
}
.srv-home__culture-modal-frame iframe,
.srv-home__culture-modal-frame video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
    display: block;
    object-fit: contain; /* для вертикальных видео — letterbox по бокам, не растягивать */
    background: #000;
}

.srv-home__culture-body {
    padding: 22px 24px 24px;
    display: flex; flex-direction: column; gap: 10px;
    flex: 1;
}
.srv-home__culture-tag {
    display: inline-block;
    padding: 4px 10px; border-radius: 999px;
    background: rgba(44, 142, 232, 0.12); color: #1565a8;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    align-self: flex-start;
}
.srv-home__culture-name {
    font-family: "Montserrat", sans-serif;
    font-size: 19px; line-height: 1.3; font-weight: 800;
    color: #1a1a1a; margin: 0;
}
.srv-home__culture-desc {
    font-size: 14px; line-height: 1.6; color: #555;
    margin: 0;
}
.srv-home__culture-news {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: auto; padding: 10px 14px;
    background: #f5f9fe; border: 1px solid #e3edf9; border-radius: 10px;
    color: #1565a8; font-size: 13px; font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.srv-home__culture-news:hover {
    background: #2c8ee8; border-color: #2c8ee8; color: #fff;
}
.srv-home__culture-news-icon {
    flex: 0 0 auto;
    width: 22px; height: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(44, 142, 232, 0.15);
    font-size: 14px; font-weight: 700;
    transition: background .2s ease;
}
.srv-home__culture-news:hover .srv-home__culture-news-icon {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 600px) {
    .srv-home__culture { padding: 56px 0; }
    .srv-home__culture-title { font-size: 26px; }
    .srv-home__culture-vip-avatar { width: 56px; height: 56px; font-size: 20px; }
}

/* ===== Home — Форма «Узнайте точную стоимость» (адаптация t-f-a.agency) ===== */
.srv-home__quote {
    padding: 80px 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(44, 142, 232, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}
.srv-home__quote-card {
    background: #fff;
    border: 1px solid #e3edf9;
    border-radius: 24px;
    padding: 44px;
    box-shadow: 0 30px 70px -30px rgba(20, 50, 110, 0.18);
    display: grid;
    gap: 48px;
    grid-template-columns: 1fr;
    align-items: start;
}
@media (min-width: 900px) {
    .srv-home__quote-card { grid-template-columns: 1.05fr 1fr; padding: 56px; }
}

/* Левая колонка — текст */
.srv-home__quote-info { min-width: 0; }
.srv-home__quote-eyebrow {
    display: inline-block; margin: 0 0 14px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(44, 142, 232, 0.12); color: #1565a8;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.srv-home__quote-title {
    font-family: "Montserrat", sans-serif;
    font-size: 30px; line-height: 1.18; font-weight: 800;
    color: #1a1a1a; margin: 0 0 14px; letter-spacing: -0.01em;
}
@media (min-width: 900px) { .srv-home__quote-title { font-size: 34px; } }
.srv-home__quote-subtitle {
    font-size: 16px; line-height: 1.55; color: #555;
    margin: 0 0 22px;
}
.srv-home__quote-subtitle strong { color: #2c8ee8; }
.srv-home__quote-perks {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.srv-home__quote-perks li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; line-height: 1.5; color: #333;
}
.srv-home__quote-perk-mark {
    flex: 0 0 auto;
    width: 22px; height: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(44, 142, 232, 0.12); color: #2c8ee8;
    border-radius: 50%; font-size: 12px; font-weight: 800;
}

/* Правая колонка — форма */
.srv-home__quote-form { min-width: 0; }
.srv-home__quote-form-grid {
    display: grid; gap: 12px;
    grid-template-columns: 1fr;
}
@media (min-width: 560px) { .srv-home__quote-form-grid { grid-template-columns: 1fr 1fr; } }
.srv-home__quote-field--full { grid-column: 1 / -1; }

.srv-home__quote-field input,
.srv-home__quote-field textarea {
    width: 100%; padding: 14px 16px;
    background: #f7f9fc;
    border: 1.5px solid #e3edf9; border-radius: 10px;
    font-family: inherit;
    font-size: 15px; color: #1a1a1a;
    transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.srv-home__quote-field textarea { resize: vertical; min-height: 60px; }
.srv-home__quote-field input::placeholder,
.srv-home__quote-field textarea::placeholder { color: #9aa5b6; }
.srv-home__quote-field input:focus,
.srv-home__quote-field textarea:focus {
    outline: none;
    background: #fff;
    border-color: #2c8ee8;
    box-shadow: 0 0 0 3px rgba(44, 142, 232, 0.15);
}
.srv-home__quote-field input:invalid:not(:placeholder-shown),
.srv-home__quote-field textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.srv-home__quote-submit {
    margin: 20px 0 0;
    width: 100%;
    padding: 16px 28px;
    background: #2c8ee8; color: #fff;
    border: 0; border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px; font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px -10px rgba(44, 142, 232, 0.55);
    transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.srv-home__quote-submit:hover:not(:disabled) {
    background: #1565a8;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px rgba(44, 142, 232, 0.7);
}
.srv-home__quote-submit:disabled { opacity: 0.7; cursor: progress; }

.srv-home__quote-policy {
    margin: 14px 0 0;
    font-size: 12px; line-height: 1.5; color: #888;
}
.srv-home__quote-policy a { color: #2c8ee8; text-decoration: underline; }
.srv-home__quote-policy a:hover { color: #1565a8; }

.srv-home__quote-consent {
    margin: 16px 0 14px;
    display: flex; flex-direction: column; gap: 8px;
}
.srv-home__quote-consent-row {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 12px; line-height: 1.5; color: #5a5a5a;
    cursor: pointer;
}
.srv-home__quote-consent-row input[type="checkbox"] {
    flex: 0 0 auto;
    width: 16px; height: 16px;
    margin-top: 2px;
    accent-color: #2c8ee8;
    cursor: pointer;
}
.srv-home__quote-consent-row a {
    color: #2c8ee8; text-decoration: underline;
}
.srv-home__quote-consent-row a:hover { color: #1565a8; }

.srv-home__quote-result {
    margin: 16px 0 0;
    padding: 14px 16px; border-radius: 10px;
    font-size: 14px; line-height: 1.5;
}
.srv-home__quote-result--ok {
    background: rgba(46, 175, 80, 0.1);
    color: #1e7e34;
    border: 1px solid rgba(46, 175, 80, 0.25);
}
.srv-home__quote-result--err {
    background: rgba(231, 76, 60, 0.08);
    color: #b13e2c;
    border: 1px solid rgba(231, 76, 60, 0.25);
}

@media (max-width: 600px) {
    .srv-home__quote { padding: 56px 0; }
    .srv-home__quote-card { padding: 28px 22px; border-radius: 18px; }
    .srv-home__quote-title { font-size: 24px; }
}

/* ===== Блог: листинг и карточки ===== */
.srv-blog { padding: 0 0 80px; }

.srv-blog__hero {
    padding: 64px 0 48px;
    background: linear-gradient(180deg, #f5faff 0%, #fff 100%);
}
.srv-blog__hero-content { max-width: 760px; }
.srv-blog__hero-eyebrow {
    display: inline-block; margin: 0 0 14px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(44, 142, 232, 0.12); color: #1565a8;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.srv-blog__hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px; line-height: 1.15; font-weight: 800;
    color: #1a1a1a; margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.srv-blog__hero-subtitle {
    font-size: 17px; line-height: 1.55; color: #555; margin: 0;
    max-width: 680px;
}

/* Featured пост */
.srv-blog__featured-wrap { padding: 0 0 48px; }
.srv-blog__featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
@media (min-width: 900px) { .srv-blog__featured { grid-template-columns: 1.1fr 1fr; } }
.srv-blog__featured:hover {
    border-color: #2c8ee8;
    transform: translateY(-3px);
    box-shadow: 0 24px 50px -25px rgba(44, 142, 232, 0.3);
    color: inherit;
}
.srv-blog__featured-media {
    min-height: 280px;
    background-color: #1a1a1a;
    overflow: hidden;
}
.srv-blog__featured-media img {
    display: block; width: 100%; height: 100%;
    min-height: 280px;
    object-fit: cover; object-position: center;
}
.srv-blog__featured-body {
    padding: 36px 40px 32px;
    display: flex; flex-direction: column; gap: 12px;
}
.srv-blog__featured-eyebrow {
    display: inline-flex; align-self: flex-start;
    padding: 4px 12px; border-radius: 999px;
    background: rgba(44, 142, 232, 0.12); color: #1565a8;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
}
.srv-blog__featured-title {
    font-family: "Montserrat", sans-serif;
    font-size: 26px; line-height: 1.25; font-weight: 800;
    color: #1a1a1a; margin: 0;
}
@media (min-width: 900px) { .srv-blog__featured-title { font-size: 30px; } }
.srv-blog__featured-excerpt {
    font-size: 15px; line-height: 1.55; color: #555; margin: 0;
}
.srv-blog__featured-meta {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: auto; padding-top: 14px;
    border-top: 1px solid #eaecef;
}
.srv-blog__featured-date { font-size: 13px; color: #888; }
.srv-blog__featured-read { font-size: 14px; color: #2c8ee8; font-weight: 700; }

/* Сетка остальных постов */
.srv-blog__grid-section { padding: 24px 0 40px; }
.srv-blog__grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .srv-blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .srv-blog__grid { grid-template-columns: repeat(3, 1fr); } }

.srv-blog__card-link {
    display: block; height: 100%;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none; color: inherit;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.srv-blog__card-link:hover {
    border-color: #2c8ee8;
    transform: translateY(-3px);
    box-shadow: 0 18px 36px -22px rgba(44, 142, 232, 0.4);
    color: inherit;
}
.srv-blog__card-media {
    display: block; height: 200px;
    background-color: #1a1a1a;
    overflow: hidden;
}
.srv-blog__card-media img {
    display: block; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.srv-blog__card-media--empty {
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
}
.srv-blog__card-body {
    display: block; padding: 22px 24px 26px;
}
.srv-blog__card-date {
    display: block; font-size: 12px; color: #888;
    text-transform: uppercase; letter-spacing: 0.05em;
    margin: 0 0 10px;
}
.srv-blog__card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 18px; line-height: 1.35; font-weight: 700;
    color: #1a1a1a; margin: 0 0 10px;
}
.srv-blog__card-excerpt {
    font-size: 14px; line-height: 1.55; color: #555; margin: 0 0 14px;
}
.srv-blog__card-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: #2c8ee8; font-weight: 700; font-size: 14px;
}
.srv-blog__card-link:hover .srv-blog__card-more span {
    transform: translateX(4px); transition: transform .2s ease;
}

/* Пагинация */
.srv-blog__pagination {
    margin: 40px 0 0;
    display: flex; flex-wrap: wrap; gap: 6px;
    justify-content: center;
}
.srv-blog__pagination a,
.srv-blog__pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #eaecef;
    background: #fff;
    color: #1a1a1a;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.srv-blog__pagination a:hover {
    border-color: #2c8ee8; color: #2c8ee8;
}
.srv-blog__pagination .current {
    background: #2c8ee8; color: #fff; border-color: #2c8ee8;
}
.srv-blog__pagination .dots {
    border: 0; background: transparent;
}

/* Empty */
.srv-blog__empty { padding: 60px 0; text-align: center; }
.srv-blog__empty h2 { font-family: "Montserrat", sans-serif; margin: 0 0 12px; }
.srv-blog__empty a { color: #2c8ee8; text-decoration: underline; }

/* CTA внизу блога */
.srv-blog__cta { padding: 60px 0 0; }
.srv-blog__cta-card {
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff;
    padding: 48px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 30px 60px -25px rgba(44, 142, 232, 0.4);
}
.srv-blog__cta-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px; line-height: 1.2; font-weight: 800;
    color: #fff; margin: 0 0 12px;
    max-width: 700px; margin-left: auto; margin-right: auto;
}
.srv-blog__cta-subtitle {
    font-size: 16px; line-height: 1.55; color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 24px; max-width: 600px;
}
.srv-blog__cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px;
    background: #fff; color: #1565a8;
    border: 0; border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px; font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.3);
    transition: transform .15s ease, box-shadow .15s ease;
}
.srv-blog__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
    .srv-blog__hero { padding: 48px 0 36px; }
    .srv-blog__hero-title { font-size: 30px; }
    .srv-blog__featured-body { padding: 24px 22px; }
    .srv-blog__featured-title { font-size: 22px; }
    .srv-blog__cta-card { padding: 36px 22px; }
    .srv-blog__cta-title { font-size: 22px; }
}

/* ===== Двухколонник: лента + сайдбар ===== */
.srv-blog__layout {
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 992px) {
    .srv-blog__layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 48px;
    }
}
@media (min-width: 1200px) {
    .srv-blog__layout { grid-template-columns: minmax(0, 1fr) 320px; }
}

/* На двухколонной раскладке сетка карточек становится 2-колонной (не 3) */
@media (min-width: 992px) {
    .srv-blog__layout .srv-blog__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.srv-blog__main { min-width: 0; }

/* Сайдбар */
.srv-blog__aside {
    display: flex; flex-direction: column;
    gap: 28px;
    align-self: start;
}
.srv-blog__aside-widget {
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 16px;
    padding: 22px 24px 24px;
}
.srv-blog__aside-title {
    font-family: "Montserrat", sans-serif;
    font-size: 14px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: #1a1a1a;
    margin: 0 0 16px;
    padding: 0 0 12px;
    border-bottom: 1px solid #eaecef;
}

/* Поиск */
.srv-blog__aside-search {
    display: flex; align-items: stretch;
    gap: 8px;
}
.srv-blog__aside-search input[type="search"] {
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px 14px;
    border: 1px solid #d6dbe0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: #1a1a1a;
    transition: border-color .15s ease;
}
.srv-blog__aside-search input[type="search"]:focus {
    outline: none;
    border-color: #2c8ee8;
}
.srv-blog__aside-search button {
    flex: 0 0 auto;
    min-width: 44px;
    padding: 0 14px;
    background: #2c8ee8; color: #fff;
    border: 0; border-radius: 8px;
    font-size: 16px; font-weight: 700;
    cursor: pointer;
    transition: background .15s ease;
}
.srv-blog__aside-search button:hover { background: #1565a8; }

/* Рубрики */
.srv-blog__aside-cats {
    list-style: none; margin: 0; padding: 0;
}
.srv-blog__aside-cats li { margin: 0; }
.srv-blog__aside-cats li + li { margin-top: 4px; }
.srv-blog__aside-cats a {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    color: #1a1a1a; text-decoration: none;
    font-size: 14px; line-height: 1.4;
    transition: background .15s ease, color .15s ease;
}
.srv-blog__aside-cats a:hover {
    background: #f5f8fc;
    color: #2c8ee8;
}
.srv-blog__aside-cats a.is-current {
    background: #2c8ee8;
    color: #fff;
}
.srv-blog__aside-cats em {
    font-style: normal;
    font-size: 12px;
    color: #888;
    background: #f5f8fc;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 28px; text-align: center;
}
.srv-blog__aside-cats a:hover em { color: #2c8ee8; }
.srv-blog__aside-cats a.is-current em {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Свежие статьи */
.srv-blog__aside-recent {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column;
    gap: 16px;
}
.srv-blog__aside-recent a {
    display: flex; align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.srv-blog__aside-recent-thumb {
    flex: 0 0 64px;
    width: 64px; height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: #1a1a1a;
}
.srv-blog__aside-recent-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
}
.srv-blog__aside-recent-thumb--empty {
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
}
.srv-blog__aside-recent-body {
    flex: 1 1 auto;
    min-width: 0;
}
.srv-blog__aside-recent-body em {
    display: block;
    font-style: normal;
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.05em; color: #888;
    margin-bottom: 4px;
}
.srv-blog__aside-recent-body strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 13px; line-height: 1.4;
    font-weight: 700; color: #1a1a1a;
}
.srv-blog__aside-recent a:hover .srv-blog__aside-recent-body strong { color: #2c8ee8; }

/* CTA-виджет «Услуги» */
.srv-blog__aside-widget--cta {
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    border: 0;
    color: #fff;
}
.srv-blog__aside-widget--cta .srv-blog__aside-title {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}
.srv-blog__aside-cta-text {
    font-size: 13px; line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 14px;
}
.srv-blog__aside-services {
    list-style: none; margin: 0 0 14px; padding: 0;
}
.srv-blog__aside-services li { margin: 0; }
.srv-blog__aside-services li + li { margin-top: 2px; }
.srv-blog__aside-services a {
    display: block;
    padding: 6px 10px;
    border-radius: 6px;
    color: #fff; text-decoration: none;
    font-size: 13px; line-height: 1.4;
    transition: background .15s ease;
}
.srv-blog__aside-services a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
.srv-blog__aside-cta-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px;
    background: #fff; color: #1565a8;
    border-radius: 8px;
    font-size: 13px; font-weight: 700;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}
.srv-blog__aside-cta-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px -6px rgba(0, 0, 0, 0.4);
    color: #1565a8;
}

/* ===== Single article: одна статья блога ===== */
.srv-article { padding-bottom: 60px; }

/* Reading progress */
.srv-article-progress {
    position: fixed; top: 0; left: 0;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, #2c8ee8, #1565a8);
    z-index: 9999;
    transition: width 0.1s linear;
}

.srv-article__hero {
    padding: 30px 0 0;
    background: linear-gradient(180deg, #f5faff 0%, #fff 100%);
}
.srv-article__breadcrumbs {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    font-size: 13px; color: #888; margin: 0 0 24px;
}
.srv-article__breadcrumbs a { color: #2c8ee8; text-decoration: none; }
.srv-article__breadcrumbs a:hover { color: #1565a8; text-decoration: underline; }
.srv-article__breadcrumbs span:not([aria-hidden]) { color: #555; }

.srv-article__hero-content { max-width: 820px; }
.srv-article__category {
    display: inline-block; margin: 0 0 14px;
    padding: 5px 12px; border-radius: 999px;
    background: rgba(44, 142, 232, 0.12); color: #1565a8;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none;
    transition: background .15s ease;
}
.srv-article__category:hover { background: rgba(44, 142, 232, 0.2); color: #1565a8; }

.srv-article__title {
    font-family: "Montserrat", sans-serif;
    font-size: 36px; line-height: 1.18; font-weight: 800;
    color: #1a1a1a; margin: 0 0 16px;
    letter-spacing: -0.01em;
}
@media (min-width: 900px) { .srv-article__title { font-size: 44px; } }

.srv-article__meta {
    display: flex; flex-wrap: wrap; gap: 16px;
    font-size: 14px; color: #777;
    margin: 0 0 28px;
}
.srv-article__meta-item {
    display: inline-flex; align-items: center; gap: 6px;
    color: #777;
    text-decoration: none;
}
.srv-article__meta-item:hover { color: #2c8ee8; }

.srv-article__cover {
    margin: 0 0 40px;
    border-radius: 18px; overflow: hidden;
    background: #f0f0f0;
}
.srv-article__cover img { display: block; width: 100%; height: auto; }

.srv-article__layout { padding: 0 0 40px; }
.srv-article__row {
    display: grid; gap: 40px;
    grid-template-columns: 1fr;
}
@media (min-width: 992px) {
    .srv-article__row { grid-template-columns: minmax(0, 1fr) 280px; gap: 56px; }
}

.srv-article__main { min-width: 0; }
.srv-article__body { font-size: 17px; line-height: 1.7; color: #2a2f3a; }
.srv-article__body p { margin: 0 0 20px; }
.srv-article__body h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 26px; line-height: 1.25; font-weight: 800;
    color: #1a1a1a; margin: 40px 0 16px;
    letter-spacing: -0.01em;
}
.srv-article__body h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px; line-height: 1.3; font-weight: 700;
    color: #1a1a1a; margin: 32px 0 14px;
}
.srv-article__body h4 {
    font-size: 17px; font-weight: 700;
    color: #1a1a1a; margin: 24px 0 12px;
}
.srv-article__body ul,
.srv-article__body ol { margin: 0 0 24px; padding-left: 22px; }
.srv-article__body li { margin: 0 0 8px; line-height: 1.65; }
.srv-article__body a { color: #2c8ee8; text-decoration: underline; text-underline-offset: 2px; }
.srv-article__body a:hover { color: #1565a8; }
.srv-article__body strong { color: #1a1a1a; font-weight: 700; }
.srv-article__body blockquote {
    margin: 24px 0;
    padding: 18px 24px;
    border-left: 4px solid #2c8ee8;
    background: #f5f9fe;
    border-radius: 0 12px 12px 0;
    font-size: 18px; line-height: 1.6; color: #1a1a1a;
    font-style: italic;
}
.srv-article__body img {
    max-width: 100%; height: auto;
    border-radius: 12px;
    margin: 16px 0;
}
.srv-article__body pre,
.srv-article__body code {
    font-family: "JetBrains Mono", "Courier New", monospace;
    background: #f5f7fa;
    border-radius: 6px;
}
.srv-article__body code { padding: 2px 6px; font-size: 14px; color: #1565a8; }
.srv-article__body pre { padding: 16px 18px; overflow-x: auto; font-size: 14px; line-height: 1.5; margin: 0 0 20px; }
.srv-article__body table {
    width: 100%; border-collapse: collapse; margin: 20px 0;
    font-size: 14px;
}
.srv-article__body th,
.srv-article__body td {
    border: 1px solid #eaecef;
    padding: 10px 14px;
    text-align: left;
}
.srv-article__body th { background: #f5f9fe; font-weight: 700; }

.srv-article__faq { margin: 40px 0; }
.srv-article__faq h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px; font-weight: 800; margin: 0 0 16px;
}
.srv-article__faq-item {
    background: #fff; border: 1px solid #eaecef; border-radius: 12px;
    padding: 0; margin: 0 0 10px;
    transition: border-color .15s ease;
}
.srv-article__faq-item[open] { border-color: #2c8ee8; }
.srv-article__faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-size: 16px; font-weight: 700; color: #1a1a1a;
    list-style: none;
    position: relative;
    padding-right: 56px;
}
.srv-article__faq-item summary::-webkit-details-marker { display: none; }
.srv-article__faq-item summary::after {
    content: "+";
    position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: #f5f9fe; color: #2c8ee8;
    border-radius: 50%;
    font-size: 18px; font-weight: 700;
    transition: transform .2s ease, background .2s ease;
}
.srv-article__faq-item[open] summary::after { content: "−"; background: #2c8ee8; color: #fff; }
.srv-article__faq-answer { padding: 0 22px 18px; font-size: 15px; line-height: 1.6; color: #444; }

.srv-article__tags {
    margin: 30px 0;
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    padding: 16px 18px;
    background: #f5f9fe; border-radius: 12px;
}
.srv-article__tags-label { font-size: 13px; font-weight: 700; color: #555; }
.srv-article__tags a {
    display: inline-block; padding: 4px 12px;
    background: #fff; color: #2c8ee8;
    border: 1px solid #d9e4f3;
    border-radius: 999px;
    font-size: 13px; text-decoration: none;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.srv-article__tags a:hover {
    background: #2c8ee8; color: #fff; border-color: #2c8ee8;
}

.srv-article__share {
    margin: 30px 0;
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
}
.srv-article__share-label { font-size: 13px; font-weight: 700; color: #555; margin-right: 4px; }
.srv-article__share-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #eaecef;
    background: #fff;
    color: #1a1a1a;
    font-size: 13px; font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.srv-article__share-btn:hover { border-color: #2c8ee8; color: #2c8ee8; }
.srv-article__share-btn--tg:hover { background: #2c8ee8; color: #fff; border-color: #2c8ee8; }
.srv-article__share-btn--vk:hover { background: #4680C2; color: #fff; border-color: #4680C2; }
.srv-article__share-btn--copy:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

/* CTA-карточка внутри статьи (вставляется автоматически после ~50% по H2 для лонгридов).
   Селекторы повышенной специфичности — чтобы перебить .srv-article__body h3/p. */
.srv-article__body .srv-article__cta,
.srv-article__cta {
    margin: 48px 0;
    padding: 32px 32px 30px;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 50px -25px rgba(44, 142, 232, 0.45);
    text-align: left;
}
.srv-article__body .srv-article__cta-title,
.srv-article__cta-title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.srv-article__body .srv-article__cta-text,
.srv-article__cta-text {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 22px;
    max-width: 580px;
}
.srv-article__body .srv-article__cta-btn,
.srv-article__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: #fff;
    color: #1565a8;
    border: 0;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.25);
    transition: transform .15s ease, box-shadow .15s ease;
    text-decoration: none;
}
.srv-article__body .srv-article__cta-btn:hover,
.srv-article__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -8px rgba(0, 0, 0, 0.35);
    color: #1565a8;
}
.srv-article__body .srv-article__cta-btn::after,
.srv-article__cta-btn::after {
    content: '→';
    font-size: 16px;
    transition: transform .15s ease;
}
.srv-article__body .srv-article__cta-btn:hover::after,
.srv-article__cta-btn:hover::after {
    transform: translateX(3px);
}

/* Inline-вариант (вставленный в середине статьи) — чуть компактнее */
.srv-article__body .srv-article__cta--inline,
.srv-article__cta--inline {
    margin: 36px 0;
    padding: 26px 28px 24px;
}
.srv-article__body .srv-article__cta--inline .srv-article__cta-title,
.srv-article__cta--inline .srv-article__cta-title {
    font-size: 20px;
    margin-bottom: 8px;
}
.srv-article__body .srv-article__cta--inline .srv-article__cta-text,
.srv-article__cta--inline .srv-article__cta-text {
    font-size: 14px;
    margin-bottom: 18px;
}

.srv-article__sidebar { min-width: 0; }
@media (min-width: 992px) { .srv-article__sidebar { position: sticky; top: 24px; align-self: start; } }
.srv-article__author {
    background: #fff;
    border: 1px solid #eaecef; border-radius: 14px;
    padding: 24px 22px;
    text-align: center;
    margin: 0 0 20px;
}
.srv-article__author-link {
    display: block;
    text-decoration: none; color: inherit;
    transition: opacity .15s ease;
}
.srv-article__author-link:hover { opacity: 0.92; color: inherit; text-decoration: none; }
.srv-article__author-link:hover .srv-article__author-name { color: #2c8ee8; }
.srv-article__author-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    display: block;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.2);
}
.srv-article__author-name {
    font-family: "Montserrat", sans-serif;
    font-size: 16px; font-weight: 700; color: #1a1a1a;
    margin: 0 0 4px;
    transition: color .15s ease;
}
.srv-article__author-role {
    font-size: 12px; color: #777; line-height: 1.4; margin: 0 0 16px;
}
.srv-article__author-btn {
    display: inline-flex; padding: 10px 18px;
    background: #2c8ee8; color: #fff;
    border: 0; border-radius: 8px;
    font-family: inherit;
    font-size: 13px; font-weight: 700;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}
.srv-article__author-btn:hover { background: #1565a8; transform: translateY(-1px); }

.srv-article__recent {
    background: #fff;
    border: 1px solid #eaecef; border-radius: 14px;
    padding: 22px;
}
.srv-article__recent-title {
    font-family: "Montserrat", sans-serif;
    font-size: 13px; font-weight: 700; color: #777;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin: 0 0 14px;
}
.srv-article__recent-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.srv-article__recent-link {
    display: flex; gap: 10px; align-items: center;
    text-decoration: none; color: #1a1a1a;
    transition: color .15s ease;
}
.srv-article__recent-link:hover { color: #2c8ee8; }
.srv-article__recent-media {
    flex: 0 0 56px;
    width: 56px; height: 56px;
    background-size: cover; background-position: center;
    border-radius: 8px;
}
.srv-article__recent-text {
    font-size: 13px; line-height: 1.4; font-weight: 600;
}

.srv-article__related { padding: 40px 0; background: #fafbfc; }
.srv-article__related-title {
    font-family: "Montserrat", sans-serif;
    font-size: 26px; font-weight: 800; color: #1a1a1a;
    margin: 0 0 24px;
}
.srv-article__related-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .srv-article__related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .srv-article__related-grid { grid-template-columns: repeat(3, 1fr); } }
.srv-article__related-card {
    display: block; height: 100%;
    background: #fff;
    border: 1px solid #eaecef; border-radius: 14px;
    overflow: hidden;
    text-decoration: none; color: inherit;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.srv-article__related-card:hover {
    border-color: #2c8ee8; transform: translateY(-3px);
    box-shadow: 0 18px 36px -22px rgba(44, 142, 232, 0.4);
    color: inherit;
}
.srv-article__related-media {
    display: block; height: 180px;
    background-size: cover; background-position: center;
    background-color: #1a1a1a;
}
.srv-article__related-body { display: block; padding: 20px 22px 22px; }
.srv-article__related-name {
    font-family: "Montserrat", sans-serif;
    font-size: 17px; font-weight: 700; color: #1a1a1a;
    margin: 0 0 8px; line-height: 1.35;
}
.srv-article__related-excerpt {
    font-size: 13px; line-height: 1.55; color: #555;
    margin: 0 0 12px;
}
.srv-article__related-more {
    color: #2c8ee8; font-weight: 700; font-size: 13px;
}

.srv-article__comments { padding: 40px 0; }
.srv-article__comments .comments-area { max-width: 760px; }
.srv-article__comments .comments-title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px; font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}
.srv-article__comments .comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.srv-article__comments .children {
    list-style: none;
    padding: 0 0 0 32px;
    margin: 16px 0 0;
    border-left: 2px solid #eaecef;
}
@media (max-width: 600px) {
    .srv-article__comments .children { padding-left: 16px; }
}

/* Карточка комментария */
.srv-article__comments .comment-item {
    margin: 0 0 18px;
}
.srv-article__comments .comment-content-wrap {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

/* Аватар: фиксированный круг 48px */
.srv-article__comments .comment-avatar {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
}
.srv-article__comments .comment-avatar img {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    background: #f0f3f7;
}
.srv-article__comments .comment-item.is-author .comment-avatar img {
    border: 2px solid #2c8ee8;
    box-shadow: 0 4px 10px -3px rgba(44, 142, 232, 0.4);
}

/* Тело комментария */
.srv-article__comments .comment-body {
    flex: 1 1 auto;
    min-width: 0;
    background: #f8f9fb;
    border-radius: 12px;
    padding: 12px 16px 14px;
    border: 1px solid #eaecef;
}
.srv-article__comments .comment-item.is-author .comment-body {
    background: #eef5ff;
    border-color: #c6dffc;
    border-left: 3px solid #2c8ee8;
}

.srv-article__comments .comment-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin: 0 0 6px;
    font-size: 13px;
}
.srv-article__comments .comment-author {
    font-weight: 700;
    color: #1a1a1a;
}
.srv-article__comments .comment-item.is-author .comment-author {
    color: #1565a8;
}
.srv-article__comments .comment-author-badge {
    display: inline-block;
    margin-left: 4px;
    padding: 1px 7px;
    background: #2c8ee8;
    color: #fff;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    vertical-align: 1px;
}
.srv-article__comments .comment-date {
    color: #8893a0;
    font-size: 12px;
}

.srv-article__comments .comment-text {
    font-size: 14.5px;
    line-height: 1.55;
    color: #2a2f3a;
}
.srv-article__comments .comment-text p {
    margin: 0 0 8px;
}
.srv-article__comments .comment-text p:last-child {
    margin-bottom: 0;
}
.srv-article__comments .comment-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 8px 0;
}

.srv-article__comments .reply-link {
    margin: 8px 0 0;
    font-size: 12px;
}
.srv-article__comments .reply-link a {
    color: #2c8ee8;
    text-decoration: none;
    font-weight: 600;
}
.srv-article__comments .reply-link a:hover {
    text-decoration: underline;
}

/* Форма комментария */
.srv-article__comments .comment-respond {
    margin: 32px 0 0;
    padding: 24px;
    background: #f8f9fb;
    border-radius: 14px;
    border: 1px solid #eaecef;
}
.srv-article__comments .comment-reply-title {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
}
.srv-article__comments .comment-form p {
    margin: 0 0 14px;
}
.srv-article__comments .comment-form label {
    display: block;
    font-size: 13px;
    color: #4a5260;
    font-weight: 600;
    margin: 0 0 4px;
}
.srv-article__comments .comment-form input[type="text"],
.srv-article__comments .comment-form input[type="email"],
.srv-article__comments .comment-form input[type="url"],
.srv-article__comments .comment-form textarea {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #d6dbe0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: #1a1a1a;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
}
.srv-article__comments .comment-form input:focus,
.srv-article__comments .comment-form textarea:focus {
    outline: none;
    border-color: #2c8ee8;
}
.srv-article__comments .form-submit .submit,
.srv-article__comments .comment-form .submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff;
    border: 0;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 14px -4px rgba(44, 142, 232, 0.5);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.srv-article__comments .form-submit .submit:hover,
.srv-article__comments .comment-form .submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px -5px rgba(44, 142, 232, 0.6);
}
.srv-article__comments .comment-notes,
.srv-article__comments .logged-in-as {
    font-size: 12px;
    color: #8893a0;
}

@media (max-width: 600px) {
    .srv-article__comments .comment-content-wrap { gap: 10px; }
    .srv-article__comments .comment-avatar,
    .srv-article__comments .comment-avatar img { width: 40px; height: 40px; flex-basis: 40px; }
    .srv-article__comments .comment-body { padding: 10px 12px 12px; }
    .srv-article__comments .comment-respond { padding: 18px; }
}

@media (max-width: 600px) {
    .srv-article__hero { padding: 20px 0 0; }
    .srv-article__title { font-size: 26px; }
    .srv-article__cover { margin: 0 0 28px; border-radius: 12px; }
    .srv-article__body { font-size: 16px; }
    .srv-article__body h2 { font-size: 22px; margin-top: 32px; }
    .srv-article__body h3 { font-size: 18px; margin-top: 24px; }
    .srv-article__cta { padding: 24px 22px; margin: 32px 0; }
    .srv-article__cta-title { font-size: 19px; }
    .srv-article__cta-text { font-size: 14px; margin-bottom: 18px; }
    .srv-article__cta-btn { padding: 12px 22px; font-size: 13.5px; }
    .srv-article__cta--inline { padding: 22px 20px 20px; margin: 28px 0; }
    .srv-article__cta--inline .srv-article__cta-title { font-size: 17px; }
    .srv-article__cta--inline .srv-article__cta-text { font-size: 13.5px; }
}

/* ===== Author page ===== */
.srv-author { padding: 0 0 60px; }
.srv-author__hero {
    padding: 60px 0 48px;
    background: linear-gradient(180deg, #f5faff 0%, #fff 100%);
}
.srv-author__hero-row {
    display: grid; gap: 36px;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 720px) { .srv-author__hero-row { grid-template-columns: 240px 1fr; gap: 48px; } }

.srv-author__photo {
    width: 220px; height: 220px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    background: #eaecef;
    box-shadow: 0 30px 60px -25px rgba(20, 50, 110, 0.25);
}
.srv-author__photo img { display: block; width: 100%; height: 100%; object-fit: cover; }

.srv-author__eyebrow {
    display: inline-block; margin: 0 0 12px;
    padding: 5px 14px; border-radius: 999px;
    background: rgba(44, 142, 232, 0.12); color: #1565a8;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
}
.srv-author__name {
    font-family: "Montserrat", sans-serif;
    font-size: 38px; line-height: 1.15; font-weight: 800;
    color: #1a1a1a; margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.srv-author__role {
    font-size: 16px; color: #555; margin: 0 0 16px;
}
.srv-author__bio {
    font-size: 16px; line-height: 1.6; color: #444;
    margin: 0 0 20px;
    max-width: 620px;
}
.srv-author__socials {
    display: flex; flex-wrap: wrap; gap: 10px;
}
.srv-author__social {
    display: inline-flex; align-items: center;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #d9e4f3;
    background: #fff;
    color: #1a1a1a;
    font-family: inherit;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.srv-author__social:hover {
    transform: translateY(-1px);
    text-decoration: none;
}
.srv-author__social--tg { color: #229ED9; border-color: #229ED9; }
.srv-author__social--tg:hover { background: #229ED9; color: #fff; }
.srv-author__social--vk { color: #4680C2; border-color: #4680C2; }
.srv-author__social--vk:hover { background: #4680C2; color: #fff; }
.srv-author__social--cta { background: #2c8ee8; color: #fff; border-color: #2c8ee8; }
.srv-author__social--cta:hover { background: #1565a8; border-color: #1565a8; color: #fff; }

.srv-author__posts { padding: 32px 0 0; }
.srv-author__posts-title {
    font-family: "Montserrat", sans-serif;
    font-size: 26px; font-weight: 800; color: #1a1a1a;
    margin: 0 0 24px;
}
.srv-author__posts-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .srv-author__posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .srv-author__posts-grid { grid-template-columns: repeat(3, 1fr); } }

.srv-author__post-card {
    display: block; height: 100%;
    background: #fff;
    border: 1px solid #eaecef; border-radius: 14px;
    overflow: hidden;
    text-decoration: none; color: inherit;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.srv-author__post-card:hover {
    border-color: #2c8ee8; transform: translateY(-3px);
    box-shadow: 0 18px 36px -22px rgba(44, 142, 232, 0.4);
    color: inherit;
}
.srv-author__post-media {
    display: block; height: 180px;
    background-color: #1a1a1a;
    overflow: hidden;
}
.srv-author__post-media img {
    display: block; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.srv-author__post-body { display: block; padding: 18px 22px 22px; }
.srv-author__post-date {
    display: block; font-size: 12px; color: #888;
    text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 8px;
}
.srv-author__post-name {
    font-family: "Montserrat", sans-serif;
    font-size: 17px; font-weight: 700; color: #1a1a1a;
    line-height: 1.35; margin: 0 0 8px;
}
.srv-author__post-excerpt {
    font-size: 13px; line-height: 1.55; color: #555;
    margin: 0 0 12px;
}
.srv-author__post-more {
    color: #2c8ee8; font-weight: 700; font-size: 13px;
}

@media (max-width: 600px) {
    .srv-author__photo { width: 180px; height: 180px; }
    .srv-author__name { font-size: 28px; }
    .srv-author__hero { padding: 40px 0 32px; }
}

/* ===== Single case page ===== */
.srv-case { padding: 0 0 60px; }
.srv-case__hero { padding: 30px 0 0; background: linear-gradient(180deg, #f5faff 0%, #fff 100%); }
.srv-case__breadcrumbs {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    font-size: 13px; color: #888; margin: 0 0 24px;
}
.srv-case__breadcrumbs a { color: #2c8ee8; text-decoration: none; }
.srv-case__breadcrumbs a:hover { text-decoration: underline; }
.srv-case__hero-content { max-width: 820px; margin: 0 0 32px; }
.srv-case__tag {
    display: inline-block; margin: 0 0 14px;
    padding: 5px 12px; border-radius: 999px;
    background: rgba(44, 142, 232, 0.12); color: #1565a8;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none;
}
.srv-case__title {
    font-family: "Montserrat", sans-serif;
    font-size: 36px; line-height: 1.18; font-weight: 800;
    color: #1a1a1a; margin: 0 0 16px; letter-spacing: -0.01em;
}
@media (min-width: 900px) { .srv-case__title { font-size: 44px; } }
.srv-case__meta {
    display: flex; flex-wrap: wrap; gap: 16px;
    font-size: 14px; color: #777;
}
.srv-case__meta-item {
    display: inline-flex; align-items: center; gap: 6px;
    color: #777; text-decoration: none;
}
.srv-case__meta-item:hover { color: #2c8ee8; }
.srv-case__cover {
    margin: 0 0 40px;
    border-radius: 18px; overflow: hidden;
    background: #f0f0f0;
}
.srv-case__cover img { display: block; width: 100%; height: auto; }

.srv-case__body { padding: 0 0 30px; }
.srv-case__intro { margin: 0 0 30px; }
.srv-case__intro-title,
.srv-case__block-title {
    font-family: "Montserrat", sans-serif;
    font-size: 26px; font-weight: 800; color: #1a1a1a;
    margin: 0 0 14px; line-height: 1.25;
}
.srv-case__intro-text,
.srv-case__block-text { font-size: 17px; line-height: 1.7; color: #2a2f3a; max-width: 820px; }
.srv-case__intro-text p,
.srv-case__block-text p { margin: 0 0 16px; }

/* ====== Богатый контент SEO-кейсов: H2/H3/таблицы/статистика ====== */
.srv-case__intro-text h2,
.srv-case__block-text h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 26px; font-weight: 800; color: #1a1a1a;
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eef2f6;
    letter-spacing: -0.01em;
}
.srv-case__intro-text h3,
.srv-case__block-text h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px; font-weight: 700;
    color: #1565a8;
    margin: 28px 0 14px;
    line-height: 1.3;
}
.srv-case__intro-text ul,
.srv-case__block-text ul {
    margin: 0 0 18px;
    padding-left: 22px;
}
.srv-case__intro-text ul li,
.srv-case__block-text ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Таблица .rk-table — наследует от исходных кейсов, перерисовываем брендово */
.srv-case__body .rk-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 28px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f6;
    font-size: 15px;
    line-height: 1.5;
}
.srv-case__body .rk-table th,
.srv-case__body .rk-table td {
    padding: 14px 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #eef2f6;
}
.srv-case__body .rk-table th {
    background: #f5faff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #1565a8;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.srv-case__body .rk-table tr:last-child td {
    border-bottom: 0;
}
.srv-case__body .rk-table tr:hover td {
    background: #fafcfd;
}
@media (max-width: 600px) {
    .srv-case__body .rk-table { font-size: 14px; }
    .srv-case__body .rk-table th,
    .srv-case__body .rk-table td { padding: 10px 12px; }
}

/* Статистическая карточка результата */
.srv-case__body .rk-result-card {
    position: relative;
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    padding: 20px 24px;
    margin: 0 0 18px;
    box-shadow: 0 2px 10px -3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.srv-case__body .rk-result-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #2c8ee8 0%, #1565a8 100%);
}
.srv-case__body .rk-result-card h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px; font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px;
    display: flex; align-items: center; gap: 6px;
}
.srv-case__body .rk-result-stats {
    background: #f5faff;
    padding: 14px 16px;
    border-radius: 8px;
    margin: 0 0 12px;
    font-family: "Consolas", "Monaco", monospace;
    font-size: 14px;
    line-height: 1.7;
    color: #1a1a1a;
    white-space: pre-wrap;
}
.srv-case__body .rk-result-stats strong {
    color: #059669;
    font-size: 15px;
}
.srv-case__body .rk-result-interp {
    font-size: 14px;
    line-height: 1.55;
    color: #4a5260;
    margin: 0;
    font-style: italic;
}

/* Note и Result-блоки (вынесенные из таблиц «Ключевой момент / Результат») */
.srv-case__body .srv-case-note,
.srv-case__body .srv-case-result {
    margin: 0 0 24px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.55;
}
.srv-case__body .srv-case-note {
    background: #fef9e7;
    border-left: 3px solid #f59e0b;
    color: #1a1a1a;
}
.srv-case__body .srv-case-result {
    background: #ecfdf5;
    border-left: 3px solid #059669;
    color: #1a1a1a;
}
.srv-case__body .srv-case-note strong,
.srv-case__body .srv-case-result strong { color: #1a1a1a; }

/* ===== TL;DR — крупные цифры в шапке кейса ===== */
.srv-case__body .rk-tldr {
    margin: 0 0 32px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #f5faff 0%, #eaf3ff 100%);
    border-radius: 16px;
    border: 1px solid #d6e9ff;
}
.srv-case__body .rk-tldr__title {
    font-family: "Montserrat", sans-serif;
    font-size: 14px; font-weight: 700;
    color: #1565a8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 16px;
    border: 0;
    padding: 0;
}
.srv-case__body .rk-tldr__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
    .srv-case__body .rk-tldr__grid { grid-template-columns: repeat(3, 1fr); }
}
.srv-case__body .rk-tldr__grid li {
    background: #fff;
    border: 1px solid #e0e7ee;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding-left: 16px;
}
.srv-case__body .rk-tldr__grid li::before { display: none; }
.srv-case__body .rk-tldr__grid li strong {
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.srv-case__body .rk-tldr__grid li span {
    font-size: 13px;
    color: #4a5260;
    line-height: 1.4;
}
.srv-case__body .rk-tldr__grid li em {
    font-style: normal;
    color: #8893a0;
    font-size: 12px;
}

/* ===== AI Summary — структурированная выжимка для LLM-поиска ===== */
.srv-case__body .rk-summary {
    margin: 0 0 32px;
    padding: 20px 24px;
    background: #fef9f0;
    border: 1px solid #f0e2c5;
    border-left: 4px solid #f59e0b;
    border-radius: 12px;
}
.srv-case__body .rk-summary__title {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #b45309;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
}
.srv-case__body .rk-summary p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #1a1a1a;
    margin: 0 0 8px;
}
.srv-case__body .rk-summary p:last-child { margin-bottom: 0; }
.srv-case__body .rk-summary p strong { color: #b45309; }

/* ===== Рисунок со скриншотом и подписью ===== */
.srv-case__body .rk-figure {
    margin: 24px 0 28px;
    padding: 0;
}
.srv-case__body .rk-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #eaecef;
    box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.15);
}
.srv-case__body .rk-figure figcaption {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
    text-align: center;
    font-style: italic;
}

/* ===== FAQ — раскрывающиеся вопросы ===== */
.srv-case__body .rk-faq {
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.srv-case__body .rk-faq details {
    background: #f8f9fb;
    border: 1px solid #eaecef;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.15s ease;
}
.srv-case__body .rk-faq details[open] {
    border-color: #2c8ee8;
    background: #fff;
    box-shadow: 0 6px 18px -10px rgba(44, 142, 232, 0.25);
}
.srv-case__body .rk-faq summary {
    padding: 16px 22px 16px 50px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
    list-style: none;
    position: relative;
    user-select: none;
}
.srv-case__body .rk-faq summary::-webkit-details-marker { display: none; }
.srv-case__body .rk-faq summary::before {
    content: '+';
    position: absolute;
    left: 18px; top: 50%;
    transform: translateY(-50%);
    width: 22px; height: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #2c8ee8;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.2s ease;
}
.srv-case__body .rk-faq details[open] summary::before {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}
.srv-case__body .rk-faq details p {
    margin: 0;
    padding: 0 22px 18px 50px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5260;
}
.srv-case__body .rk-faq details p a {
    color: #2c8ee8;
    text-decoration: underline;
}

/* ===== Meta-блок (период работы, оговорки) ===== */
.srv-case__body .rk-meta {
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
    margin: 0 0 24px;
    padding: 10px 14px;
    background: #f8f9fb;
    border-radius: 8px;
    border-left: 3px solid #d6dbe0;
}

/* ===== Trust-блок: автор и контекст в шапке кейса ===== */
.srv-case__hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 22px;
    margin: 16px 0 0;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 13.5px;
    color: #4a5260;
}
.srv-case__hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.srv-case__hero-trust-item strong {
    color: #1a1a1a;
    font-weight: 700;
}
.srv-case__hero-trust-item svg {
    color: #2c8ee8;
    flex: 0 0 16px;
}

/* AI Summary блок в начале кейса */
.srv-case__body .srv-case-intro-summary,
.srv-case__intro-text > div[style*="border-left"] {
    background: #f5faff !important;
    border: 1px solid #d6e9ff !important;
    border-left: 4px solid #2c8ee8 !important;
    border-radius: 12px !important;
    padding: 20px 24px !important;
    margin: 0 0 28px !important;
    font-size: 14.5px;
    line-height: 1.6;
}
.srv-case__intro-text > div[style*="border-left"] h3 {
    margin: 0 0 12px !important;
    font-size: 16px !important;
    color: #1565a8 !important;
}
.srv-case__intro-text > div[style*="border-left"] p {
    margin: 0 0 8px !important;
}
.srv-case__intro-text > div[style*="border-left"] p:last-child {
    margin-bottom: 0 !important;
}

.srv-case__block { margin: 0 0 36px; }

.srv-case__gallery { margin: 0 0 36px; }
.srv-case__gallery-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 16px;
    grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .srv-case__gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .srv-case__gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.srv-case__gallery-item {
    display: block; aspect-ratio: 4 / 3;
    border-radius: 14px; overflow: hidden;
    background: #1a1a1a;
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: zoom-in;
}
.srv-case__gallery-item:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -14px rgba(0, 0, 0, 0.3); }
.srv-case__gallery-item img {
    display: block; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}

.srv-case__bigimg {
    margin: 0 0 36px;
    border-radius: 14px; overflow: hidden;
}
.srv-case__bigimg img { display: block; width: 100%; height: auto; }

/* CTA в конце кейса */
.srv-case__cta {
    margin: 30px 0 0;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 30px 60px -25px rgba(44, 142, 232, 0.45);
}
.srv-case__cta-row {
    display: grid; gap: 28px;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 760px) { .srv-case__cta-row { grid-template-columns: 1fr 1.4fr; } }
.srv-case__cta-site {
    display: flex; flex-direction: column; gap: 4px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    color: #fff; text-decoration: none;
    transition: background .15s ease, transform .15s ease;
}
.srv-case__cta-site:hover { background: rgba(255, 255, 255, 0.22); color: #fff; transform: translateY(-2px); }
.srv-case__cta-site-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }
.srv-case__cta-site-domain { font-size: 18px; font-weight: 700; font-family: "JetBrains Mono", "Courier New", monospace; }
.srv-case__cta-title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px; font-weight: 800; color: #fff;
    margin: 0 0 10px;
}
.srv-case__cta-text {
    font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px;
}
.srv-case__cta-btn {
    display: inline-flex; padding: 12px 26px;
    background: #fff; color: #1565a8;
    border: 0; border-radius: 10px;
    font-family: inherit;
    font-size: 14px; font-weight: 700;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}
.srv-case__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.3);
}

/* Другие кейсы */
.srv-case__related { padding: 50px 0 0; background: #fafbfc; margin: 50px 0 0; }
.srv-case__related-head {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px; margin: 0 0 24px;
}
.srv-case__related-title {
    font-family: "Montserrat", sans-serif;
    font-size: 26px; font-weight: 800; color: #1a1a1a; margin: 0;
}
.srv-case__related-all {
    display: inline-flex; padding: 8px 16px; border-radius: 8px;
    border: 1px solid rgba(44, 142, 232, 0.2);
    color: #2c8ee8; font-weight: 600; font-size: 14px;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}
.srv-case__related-all:hover { background: #2c8ee8; color: #fff; border-color: #2c8ee8; }

.srv-case__related-grid {
    list-style: none; padding: 0 0 50px; margin: 0;
    display: grid; gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .srv-case__related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .srv-case__related-grid { grid-template-columns: repeat(3, 1fr); } }
.srv-case__related-card {
    display: block; height: 100%;
    background: #fff;
    border: 1px solid #eaecef; border-radius: 14px;
    overflow: hidden;
    text-decoration: none; color: inherit;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.srv-case__related-card:hover {
    border-color: #2c8ee8; transform: translateY(-3px);
    box-shadow: 0 18px 36px -22px rgba(44, 142, 232, 0.4);
    color: inherit;
}
.srv-case__related-media {
    display: block; height: 180px;
    background-color: #1a1a1a; overflow: hidden;
}
.srv-case__related-media img {
    display: block; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.srv-case__related-body { display: block; padding: 18px 22px 22px; }
.srv-case__related-name {
    font-family: "Montserrat", sans-serif;
    font-size: 17px; font-weight: 700; color: #1a1a1a;
    line-height: 1.35; margin: 0 0 8px;
}
.srv-case__related-excerpt {
    font-size: 13px; line-height: 1.55; color: #555;
    margin: 0 0 12px;
}
.srv-case__related-more {
    color: #2c8ee8; font-weight: 700; font-size: 13px;
}

@media (max-width: 600px) {
    .srv-case__title { font-size: 26px; }
    .srv-case__cover { margin: 0 0 28px; border-radius: 12px; }
    .srv-case__cta { padding: 24px 22px; }
}

/* ===== Контакты ===== */
.srv-kontakty { padding: 0 0 60px; }
.srv-kontakty__hero {
    padding: 40px 0 36px;
    background: linear-gradient(180deg, #f5faff 0%, #fff 100%);
    text-align: center;
}
.srv-kontakty__breadcrumbs {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 8px; font-size: 13px; color: #888; margin: 0 0 20px;
}
.srv-kontakty__breadcrumbs a { color: #2c8ee8; text-decoration: none; }
.srv-kontakty__breadcrumbs a:hover { text-decoration: underline; }
.srv-kontakty__eyebrow {
    display: inline-block; margin: 0 0 14px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(44, 142, 232, 0.12); color: #1565a8;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.srv-kontakty__title {
    font-family: "Montserrat", sans-serif;
    font-size: 40px; line-height: 1.15; font-weight: 800;
    color: #1a1a1a; margin: 0 0 14px; letter-spacing: -0.01em;
}
.srv-kontakty__subtitle {
    font-size: 17px; line-height: 1.55; color: #555;
    margin: 0 auto; max-width: 680px;
}

.srv-kontakty__cards { padding: 40px 0 32px; }
.srv-kontakty__cards-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 720px) { .srv-kontakty__cards-grid { grid-template-columns: repeat(3, 1fr); } }
.srv-kontakty__card {
    display: flex; flex-direction: column; gap: 4px;
    padding: 26px 24px;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 14px;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.srv-kontakty__card:hover {
    border-color: #2c8ee8; transform: translateY(-2px);
    box-shadow: 0 14px 30px -18px rgba(44, 142, 232, 0.3);
}
.srv-kontakty__card-icon { font-size: 28px; margin: 0 0 4px; }
.srv-kontakty__card-label {
    font-size: 12px; color: #888;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin: 0 0 4px;
}
.srv-kontakty__card-value {
    font-family: "Montserrat", sans-serif;
    font-size: 18px; font-weight: 700; color: #1a1a1a;
    text-decoration: none; margin: 0 0 6px;
    transition: color .15s ease;
}
.srv-kontakty__card-value:hover { color: #2c8ee8; }
.srv-kontakty__card-value--text { color: #1a1a1a; }
.srv-kontakty__card-note {
    font-size: 13px; color: #888;
    text-decoration: none;
}
a.srv-kontakty__card-note:hover { color: #2c8ee8; text-decoration: underline; }

.srv-kontakty__messengers {
    margin: 28px 0 0;
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
    justify-content: center;
}
.srv-kontakty__messengers-label {
    font-size: 14px; color: #555; font-weight: 600; margin-right: 4px;
}
.srv-kontakty__messenger {
    display: inline-flex; padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #d9e4f3;
    background: #fff;
    color: #1a1a1a;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.srv-kontakty__messenger:hover { transform: translateY(-1px); text-decoration: none; }
.srv-kontakty__messenger--tg { color: #229ED9; border-color: #229ED9; }
.srv-kontakty__messenger--tg:hover { background: #229ED9; color: #fff; }
.srv-kontakty__messenger--vk { color: #4680C2; border-color: #4680C2; }
.srv-kontakty__messenger--vk:hover { background: #4680C2; color: #fff; }
.srv-kontakty__messenger--max { color: #1565a8; border-color: #1565a8; }
.srv-kontakty__messenger--max:hover { background: linear-gradient(135deg, #4cf, #53e); color: #fff; border-color: transparent; }

.srv-kontakty__map { padding: 30px 0; }
.srv-kontakty__map-title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px; font-weight: 800; color: #1a1a1a;
    margin: 0 0 18px; text-align: center;
}
.srv-kontakty__map-wrap {
    border-radius: 18px; overflow: hidden;
    border: 1px solid #eaecef;
    box-shadow: 0 18px 40px -20px rgba(20, 50, 110, 0.18);
}
.srv-kontakty__map-wrap iframe { display: block; border: 0; }

.srv-kontakty__cta { padding: 30px 0 0; }
.srv-kontakty__cta-card {
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff;
    padding: 48px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 30px 60px -25px rgba(44, 142, 232, 0.4);
}
.srv-kontakty__cta-title {
    font-family: "Montserrat", sans-serif;
    font-size: 26px; line-height: 1.2; font-weight: 800;
    color: #fff; margin: 0 auto 12px;
    max-width: 700px;
}
.srv-kontakty__cta-subtitle {
    font-size: 16px; line-height: 1.55; color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 24px; max-width: 580px;
}
.srv-kontakty__cta-btn {
    display: inline-flex; padding: 14px 32px;
    background: #fff; color: #1565a8;
    border: 0; border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px; font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.3);
    transition: transform .15s ease, box-shadow .15s ease;
}
.srv-kontakty__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
    .srv-kontakty__title { font-size: 28px; }
    .srv-kontakty__cta-card { padding: 32px 22px; }
}

/* ===== 404 ===== */
.srv-404 {
    padding: 60px 0;
    background: linear-gradient(180deg, #f5faff 0%, #fff 100%);
    min-height: calc(100vh - 200px);
    display: flex; align-items: center;
}
.srv-404__inner {
    max-width: 720px; margin: 0 auto;
    text-align: center;
}
.srv-404__code {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: 140px; line-height: 1; font-weight: 900;
    color: transparent;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    -webkit-background-clip: text; background-clip: text;
    margin: 0 0 8px;
    letter-spacing: -0.04em;
}
.srv-404__title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px; line-height: 1.2; font-weight: 800;
    color: #1a1a1a; margin: 0 0 14px;
}
.srv-404__subtitle {
    font-size: 16px; line-height: 1.55; color: #555;
    margin: 0 auto 32px; max-width: 560px;
}

.srv-404__links {
    list-style: none; padding: 0; margin: 0 0 40px;
    display: grid; gap: 12px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .srv-404__links { grid-template-columns: repeat(2, 1fr); } }
.srv-404__link {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #eaecef; border-radius: 12px;
    text-decoration: none; color: inherit;
    text-align: left;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.srv-404__link:hover {
    border-color: #2c8ee8; transform: translateY(-2px);
    box-shadow: 0 12px 28px -16px rgba(44, 142, 232, 0.4);
    color: inherit;
}
.srv-404__link-icon {
    flex: 0 0 40px;
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(44, 142, 232, 0.12);
    border-radius: 10px;
    font-size: 18px;
}
.srv-404__link-label {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 15px; font-weight: 700; color: #1a1a1a;
    line-height: 1.3;
}
.srv-404__link-desc {
    display: block;
    font-size: 13px; color: #777;
    line-height: 1.4;
}

.srv-404__search {
    margin: 0 0 32px;
    text-align: left; max-width: 480px; margin-left: auto; margin-right: auto;
}
.srv-404__search-label {
    display: block; font-size: 13px; color: #555;
    margin: 0 0 10px;
}
.srv-404__search-row {
    display: flex; gap: 8px;
}
.srv-404__search-input {
    flex: 1; padding: 14px 16px;
    background: #fff;
    border: 1.5px solid #e3edf9; border-radius: 10px;
    font-size: 15px;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.srv-404__search-input:focus {
    outline: none;
    border-color: #2c8ee8;
    box-shadow: 0 0 0 3px rgba(44, 142, 232, 0.15);
}
.srv-404__search-btn {
    padding: 0 22px;
    background: #2c8ee8; color: #fff;
    border: 0; border-radius: 10px;
    font-family: inherit;
    font-size: 14px; font-weight: 700;
    cursor: pointer;
    transition: background .15s ease;
}
.srv-404__search-btn:hover { background: #1565a8; }

.srv-404__cta {
    padding: 24px 28px;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 14px;
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 14px;
}
.srv-404__cta-text { font-size: 15px; color: #555; }
.srv-404__cta-btn {
    display: inline-flex; padding: 10px 22px;
    background: #2c8ee8; color: #fff;
    border: 0; border-radius: 8px;
    font-family: inherit;
    font-size: 14px; font-weight: 700;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}
.srv-404__cta-btn:hover { background: #1565a8; transform: translateY(-1px); }

@media (max-width: 600px) {
    .srv-404 { padding: 40px 0; }
    .srv-404__code { font-size: 100px; }
    .srv-404__title { font-size: 24px; }
}

/* ===== Новая шапка сайта ===== */
/* Расширенный контейнер сайта — чтобы вместить широкое меню (7 пунктов) */
@media (min-width: 1200px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1300px;
    }
}
/* На узких экранах контейнер — во всю ширину (иначе таблицы выходят за край) */
@media (max-width: 580px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 100%;
    }
}
/* Легаси-блок «Нужен проект» (.section-7): в style.css у колонки padding:0,
   из-за чего форма липнет к краям экрана. Возвращаем боковые отступы на мобильном. */
@media (max-width: 767px) {
    .section-7 .col-md-6 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #eaecef;
    transition: box-shadow .2s ease;
}
.site-header.is-scrolled {
    box-shadow: 0 8px 24px -16px rgba(20, 50, 110, 0.18);
}
/* По запросу: убираем внешний паддинг у шапки (data-srv-block="site-header") */
.site-header[data-srv-block] { padding: 0; }
.site-header__row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    padding: 8px 0;
    min-height: 56px;
    flex-wrap: nowrap;
}

/* Левая часть — не сжимается */
.site-header__brand {
    display: flex; align-items: center; gap: 14px;
    flex: 0 0 auto;
    min-width: 0;
}
.site-header__menu-btn {
    display: none;
    width: 40px; height: 40px;
    padding: 8px;
    background: transparent;
    border: 0;
    cursor: pointer;
    border-radius: 8px;
    transition: background .15s ease;
}
.site-header__menu-btn:hover { background: rgba(44, 142, 232, 0.08); }
.site-header__menu-btn img { width: 100%; height: 100%; }
.site-header__logo {
    display: inline-flex; align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}
.site-header__logo img { display: block; height: 28px; width: auto; }
.site-header__tag {
    font-size: 11px; line-height: 1.3; color: #777;
    padding-left: 12px;
    border-left: 1px solid #e3edf9;
    max-width: 140px;
    flex-shrink: 0;
}

/* Главное меню (десктоп) */
.site-header__nav { flex: 1 1 auto; display: flex; justify-content: center; min-width: 0; }
.site-header__nav-list {
    display: flex; flex-wrap: nowrap;
    gap: 18px;
    list-style: none;
    padding: 0; margin: 0;
    white-space: nowrap;
}
/* nav-item НЕ position:relative — мега-панель должна позиционироваться
   относительно .site-header (sticky), чтобы быть во всю ширину */
.site-header__nav-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 4px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px; font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    position: relative;
    transition: color .15s ease;
}
.site-header__nav-link:hover { color: #2c8ee8; }
.site-header__nav-link::after {
    content: "";
    position: absolute; left: 4px; right: 4px; bottom: 4px;
    height: 2px;
    background: #2c8ee8;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}
.site-header__nav-link:hover::after,
.site-header__nav-item.is-current > .site-header__nav-link::after { transform: scaleX(1); }

/* Шеврон у пункта «Услуги» */
.site-header__nav-chevron {
    width: 7px; height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(-1px, -1px);
    transition: transform .25s ease;
}
.site-header__nav-item--mega:hover .site-header__nav-chevron,
.site-header__nav-item--mega:focus-within .site-header__nav-chevron {
    transform: rotate(225deg) translate(-2px, -2px);
}

/* ===== МЕГА-МЕНЮ УСЛУГ ===== */
.srv-mega {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid #eaecef;
    box-shadow: 0 32px 64px -24px rgba(20, 50, 110, 0.32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .24s ease, transform .24s ease, visibility .24s;
    z-index: 99;
}
/* Невидимый «мостик» — перекрывает зазор между пунктом и панелью */
.srv-mega::before {
    content: "";
    position: absolute;
    top: -14px; left: 0; right: 0;
    height: 14px;
}
.site-header__nav-item--mega:hover .srv-mega,
.site-header__nav-item--mega:focus-within .srv-mega,
.srv-mega:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.srv-mega__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 30px 24px 26px;
}
.srv-mega__cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(0, 0.82fr);
    gap: 14px 26px;
}
.srv-mega__col-title {
    display: block;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: #9aa4b2;
    padding: 0 10px 10px;
    margin-bottom: 4px;
    border-bottom: 1px solid #eef1f5;
}
.srv-mega__list {
    display: flex; flex-direction: column;
    gap: 2px;
    list-style: none; margin: 0; padding: 0;
}

/* Карточка услуги */
.srv-mega__card {
    display: flex; align-items: center; gap: 12px;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s ease, transform .3s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.site-header__nav-item--mega:hover .srv-mega__card,
.site-header__nav-item--mega:focus-within .srv-mega__card,
.srv-mega:hover .srv-mega__card,
.site-header__nav-item--drop:hover .srv-mega__card,
.site-header__nav-item--drop:focus-within .srv-mega__card,
.srv-drop:hover .srv-mega__card {
    opacity: 1;
    transform: translateY(0);
}
/* Каскадная анимация появления карточек */
.site-header__nav-item--mega:hover .srv-mega__list li:nth-child(1) .srv-mega__card,
.site-header__nav-item--drop:hover .srv-drop__list li:nth-child(1) .srv-mega__card { transition-delay: .04s; }
.site-header__nav-item--mega:hover .srv-mega__list li:nth-child(2) .srv-mega__card,
.site-header__nav-item--drop:hover .srv-drop__list li:nth-child(2) .srv-mega__card { transition-delay: .08s; }
.site-header__nav-item--mega:hover .srv-mega__list li:nth-child(3) .srv-mega__card,
.site-header__nav-item--drop:hover .srv-drop__list li:nth-child(3) .srv-mega__card { transition-delay: .12s; }
.site-header__nav-item--mega:hover .srv-mega__list li:nth-child(4) .srv-mega__card,
.site-header__nav-item--drop:hover .srv-drop__list li:nth-child(4) .srv-mega__card { transition-delay: .16s; }

.srv-mega__card:hover {
    background: #f7faff;
    border-color: color-mix(in srgb, var(--mega-hue) 35%, #eaecef);
    box-shadow: 0 10px 24px -14px color-mix(in srgb, var(--mega-hue) 60%, transparent);
}
.srv-mega__card-icon {
    flex: 0 0 auto;
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    font-size: 20px;
    border-radius: 11px;
    background: color-mix(in srgb, var(--mega-hue) 14%, #fff);
    transition: transform .18s ease, background-color .15s ease;
}
.srv-mega__card:hover .srv-mega__card-icon {
    transform: scale(1.08) rotate(-4deg);
    background: color-mix(in srgb, var(--mega-hue) 22%, #fff);
}
.srv-mega__card-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1 1 auto; }
.srv-mega__card-name {
    font-family: "Montserrat", sans-serif;
    font-size: 14px; font-weight: 700;
    color: #16202e;
    transition: color .15s ease;
}
.srv-mega__card:hover .srv-mega__card-name { color: var(--mega-hue); }
.srv-mega__card-meta {
    font-size: 12px; color: #8a93a0;
    line-height: 1.4;
}
.srv-mega__card-price {
    font-weight: 700;
    color: color-mix(in srgb, var(--mega-hue) 78%, #16202e);
}
.srv-mega__card-arrow {
    flex: 0 0 auto;
    font-size: 15px; color: var(--mega-hue);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .16s ease, transform .16s ease;
}
.srv-mega__card:hover .srv-mega__card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Промо-колонка */
.srv-mega__promo {
    display: flex; flex-direction: column;
    gap: 8px;
    padding: 22px 20px;
    border-radius: 16px;
    background: linear-gradient(150deg, #1a2740 0%, #143a6b 60%, #2c8ee8 130%);
    color: #fff;
}
.srv-mega__promo-eyebrow {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.07em; text-transform: uppercase;
    color: #8fc4ff;
}
.srv-mega__promo-title {
    font-family: "Montserrat", sans-serif;
    font-size: 19px; font-weight: 800;
    line-height: 1.25;
}
.srv-mega__promo-text {
    font-size: 13px; line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 4px;
}
.srv-mega__promo-btn {
    margin-top: auto;
    padding: 11px 18px;
    background: #fff; color: #143a6b;
    border: 0; border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px; font-weight: 700;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}
.srv-mega__promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px -10px rgba(0, 0, 0, 0.45);
}
.srv-mega__promo-all {
    font-size: 12px; font-weight: 600;
    color: #8fc4ff;
    text-decoration: none;
    transition: color .15s ease;
}
.srv-mega__promo-all:hover { color: #fff; }

/* ===== КОМПАКТНЫЙ ДРОПДАУН (широкий режим: 3 отдельных пункта) ===== */
.site-header__nav-item--drop { position: relative; }
.srv-drop {
    position: absolute;
    top: 100%; left: 0;
    width: 336px;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 14px;
    box-shadow: 0 28px 56px -22px rgba(20, 50, 110, 0.32);
    padding: 12px 12px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 99;
}
.srv-drop::before {
    content: "";
    position: absolute;
    top: -14px; left: 0; right: 0;
    height: 14px;
}
.site-header__nav-item--drop:hover .srv-drop,
.site-header__nav-item--drop:focus-within .srv-drop,
.srv-drop:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.srv-drop__list {
    display: flex; flex-direction: column;
    gap: 2px;
    list-style: none; margin: 0; padding: 0;
}
.srv-drop__all {
    display: block;
    margin-top: 6px;
    padding: 10px;
    font-size: 12px; font-weight: 700;
    color: #2c8ee8;
    text-decoration: none;
    border-top: 1px solid #eef1f5;
    transition: color .15s ease;
}
.srv-drop__all:hover { color: #1565a8; }

/* ===== РЕСПОНСИВ: компакт ↔ широкий режим ===== */
/* По умолчанию (1100–1399px) — одно «Услуги», три дропдауна скрыты */
.site-header__nav-item--wide { display: none; }
/* Широкий экран (≥1400px) — три отдельных пункта, «Услуги» скрыто */
@media (min-width: 1400px) {
    .site-header__nav-item--compact { display: none; }
    .site-header__nav-item--wide { display: block; }
    /* 7 пунктов — поджимаем отступы, чтобы строка влезла в контейнер */
    .site-header__nav-list { gap: 12px; }
    .site-header__nav-link { padding-left: 3px; padding-right: 3px; }
}

@media (prefers-reduced-motion: reduce) {
    .srv-mega,
    .srv-drop,
    .srv-mega__card,
    .srv-mega__card-icon,
    .srv-mega__card-arrow,
    .site-header__nav-chevron { transition-duration: .01ms; }
    .srv-mega__card { transform: none; }
}

/* Правая часть — двухрядный блок: телефон+MAX сверху, ссылка-консультация снизу */
.site-header__actions {
    display: flex; flex-direction: column; align-items: flex-end;
    gap: 2px;
    flex: 0 0 auto;
}
.site-header__actions-row {
    display: flex; align-items: center; gap: 12px;
}
.site-header__phone {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px; font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    white-space: nowrap;
    transition: color .15s ease;
}
.site-header__phone:hover { color: #2c8ee8; text-decoration: none; }
.site-header__phone-icon { font-size: 13px; }

/* MAX — просто иконка, без текста и фона */
.site-header__max-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 6px;
    transition: transform .15s ease, opacity .15s ease;
}
.site-header__max-icon:hover { transform: translateY(-1px); opacity: 0.85; }
.site-header__max-icon img { display: block; width: 100%; height: 100%; }

/* Ссылка-консультация — текст без фона, не «кнопка», подчёркивание на hover */
.site-header__consult-link {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: 12px; font-weight: 600;
    color: #2c8ee8;
    text-decoration: none;
    border-bottom: 1px dashed rgba(44, 142, 232, 0.5);
    transition: color .15s ease, border-color .15s ease;
    cursor: pointer;
    background: transparent; border-top: 0; border-left: 0; border-right: 0;
    padding: 0;
    line-height: 1.4;
}
.site-header__consult-link:hover {
    color: #1565a8;
    border-bottom-color: #1565a8;
    text-decoration: none;
}

/* Адаптив шапки */
@media (max-width: 1099px) {
    .site-header__nav { display: none; }
    .site-header__menu-btn { display: inline-flex; align-items: center; justify-content: center; }
}
@media (max-width: 640px) {
    .site-header__consult-link { display: none; }
    .site-header__phone-num { display: none; }
}

/* Чтобы старый header CSS не ломал новую шапку — приоритетные перекрытия */
header.site-header > .container {
    padding-left: 16px;
    padding-right: 16px;
}
@media (min-width: 768px) {
    header.site-header > .container { padding-left: 24px; padding-right: 24px; }
}


/* ===== Mobile menu — слайд-панель из левого края ===== */
.mobile-menu {
    position: fixed; inset: 0;
    z-index: 9998;
    pointer-events: none;
    visibility: hidden;
}
.mobile-menu.show {
    pointer-events: auto;
    visibility: visible;
}
.mobile-menu__overlay {
    position: absolute; inset: 0;
    background: rgba(10, 15, 30, 0.55);
    opacity: 0;
    transition: opacity .25s ease;
}
.mobile-menu.show .mobile-menu__overlay { opacity: 1; }

.mobile-menu__panel {
    position: relative;
    width: 86%; max-width: 380px;
    height: 100%;
    background: #fff;
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    display: flex; flex-direction: column;
    overflow-y: auto;
    box-shadow: 0 0 60px -10px rgba(0, 0, 0, 0.3);
}
.mobile-menu.show .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid #eaecef;
}
.mobile-menu__logo img { display: block; height: 30px; }
.mobile-menu__close {
    width: 36px; height: 36px;
    padding: 0;
    background: transparent; border: 0; cursor: pointer;
    border-radius: 8px;
    transition: background .15s ease;
}
.mobile-menu__close:hover { background: #f5f9fe; }
.mobile-menu__close img { width: 16px; height: 16px; }

.mobile-menu__body {
    padding: 22px;
    display: flex; flex-direction: column; gap: 22px;
    flex: 1;
}

.mobile-menu__nav-list,
.mobile-menu__nav ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 2px;
}
.mobile-menu__nav a {
    display: block;
    padding: 12px 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 17px; font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 10px;
    transition: background .15s ease, color .15s ease, transform .15s ease;
}
.mobile-menu__nav a:hover,
.mobile-menu__nav .current-menu-item > a,
.mobile-menu__nav .current_page_item > a {
    background: #f5f9fe; color: #2c8ee8;
}

.mobile-menu__contacts {
    display: flex; flex-direction: column; gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #eaecef;
}
.mobile-menu__phone,
.mobile-menu__email {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: #f5f9fe;
    border-radius: 10px;
    font-size: 14px; font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: background .15s ease;
}
.mobile-menu__phone:hover,
.mobile-menu__email:hover {
    background: #e3edf9;
    color: #2c8ee8;
    text-decoration: none;
}

.mobile-menu__socials {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.mobile-menu__social {
    display: inline-flex; padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #d9e4f3;
    background: #fff;
    color: #1a1a1a;
    font-size: 13px; font-weight: 600;
    text-decoration: none;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.mobile-menu__social--tg { color: #229ED9; border-color: #229ED9; }
.mobile-menu__social--tg:hover { background: #229ED9; color: #fff; }
.mobile-menu__social--vk { color: #4680C2; border-color: #4680C2; }
.mobile-menu__social--vk:hover { background: #4680C2; color: #fff; }
.mobile-menu__social--max { color: #1565a8; border-color: #1565a8; }
.mobile-menu__social--max:hover { background: linear-gradient(135deg, #4cf, #53e); color: #fff; border-color: transparent; }

.mobile-menu__cta {
    margin-top: auto;
    width: 100%;
    padding: 14px 18px !important;
    font-size: 14px !important;
}

/* ===== Новый футер сайта ===== */
.site-footer {
    background: #0e1117;
    color: #c5cdd6;
    padding: 60px 0 24px;
    margin-top: 60px;
}
.site-footer__main {
    display: grid; gap: 36px;
    grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .site-footer__main { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.site-footer__brand { min-width: 0; }
.site-footer__logo { display: inline-block; margin: 0 0 16px; }
.site-footer__logo img { display: block; height: 36px; width: auto; }
.site-footer__tagline {
    font-size: 14px; line-height: 1.55; color: #9aa5b6;
    margin: 0 0 18px; max-width: 320px;
}
.site-footer__phone,
.site-footer__email {
    display: block;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 15px; font-weight: 600;
    text-decoration: none;
    margin: 0 0 6px;
    transition: color .15s ease;
}
.site-footer__phone:hover,
.site-footer__email:hover { color: #2c8ee8; text-decoration: none; }
.site-footer__email { font-weight: 500; opacity: 0.9; }

.site-footer__cta {
    margin: 16px 0 22px !important;
    color: #fff !important;
    background: #2c8ee8 !important;
    border: 0 !important;
    box-shadow: 0 6px 18px -8px rgba(44, 142, 232, 0.55);
}
.site-footer__cta:hover {
    background: #1565a8 !important;
}

.site-footer__socials {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.site-footer__social {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 48px; height: 36px; padding: 0 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #c5cdd6;
    font-size: 12px; font-weight: 700;
    text-decoration: none;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.site-footer__social:hover {
    background: rgba(255, 255, 255, 0.12); color: #fff; text-decoration: none;
    transform: translateY(-1px);
}
.site-footer__social--tg:hover { border-color: #229ED9; }
.site-footer__social--vk:hover { border-color: #4680C2; }
.site-footer__social--max:hover { background: linear-gradient(135deg, #4cf, #53e); border-color: transparent; color: #fff; }
.site-footer__social--ya:hover { border-color: #ff5733; }

/* Columns */
.site-footer__col { min-width: 0; }
.site-footer__col-title {
    font-family: "Montserrat", sans-serif;
    font-size: 14px; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin: 0 0 18px;
}
.site-footer__menu,
.site-footer__col ul {
    list-style: none; padding: 0; margin: 0;
}
.site-footer__menu li,
.site-footer__col ul li { margin: 0 0 10px; }
.site-footer__menu a,
.site-footer__col ul a {
    color: #9aa5b6;
    font-size: 14px;
    text-decoration: none;
    transition: color .15s ease;
}
.site-footer__menu a:hover,
.site-footer__col ul a:hover { color: #fff; }

/* Legal blocks (внутри #footer) — обновлённые цвета под тёмный фон */
.site-footer .foot-legal {
    border-top-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    margin-top: 40px;
}
.site-footer .foot-legal__links a {
    color: rgba(255, 255, 255, 0.85);
}
.site-footer .foot-legal__entity {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
    .site-footer { padding: 48px 0 20px; margin-top: 40px; }
    .site-footer__cta { width: 100%; text-align: center; }
}

/* ===== Страница «О нас» ===== */
.srv-about { padding-bottom: 0; }

.srv-about__hero {
    padding: 40px 0 36px;
    background: linear-gradient(180deg, #f5faff 0%, #fff 100%);
}
.srv-about__breadcrumbs {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    font-size: 13px; color: #888; margin: 0 0 24px;
}
.srv-about__breadcrumbs a { color: #2c8ee8; text-decoration: none; }
.srv-about__breadcrumbs a:hover { text-decoration: underline; }
.srv-about__eyebrow {
    display: inline-block; margin: 0 0 14px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(44, 142, 232, 0.12); color: #1565a8;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.srv-about__title {
    font-family: "Montserrat", sans-serif;
    font-size: 36px; line-height: 1.18; font-weight: 800;
    color: #1a1a1a; margin: 0 0 18px;
    letter-spacing: -0.01em; max-width: 880px;
}
.srv-about__title strong { color: #2c8ee8; font-weight: 800; }
@media (min-width: 900px) { .srv-about__title { font-size: 48px; } }
.srv-about__subtitle {
    font-size: 17px; line-height: 1.55; color: #555;
    margin: 0; max-width: 760px;
}

/* Цифры */
.srv-about__numbers { padding: 40px 0; }
.srv-about__numbers-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .srv-about__numbers-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .srv-about__numbers-grid { grid-template-columns: repeat(6, 1fr); } }
.srv-about__numbers-grid li {
    padding: 22px 18px;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 14px;
    text-align: center;
    transition: border-color .15s ease, transform .15s ease;
}
.srv-about__numbers-grid li:hover {
    border-color: #2c8ee8; transform: translateY(-2px);
}
.srv-about__numbers-grid strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 36px; font-weight: 800; color: #2c8ee8;
    line-height: 1; margin: 0 0 6px;
}
.srv-about__numbers-grid span {
    display: block;
    font-size: 12px; line-height: 1.4; color: #555;
}

/* Общие */
.srv-about__section-eyebrow {
    display: inline-block; margin: 0 0 10px;
    padding: 4px 12px; border-radius: 999px;
    background: rgba(44, 142, 232, 0.1); color: #1565a8;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
}
.srv-about__section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 30px; line-height: 1.2; font-weight: 800;
    color: #1a1a1a; margin: 0 0 20px;
    letter-spacing: -0.01em;
}
@media (min-width: 900px) { .srv-about__section-title { font-size: 34px; } }

/* Миссия */
.srv-about__mission { padding: 50px 0; }
.srv-about__mission-row {
    display: grid; gap: 36px;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 900px) { .srv-about__mission-row { grid-template-columns: 1.1fr 1fr; gap: 56px; } }
.srv-about__mission-text p {
    font-size: 16px; line-height: 1.65; color: #444;
    margin: 0 0 14px;
}
.srv-about__mission-image {
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 24px 50px -25px rgba(20, 50, 110, 0.2);
}
.srv-about__mission-image img { display: block; width: 100%; height: auto; }

/* Ценности / принципы */
.srv-about__values { padding: 50px 0; background: #fafbfc; }
.srv-about__values-grid {
    list-style: none; padding: 0; margin: 24px 0 0;
    display: grid; gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .srv-about__values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .srv-about__values-grid { grid-template-columns: repeat(3, 1fr); } }
.srv-about__value {
    padding: 28px 26px;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 16px;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.srv-about__value:hover {
    border-color: #2c8ee8; transform: translateY(-3px);
    box-shadow: 0 18px 36px -22px rgba(44, 142, 232, 0.4);
}
.srv-about__value-num {
    font-family: "Montserrat", sans-serif;
    font-size: 32px; font-weight: 800;
    color: transparent;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    -webkit-background-clip: text; background-clip: text;
    line-height: 1; margin: 0 0 14px;
}
.srv-about__value-title {
    font-family: "Montserrat", sans-serif;
    font-size: 18px; font-weight: 800; color: #1a1a1a;
    line-height: 1.3; margin: 0 0 10px;
}
.srv-about__value p {
    font-size: 14px; line-height: 1.6; color: #555;
    margin: 0;
}

/* История / timeline */
.srv-about__history { padding: 50px 0; }
.srv-about__timeline {
    list-style: none; padding: 0; margin: 30px 0 0;
    border-left: 2px solid #e3edf9;
    max-width: 820px;
}
.srv-about__timeline-item {
    display: flex; gap: 24px;
    padding: 0 0 28px 28px;
    margin-left: -1px;
    position: relative;
}
.srv-about__timeline-item::before {
    content: "";
    position: absolute; left: -7px; top: 4px;
    width: 12px; height: 12px;
    background: #2c8ee8;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #e3edf9;
}
.srv-about__timeline-year {
    flex: 0 0 80px;
    font-family: "Montserrat", sans-serif;
    font-size: 20px; font-weight: 800;
    color: #2c8ee8;
}
.srv-about__timeline-body h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px; font-weight: 700; color: #1a1a1a;
    margin: 0 0 6px;
}
.srv-about__timeline-body p {
    font-size: 14px; line-height: 1.55; color: #555;
    margin: 0;
}

/* Команда */
.srv-about__team { padding: 50px 0; background: #fafbfc; }
.srv-about__team-intro {
    font-size: 15px; color: #555; line-height: 1.55;
    margin: 0 0 28px;
    max-width: 680px;
}
.srv-about__team-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px)  { .srv-about__team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .srv-about__team-grid { grid-template-columns: repeat(5, 1fr); } }
.srv-about__team-card {
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: border-color .15s ease, transform .15s ease;
}
.srv-about__team-card:hover {
    border-color: #2c8ee8; transform: translateY(-2px);
}
.srv-about__team-photo {
    position: relative;
    display: block; width: 80px; height: 80px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background-size: cover; background-position: center top;
    background-color: #eaecef;
    box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.15);
}
.srv-about__team-photo--placeholder {
    background: linear-gradient(135deg, #2c8ee8, #1565a8);
    color: #fff;
    display: flex !important;
    align-items: center; justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.04em;
}
.srv-about__team-name {
    font-family: "Montserrat", sans-serif;
    font-size: 14px; font-weight: 700; color: #1a1a1a;
    margin: 0 0 4px;
}
.srv-about__team-role {
    display: block;
    font-size: 12px; line-height: 1.4; color: #777;
}

/* Открытые профили */
.srv-about__proof { padding: 50px 0; }
.srv-about__proof-grid {
    list-style: none; padding: 0; margin: 24px 0 0;
    display: grid; gap: 14px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .srv-about__proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .srv-about__proof-grid { grid-template-columns: repeat(4, 1fr); } }
.srv-about__proof-grid a {
    display: block;
    padding: 22px 22px;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.srv-about__proof-grid a:hover {
    border-color: #2c8ee8; transform: translateY(-3px);
    box-shadow: 0 18px 36px -22px rgba(44, 142, 232, 0.4);
    color: inherit;
}
.srv-about__proof-grid strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 15px; font-weight: 700; color: #1a1a1a;
    margin: 0 0 6px;
}
.srv-about__proof-grid span {
    display: block;
    font-size: 12px; line-height: 1.4; color: #777;
}

/* CTA */
.srv-about__cta { padding: 50px 0 0; }
.srv-about__cta-card {
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff;
    padding: 56px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 30px 60px -25px rgba(44, 142, 232, 0.4);
}
.srv-about__cta-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px; line-height: 1.2; font-weight: 800;
    color: #fff; margin: 0 auto 12px;
    max-width: 700px;
}
.srv-about__cta-text {
    font-size: 16px; line-height: 1.55; color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 24px; max-width: 580px;
}
.srv-about__cta-btn {
    display: inline-flex; padding: 14px 32px;
    background: #fff; color: #1565a8;
    border: 0; border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px; font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.3);
    transition: transform .15s ease, box-shadow .15s ease;
}
.srv-about__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
    .srv-about__title { font-size: 28px; }
    .srv-about__section-title { font-size: 24px; }
    .srv-about__cta-card { padding: 36px 22px; }
    .srv-about__cta-title { font-size: 22px; }
    .srv-about__timeline-item { gap: 14px; padding: 0 0 22px 20px; }
    .srv-about__timeline-year { flex: 0 0 60px; font-size: 16px; }
}

/* ===== Scroll-reveal убран — текст должен быть виден всегда, без анимации появления ===== */
.srv-reveal { opacity: 1 !important; transform: none !important; }

/* ===== Dot-grain текстура для ключевых градиентных блоков ===== */
/* Применяется через ::after на блоки которые уже имеют синий/тёмный градиент */
.srv-home__hero,
.srv-home__culture-modal-dialog,
.srv-blog__cta-card,
.srv-kontakty__cta-card,
.srv-about__cta-card,
.srv-case__cta,
.srv-article__cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.srv-home__hero::after,
.srv-blog__cta-card::after,
.srv-kontakty__cta-card::after,
.srv-about__cta-card::after,
.srv-case__cta::after,
.srv-article__cta::after {
    content: "";
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.6;
}
/* Контент над текстурой */
.srv-home__hero > .container,
.srv-blog__cta-card > *,
.srv-kontakty__cta-card > *,
.srv-about__cta-card > *,
.srv-case__cta > *,
.srv-article__cta > * {
    position: relative;
    z-index: 1;
}

/* Лёгкий «софт-световой» акцент в углу hero и founder */
.srv-home__hero::before {
    content: "";
    position: absolute;
    top: -200px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(44, 142, 232, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(20px);
}
.srv-home__founder {
    position: relative;
    overflow: hidden;
}
.srv-home__founder::before {
    content: "";
    position: absolute;
    bottom: -150px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(108, 179, 255, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(15px);
}
.srv-home__founder > .container {
    position: relative; z-index: 1;
}

/* ===== Дифференциация однотипных блоков на главной =====
   Каждый блок получает свой характер: фон, акцент, карточки.
   Не «борщ», а тонкие отличия чтобы глаз не уставал. */

/* ============ Benefits — «Что вы получите» ============ */
/* Чистый белый фон, КАРТОЧКИ с лёгким голубым градиентом + top-border accent */
.srv-home__benefits {
    background: #ffffff;
    position: relative;
}
.srv-home__benefits::before {
    content: "";
    position: absolute;
    top: 40px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px;
    background: linear-gradient(90deg, #2c8ee8, #1565a8);
    border-radius: 2px;
    opacity: 0.5;
}
.srv-home__benefit {
    background: linear-gradient(180deg, #f5faff 0%, #ffffff 60%);
    border-color: rgba(44, 142, 232, 0.15);
    position: relative;
    overflow: hidden;
}
.srv-home__benefit::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2c8ee8, transparent);
    opacity: 0;
    transition: opacity .3s ease;
}
.srv-home__benefit:hover {
    border-color: #2c8ee8;
    transform: translateY(-4px);
    box-shadow: 0 22px 44px -22px rgba(44, 142, 232, 0.35);
}
.srv-home__benefit:hover::before { opacity: 1; }
.srv-home__benefit-icon {
    background: linear-gradient(135deg, rgba(44, 142, 232, 0.18) 0%, rgba(44, 142, 232, 0.08) 100%);
    box-shadow: 0 4px 12px -4px rgba(44, 142, 232, 0.25);
}

/* ============ Router — «Что вам нужно прямо сейчас?» ============ */
/* Светло-голубой фон #f5f9fe (более «диалоговый»), карточки с left-border accent */
.srv-catalog__router {
    background: #f5f9fe;
}
.srv-catalog__router::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 90% 10%, rgba(44, 142, 232, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}
.srv-catalog__router > .container { position: relative; z-index: 1; }
/* (стили .srv-catalog__router-card перенесены в основную секцию выше — рядом с грид-описанием) */

/* ============ Services grid — «12 направлений» ============ */
/* Белый с лёгким верхним градиентом, карточки с растущей синей полосой при hover */
.srv-catalog__grid-section {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 40%);
    position: relative;
}
.srv-catalog__grid-section::before {
    content: "";
    display: none; /* убираем общую "12" — теперь у каждой карточки своя цифра */
    position: absolute;
    top: 30px; right: 5%;
    font-family: "Montserrat", sans-serif;
    font-size: 220px; font-weight: 900;
    color: rgba(44, 142, 232, 0.04);
    letter-spacing: -0.05em;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}
@media (max-width: 900px) { .srv-catalog__grid-section::before { display: none; } }
.srv-catalog__grid-section > .container { position: relative; z-index: 1; }
.srv-catalog__card {
    box-shadow: 0 4px 14px -8px rgba(20, 50, 110, 0.08);
    position: relative;
    overflow: hidden;
    --srv-hue: #2c8ee8;
    --srv-hue-deep: #1565a8;
}
/* Цветовая палитра по нише — переопределяем CSS-переменную */
.srv-catalog__card--blue   { --srv-hue: #0066cc; --srv-hue-deep: #003e7a; }
.srv-catalog__card--green  { --srv-hue: #28a745; --srv-hue-deep: #155a26; }
.srv-catalog__card--purple { --srv-hue: #7b4feb; --srv-hue-deep: #4a2bb0; }
.srv-catalog__card--pink   { --srv-hue: #e83e8c; --srv-hue-deep: #97225c; }
.srv-catalog__card--cyan   { --srv-hue: #17a2b8; --srv-hue-deep: #0d6573; }
.srv-catalog__card--amber  { --srv-hue: #f59e0b; --srv-hue-deep: #a96d05; }
.srv-catalog__card--teal   { --srv-hue: #009688; --srv-hue-deep: #00574f; }
.srv-catalog__card--red    { --srv-hue: #dc3545; --srv-hue-deep: #8a1f29; }
.srv-catalog__card--orange { --srv-hue: #fb6f3a; --srv-hue-deep: #b34418; }

/* Большая фоновая цифра — главный визуальный «зацеп» */
.srv-catalog__card::after {
    content: attr(data-srv-num);
    position: absolute;
    bottom: -32px; right: -8px;
    font-family: "Montserrat", sans-serif;
    font-size: 180px; font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    color: transparent;
    background: linear-gradient(135deg, var(--srv-hue) 0%, var(--srv-hue-deep) 100%);
    -webkit-background-clip: text; background-clip: text;
    opacity: 0.08;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
    z-index: 0;
}

/* Нижняя растущая полоса — окрашена по hue */
.srv-catalog__card::before {
    content: "";
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 4px;
    background: linear-gradient(90deg, var(--srv-hue), var(--srv-hue-deep));
    transition: width .35s ease;
    z-index: 1;
}

.srv-catalog__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 52px -24px color-mix(in srgb, var(--srv-hue) 40%, transparent);
    border-color: color-mix(in srgb, var(--srv-hue) 30%, #eaecef);
}
.srv-catalog__card:hover::before { width: 80%; }
.srv-catalog__card:hover::after {
    opacity: 0.16;
    transform: scale(1.05);
}

/* Содержимое над цифрой */
.srv-catalog__card-link {
    position: relative;
    z-index: 1;
}

/* Иконка получает цвет своего hue */
.srv-catalog__card-icon {
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--srv-hue) 22%, transparent) 0%,
        color-mix(in srgb, var(--srv-hue) 10%, transparent) 100%) !important;
    box-shadow: 0 8px 16px -8px color-mix(in srgb, var(--srv-hue) 40%, transparent);
}

/* «Подробнее →» тоже подкрашиваем по hue */
.srv-catalog__card-more {
    color: var(--srv-hue-deep) !important;
}
.srv-catalog__card-more span[aria-hidden] {
    display: inline-block;
    transition: transform .25s ease;
}
.srv-catalog__card:hover .srv-catalog__card-more span[aria-hidden] {
    transform: translateX(6px);
}

/* Иконки в .srv-catalog__card-icon — добавляем тонкое наружное свечение */
.srv-catalog__card-icon {
    box-shadow: 0 6px 14px -6px rgba(44, 142, 232, 0.22);
    transition: transform .25s ease;
}
.srv-catalog__card:hover .srv-catalog__card-icon {
    transform: scale(1.05) rotate(-3deg);
}

/* ===== Категория «Кейсы» ===== */
.srv-kejsy { padding-bottom: 60px; }

.srv-kejsy__hero {
    padding: 40px 0 36px;
    background: linear-gradient(180deg, #f5faff 0%, #fff 100%);
}
.srv-kejsy__breadcrumbs {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    font-size: 13px; color: #888; margin: 0 0 24px;
}
.srv-kejsy__breadcrumbs a { color: #2c8ee8; text-decoration: none; }
.srv-kejsy__breadcrumbs a:hover { text-decoration: underline; }
.srv-kejsy__eyebrow {
    display: inline-block; margin: 0 0 14px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(44, 142, 232, 0.12); color: #1565a8;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.srv-kejsy__title {
    font-family: "Montserrat", sans-serif;
    font-size: 38px; line-height: 1.15; font-weight: 800;
    color: #1a1a1a; margin: 0 0 16px;
    letter-spacing: -0.015em;
}
@media (min-width: 900px) { .srv-kejsy__title { font-size: 46px; } }
.srv-kejsy__subtitle {
    font-size: 17px; line-height: 1.55; color: #555;
    margin: 0; max-width: 760px;
}
.srv-kejsy__subtitle strong { color: #2c8ee8; font-weight: 800; }

/* Фильтр-чипсы по подкатегориям */
.srv-kejsy__filter { padding: 16px 0 24px; }
.srv-kejsy__chips {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.srv-kejsy__chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e3edf9;
    border-radius: 999px;
    color: #555;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.srv-kejsy__chip:hover {
    background: #f5f9fe; border-color: #2c8ee8; color: #1565a8;
    transform: translateY(-1px);
    text-decoration: none;
}
.srv-kejsy__chip--active {
    background: #2c8ee8; border-color: #2c8ee8; color: #fff;
}
.srv-kejsy__chip--active:hover {
    background: #1565a8; color: #fff; border-color: #1565a8;
}
.srv-kejsy__chip-count {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 24px; height: 20px; padding: 0 6px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 999px;
    font-size: 11px; font-weight: 700;
}
.srv-kejsy__chip--active .srv-kejsy__chip-count {
    background: rgba(255, 255, 255, 0.25); color: #fff;
}

/* Сетка кейсов */
.srv-kejsy__grid-section { padding: 16px 0 40px; }
.srv-kejsy__grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .srv-kejsy__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .srv-kejsy__grid { grid-template-columns: repeat(3, 1fr); } }

/* Featured-карточка занимает 2 колонки на широких экранах */
@media (min-width: 1100px) {
    .srv-kejsy__card--featured { grid-column: span 2; }
    .srv-kejsy__card--featured .srv-kejsy__card-link {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 0;
    }
    .srv-kejsy__card--featured .srv-kejsy__card-media { height: 100%; min-height: 320px; }
    .srv-kejsy__card--featured .srv-kejsy__card-body { padding: 36px 36px 32px; }
    .srv-kejsy__card--featured .srv-kejsy__card-title { font-size: 24px; }
}

.srv-kejsy__card-link {
    display: block; height: 100%;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none; color: inherit;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.srv-kejsy__card-link:hover {
    border-color: #2c8ee8;
    transform: translateY(-4px);
    box-shadow: 0 26px 52px -28px rgba(44, 142, 232, 0.4);
    color: inherit;
}

.srv-kejsy__card-media {
    display: block; height: 220px;
    background-color: #1a1a1a;
    overflow: hidden;
    position: relative;
}
.srv-kejsy__card-media img {
    display: block; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform .4s ease;
}
.srv-kejsy__card-link:hover .srv-kejsy__card-media img { transform: scale(1.04); }

/* Placeholder для кейсов без миниатюры — текстовая карточка с градиентом */
.srv-kejsy__card-media--empty {
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 22px;
}
.srv-kejsy__card-placeholder {
    text-align: center; color: #fff;
}
.srv-kejsy__card-placeholder-tag {
    display: inline-block; margin: 0 0 10px;
    padding: 5px 12px; border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
}
.srv-kejsy__card-placeholder-title {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 18px; font-weight: 800;
    line-height: 1.3;
    color: #fff;
}

.srv-kejsy__card-body {
    display: block;
    padding: 22px 24px 24px;
}
.srv-kejsy__card-tag {
    display: inline-block; margin: 0 0 10px;
    padding: 4px 10px; border-radius: 999px;
    background: rgba(44, 142, 232, 0.12); color: #1565a8;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
}
.srv-kejsy__card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 18px; line-height: 1.3; font-weight: 800;
    color: #1a1a1a; margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.srv-kejsy__card-excerpt {
    font-size: 14px; line-height: 1.55; color: #555;
    margin: 0 0 14px;
}
.srv-kejsy__card-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: #2c8ee8; font-weight: 700; font-size: 14px;
}
.srv-kejsy__card-more span[aria-hidden] {
    display: inline-block;
    transition: transform .25s ease;
}
.srv-kejsy__card-link:hover .srv-kejsy__card-more span[aria-hidden] {
    transform: translateX(6px);
}

/* Пагинация */
.srv-kejsy__pagination {
    margin: 40px 0 0;
    display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}
.srv-kejsy__pagination a,
.srv-kejsy__pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #eaecef;
    background: #fff;
    color: #1a1a1a;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.srv-kejsy__pagination a:hover {
    border-color: #2c8ee8; color: #2c8ee8;
}
.srv-kejsy__pagination .current {
    background: #2c8ee8; color: #fff; border-color: #2c8ee8;
}
.srv-kejsy__pagination .dots { border: 0; background: transparent; }

/* Empty state */
.srv-kejsy__empty { padding: 60px 0; text-align: center; }
.srv-kejsy__empty h2 { font-family: "Montserrat", sans-serif; margin: 0 0 12px; }
.srv-kejsy__empty a { color: #2c8ee8; text-decoration: underline; }

/* CTA */
.srv-kejsy__cta { padding: 40px 0 0; }
.srv-kejsy__cta-card {
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff;
    padding: 48px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 30px 60px -25px rgba(44, 142, 232, 0.4);
}
.srv-kejsy__cta-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px; line-height: 1.2; font-weight: 800;
    color: #fff; margin: 0 auto 12px;
    max-width: 700px;
}
.srv-kejsy__cta-text {
    font-size: 16px; line-height: 1.55; color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 24px; max-width: 600px;
}
.srv-kejsy__cta-btn {
    display: inline-flex; padding: 14px 32px;
    background: #fff; color: #1565a8;
    border: 0; border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px; font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.3);
    transition: transform .15s ease, box-shadow .15s ease;
}
.srv-kejsy__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
    .srv-kejsy__hero { padding: 32px 0 24px; }
    .srv-kejsy__title { font-size: 28px; }
    .srv-kejsy__cta-card { padding: 32px 22px; }
    .srv-kejsy__cta-title { font-size: 22px; }
}

/* ===== Лид-попап «Бесплатный разбор задачи от основателя» ===== */
.srv-leadpop {
    position: fixed; inset: 0;
    z-index: 10000;
    display: none;
    align-items: center; justify-content: center;
    padding: 20px;
    pointer-events: none;
}
.srv-leadpop.is-open {
    display: flex;
    pointer-events: auto;
    animation: srvLeadpopFadeIn 0.25s ease-out;
}
@keyframes srvLeadpopFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.srv-leadpop__overlay {
    position: absolute; inset: 0;
    background: rgba(20, 30, 45, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}
.srv-leadpop__panel {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    padding: 30px 28px 26px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
    animation: srvLeadpopSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes srvLeadpopSlideUp {
    from { transform: translateY(30px) scale(0.96); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* Крестик */
.srv-leadpop__close {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: #8893a0;
    border: 0; border-radius: 50%;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
.srv-leadpop__close:hover {
    background: #f0f3f7; color: #1a1a1a;
}
.srv-leadpop__close svg { display: block; }

/* Шапка с фото */
.srv-leadpop__hero {
    display: flex; align-items: center;
    gap: 14px;
    margin: 0 0 18px;
}
.srv-leadpop__photo {
    flex: 0 0 64px;
    width: 64px; height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    border: 3px solid #fff;
    box-shadow: 0 4px 12px -4px rgba(44, 142, 232, 0.5);
}
.srv-leadpop__photo img {
    display: block;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
}
.srv-leadpop__hero-text {
    display: flex; flex-direction: column;
    min-width: 0;
}
.srv-leadpop__eyebrow {
    font-style: normal;
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.05em; color: #2c8ee8;
    font-weight: 700;
    margin-bottom: 2px;
}
.srv-leadpop__name {
    font-family: "Montserrat", sans-serif;
    font-size: 16px; font-weight: 700;
    color: #1a1a1a; line-height: 1.2;
}
.srv-leadpop__subline {
    font-size: 12px; color: #888;
    margin-top: 2px;
}

/* Заголовок и текст */
.srv-leadpop__title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px; line-height: 1.25;
    font-weight: 800; color: #1a1a1a;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.srv-leadpop__title-accent {
    color: #2c8ee8;
}
.srv-leadpop__lead {
    font-size: 14px; line-height: 1.55;
    color: #4a5260;
    margin: 0 0 14px;
}
.srv-leadpop__lead strong { color: #1a1a1a; }

/* Гарантии-галочки */
.srv-leadpop__guarantees {
    list-style: none; padding: 0;
    margin: 0 0 18px;
    background: #f5f8fc;
    border-radius: 12px;
    padding: 12px 14px 12px 36px;
}
.srv-leadpop__guarantees li {
    position: relative;
    font-size: 13px; line-height: 1.45;
    color: #1a1a1a;
    padding: 4px 0;
}
.srv-leadpop__guarantees li::before {
    content: '';
    position: absolute;
    left: -22px; top: 8px;
    width: 14px; height: 14px;
    background: #2c8ee8;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #fff;
}
.srv-leadpop__guarantees li::after {
    content: '';
    position: absolute;
    left: -19px; top: 11px;
    width: 6px; height: 3px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

/* Форма */
.srv-leadpop__form { margin: 0; }
.srv-leadpop__error {
    margin: 0 0 10px;
    color: #d32f2f;
    font-size: 13px; line-height: 1.4;
}
.srv-leadpop__error:empty { display: none; }
.srv-leadpop__field {
    margin-bottom: 10px;
}
.srv-leadpop__label {
    display: block;
    font-size: 12px;
    color: #4a5260;
    margin: 0 0 4px;
    font-weight: 600;
}
.srv-leadpop__label em {
    font-style: normal;
    color: #8893a0;
    font-weight: 400;
}
.srv-leadpop__label span {
    color: #d32f2f;
    margin-left: 2px;
}
.srv-leadpop__field input,
.srv-leadpop__field textarea {
    display: block;
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #d6dbe0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: #1a1a1a;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
    resize: vertical;
}
.srv-leadpop__field input:focus,
.srv-leadpop__field textarea:focus {
    outline: none;
    border-color: #2c8ee8;
    box-shadow: 0 0 0 3px rgba(44, 142, 232, 0.15);
}
.srv-leadpop__field input::placeholder,
.srv-leadpop__field textarea::placeholder {
    color: #b0b6bf;
}

/* Чекбокс согласия */
.srv-leadpop__check {
    display: flex; align-items: flex-start;
    gap: 8px;
    margin: 12px 0 14px;
    cursor: pointer;
    font-size: 12px; line-height: 1.4;
    color: #4a5260;
}
.srv-leadpop__check input[type="checkbox"] {
    flex: 0 0 16px;
    width: 16px; height: 16px;
    margin: 2px 0 0;
    accent-color: #2c8ee8;
    cursor: pointer;
}
.srv-leadpop__check a {
    color: #2c8ee8;
    text-decoration: underline;
}
.srv-leadpop__check a:hover { color: #1565a8; }

/* Кнопка отправки */
.srv-leadpop__submit {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 22px;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff;
    border: 0; border-radius: 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px; font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px -8px rgba(44, 142, 232, 0.6);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.srv-leadpop__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -8px rgba(44, 142, 232, 0.7);
    color: #fff;
}
.srv-leadpop__submit:active {
    transform: translateY(0);
}
.srv-leadpop__submit svg {
    transition: transform 0.2s ease;
}
.srv-leadpop__submit:hover svg {
    transform: translateX(3px);
}

.srv-leadpop__nopressure {
    margin: 12px 0 0;
    font-size: 11px;
    line-height: 1.45;
    color: #8893a0;
    text-align: center;
}

/* Мобильная адаптация — bottom-sheet */
@media (max-width: 600px) {
    .srv-leadpop {
        padding: 0;
        align-items: flex-end;
    }
    .srv-leadpop__panel {
        max-width: 100%;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        padding: 26px 22px 22px;
        animation: srvLeadpopSlideUpMobile 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes srvLeadpopSlideUpMobile {
        from { transform: translateY(100%); }
        to   { transform: translateY(0); }
    }
    .srv-leadpop__title { font-size: 19px; }
    .srv-leadpop__photo { flex: 0 0 56px; width: 56px; height: 56px; }
    .srv-leadpop__guarantees { padding: 10px 12px 10px 34px; }
    .srv-leadpop__guarantees li { font-size: 12px; }
}

/* ===== Экзит-попап «Подождите — заберите гайды» ===== */
.srv-exitpop {
    position: fixed; inset: 0;
    z-index: 10001;
    display: none;
    align-items: center; justify-content: center;
    padding: 20px;
    pointer-events: none;
}
.srv-exitpop.is-open {
    display: flex;
    pointer-events: auto;
    animation: srvExitpopFadeIn 0.25s ease-out;
}
@keyframes srvExitpopFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.srv-exitpop__overlay {
    position: absolute; inset: 0;
    background: rgba(35, 25, 15, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
}
.srv-exitpop__panel {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #fff;
    border-radius: 22px;
    padding: 38px 34px 24px;
    box-shadow: 0 50px 100px -20px rgba(20, 14, 5, 0.55);
    animation: srvExitpopPop 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    /* Лёгкий «премиум»-обрамляющий блик сверху */
    background-image:
        radial-gradient(ellipse 360px 140px at 50% -10px, rgba(245, 158, 11, 0.10), transparent 70%);
}
@keyframes srvExitpopPop {
    from { transform: translateY(40px) scale(0.95); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}

.srv-exitpop__close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: #8893a0;
    border: 0; border-radius: 50%;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
.srv-exitpop__close:hover {
    background: #fef3e2; color: #d97706;
}

/* Аватар основателя с премиум-кольцом */
.srv-exitpop__avatar-wrap {
    position: relative;
    width: 110px; height: 110px;
    margin: 0 auto 16px;
}
.srv-exitpop__avatar {
    position: relative; z-index: 2;
    display: block;
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 4px solid #fff;
    box-shadow: 0 14px 30px -10px rgba(217, 119, 6, 0.4);
}
.srv-exitpop__avatar-ring {
    position: absolute; inset: -6px;
    border-radius: 50%;
    background: conic-gradient(from 215deg, #fbbf24, #f59e0b, #fbbf24, #f59e0b, #fbbf24);
    z-index: 1;
    animation: srvExitpopRingSpin 12s linear infinite;
    opacity: 0.6;
}
@keyframes srvExitpopRingSpin {
    to { transform: rotate(360deg); }
}

/* Шапка */
.srv-exitpop__head { margin: 0 0 16px; }
.srv-exitpop__eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px 5px 10px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #fff;
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
    box-shadow: 0 4px 10px -3px rgba(245, 158, 11, 0.55);
}
.srv-exitpop__eyebrow svg {
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}
.srv-exitpop__title {
    font-family: "Montserrat", sans-serif;
    font-size: 26px; line-height: 1.18;
    font-weight: 800; color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.015em;
}
.srv-exitpop__title-accent {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

/* Личное сообщение */
.srv-exitpop__message {
    font-size: 14px; line-height: 1.55;
    color: #4a5260;
    margin: 0 0 14px;
}

/* Буллеты ценности */
.srv-exitpop__bullets {
    list-style: none; padding: 0;
    margin: 0 0 20px;
    text-align: left;
    background: #fef9f0;
    border-radius: 14px;
    padding: 14px 16px 14px 16px;
}
.srv-exitpop__bullets li {
    position: relative;
    padding: 6px 0 6px 26px;
    font-size: 13.5px;
    line-height: 1.45;
    color: #1a1a1a;
}
.srv-exitpop__bullets li + li {
    border-top: 1px solid rgba(245, 158, 11, 0.12);
}
.srv-exitpop__bullets li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 2px 4px -1px rgba(245, 158, 11, 0.5);
}
.srv-exitpop__bullets li::after {
    content: '';
    position: absolute;
    left: 4px; top: 14px;
    width: 7px; height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}
.srv-exitpop__bullets li strong {
    color: #d97706;
    font-weight: 700;
}

/* Форма */
.srv-exitpop__form { margin: 0; text-align: left; }
.srv-exitpop__error {
    margin: 0 0 10px;
    color: #d32f2f;
    font-size: 13px;
    text-align: center;
}
.srv-exitpop__error:empty { display: none; }

.srv-exitpop__field {
    margin-bottom: 12px;
}
.srv-exitpop__field input[type="text"],
.srv-exitpop__field textarea {
    display: block;
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #d6dbe0;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: #1a1a1a;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
    resize: vertical;
}
.srv-exitpop__field input[type="text"]:focus,
.srv-exitpop__field textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}
.srv-exitpop__field input[type="text"]::placeholder,
.srv-exitpop__field textarea::placeholder {
    color: #b0b6bf;
}

.srv-exitpop__check {
    display: flex; align-items: flex-start;
    gap: 8px;
    margin: 0 0 14px;
    cursor: pointer;
    font-size: 11px; line-height: 1.4;
    color: #6b7280;
    text-align: left;
}
.srv-exitpop__check input[type="checkbox"] {
    flex: 0 0 14px;
    width: 14px; height: 14px;
    margin: 2px 0 0;
    accent-color: #f59e0b;
    cursor: pointer;
}
.srv-exitpop__check a {
    color: #d97706;
    text-decoration: underline;
}
.srv-exitpop__check a:hover { color: #92400e; }

/* Главный CTA — мощный, с медленным «дыханием» (subtle, не нервничает) */
.srv-exitpop__submit {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 17px 22px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    color: #fff;
    border: 0; border-radius: 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px; font-weight: 800;
    letter-spacing: -0.005em;
    cursor: pointer;
    box-shadow: 0 12px 28px -6px rgba(217, 119, 6, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    overflow: hidden;
}
.srv-exitpop__submit::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: srvExitpopShine 3.5s ease-in-out infinite;
}
@keyframes srvExitpopShine {
    0%, 60% { left: -100%; }
    100%    { left: 200%; }
}
.srv-exitpop__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -6px rgba(217, 119, 6, 0.7),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: #fff;
}
.srv-exitpop__submit:active { transform: translateY(0); }
.srv-exitpop__submit svg {
    transition: transform 0.2s ease;
    position: relative; z-index: 1;
}
.srv-exitpop__submit:hover svg { transform: translateX(4px); }
.srv-exitpop__submit span { position: relative; z-index: 1; }

/* Social proof — три блока с цифрами */
.srv-exitpop__proof {
    list-style: none; padding: 0;
    margin: 18px 0 0;
    display: flex; align-items: stretch;
    gap: 0;
    border-top: 1px solid #f0e2c5;
    padding-top: 16px;
}
.srv-exitpop__proof li {
    flex: 1 1 0;
    display: flex; flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 6px;
}
.srv-exitpop__proof li + li {
    border-left: 1px solid #f0e2c5;
}
.srv-exitpop__proof strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 18px; font-weight: 800;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin: 0 0 3px;
}
.srv-exitpop__proof em {
    display: block;
    font-style: normal;
    font-size: 11px;
    color: #6b7280;
    line-height: 1.3;
}

/* Мобильная адаптация экзит-попапа — bottom-sheet */
@media (max-width: 600px) {
    .srv-exitpop {
        padding: 0;
        align-items: flex-end;
    }
    .srv-exitpop__panel {
        max-width: 100%;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        padding: 28px 22px 22px;
        animation: srvExitpopSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes srvExitpopSlideUp {
        from { transform: translateY(100%); }
        to   { transform: translateY(0); }
    }
    .srv-exitpop__avatar-wrap { width: 92px; height: 92px; margin-bottom: 14px; }
    .srv-exitpop__title { font-size: 21px; }
    .srv-exitpop__message { font-size: 13px; }
    .srv-exitpop__bullets li { font-size: 12.5px; padding-left: 24px; }
    .srv-exitpop__submit { font-size: 15px; padding: 15px 18px; }
    .srv-exitpop__proof strong { font-size: 16px; }
    .srv-exitpop__proof em { font-size: 10px; }
}

/* ===== Портфолио работ (галерея 197+ проектов с фильтрами) ===== */
.srv-portfolio { padding-bottom: 60px; }
.srv-portfolio__hero {
    background: linear-gradient(180deg, #f5faff 0%, #fff 100%);
    padding: 40px 0 36px;
}
.srv-portfolio__breadcrumbs {
    display: flex; flex-wrap: wrap; gap: 8px;
    font-size: 13px; color: #6b7280;
    margin-bottom: 16px;
}
.srv-portfolio__breadcrumbs a { color: #2c8ee8; text-decoration: none; }
.srv-portfolio__eyebrow {
    display: inline-block;
    padding: 4px 12px;
    background: #2c8ee8;
    color: #fff;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.srv-portfolio__title {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}
.srv-portfolio__subtitle {
    font-size: 17px;
    line-height: 1.55;
    color: #4a5260;
    max-width: 760px;
    margin: 0 0 24px;
}
.srv-portfolio__subtitle a { color: #2c8ee8; }
.srv-portfolio__stats {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 32px; flex-wrap: wrap;
}
.srv-portfolio__stats li { display: flex; align-items: baseline; gap: 8px; }
.srv-portfolio__stats strong {
    font-family: "Montserrat", sans-serif;
    font-size: 28px; font-weight: 800;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.srv-portfolio__stats span { font-size: 13px; line-height: 1.3; color: #6b7280; }

.srv-portfolio__filters {
    background: rgba(255, 255, 255, 0.96);
    padding: 24px 0 8px;
    border-bottom: 1px solid #eaecef;
    position: sticky; top: 0; z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.srv-portfolio__search {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
}
.srv-portfolio__search input {
    flex: 1 1 auto;
    padding: 12px 16px;
    border: 1.5px solid #d6dbe0;
    border-radius: 10px;
    font-size: 15px; background: #fff;
    transition: border-color 0.15s ease;
    box-sizing: border-box;
}
.srv-portfolio__search input:focus { outline: none; border-color: #2c8ee8; }
.srv-portfolio__search-count {
    font-size: 13px; color: #6b7280; white-space: nowrap; flex: 0 0 auto;
}
.srv-portfolio__filter-group {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 8px; margin-bottom: 12px;
}
.srv-portfolio__filter-label {
    font-size: 12px; color: #6b7280;
    text-transform: uppercase; letter-spacing: 0.05em;
    margin-right: 6px;
}
.srv-portfolio__chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    background: #f5f8fc;
    border: 1px solid #eaecef;
    border-radius: 100px;
    font-size: 13px; color: #4a5260;
    cursor: pointer; font-family: inherit;
    transition: all 0.15s ease;
}
.srv-portfolio__chip:hover { border-color: #2c8ee8; color: #2c8ee8; }
.srv-portfolio__chip.is-active {
    background: #2c8ee8; border-color: #2c8ee8;
    color: #fff; font-weight: 600;
}
.srv-portfolio__chip em { font-style: normal; font-size: 11px; opacity: 0.7; }

.srv-portfolio__grid-section { padding: 28px 0 0; }
.srv-portfolio__grid {
    list-style: none; margin: 0; padding: 0;
    display: grid; gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .srv-portfolio__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .srv-portfolio__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1400px) { .srv-portfolio__grid { grid-template-columns: repeat(4, 1fr); } }

.srv-portfolio__card {
    background: #fff; border: 1px solid #eaecef;
    border-radius: 14px; overflow: hidden;
    transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.srv-portfolio__card:hover {
    border-color: #2c8ee8;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -18px rgba(44, 142, 232, 0.35);
}
.srv-portfolio__card-link {
    display: flex; flex-direction: column;
    height: 100%; text-decoration: none; color: inherit;
}
.srv-portfolio__card-media {
    display: block; position: relative;
    height: 180px; overflow: hidden;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
}
.srv-portfolio__card-media img {
    display: block; width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
}
.srv-portfolio__card-placeholder {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
}
.srv-portfolio__card-placeholder-letter {
    font-family: "Montserrat", sans-serif;
    font-size: 64px; font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
}
.srv-portfolio__card-overlay {
    position: absolute; inset: 0;
    background: rgba(20, 30, 45, 0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.2s ease;
}
.srv-portfolio__card:hover .srv-portfolio__card-overlay { opacity: 1; }
.srv-portfolio__card-overlay-text {
    color: #fff; font-weight: 700; font-size: 14px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.srv-portfolio__card-body {
    flex: 1 1 auto; padding: 14px 16px 16px;
    display: flex; flex-direction: column; gap: 8px;
}
.srv-portfolio__card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.srv-portfolio__card-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.02em;
}
.srv-portfolio__card-tag--razrabotka { background: #e6f2ff; color: #1565a8; }
.srv-portfolio__card-tag--verstka    { background: #fef3e2; color: #b45309; }
.srv-portfolio__card-tag--partner    { background: #f3e8ff; color: #7c3aed; }
.srv-portfolio__card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 15px; font-weight: 700;
    color: #1a1a1a; margin: 0; line-height: 1.3;
}
.srv-portfolio__card-theme { font-size: 12px; color: #6b7280; line-height: 1.4; }
.srv-portfolio__card-meta {
    display: flex; flex-wrap: wrap; gap: 8px;
    font-size: 11px; color: #8893a0;
    margin-top: auto; padding-top: 4px;
}
.srv-portfolio__card-domain { color: #2c8ee8; }
.srv-portfolio__card-link--nolink { cursor: default; opacity: 0.7; }
.srv-portfolio__card-link--nolink .srv-portfolio__card-overlay-text { color: #ffb4b4; }

.srv-portfolio__empty {
    text-align: center; padding: 60px 0; color: #6b7280;
}
.srv-portfolio__empty button {
    background: none; border: 0;
    color: #2c8ee8; font-weight: 600;
    cursor: pointer; font-size: 15px;
}
.srv-portfolio__cta { padding: 60px 0 0; }
.srv-portfolio__cta-card {
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff; border-radius: 22px;
    padding: 40px 36px; text-align: center;
    box-shadow: 0 30px 60px -25px rgba(44, 142, 232, 0.45);
}
.srv-portfolio__cta-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px; font-weight: 800;
    color: #fff; margin: 0 0 12px;
}
.srv-portfolio__cta-text {
    font-size: 16px; line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 22px; max-width: 620px;
}
.srv-portfolio__cta-btn {
    display: inline-flex;
    padding: 14px 30px;
    background: #fff; color: #1565a8;
    border: 0; border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px; font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.srv-portfolio__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
    .srv-portfolio__title { font-size: 26px; }
    .srv-portfolio__stats { gap: 16px; }
    .srv-portfolio__stats strong { font-size: 22px; }
    .srv-portfolio__filters { padding: 16px 0 4px; }
    .srv-portfolio__filter-label { width: 100%; margin-bottom: 4px; }
    .srv-portfolio__cta-card { padding: 28px 22px; }
    .srv-portfolio__cta-title { font-size: 22px; }
}

/* Кросс-ссылка на портфолио со страницы /kejsy/ */
.srv-kejsy__portfolio-link { padding: 20px 0 0; }
.srv-kejsy__portfolio-card {
    display: flex; align-items: center; gap: 18px;
    padding: 22px 28px;
    background: linear-gradient(135deg, #f5faff 0%, #eaf3ff 100%);
    border: 1px solid #d6e9ff;
    border-radius: 16px;
    text-decoration: none; color: inherit;
    transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.srv-kejsy__portfolio-card:hover {
    border-color: #2c8ee8;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -16px rgba(44, 142, 232, 0.4);
    color: inherit;
}
.srv-kejsy__portfolio-icon {
    flex: 0 0 56px; width: 56px; height: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff; border-radius: 14px;
    font-size: 26px;
    box-shadow: 0 6px 16px -6px rgba(44, 142, 232, 0.3);
}
.srv-kejsy__portfolio-body {
    flex: 1 1 auto; display: flex; flex-direction: column; gap: 4px;
}
.srv-kejsy__portfolio-body strong {
    font-family: "Montserrat", sans-serif;
    font-size: 18px; font-weight: 800; color: #1a1a1a;
}
.srv-kejsy__portfolio-body span {
    font-size: 14px; line-height: 1.45; color: #4a5260;
}
.srv-kejsy__portfolio-arrow {
    flex: 0 0 auto; color: #2c8ee8; font-size: 24px; font-weight: 700;
    transition: transform 0.15s ease;
}
.srv-kejsy__portfolio-card:hover .srv-kejsy__portfolio-arrow {
    transform: translateX(4px);
}
@media (max-width: 600px) {
    .srv-kejsy__portfolio-card { padding: 18px 18px; gap: 14px; flex-wrap: wrap; }
    .srv-kejsy__portfolio-icon { flex-basis: 44px; width: 44px; height: 44px; font-size: 20px; }
    .srv-kejsy__portfolio-body strong { font-size: 16px; }
    .srv-kejsy__portfolio-body span { font-size: 13px; }
}

/* ===== Переключатель режимов: Кейсы ↔ Портфолио ===== */
.srv-portfolio__mode-switcher {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
    margin: 24px 0 0;
    max-width: 920px;
}
@media (min-width: 768px) {
    .srv-portfolio__mode-switcher { grid-template-columns: 1fr 1fr; }
}
.srv-portfolio__mode {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    background: #fff;
    border: 1.5px solid #eaecef;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
a.srv-portfolio__mode:hover {
    border-color: #2c8ee8;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -14px rgba(44, 142, 232, 0.4);
    color: inherit;
}
.srv-portfolio__mode--active {
    background: linear-gradient(135deg, #f5faff 0%, #eaf3ff 100%);
    border-color: #2c8ee8;
    cursor: default;
}
.srv-portfolio__mode-icon {
    flex: 0 0 44px;
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff;
    border-radius: 11px;
    font-size: 22px;
    box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.1);
}
.srv-portfolio__mode--active .srv-portfolio__mode-icon {
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff;
    box-shadow: 0 6px 16px -4px rgba(44, 142, 232, 0.5);
}
.srv-portfolio__mode-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.srv-portfolio__mode-body strong {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}
.srv-portfolio__mode--active .srv-portfolio__mode-body strong {
    color: #1565a8;
}
.srv-portfolio__mode-body em {
    font-style: normal;
    font-size: 13px;
    line-height: 1.45;
    color: #6b7280;
}

/* На категории /kejsy/ — отступ от subtitle */
.srv-portfolio__mode-switcher--on-kejsy {
    margin: 28px 0 0;
}

/* ===== Кнопка-ссылка на подробный кейс в карточке портфолио ===== */
.srv-portfolio__card-case-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    margin: 0;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: filter 0.15s ease;
    border-top: 0;
}
.srv-portfolio__card-case-link:hover {
    filter: brightness(1.1);
    color: #fff !important;
}
.srv-portfolio__card-tag--has-case {
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff;
}

/* Дополнительные actions в CTA-карточке кейса (кнопка + ссылка на услугу) */
.srv-case__cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
}
.srv-case__cta-service-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: opacity 0.15s ease;
}
.srv-case__cta-service-link:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 600px) {
    .srv-case__cta-service-link { font-size: 13px; }
}

/* ===== Страница поиска ===== */
.srv-search { padding: 0 0 60px; }
.srv-search__hero {
    background: linear-gradient(180deg, #f5faff 0%, #fff 100%);
    padding: 40px 0 36px;
}
.srv-search__breadcrumbs {
    display: flex; gap: 8px; font-size: 13px; color: #6b7280; margin-bottom: 16px;
}
.srv-search__breadcrumbs a { color: #2c8ee8; text-decoration: none; }
.srv-search__title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px; font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.srv-search__query {
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.srv-search__subtitle {
    font-size: 16px; line-height: 1.55;
    color: #4a5260; margin: 0 0 24px;
}
.srv-search__form {
    display: flex; gap: 10px;
    max-width: 600px;
}
.srv-search__input {
    flex: 1 1 auto;
    padding: 14px 18px;
    border: 1.5px solid #d6dbe0;
    border-radius: 10px;
    font-size: 16px;
    background: #fff;
    box-sizing: border-box;
}
.srv-search__input:focus { outline: none; border-color: #2c8ee8; }
.srv-search__btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff; border: 0; border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px; font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease;
}
.srv-search__btn:hover { transform: translateY(-1px); }

/* Грид результатов */
.srv-search__results { padding: 28px 0 0; }
.srv-search__grid {
    list-style: none; margin: 0; padding: 0;
    display: grid; gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .srv-search__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .srv-search__grid { grid-template-columns: repeat(3, 1fr); } }

.srv-search__card-link {
    display: flex; flex-direction: column;
    height: 100%;
    text-decoration: none; color: inherit;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.srv-search__card-link:hover {
    border-color: #2c8ee8;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -16px rgba(44, 142, 232, 0.4);
    color: inherit;
}
.srv-search__card-media {
    display: block; height: 160px; overflow: hidden;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
}
.srv-search__card-media img {
    display: block; width: 100%; height: 100%;
    object-fit: cover;
}
.srv-search__card-body {
    flex: 1 1 auto;
    padding: 16px 18px 18px;
    display: flex; flex-direction: column; gap: 8px;
}
.srv-search__card-type {
    display: inline-block;
    align-self: flex-start;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.srv-search__card-type--article { background: #f3e8ff; color: #7c3aed; }
.srv-search__card-type--case    { background: #e6f2ff; color: #1565a8; }
.srv-search__card-type--service { background: #fef3e2; color: #b45309; }
.srv-search__card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 17px; font-weight: 700;
    color: #1a1a1a; line-height: 1.3;
    margin: 0;
}
.srv-search__card-excerpt {
    font-size: 14px; line-height: 1.5;
    color: #4a5260; margin: 0;
}
.srv-search__card-more {
    margin-top: auto;
    color: #2c8ee8;
    font-weight: 600; font-size: 14px;
}

/* Пагинация */
.srv-search__pagination {
    margin: 40px 0 0;
    display: flex; flex-wrap: wrap; gap: 6px;
    justify-content: center;
}
.srv-search__pagination a,
.srv-search__pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #eaecef; background: #fff;
    color: #1a1a1a; font-size: 14px; font-weight: 600;
    text-decoration: none;
}
.srv-search__pagination a:hover { border-color: #2c8ee8; color: #2c8ee8; }
.srv-search__pagination .current {
    background: #2c8ee8; color: #fff; border-color: #2c8ee8;
}

/* Пустой результат */
.srv-search__empty {
    padding: 40px 0;
}
.srv-search__empty-title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px; font-weight: 800; color: #1a1a1a;
    margin: 0 0 20px;
}
.srv-search__empty-links {
    list-style: none; margin: 0 0 32px; padding: 0;
    display: grid; gap: 12px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) { .srv-search__empty-links { grid-template-columns: repeat(2, 1fr); } }
.srv-search__empty-links a {
    display: flex; flex-direction: column; gap: 4px;
    padding: 18px 22px;
    background: #f5f8fc;
    border: 1px solid #eaecef;
    border-radius: 12px;
    text-decoration: none; color: inherit;
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.srv-search__empty-links a:hover {
    border-color: #2c8ee8;
    transform: translateX(2px);
}
.srv-search__empty-links strong {
    font-family: "Montserrat", sans-serif;
    font-size: 16px; font-weight: 700; color: #1a1a1a;
}
.srv-search__empty-links span {
    font-size: 13px; color: #6b7280;
}
.srv-search__empty-cta {
    padding: 24px;
    background: #f8f9fb;
    border-radius: 14px;
    text-align: center;
}
.srv-search__empty-cta p { margin: 0 0 14px; font-size: 15px; color: #4a5260; }
.srv-search__empty-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff; border: 0; border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px; font-weight: 700;
    cursor: pointer;
}

@media (max-width: 600px) {
    .srv-search__title { font-size: 24px; }
    .srv-search__form { flex-direction: column; }
}

/* ===== Thank-you: блок "Что будет дальше" ===== */
.thx-process {
    margin: 50px 0 0;
    padding: 36px 32px;
    background: #f5faff;
    border: 1px solid #d6e9ff;
    border-radius: 16px;
}
.thx-process__title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px; font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 22px;
    text-align: center;
}
.thx-process__list {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 16px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .thx-process__list { grid-template-columns: repeat(3, 1fr); }
}
.thx-process__list li {
    display: flex; align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid #eaecef;
}
.thx-process__num {
    flex: 0 0 36px; width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff !important;
    border-radius: 50%;
    font-family: "Montserrat", sans-serif;
    font-weight: 800; font-size: 16px;
}
.thx-process__list > li > div strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 15px; font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}
.thx-process__list > li > div span {
    display: block;
    font-size: 13px; line-height: 1.5;
    color: #4a5260;
}

/* ===== Thank-you: доверительные цифры ===== */
.thx-trust {
    margin: 36px 0 0;
    padding: 28px 32px;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 16px;
    text-align: center;
}
.thx-trust__stats {
    list-style: none; padding: 0;
    margin: 0 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    justify-items: center;
}
@media (min-width: 768px) {
    .thx-trust__stats { grid-template-columns: repeat(4, 1fr); }
}
.thx-trust__stats li {
    display: flex; flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}
.thx-trust__stats strong {
    font-family: "Montserrat", sans-serif;
    font-size: 20px; font-weight: 800;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}
.thx-trust__stats span {
    font-size: 12px; color: #6b7280;
    line-height: 1.3;
}
.thx-trust__pledge {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #4a5260;
    font-style: italic;
}

/* ===== Thank-you: свежие кейсы ===== */
.thx-cases {
    margin: 40px 0 0;
}
.thx-cases__title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px; font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 22px;
    text-align: center;
}
.thx-cases__grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 18px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) { .thx-cases__grid { grid-template-columns: repeat(3, 1fr); } }
.thx-cases__card {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    text-decoration: none; color: inherit;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.thx-cases__card:hover {
    transform: translateY(-2px);
    border-color: #2c8ee8;
    box-shadow: 0 14px 28px -14px rgba(44, 142, 232, 0.35);
    color: inherit;
}
.thx-cases__card img {
    width: 100%; height: 140px;
    object-fit: cover; object-position: top center;
    display: block;
}
.thx-cases__body {
    padding: 14px 16px 16px;
    display: flex; flex-direction: column;
    gap: 6px;
    flex: 1 1 auto;
}
.thx-cases__body strong {
    font-family: "Montserrat", sans-serif;
    font-size: 14px; font-weight: 700;
    color: #1a1a1a; line-height: 1.3;
}
.thx-cases__body em {
    font-style: normal;
    font-size: 12px; line-height: 1.4;
    color: #6b7280;
}
.thx-cases__more {
    margin-top: auto;
    color: #2c8ee8;
    font-size: 13px; font-weight: 600;
}

/* ===== Thank-you: социальные каналы ===== */
.thx-social {
    margin: 36px 0 24px;
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px 14px;
    align-items: center;
}
.thx-social__label {
    font-size: 14px; color: #6b7280;
}
.thx-social__link {
    display: inline-block;
    padding: 8px 18px;
    background: #f5f8fc;
    border: 1px solid #eaecef;
    border-radius: 100px;
    text-decoration: none;
    font-size: 13px; font-weight: 600;
    color: #1a1a1a;
    transition: all .15s ease;
}
.thx-social__link:hover {
    border-color: #2c8ee8; color: #2c8ee8;
}
.thx-social__link--tg:hover   { background: #2c8ee8; color: #fff; border-color: #2c8ee8; }
.thx-social__link--vk:hover   { background: #4680C2; color: #fff; border-color: #4680C2; }
.thx-social__link--blog:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

@media (max-width: 600px) {
    .thx-process { padding: 24px 18px; }
    .thx-trust { padding: 22px 18px; }
    .thx-trust__stats { gap: 12px 24px; }
    .thx-trust__stats strong { font-size: 17px; }
}

/* ===== Лендинг SEO+GEO+сайт под рекламу ===== */
.srv-lp { padding-bottom: 80px; }
.srv-lp__h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 32px; font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 22px;
    letter-spacing: -0.015em;
    line-height: 1.2;
}
.srv-lp__lead {
    font-size: 17px; line-height: 1.6;
    color: #4a5260;
    max-width: 760px;
    margin: 0 0 32px;
}
.srv-lp__accent {
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* HERO */
.srv-lp__hero {
    background: linear-gradient(180deg, #f5faff 0%, #fff 100%);
    padding: 56px 0 48px;
}
.srv-lp__eyebrow {
    display: inline-block;
    padding: 5px 14px;
    background: #fff;
    border: 1px solid #d6e9ff;
    color: #1565a8;
    border-radius: 100px;
    font-size: 12px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}
.srv-lp__hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px; line-height: 1.15; font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    max-width: 900px;
}
.srv-lp__hero-subtitle {
    font-size: 18px; line-height: 1.55;
    color: #4a5260;
    margin: 0 0 28px;
    max-width: 760px;
}
.srv-lp__hero-cta {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin: 0 0 28px;
}
.srv-lp__btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px;
    border: 0; border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px; font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}
.srv-lp__btn--primary {
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff !important;
    box-shadow: 0 12px 24px -8px rgba(44,142,232,0.55);
}
.srv-lp__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -8px rgba(44,142,232,0.65);
    color: #fff !important;
}
.srv-lp__btn--ghost {
    background: #fff;
    color: #1565a8 !important;
    border: 1.5px solid #2c8ee8;
}
.srv-lp__btn--ghost:hover { background: #f5faff; }
.srv-lp__btn--big { padding: 16px 36px; font-size: 16px; }
.srv-lp__btn--block { width: 100%; }

.srv-lp__hero-trust {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap;
    gap: 28px;
}
.srv-lp__hero-trust li { display: flex; flex-direction: column; }
.srv-lp__hero-trust strong {
    font-family: "Montserrat", sans-serif;
    font-size: 22px; font-weight: 800;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.srv-lp__hero-trust span { font-size: 12px; color: #6b7280; }

/* PROBLEM */
.srv-lp__problem { padding: 60px 0; background: #fff; }
.srv-lp__problem-grid {
    display: grid; gap: 18px;
    grid-template-columns: 1fr;
    margin: 0 0 28px;
}
@media (min-width: 800px) { .srv-lp__problem-grid { grid-template-columns: repeat(3, 1fr); } }
.srv-lp__problem-card {
    position: relative;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 14px;
}
.srv-lp__step-num {
    position: absolute;
    top: -18px; left: 24px;
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff;
    border-radius: 50%;
    font-family: "Montserrat", sans-serif;
    font-weight: 800; font-size: 16px;
    box-shadow: 0 6px 14px -4px rgba(44,142,232,0.55);
}
.srv-lp__problem-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px; font-weight: 700;
    color: #1a1a1a;
    margin: 10px 0 10px;
}
.srv-lp__problem-card p { font-size: 15px; line-height: 1.55; color: #4a5260; margin: 0; }
.srv-lp__problem-conclusion {
    margin: 0 auto; max-width: 800px;
    padding: 22px 28px;
    background: #fef9f0;
    border-left: 4px solid #f59e0b;
    border-radius: 10px;
    font-size: 16px; line-height: 1.55;
    color: #1a1a1a;
}

/* SOLUTION */
.srv-lp__solution { padding: 60px 0; background: #f8fafc; }
.srv-lp__solution-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 18px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .srv-lp__solution-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .srv-lp__solution-grid { grid-template-columns: repeat(4, 1fr); } }
.srv-lp__solution-card {
    padding: 24px 22px;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 14px;
}
.srv-lp__solution-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    font-size: 24px;
    margin-bottom: 16px;
}
.srv-lp__solution-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 17px; font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}
.srv-lp__solution-card p { font-size: 14px; line-height: 1.55; color: #4a5260; margin: 0; }

/* WHY-ONE */
.srv-lp__why-one { padding: 60px 0; background: #fff; }
.srv-lp__why-one-row {
    display: grid; gap: 32px;
    grid-template-columns: 1fr;
}
@media (min-width: 900px) {
    .srv-lp__why-one-row { grid-template-columns: 1.4fr 1fr; align-items: center; }
}
.srv-lp__list {
    list-style: none; padding: 0;
    margin: 24px 0;
    display: flex; flex-direction: column; gap: 12px;
}
.srv-lp__list li {
    padding-left: 30px;
    position: relative;
    font-size: 16px; line-height: 1.55;
    color: #1a1a1a;
}
.srv-lp__list li::before {
    content: '\2713';
    position: absolute;
    left: 0; top: -2px;
    width: 22px; height: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}
.srv-lp__pledge {
    margin: 18px 0 0;
    padding: 14px 18px;
    background: #f5faff;
    border-left: 3px solid #2c8ee8;
    border-radius: 8px;
    font-size: 15px; font-style: italic;
    color: #1565a8;
}
.srv-lp__founder-card {
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 18px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.12);
}
.srv-lp__founder-photo {
    width: 120px; height: 120px;
    border-radius: 50%;
    object-fit: cover; object-position: center top;
    border: 4px solid #fff;
    box-shadow: 0 14px 30px -8px rgba(44,142,232,0.4);
    margin: 0 auto 18px;
}
.srv-lp__founder-body strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 20px; font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 4px;
}
.srv-lp__founder-body > span {
    display: block;
    font-size: 13px;
    color: #1565a8;
    margin-bottom: 12px;
}
.srv-lp__founder-body em {
    display: block;
    font-style: normal;
    font-size: 14px; line-height: 1.55;
    color: #6b7280;
}

/* TARIFY */
.srv-lp__tarify {
    padding: 60px 0;
    background: linear-gradient(180deg, #f5faff 0%, #fff 100%);
}
.srv-lp__plans {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 22px;
    grid-template-columns: 1fr;
}
@media (min-width: 800px) {
    .srv-lp__plans { grid-template-columns: 1fr 1fr; align-items: stretch; }
}
.srv-lp__plan {
    position: relative;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 18px;
    padding: 32px 28px;
    display: flex; flex-direction: column;
    gap: 14px;
}
.srv-lp__plan--featured {
    border-color: #2c8ee8;
    box-shadow: 0 30px 60px -25px rgba(44,142,232,0.4);
    transform: translateY(-8px);
}
.srv-lp__plan-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f5f8fc;
    color: #6b7280;
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    align-self: flex-start;
}
.srv-lp__plan--featured .srv-lp__plan-tag {
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff;
}
.srv-lp__plan-badge {
    position: absolute;
    top: -14px; right: 24px;
    padding: 6px 14px;
    background: #f59e0b;
    color: #fff;
    border-radius: 100px;
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.05em;
    box-shadow: 0 6px 14px -4px rgba(245,158,11,0.5);
}
.srv-lp__plan-price {
    font-family: "Montserrat", sans-serif;
    font-size: 32px; font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.02em;
}
.srv-lp__plan-price small {
    font-size: 16px; font-weight: 600;
    color: #6b7280;
    letter-spacing: 0;
}
.srv-lp__plan-summary {
    font-size: 15px; line-height: 1.55;
    color: #4a5260; margin: 0;
}
.srv-lp__plan-features {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
    border-top: 1px solid #eaecef;
    padding-top: 18px;
}
.srv-lp__plan-features li {
    position: relative;
    padding-left: 24px;
    font-size: 14px; line-height: 1.5;
    color: #1a1a1a;
}
.srv-lp__plan-features li::before {
    content: '\2713';
    position: absolute;
    left: 0; top: 0;
    color: #2c8ee8;
    font-weight: 800;
    font-size: 15px;
}
.srv-lp__plans-note {
    text-align: center;
    margin: 22px 0 0;
    font-size: 14px; color: #6b7280;
}

/* WHY-NOW */
.srv-lp__why-now { padding: 60px 0; background: #fff; }
.srv-lp__why-now-card {
    max-width: 880px; margin: 0 auto;
    padding: 36px 36px;
    background: linear-gradient(135deg, #fef9f0 0%, #fef3e2 100%);
    border-left: 5px solid #f59e0b;
    border-radius: 16px;
}
.srv-lp__why-now-card .srv-lp__h2 { margin-bottom: 18px; }
.srv-lp__big-text {
    font-size: 19px; line-height: 1.55;
    color: #1a1a1a; margin: 0 0 16px;
}
.srv-lp__why-now-card p:not(.srv-lp__big-text) {
    font-size: 16px; line-height: 1.6;
    color: #4a5260; margin: 0 0 14px;
}

/* CASES */
.srv-lp__cases { padding: 60px 0; background: #f8fafc; }
.srv-lp__cases-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) { .srv-lp__cases-grid { grid-template-columns: repeat(3, 1fr); } }
.srv-lp__case-card {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none; color: inherit;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    height: 100%;
}
.srv-lp__case-card:hover {
    transform: translateY(-3px);
    border-color: #2c8ee8;
    box-shadow: 0 16px 32px -16px rgba(44,142,232,0.4);
    color: inherit;
}
.srv-lp__case-media { height: 160px; overflow: hidden; display: block; }
.srv-lp__case-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.srv-lp__case-body {
    padding: 16px 18px 18px;
    display: flex; flex-direction: column; gap: 8px;
    flex: 1 1 auto;
}
.srv-lp__case-body strong {
    font-family: "Montserrat", sans-serif;
    font-size: 15px; font-weight: 700;
    color: #1a1a1a; line-height: 1.3;
}
.srv-lp__case-body > span {
    margin-top: auto;
    color: #2c8ee8;
    font-size: 13px; font-weight: 600;
}

/* FAQ */
.srv-lp__faq { padding: 60px 0; background: #fff; }
.srv-lp__faq .rk-faq {
    max-width: 900px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 10px;
}
.srv-lp__faq details {
    background: #f8fafc;
    border: 1px solid #eaecef;
    border-radius: 12px;
    overflow: hidden;
}
.srv-lp__faq details[open] {
    border-color: #2c8ee8;
    background: #fff;
    box-shadow: 0 6px 18px -10px rgba(44,142,232,0.25);
}
.srv-lp__faq summary {
    padding: 16px 22px 16px 50px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
    list-style: none;
    position: relative;
}
.srv-lp__faq summary::-webkit-details-marker { display: none; }
.srv-lp__faq summary::before {
    content: '+';
    position: absolute;
    left: 18px; top: 50%;
    transform: translateY(-50%);
    width: 22px; height: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #2c8ee8;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
}
.srv-lp__faq details[open] summary::before { content: '\2212'; }
.srv-lp__faq details p {
    margin: 0;
    padding: 0 22px 18px 50px;
    font-size: 15px; line-height: 1.6;
    color: #4a5260;
}

/* CTA */
.srv-lp__cta { padding: 60px 0 0; }
.srv-lp__cta-card {
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 40px 80px -30px rgba(44,142,232,0.5);
}
.srv-lp__cta-title {
    font-family: "Montserrat", sans-serif;
    font-size: 30px; font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
}
.srv-lp__cta-text {
    font-size: 17px; line-height: 1.55;
    color: rgba(255,255,255,0.92);
    margin: 0 auto 24px;
    max-width: 680px;
}
.srv-lp__cta-card .srv-lp__btn--primary {
    background: #fff;
    color: #1565a8 !important;
    box-shadow: 0 12px 28px -8px rgba(0,0,0,0.35);
}
.srv-lp__cta-card .srv-lp__btn--primary:hover { color: #1565a8 !important; }
.srv-lp__cta-pledge {
    margin: 20px 0 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

@media (max-width: 600px) {
    .srv-lp__hero { padding: 40px 0 32px; }
    .srv-lp__hero-title { font-size: 28px; }
    .srv-lp__hero-subtitle { font-size: 15px; }
    .srv-lp__h2 { font-size: 24px; }
    .srv-lp__hero-trust { gap: 18px; }
    .srv-lp__hero-trust strong { font-size: 18px; }
    .srv-lp__plan--featured { transform: none; }
    .srv-lp__plan-price { font-size: 26px; }
    .srv-lp__why-now-card { padding: 26px 22px; }
    .srv-lp__big-text { font-size: 16px; }
    .srv-lp__cta-card { padding: 32px 22px; }
    .srv-lp__cta-title { font-size: 22px; }
    .srv-lp__btn--big { padding: 14px 22px; font-size: 15px; }
}


/* ===== LP: WHO / КОМУ ПОДХОДИТ ===== */
.srv-lp__who { padding: 60px 0; background: #f7f9fc; }
.srv-lp__who-grid {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 720px) {
    .srv-lp__who-grid { grid-template-columns: 1fr; }
}
.srv-lp__who-card {
    background: #fff;
    border: 1px solid #e6ecf2;
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 6px 20px -16px rgba(20,40,80,0.18);
}
.srv-lp__who-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a2436;
    margin: 0 0 10px;
    line-height: 1.3;
}
.srv-lp__who-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #4a5260;
}

/* ===== LP: HOW / 5 ШАГОВ ===== */
.srv-lp__how { padding: 60px 0; }
.srv-lp__how-list {
    list-style: none;
    counter-reset: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.srv-lp__how-list > li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: start;
    background: #fff;
    border: 1px solid #e6ecf2;
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 6px 20px -16px rgba(20,40,80,0.18);
}
@media (max-width: 600px) {
    .srv-lp__how-list > li {
        grid-template-columns: 44px 1fr;
        padding: 18px 18px;
        gap: 14px;
    }
}
.srv-lp__how-num {
    display: inline-flex;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, #2c8ee8 0%, #1565a8 100%);
    color: #fff;
    border-radius: 50%;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 8px 18px -10px rgba(44,142,232,0.6);
}
.srv-lp__how-list h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a2436;
    margin: 0 0 8px;
}
.srv-lp__how-list p {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5260;
}
.srv-lp__how-out {
    display: inline-block;
    background: #eef6ff;
    color: #1565a8;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}
.srv-lp__how-summary {
    margin: 28px auto 0;
    max-width: 760px;
    text-align: center;
    font-size: 17px;
    line-height: 1.55;
    color: #1a2436;
    font-weight: 600;
    padding: 22px 24px;
    background: #eef6ff;
    border-radius: 14px;
}


/* ===== LP: HERO DEMO — мок-карточки нейросетей ===== */
.srv-lp__hero-row--split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}
@media (max-width: 960px) {
    .srv-lp__hero-row--split {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
.srv-lp__hero-demo {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ai-mock {
    background: #fff;
    border: 1px solid #e1e7ef;
    border-radius: 14px;
    padding: 16px 18px 18px;
    box-shadow: 0 24px 60px -32px rgba(20,40,80,0.35);
    position: relative;
}
.ai-mock--gpt { transform: rotate(-1.4deg); }
.ai-mock--alice { transform: rotate(1.4deg); margin-left: 18px; }
@media (max-width: 600px) {
    .ai-mock--gpt, .ai-mock--alice { transform: none; margin-left: 0; }
}
.ai-mock__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e1e7ef;
}
.ai-mock__dot {
    display: inline-block;
    width: 18px; height: 18px;
    border-radius: 50%;
    flex: 0 0 18px;
}
.ai-mock__dot--gpt { background: linear-gradient(135deg, #10a37f 0%, #0e8a6b 100%); }
.ai-mock__dot--alice { background: linear-gradient(135deg, #ffcc00 0%, #ff7a00 100%); }
.ai-mock__brand {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a2436;
}
.ai-mock__tag {
    margin-left: auto;
    font-size: 11px;
    color: #8a93a3;
    background: #f3f5fa;
    border-radius: 10px;
    padding: 3px 8px;
}
.ai-mock__q {
    font-size: 13px;
    color: #4a5260;
    font-style: italic;
    margin-bottom: 8px;
}
.ai-mock__a {
    font-size: 14px;
    line-height: 1.55;
    color: #1a2436;
}
.ai-mock__hl {
    background: linear-gradient(180deg, transparent 60%, #ffe27a 60%);
    font-weight: 700;
    padding: 0 2px;
}
.srv-lp__hero-demo-note {
    margin: 8px 0 0;
    font-size: 12px;
    color: #8a93a3;
    text-align: center;
    line-height: 1.4;
    font-style: italic;
}

/* ===== LP: METHOD — что конкретно делаем ===== */
.srv-lp__method { padding: 60px 0; background: #f7f9fc; }
.srv-lp__method-list {
    list-style: none;
    counter-reset: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 760px) {
    .srv-lp__method-list { grid-template-columns: 1fr; }
}
.srv-lp__method-list > li {
    background: #fff;
    border: 1px solid #e6ecf2;
    border-radius: 14px;
    padding: 20px 22px;
}
.srv-lp__method-list h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1565a8;
    margin: 0 0 8px;
    line-height: 1.35;
}
.srv-lp__method-list p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #4a5260;
}
.srv-lp__method-list code {
    background: #eef6ff;
    color: #1565a8;
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 12px;
    font-family: "SF Mono", Menlo, Consolas, monospace;
}
.srv-lp__method-note {
    margin: 24px auto 0;
    max-width: 760px;
    text-align: center;
    font-size: 14px;
    color: #5a6273;
    line-height: 1.55;
    font-style: italic;
}

/* ===== LP: PROBNIK — диагностика ===== */
.srv-lp__probnik { padding: 60px 0; }
.srv-lp__probnik-card {
    background: linear-gradient(135deg, #f5fbff 0%, #fff 100%);
    border: 2px solid #2c8ee8;
    border-radius: 24px;
    padding: 36px 36px 32px;
    box-shadow: 0 40px 80px -40px rgba(44,142,232,0.4);
    position: relative;
    overflow: hidden;
}
.srv-lp__probnik-card::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(44,142,232,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.srv-lp__probnik-head { margin-bottom: 24px; position: relative; }
.srv-lp__probnik-tag {
    display: inline-block;
    background: #2c8ee8;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 5px 14px;
    margin-bottom: 14px;
}
.srv-lp__probnik-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1a2436;
    line-height: 1.2;
    margin: 0 0 12px;
}
@media (max-width: 600px) {
    .srv-lp__probnik-title { font-size: 22px; }
    .srv-lp__probnik-card { padding: 26px 22px 24px; }
}
.srv-lp__probnik-sub {
    font-size: 16px;
    line-height: 1.55;
    color: #4a5260;
    margin: 0;
    max-width: 720px;
}
.srv-lp__probnik-body {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 28px;
    align-items: start;
    position: relative;
}
@media (max-width: 760px) {
    .srv-lp__probnik-body { grid-template-columns: 1fr; gap: 22px; }
}
.srv-lp__probnik-include h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a2436;
    margin: 0 0 12px;
}
.srv-lp__probnik-include ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.srv-lp__probnik-include li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.55;
    color: #4a5260;
}
.srv-lp__probnik-include li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 0;
    color: #2c8ee8;
    font-weight: 800;
    font-size: 15px;
}
.srv-lp__probnik-meta {
    background: #fff;
    border: 1px solid #e6ecf2;
    border-radius: 16px;
    padding: 22px 22px 20px;
    box-shadow: 0 12px 30px -16px rgba(20,40,80,0.2);
}
.srv-lp__probnik-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px dashed #e6ecf2;
    gap: 12px;
}
.srv-lp__probnik-row:last-of-type { border-bottom: none; padding-bottom: 14px; }
.srv-lp__probnik-row span {
    font-size: 13px;
    color: #8a93a3;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.srv-lp__probnik-row strong {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #1a2436;
    text-align: right;
}
.srv-lp__probnik-row:first-of-type strong {
    font-size: 22px;
    color: #2c8ee8;
    font-weight: 800;
}
.srv-lp__probnik-pledge {
    background: #f7fbff;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.5;
    color: #4a5260;
    margin: 14px 0 16px;
}
.srv-lp__probnik-note {
    margin: 10px 0 0;
    font-size: 12px;
    color: #8a93a3;
    text-align: center;
    font-style: italic;
}


/* ===== LP: PLAN SECTION HEADERS — разделители внутри тарифа ===== */
.srv-lp__plan-features .srv-lp__plan-section {
    margin-top: 14px;
    padding: 6px 0 4px;
    border-bottom: 1px solid #e1e7ef;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #1565a8;
    list-style: none;
}
.srv-lp__plan-features .srv-lp__plan-section::before { content: none !important; }
.srv-lp__plan-features .srv-lp__plan-section:first-child { margin-top: 0; }


/* ===== LP: ORG VS ADS — зачем органика ===== */
.srv-lp__orgvsads { padding: 50px 0; background: #f7f9fc; }
.srv-lp__orgvsads-grid {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 800px) {
    .srv-lp__orgvsads-grid { grid-template-columns: 1fr; }
}
.srv-lp__orgvsads-grid > li {
    background: #fff;
    border: 1px solid #e6ecf2;
    border-radius: 14px;
    padding: 22px 22px;
    box-shadow: 0 6px 20px -16px rgba(20,40,80,0.18);
}
.srv-lp__orgvsads-grid > li strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1565a8;
    margin-bottom: 10px;
    line-height: 1.3;
}
.srv-lp__orgvsads-grid > li p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #4a5260;
}
.srv-lp__orgvsads-note {
    margin: 24px auto 0;
    max-width: 760px;
    text-align: center;
    font-size: 15px;
    line-height: 1.55;
    color: #1a2436;
    padding: 16px 20px;
    background: #eef6ff;
    border-radius: 12px;
}

/* ===== LP: GUARANTEES — гарантии ===== */
.srv-lp__guarantees { padding: 60px 0; }
.srv-lp__guarantees-grid {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 960px) {
    .srv-lp__guarantees-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .srv-lp__guarantees-grid { grid-template-columns: 1fr; }
}
.srv-lp__guarantee {
    background: #fff;
    border: 1px solid #e6ecf2;
    border-left: 4px solid #2c8ee8;
    border-radius: 12px;
    padding: 22px 22px 20px;
    box-shadow: 0 8px 22px -16px rgba(20,40,80,0.22);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.srv-lp__guarantee-icon {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 4px;
}
.srv-lp__guarantee h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a2436;
    margin: 0 0 6px;
    line-height: 1.3;
}
.srv-lp__guarantee p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #4a5260;
}
