

/* Start:/local/assets/cro-home.css?178671576015400*/
/* CRO: главная страница — единый стиль и конверсионные блоки */

:root {
    --cro-primary: #4334A1;
    --cro-primary-light: #5B46D9;
    --cro-text: #1a1a2e;
    --cro-text-body: #444;
    --cro-text-muted: #666;
    --cro-bg-soft: #f8f7fc;
    --cro-section-py: 72px;
    --cro-title: clamp(28px, 2.8vw, 42px);
    --cro-radius: 12px;
    --cro-btn-h: 56px;
    --cro-btn-fs: 17px;
}

/* ── Первый экран ── */
.b-a {
    position: relative;
    border-bottom: 2px solid #F0EFEF;
    margin-top: -22px;
    overflow: hidden;
}

.b-a-block {
    display: flex;
    align-items: stretch;
}

.b-a-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    padding: 56px 40px 48px 0;
    min-height: 560px;
    border-right: 1px solid #F0EFEF;
}

.b-a-title {
    font-family: 'Loos Normal', sans-serif;
    font-size: clamp(32px, 3.4vw, 52px);
    line-height: 115%;
    color: var(--cro-text);
    animation: croFadeUp .6s ease both;
}

.b-a-subtitle {
    margin: 16px 0 0;
    font-size: 19px;
    line-height: 150%;
    color: var(--cro-primary);
    font-weight: 500;
}

.b-a-text {
    margin-top: 20px;
    animation: croFadeUp .6s .1s ease both;
}

.b-a-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.b-a-benefits li {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    line-height: 145%;
    color: var(--cro-text-body);
}

.b-a-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8.5L6.5 12L13 4' stroke='%234334A1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.b-a-button {
    margin-top: 36px;
    animation: croFadeUp .6s .2s ease both;
}

.b-a-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.b-a-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: var(--cro-btn-fs);
    font-weight: 600;
    height: var(--cro-btn-h);
    padding: 0 36px;
    border-radius: 8px;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.b-a-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(67, 52, 161, .25);
}

.b-a-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--cro-primary) 0%, var(--cro-primary-light) 100%);
}

.b-a-btn-primary:hover {
    background: linear-gradient(135deg, var(--cro-primary-light) 0%, #6d5ce0 100%);
    color: #fff;
}

.b-a-btn-call {
    color: var(--cro-primary);
    background: #fff;
    border: 2px solid var(--cro-primary);
}

.b-a-btn-call:hover {
    background: #f5f3ff;
    color: var(--cro-primary);
}

.b-a-callback-note {
    margin: 16px 0 0;
    font-size: 15px;
    color: var(--cro-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.b-a-callback-note::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: croPulse 2s infinite;
}

.b-a-image {
    width: 50%;
    padding: 56px 0 48px 32px;
    border-left: 1px solid #F0EFEF;
}

.b-a-image-block {
    position: relative;
    height: 100%;
    min-height: 460px;
    border-radius: var(--cro-radius);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 26, 46, .12);
    animation: croFadeIn .8s .15s ease both;
}

.b-a-image-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 26, 46, .12) 100%);
    pointer-events: none;
}

.b-a-image-block img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0;
}

@keyframes croFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes croFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes croPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .4; }
}

@media (max-width: 1024px) {
    .b-a-content {
        min-height: auto;
        padding: 40px 24px 32px 0;
    }

    .b-f-form-fields {
        flex-direction: column;
    }

    .b-f-form-submit {
        width: 100%;
    }

    .b-a-benefits {
        grid-template-columns: 1fr;
    }

    .b-a-actions {
        flex-direction: column;
    }

    .b-a-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .b-a-block {
        flex-direction: column;
    }

    .b-a-content,
    .b-a-image {
        width: 100%;
        border: none;
        padding: 24px 0;
    }

    .b-a-image-block {
        min-height: 280px;
    }

    .b-a-button {
        margin-top: 24px;
    }
}

/* Блок доверия */
.b-trust {
    padding: var(--cro-section-py) 0;
    background: var(--cro-bg-soft);
}

.b-trust-title {
    font-family: 'Loos Normal', sans-serif;
    font-size: var(--cro-title);
    text-align: center;
    margin: 0 0 48px;
    color: var(--cro-text);
}

.b-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.b-trust-item {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: transform .25s, box-shadow .25s;
}

.b-trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(67, 52, 161, .1);
}

.b-trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0edff;
    border-radius: 10px;
    color: #4334A1;
    margin-bottom: 16px;
}

.b-trust-item-title {
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--cro-text);
}

.b-trust-item-text {
    font-size: 15px;
    line-height: 155%;
    color: var(--cro-text-body);
    margin: 0;
}

/* Кейсы */
.b-cases {
    padding: var(--cro-section-py) 0;
}

.b-cases-title {
    font-family: 'Loos Normal', sans-serif;
    font-size: var(--cro-title);
    margin: 0 0 10px;
    color: var(--cro-text);
}

.b-cases-subtitle {
    color: var(--cro-text-muted);
    font-size: 17px;
    margin: 0 0 40px;
}

.b-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.b-case-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .25s;
}

.b-case-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.b-case-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.b-case-body {
    padding: 20px;
}

.b-case-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
}

.b-case-details {
    margin: 0 0 16px;
    font-size: 14px;
}

.b-case-details div {
    margin-bottom: 6px;
}

.b-case-details dt {
    display: inline;
    font-weight: 600;
    color: #4334A1;
}

.b-case-details dt::after {
    content: ' ';
}

.b-case-details dd {
    display: inline;
    margin: 0;
    color: #444;
}

.b-case-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    font-size: 14px;
    font-weight: 600;
    color: #fff !important;
    background: #4334A1;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s;
}

.b-case-btn:hover {
    background: #5B46D9;
}

/* Отзывы */
.b-reviews {
    padding: var(--cro-section-py) 0;
    background: var(--cro-bg-soft);
}

.b-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.b-reviews-title {
    font-family: 'Loos Normal', sans-serif;
    font-size: var(--cro-title);
    margin: 0;
    color: var(--cro-text);
}

.b-reviews-yandex {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    padding: 8px 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: border-color .2s;
}

.b-reviews-yandex:hover {
    border-color: #4334A1;
}

.b-reviews-rating {
    font-size: 24px;
    font-weight: 700;
    color: #4334A1;
}

.b-reviews-stars {
    color: #f59e0b;
    letter-spacing: 1px;
}

.b-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.b-review-card {
    display: flex;
    gap: 16px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.b-review-photo img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.b-review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.b-review-stars {
    color: #f59e0b;
    font-size: 14px;
}

.b-review-text {
    font-size: 15px;
    line-height: 155%;
    color: var(--cro-text-body);
    margin: 0;
}

/* FAQ */
.b-faq {
    padding: var(--cro-section-py) 0;
}

.b-faq-title {
    font-family: 'Loos Normal', sans-serif;
    font-size: var(--cro-title);
    margin: 0 0 36px;
    color: var(--cro-text);
}

.b-faq-list {
    max-width: 800px;
}

.b-faq-item {
    border-bottom: 1px solid #eee;
}

.b-faq-item summary {
    padding: 18px 32px 18px 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.b-faq-item summary::-webkit-details-marker {
    display: none;
}

.b-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #4334A1;
    transition: transform .2s;
}

.b-faq-item[open] summary::after {
    content: '−';
}

.b-faq-answer {
    padding: 0 0 18px;
}

.b-faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 160%;
    color: #555;
}

/* Услуги — двойные CTA */
.b-c-item-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.b-c-item-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.b-c-btn-detail {
    color: var(--cro-primary);
    border: 2px solid var(--cro-primary);
    background: #fff;
    height: 48px;
    padding: 0 28px;
    font-size: 15px;
}

.b-c-btn-detail:hover {
    background: #f5f3ff;
}

.b-c-btn-request {
    color: #fff !important;
    background: var(--cro-primary);
    border: 2px solid var(--cro-primary);
    height: 48px;
    padding: 0 28px;
    font-size: 15px;
}

.b-c-btn-request:hover {
    background: var(--cro-primary-light);
}

/* ── Нижний CTA-блок (b-f) ── */
.b-f .b-f-title {
    font-size: clamp(32px, 3vw, 46px);
}

.b-f .b-f-text {
    font-size: 18px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.b-f-button {
    margin-top: 36px !important;
}

.b-f-inline-form {
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
}

.b-f-form-label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .9);
}

.b-f-form-fields {
    display: flex;
    gap: 10px;
}

.b-f-form-input {
    flex: 1;
    min-width: 0;
    height: 56px;
    padding: 0 20px;
    font-size: 17px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 8px;
    background: #fff;
    color: var(--cro-text);
    outline: none;
    transition: border-color .2s;
}

.b-f-form-input:focus {
    border-color: #fff;
}

.b-f-form-input::placeholder {
    color: #999;
}

.b-f-form-submit {
    flex-shrink: 0;
    height: 56px;
    padding: 0 28px;
    font-size: 16px;
    font-weight: 600;
    color: var(--cro-primary);
    background: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, transform .2s;
}

.b-f-form-submit:hover:not(:disabled) {
    background: #f0f0f7;
    transform: translateY(-1px);
}

.b-f-form-submit:disabled {
    opacity: .7;
    cursor: wait;
}

.b-f-form-error {
    margin: 10px 0 0;
    font-size: 14px;
    color: #ffb4b4;
}

.b-f-form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.b-f-form-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}

.b-f-form-call:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
    color: #fff;
}

.b-f-form-note {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
    display: flex;
    align-items: center;
    gap: 8px;
}

.b-f-form-note::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

.b-f-form-success {
    margin: 0;
    padding: 20px;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border-radius: 8px;
}

/* Скрыть старые стили кнопок b-f, если остались */
.b-f-button .b-f-actions {
    display: none;
}

.b-f-button .b-a-callback-note {
    display: none;
}
.b-e-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 16px;
    transition: transform .2s, box-shadow .2s;
    border-radius: 8px;
}

.b-e-item a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

@media (max-width: 1024px) {
    .b-trust-grid,
    .b-cases-grid,
    .b-reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .b-trust-grid,
    .b-cases-grid,
    .b-reviews-grid {
        grid-template-columns: 1fr;
    }

    .b-review-card {
        flex-direction: column;
    }
}

/* Посадочные страницы /uslugi/ */
.landing-hero {
    padding: 48px 0;
    background: #f8f7fc;
    border-bottom: 2px solid #F0EFEF;
}

.landing-h1 {
    font-family: 'Loos Normal', sans-serif;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 120%;
    margin: 0 0 16px;
}

.landing-lead {
    font-size: 18px;
    color: #444;
    margin: 0 0 20px;
    max-width: 720px;
}

.landing-benefits {
    margin-bottom: 24px !important;
}

.landing-content {
    padding: 48px 0;
}

.landing-text {
    max-width: 720px;
    font-size: 16px;
    line-height: 160%;
    color: #444;
    margin-bottom: 32px;
}

.landing-cta-box {
    background: #4334A1;
    color: #fff;
    padding: 32px;
    border-radius: 12px;
    max-width: 720px;
}

.landing-cta-box h2 {
    margin: 0 0 16px;
    font-size: 22px;
    color: #fff;
}

/* End */
/* /local/assets/cro-home.css?178671576015400 */
