/* ==========================================================================
   Базовые стили и переменные проекта «ПовесткеНет»
   Цветовая палитра 1 в 1 с референса (красный заменен на синий #002137)
   ========================================================================== */

:root {
    /* Фирменный синий цвет военного билета РК («Әскери билет») */
    --color-primary: #012e5e;
    /* Основной синий с обложки военного билета */
    --color-primary-hover: #033f7d;
    /* Синий при наведении */
    --color-primary-active: #002044;
    /* Синий при нажатии */
    --color-primary-light: #2e5773;
    /* Дополнительный сине-серый из палитры (#2e5773) */

    /* Цветовая палитра из референса */
    --color-bg-page: #f4f4f4;
    /* Основной фон сайта (#f4f4f4) */
    --color-bg-hero: #e7e7e7;
    /* Фон HERO-блока: #e7e7e7 */
    --color-bg-card: #FFFFFF;
    /* Белый фон плашек */
    --color-bg-light: #f4f4f4;
    /* Светлый фон секций (#f4f4f4) */
    --color-bg-subtle: #eeefef;
    /* Очень светлый серый (#eeefef) */

    /* Текстовые цвета из палитры */
    --color-text-main: #252423;
    /* Основной цвет текста из референса (#252423) */
    --color-text-heading: #252423;
    /* Цвет заголовков (#252423) */
    --color-text-muted: #595856;
    /* Второстепенный мягкий текст */
    --color-text-light: #b9a59c;
    /* Теплый нейтральный тон (#b9a59c) */
    --color-text-white: #FFFFFF;

    /* Границы и разделители из палитры */
    --color-border: #d5d1d2;
    /* Границы из референса (#d5d1d2) */
    --color-border-subtle: #eeefef;
    /* Мягкие границы (#eeefef) */

    /* Акцентные статусы */
    --color-accent-green: #10B981;
    /* Зеленый для подтвержденных галочек */
    --color-whatsapp: #25D366;
    /* Фирменный WhatsApp */
    --color-rating-star: #F59E0B;
    /* Золотой цвет рейтинга 2ГИС */

    /* Типографика */
    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Размеры контейнера: 1440px, по бокам 16px, ниже 475px - 8px */
    --container-max-width: 1440px;
    --container-padding: 16px;

    /* Радиусы скругления */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 28px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Тени */
    --shadow-sm: 0 2px 5px rgba(37, 36, 35, 0.04);
    --shadow-md: 0 6px 18px rgba(37, 36, 35, 0.08);
    --shadow-lg: 0 12px 30px rgba(37, 36, 35, 0.12);
    --shadow-badge: 0 8px 24px rgba(37, 36, 35, 0.12);
    --shadow-btn: 0 4px 14px rgba(0, 33, 55, 0.25);
    --shadow-btn-hover: 0 6px 20px rgba(0, 33, 55, 0.35);

    /* Переходы */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    background-color: var(--color-bg-page);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: var(--color-bg-page);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), border-color var(--transition-fast), opacity var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

/* Базовый контейнер */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Вспомогательные классы */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   HERO BLOCK
   ========================================================================== */

.hero-section {
    padding: 24px 0 32px;
    background-color: var(--color-bg-page);
}

/* Закругленный прямоугольник по ширине контейнера (фон: #e7e7e7) */
.hero-card {
    background-color: var(--color-bg-hero);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 600px;
    align-items: center;
    min-height: 580px;
    border: 1px solid var(--color-border-subtle);
}

/* Левая текстовая колонка */
.hero-content {
    padding: 48px 36px 48px 52px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

/* Надзаголовок */
.hero-pretitle-wrapper {
    margin-bottom: 14px;
}

.hero-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(213, 209, 210, 0.6);
}

.hero-pretitle-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--color-primary);
}

/* Заголовок H1 */
.hero-title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text-heading);
    margin-bottom: 16px;
}

.hero-title-accent {
    color: var(--color-primary);
    display: inline;
}

/* Подзаголовок */
.hero-subtitle {
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--color-text-muted);
    margin-bottom: 26px;
    max-width: 620px;
}

/* Сетка доказательств 2x2 */
.hero-proofs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 14px;
    margin-bottom: 28px;
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-bg-card);
    padding: 10px 16px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(213, 209, 210, 0.5);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.hero-proof-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-border);
}

.hero-proof-link {
    text-decoration: none;
    cursor: pointer;
}

.hero-proof-link:hover .hero-proof-text {
    color: var(--color-primary);
}

.hero-proof-icon-box {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-proof-icon {
    width: 20px;
    height: 20px;
}

.hero-proof-text {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-text-main);
    line-height: 1.25;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-score {
    color: var(--color-primary);
    font-weight: 800;
}

.rating-badge {
    background: var(--color-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 2px;
    letter-spacing: 0.02em;
}

/* Блок действий (кнопки в колонку) */
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

/* Основная кнопка */
.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    font-size: 16.5px;
    font-weight: 700;
    padding: 18px 38px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-btn);
    transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-primary-cta:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hover);
}

.btn-primary-cta:active {
    background-color: var(--color-primary-active);
    transform: translateY(0);
}

.btn-primary-arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn-primary-cta:hover .btn-primary-arrow {
    transform: translateX(4px);
}

/* Вторая подчеркнутая ссылка/кнопка */
.btn-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--color-text-main);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
    text-decoration-color: rgba(37, 36, 35, 0.4);
    padding: 4px 2px;
    transition: color var(--transition-fast), text-decoration-color var(--transition-fast), transform var(--transition-fast);
}

.btn-secondary-link:hover {
    color: var(--color-primary);
    text-decoration-color: var(--color-primary);
    transform: translateX(3px);
}

/* Строка гарантий под кнопкой */
.hero-guarantee {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.hero-guarantee-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-guarantee-divider {
    color: var(--color-border);
    font-size: 11px;
}

.status-dot-whatsapp {
    width: 8px;
    height: 8px;
    background-color: var(--color-whatsapp);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.status-dot-whatsapp::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.4);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

/* Правая колонка с фото */
.hero-photo-column {
    width: 600px;
    min-width: 600px;
    max-width: 600px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.hero-photo-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Белая круглая подложка за экспертом (точно под фото и за телом как в референсе) */
.hero-photo-container::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    background-color: #FFFFFF;
    border-radius: 50%;
    bottom: 100px;
    left: 57%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

/* Изображение Максата */
.hero-photo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 12px 28px rgba(37, 36, 35, 0.08));
}

/* Плавающая плашка эксперта */
.hero-expert-badge {
    position: absolute;
    bottom: 28px;
    left: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-badge);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 330px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-expert-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 36, 35, 0.16);
}

.hero-badge-avatar {
    width: 36px;
    height: 36px;
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-badge-avatar-icon {
    width: 20px;
    height: 20px;
}

.hero-badge-info {
    display: flex;
    flex-direction: column;
}

.hero-badge-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-heading);
    line-height: 1.25;
}

.hero-badge-role {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-muted);
    line-height: 1.2;
}

/* ==========================================================================
   АДАПТИВНОСТЬ
   ========================================================================== */

/* Компактные десктопы (<= 1300px) — фото скрыто, текстовый блок на всю ширину */
@media (max-width: 1300px) {
    .hero-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-photo-column {
        display: none;
    }
}

/* Большие планшеты и компактные десктопы (<= 1200px) */
@media (max-width: 1200px) {
    .hero-content {
        padding: 38px 24px 38px 38px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 14.5px;
        margin-bottom: 22px;
    }

    .hero-proof-item {
        padding: 8px 12px;
    }

    .hero-proof-text {
        font-size: 12.5px;
    }
}

/* Планшеты (<= 992px) */
@media (max-width: 992px) {
    .hero-section {
        padding: 16px 0 24px;
    }

    .hero-card {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: var(--radius-lg);
    }

    .hero-content {
        padding: 32px 24px 20px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-content,
    .hero-photo-column {
        min-width: 0;
    }

    .hero-photo-column {
        padding: 8px 16px 20px;
        justify-content: center;
        height: auto;
        width: 100%;
    }

    .hero-photo-container {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        height: auto;
        min-width: 0;
    }

    .hero-photo-container::before {
        width: 72%;
        max-width: 340px;
        height: auto;
        aspect-ratio: 1;
        top: 8%;
        bottom: auto;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .hero-photo-img {
        max-width: 100%;
        width: 100%;
        max-height: 440px;
    }

    .hero-expert-badge {
        position: absolute;
        left: 8px;
        right: 8px;
        bottom: 12px;
        width: auto;
        max-width: none;
        margin: 0;
        justify-content: flex-start;
        box-sizing: border-box;
    }

    .hero-expert-badge:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {
    .hero-photo-column {
        display: flex;
        width: 100%;
        min-width: 0;
        max-width: none;
    }
}

/* Мобильные телефоны (<= 640px) */
@media (max-width: 640px) {
    .hero-section {
        padding: 12px 0 20px;
    }

    .hero-card {
        border-radius: 20px;
    }

    .hero-content {
        padding: 24px 16px 16px;
    }

    .hero-pretitle {
        font-size: 12px;
        padding: 5px 10px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 13.5px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-proofs-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 22px;
    }

    .hero-proof-item {
        padding: 9px 14px;
        border-radius: var(--radius-md);
    }

    .hero-actions {
        width: 100%;
        gap: 12px;
    }

    .btn-primary-cta {
        width: 100%;
        font-size: 15.5px;
        padding: 16px 20px;
    }

    .btn-secondary-link {
        font-size: 13.5px;
        text-align: left;
    }

    .hero-guarantee {
        font-size: 11.5px;
        gap: 6px 8px;
        margin-bottom: 8px;
    }

    .hero-photo-column {
        padding: 4px 12px 16px;
    }

    .hero-photo-container::before {
        width: 70%;
        max-width: 260px;
        top: 6%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .hero-photo-img {
        max-width: 100%;
        max-height: 350px;
    }

    .hero-expert-badge {
        left: 6px;
        right: 6px;
        bottom: 10px;
        padding: 10px 12px;
        gap: 10px;
    }
}

/* Компактные мобильные экраны (<= 475px) — по ТЗ отступы контейнера 8px */
@media (max-width: 475px) {
    :root {
        --container-padding: 8px;
    }

    .hero-section {
        padding: 8px 0 16px;
    }

    .hero-card {
        border-radius: 16px;
    }

    .hero-content {
        padding: 20px 12px 14px;
    }

    .hero-title {
        font-size: 21px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-proof-text {
        font-size: 12px;
    }

    .btn-primary-cta {
        font-size: 14.5px;
        padding: 15px 16px;
    }

    .btn-secondary-link {
        font-size: 12.5px;
    }

    .hero-guarantee {
        font-size: 11px;
    }

    .hero-photo-column {
        padding: 0 8px 14px;
    }

    .hero-photo-container::before {
        width: 68%;
        max-width: 220px;
        top: 4%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .hero-expert-badge {
        left: 4px;
        right: 4px;
        bottom: 8px;
        padding: 8px 10px;
        gap: 8px;
        border-radius: var(--radius-md);
    }

    .hero-badge-name {
        font-size: 13px;
    }

    .hero-badge-role {
        font-size: 11px;
    }
}

/* ==========================================================================
   БЛОК 2: ВЫБЕРИТЕ ВАШУ СИТУАЦИЮ
   ========================================================================== */

.situations-section {
    padding: 60px 0 70px;
    background-color: var(--color-bg-page);
}

.section-header {
    margin-bottom: 36px;
    max-width: 80%;
}

.section-title {
    font-size: clamp(24px, 2.8vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-heading);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--color-text-muted);
    max-width: 100%;
}

/* Сетка карточек ситуаций (все 6 карточек одинакового размера) */
.situations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Сама карточка */
.situation-card {
    background-color: var(--color-bg-card);
    /* Белый фон карточки */
    border-radius: var(--radius-xl);
    padding: 30px 28px 26px;
    border: 1px solid var(--color-border-subtle);
    box-shadow: 0 4px 18px rgba(37, 36, 35, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.situation-card:hover {
    box-shadow: 0 8px 24px rgba(37, 36, 35, 0.08);
    border-color: rgba(1, 46, 94, 0.16);
}

/* Шапка карточки: иконка + номер */
.situation-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.situation-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    border: 1px solid rgba(1, 46, 94, 0.06);
}

.situation-icon {
    width: 24px;
    height: 24px;
}

.situation-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-light);
    letter-spacing: 0.06em;
}

/* Тело карточки */
.situation-card-body {
    flex-grow: 1;
    margin-bottom: 24px;
}

.situation-card-title {
    font-size: 18.5px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-text-heading);
    margin-bottom: 10px;
}

.situation-card-text {
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--color-text-muted);
}

/* Кнопка в карточке */
.situation-card-footer {
    margin-top: auto;
}

.btn-situation-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 18px;
    border-radius: var(--radius-md);
    background-color: var(--color-bg-light);
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(1, 46, 94, 0.08);
    transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.btn-situation-cta:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
}

.btn-situation-cta .btn-arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.btn-situation-cta:hover .btn-arrow-icon {
    transform: translateX(4px);
}

/* Акцентная карточка «другая ситуация»: как плашка законодательной базы */
.situation-card--accent {
    background: linear-gradient(135deg, #012e5e 0%, #012247 100%);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 34px rgba(1, 46, 94, 0.16);
}

.situation-card--accent:hover {
    box-shadow: 0 16px 36px rgba(1, 46, 94, 0.24);
    border-color: rgba(255, 255, 255, 0.22);
}

.situation-card--accent .situation-icon-box {
    background: rgba(56, 189, 248, 0.18);
    border-color: rgba(56, 189, 248, 0.25);
    color: #38bdf8;
}

.situation-card--accent .situation-number {
    color: rgba(255, 255, 255, 0.45);
}

.situation-card--accent .situation-card-title {
    color: #FFFFFF;
}

.situation-card--accent .situation-card-text {
    color: rgba(255, 255, 255, 0.78);
}

.situation-card--accent .btn-situation-cta {
    background-color: #FFFFFF;
    color: var(--color-primary);
    border-color: transparent;
}

.situation-card--accent .btn-situation-cta:hover {
    background-color: #e8f4fc;
    color: var(--color-primary);
    border-color: transparent;
}

/* ==========================================================================
   АДАПТИВНОСТЬ ДЛЯ БЛОКА 2
   ========================================================================== */

@media (max-width: 1024px) {
    .section-header {
        max-width: 100%;
    }

    .situations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .situations-section {
        padding: 40px 0 50px;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14.5px;
    }

    .situations-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .situation-card {
        padding: 24px 20px 20px;
        border-radius: 18px;
    }

    .situation-card-title {
        font-size: 17px;
    }
}

@media (max-width: 475px) {
    .situations-section {
        padding: 32px 0 40px;
    }

    .section-title {
        font-size: 21px;
    }

    .section-subtitle {
        font-size: 13.5px;
    }

    .situation-card {
        padding: 20px 16px 18px;
        border-radius: 16px;
    }

    .situation-card-title {
        font-size: 16px;
    }

    .situation-card-text {
        font-size: 13.5px;
    }

    .btn-situation-cta {
        padding: 11px 14px;
        font-size: 13px;
    }
}

/* ==========================================================================
   БЛОК 3: ПОЧЕМУ ВАЖНО НАЧАТЬ ЗАРАНЕЕ
   ========================================================================== */

.why-start-section {
    padding: 60px 0 80px;
    background-color: var(--color-bg-page);
}

.why-start-header {
    margin-bottom: 40px;
    max-width: 80%;
}

/* Сетка из 4 карточек */
.why-start-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 48px;
}

/* Карточка с дизайнерской стрелкой-указателем внизу */
.why-start-card {
    background-color: var(--color-bg-card);
    /* Белый фон */
    border-radius: var(--radius-xl);
    padding: 32px 24px 34px;
    border: 1px solid var(--color-border-subtle);
    box-shadow: 0 4px 18px rgba(37, 36, 35, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.why-start-card:hover {
    box-shadow: 0 10px 26px rgba(37, 36, 35, 0.08);
    border-color: rgba(1, 46, 94, 0.16);
}

/* Дизайнерская стрелка-указатель снизу карточки как на референсе */
.why-start-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background-color: var(--color-bg-card);
    border-right: 1px solid var(--color-border-subtle);
    border-bottom: 1px solid var(--color-border-subtle);
    border-bottom-right-radius: 4px;
    box-shadow: 3px 3px 6px rgba(37, 36, 35, 0.03);
    z-index: 1;
    transition: border-color var(--transition-fast);
}

.why-start-card:hover::after {
    border-color: rgba(1, 46, 94, 0.16);
}

/* Шапка карточки: иконка слева, большая бордовая цифра справа */
.why-start-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.why-start-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    border: 1px solid rgba(1, 46, 94, 0.06);
}

.why-start-icon {
    width: 24px;
    height: 24px;
}

/* Большая акцентная бордовая цифра */
.why-start-watermark {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: rgba(185, 28, 28, 0.15);
    /* Деликатный бордовый акцент по ТЗ */
    letter-spacing: -0.04em;
    user-select: none;
}

/* Текстовое наполнение */
.why-start-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-text-heading);
    margin-bottom: 12px;
}

.why-start-card-text {
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--color-text-muted);
}

/* Центрированная кнопка под карточками */
.why-start-action {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-why-start {
    font-size: 16.5px;
    padding: 18px 44px;
}

/* ==========================================================================
   АДАПТИВНОСТЬ ДЛЯ БЛОКА 3
   ========================================================================== */

@media (max-width: 1024px) {
    .why-start-header {
        max-width: 100%;
    }

    .why-start-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
    }
}

@media (max-width: 768px) {
    .why-start-section {
        padding: 40px 0 50px;
    }

    .why-start-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 36px;
    }

    .why-start-card {
        padding: 24px 20px 26px;
        border-radius: 18px;
    }

    .why-start-watermark {
        font-size: 40px;
    }

    .why-start-card-title {
        font-size: 17px;
    }

    .btn-why-start {
        width: 100%;
        font-size: 15.5px;
        padding: 16px 20px;
    }
}

@media (max-width: 475px) {
    .why-start-section {
        padding: 32px 0 40px;
    }

    .why-start-card {
        padding: 20px 16px 22px;
        border-radius: 16px;
    }

    .why-start-card-title {
        font-size: 16px;
    }

    .why-start-card-text {
        font-size: 13.5px;
    }

    .btn-why-start {
        font-size: 14.5px;
        padding: 15px 16px;
    }
}

/* ==========================================================================
   БЛОК 4: ВАШ ЛИЧНЫЙ ЮРИСТ
   ========================================================================== */

.lawyer-section {
    padding: 30px 0 70px;
    background-color: var(--color-bg-page);
}

.lawyer-card {
    background: linear-gradient(145deg, #012e5e 0%, #001f40 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(1, 46, 94, 0.16);
    display: grid;
    grid-template-columns: 42% 58%;
    overflow: hidden;
}

/* Левая колонка: Фото */
.lawyer-photo-col {
    position: relative;
    background-color: #00172e;
    display: flex;
    align-items: stretch;
}

.lawyer-photo-frame {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.lawyer-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.lawyer-photo-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 23, 46, 0) 0%, rgba(0, 23, 46, 0.85) 45%, rgba(0, 23, 46, 0.98) 100%);
    padding: 40px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lawyer-badge-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
}

.lawyer-badge-sub {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

/* Правая колонка: Контент */
.lawyer-content-col {
    padding: 48px 44px 48px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lawyer-pretitle-wrapper {
    margin-bottom: 12px;
}

.lawyer-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.lawyer-pretitle-icon {
    width: 14px;
    height: 14px;
    color: #FFFFFF;
}

.lawyer-title {
    font-size: clamp(23px, 2.4vw, 34px);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.lawyer-description {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 24px;
}

/* Сетка фактов */
.lawyer-facts-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 14px;
    margin-bottom: 24px;
    list-style: none;
    padding: 0;
}

.lawyer-fact-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 13px 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.lawyer-fact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
}

.lawyer-fact-icon-box {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lawyer-fact-icon {
    width: 18px;
    height: 18px;
}

.lawyer-fact-content {
    flex-grow: 1;
}

.lawyer-fact-title {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.35;
    display: block;
    margin-bottom: 2px;
}

.lawyer-fact-note {
    font-size: 11.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.35;
}

/* Цитата */
.lawyer-quote {
    background: rgba(255, 255, 255, 0.07);
    border-left: 3px solid rgba(255, 255, 255, 0.45);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 14px 18px;
    margin-bottom: 26px;
}

.lawyer-quote-text {
    font-size: 13.5px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0;
}

/* Кнопка WhatsApp: Secondary стиль с прозрачным фоном и белой обводкой */
.lawyer-action {
    display: flex;
}

.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: transparent;
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    font-size: 15.5px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-whatsapp-cta:hover {
    background-color: #FFFFFF;
    color: var(--color-primary);
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
    transition: fill var(--transition-fast);
}

/* ==========================================================================
   АДАПТИВНОСТЬ ДЛЯ БЛОКА 4
   ========================================================================== */

@media (max-width: 1024px) {
    .lawyer-card {
        grid-template-columns: 1fr;
    }

    .lawyer-photo-col {
        height: 440px;
    }

    .lawyer-photo-img {
        object-position: center 15%;
    }

    .lawyer-content-col {
        padding: 36px 30px 40px;
    }
}

@media (max-width: 768px) {
    .lawyer-section {
        padding: 20px 0 50px;
    }

    .lawyer-photo-col {
        height: 360px;
    }

    .lawyer-content-col {
        padding: 28px 20px 32px;
    }

    .lawyer-title {
        font-size: 22px;
    }

    .lawyer-description {
        font-size: 14px;
    }

    .lawyer-facts-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .btn-whatsapp-cta {
        width: 100%;
        font-size: 14.5px;
        padding: 15px 18px;
    }
}

@media (max-width: 475px) {
    .lawyer-photo-col {
        height: 300px;
    }

    .lawyer-content-col {
        padding: 24px 16px 28px;
    }

    .lawyer-title {
        font-size: 20px;
    }

    .lawyer-quote {
        padding: 12px 14px;
    }

    .lawyer-quote-text {
        font-size: 12.5px;
    }

    .btn-whatsapp-cta {
        font-size: 13.5px;
        padding: 14px 14px;
        gap: 8px;
    }

    .whatsapp-icon {
        width: 19px;
        height: 19px;
    }
}

/* ==========================================================================
   БЛОК 6: УСЛУГИ И ФОРМАТЫ ПОМОЩИ
   ========================================================================== */

.services-section {
    padding: 60px 0 80px;
    background-color: var(--color-bg-page);
}

.services-header {
    margin-bottom: 40px;
    max-width: 80%;
}

/* Сетка карточек услуг (2x2) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.service-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 380px;
    background-color: #012e5e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 28px 28px 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 12px 34px rgba(1, 46, 94, 0.16);
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.service-card:hover {
    box-shadow: 0 18px 40px rgba(1, 46, 94, 0.24);
    transform: translateY(-3px);
}

.service-card-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
    pointer-events: none;
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(165deg, rgba(1, 34, 71, 0.92) 0%, rgba(1, 46, 94, 0.72) 38%, rgba(1, 46, 94, 0.18) 68%, rgba(1, 46, 94, 0) 100%);
}

.service-card-content {
    position: relative;
    z-index: 2;
    max-width: 34rem;
}

.service-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.service-tag {
    font-size: 12px;
    font-weight: 700;
    color: #7dd3fc;
    background-color: rgba(56, 189, 248, 0.16);
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

.service-number {
    font-size: 15px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.04em;
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 14.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    .service-card:hover {
        transform: none;
    }
}

/* Информационный баннер под услугами */
.services-action-banner {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-subtle);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 4px 18px rgba(37, 36, 35, 0.04);
}

.services-action-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 5px;
}

.services-action-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

.services-action-btn-wrap {
    flex-shrink: 0;
}

.btn-services-cta {
    font-size: 15.5px;
    padding: 16px 36px;
    white-space: nowrap;
}

/* ==========================================================================
   АДАПТИВНОСТЬ ДЛЯ БЛОКА 6
   ========================================================================== */

@media (max-width: 1024px) {
    .services-header {
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .services-action-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 26px;
    }

    .services-action-btn-wrap {
        width: 100%;
    }

    .btn-services-cta {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 0 50px;
    }

    .service-card {
        padding: 22px 20px 180px;
        min-height: 340px;
    }

    .service-card-title {
        font-size: 18px;
    }

    .service-card-desc {
        font-size: 14px;
    }
}

@media (max-width: 475px) {
    .services-section {
        padding: 32px 0 40px;
    }

    .service-card {
        padding: 20px 16px 170px;
        min-height: 320px;
        border-radius: 18px;
    }

    .service-card-meta {
        gap: 8px;
    }

    .service-tag {
        font-size: 11px;
        padding: 4px 9px;
    }

    .service-card-title {
        font-size: 16.5px;
    }

    .service-card-desc {
        font-size: 13.5px;
    }

    .services-action-banner {
        padding: 20px 16px;
    }

    .services-action-title {
        font-size: 16px;
    }

    .services-action-subtitle {
        font-size: 13px;
    }

    .btn-services-cta {
        font-size: 14px;
        padding: 14px 16px;
    }
}

/* ==========================================================================
   БЛОК 7: КАК ПРОХОДИТ РАБОТА (ДИЗАЙН ПО РЕФЕРЕНСУ)
   ========================================================================== */

.process-section {
    padding: 60px 0 80px;
    background-color: var(--color-bg-page);
}

.process-header {
    margin-bottom: 44px;
    max-width: 80%;
}

/* Обертка трека карточек с пунктирной линией */
.steps-track-wrap {
    position: relative;
    margin-bottom: 44px;
}

/* Горизонтальная пунктирная линия связи (десктоп) */
.steps-dashed-line {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 0;
    border-top: 2px dashed #d5d1d2;
    z-index: 1;
    pointer-events: none;
}

/* Сетка 4 шагов */
.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    z-index: 2;
}

/* Карточка шага */
.step-card {
    background-color: var(--color-bg-card);
    /* Белый фон */
    border: 1px solid var(--color-border-subtle);
    border-radius: 16px;
    padding: 32px 24px 34px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(37, 36, 35, 0.03);
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    box-shadow: 0 10px 28px rgba(37, 36, 35, 0.08);
    transform: translateY(-3px);
}

/* Номер шага (Крупный фирменный синий) */
.step-num-wrap {
    margin-bottom: 18px;
}

.step-num {
    font-size: 34px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.02em;
    display: inline-block;
}

/* Заголовок и описание */
.step-title {
    font-size: 18.5px;
    font-weight: 700;
    color: var(--color-text-heading);
    line-height: 1.35;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 13.5px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Выделенная 4-я карточка (Фирменная рамка, звезда и темно-синий треугольный уголок) */
.step-card--featured {
    border: 2px solid var(--color-primary);
    box-shadow: 0 6px 24px rgba(1, 46, 94, 0.08);
}

.step-num--featured {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.step-star-icon {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
    flex-shrink: 0;
}

/* Фирменный темно-синий треугольный уголок с белой галочкой в правом нижнем углу */
.step-corner-badge {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 5px;
    z-index: 3;
    pointer-events: none;
}

.step-corner-check {
    width: 16px;
    height: 16px;
    stroke: #FFFFFF;
    stroke-width: 3.5;
    margin-right: 3px;
    margin-bottom: 3px;
}

/* Центрированная кнопка действия */
.process-action-wrap {
    display: flex;
    justify-content: center;
}

.btn-process-cta {
    font-size: 16px;
    padding: 18px 44px;
}

/* ==========================================================================
   АДАПТИВНОСТЬ ДЛЯ БЛОКА 7
   ========================================================================== */

@media (max-width: 1024px) {
    .process-header {
        max-width: 100%;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .steps-dashed-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 40px 0 50px;
    }

    .step-card {
        padding: 24px 20px 26px;
    }

    .step-num {
        font-size: 28px;
    }

    .step-title {
        font-size: 17px;
    }

    .step-desc {
        font-size: 13px;
    }

    .btn-process-cta {
        width: 100%;
        font-size: 15px;
        padding: 16px 20px;
    }
}

@media (max-width: 475px) {
    .process-section {
        padding: 32px 0 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .step-card {
        padding: 20px 18px 22px;
    }

    .step-num {
        font-size: 26px;
    }

    .step-title {
        font-size: 16px;
    }

    .btn-process-cta {
        font-size: 14px;
        padding: 14px 16px;
    }
}

/* ==========================================================================
   БЛОК 8: ВОЕННО-ТЕХНИЧЕСКАЯ ШКОЛА (ВТШ) — SPLIT-CARD С ФОТО
   ========================================================================== */

.vtsh-section {
    padding: 20px 0 80px;
    background-color: var(--color-bg-page);
}

.vtsh-split-card {
    background-color: var(--color-bg-card);
    /* Белый фон */
    border: 1px solid var(--color-border-subtle);
    border-radius: 28px;
    display: grid;
    grid-template-columns: 42% 58%;
    box-shadow: 0 8px 32px rgba(37, 36, 35, 0.05);
    overflow: hidden;
    align-items: stretch;
}

/* Левая часть: Фото без отступов */
.vtsh-split-photo-col {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 440px;
    background-color: #00172e;
}

.vtsh-split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.vtsh-split-photo-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: rgba(1, 46, 94, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.vtsh-photo-badge-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

.vtsh-photo-badge-val {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
}

/* Правая часть: Информационный блок */
.vtsh-split-content-col {
    padding: 44px 44px 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vtsh-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(1, 46, 94, 0.06);
    border: 1px solid rgba(1, 46, 94, 0.12);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    align-self: flex-start;
}

.vtsh-badge-icon {
    width: 15px;
    height: 15px;
    color: var(--color-primary);
}

.vtsh-split-title {
    font-size: 25px;
    font-weight: 800;
    color: var(--color-text-heading);
    line-height: 1.3;
    margin-bottom: 12px;
}

.vtsh-split-desc {
    font-size: 14.5px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 22px;
}

/* Чек-лист из 4 пунктов */
.vtsh-split-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 26px;
}

.vtsh-split-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vtsh-split-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(1, 46, 94, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vtsh-split-check-icon svg {
    width: 13px;
    height: 13px;
}

.vtsh-split-check-text {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--color-text-heading);
    line-height: 1.45;
}

/* Кнопка */
.vtsh-split-action-wrap {
    margin-bottom: 12px;
}

.btn-vtsh-split-cta {
    font-size: 15px;
    padding: 16px 30px;
}

.vtsh-split-footnote {
    font-size: 11.5px;
    color: var(--color-text-muted);
    line-height: 1.45;
    margin: 0;
}

/* ==========================================================================
   АДАПТИВНОСТЬ ДЛЯ БЛОКА 8
   ========================================================================== */

@media (max-width: 1024px) {
    .vtsh-split-card {
        grid-template-columns: 1fr;
    }

    .vtsh-split-photo-col {
        min-height: 320px;
        max-height: 380px;
    }

    .vtsh-split-content-col {
        padding: 34px 30px;
    }
}

@media (max-width: 768px) {
    .vtsh-section {
        padding: 10px 0 50px;
    }

    .vtsh-split-card {
        border-radius: 20px;
    }

    .vtsh-split-photo-col {
        min-height: 260px;
        max-height: 300px;
    }

    .vtsh-split-content-col {
        padding: 24px 20px;
    }

    .vtsh-split-title {
        font-size: 21px;
    }

    .vtsh-split-desc {
        font-size: 14px;
    }

    .btn-vtsh-split-cta {
        width: 100%;
        font-size: 14.5px;
        padding: 15px 18px;
    }
}

@media (max-width: 475px) {
    .vtsh-section {
        padding: 0 0 40px;
    }

    .vtsh-split-photo-col {
        min-height: 220px;
    }

    .vtsh-split-title {
        font-size: 19px;
    }

    .vtsh-split-check-item {
        align-items: flex-start;
    }

    .vtsh-split-check-icon {
        margin-top: 2px;
    }
}

/* ==========================================================================
   БЛОК 9: ОТЗЫВЫ И ДОВЕРИЕ (2ГИС)
   ========================================================================== */

.reviews-section {
    padding: 30px 0 80px;
    background-color: var(--color-bg-page);
}

/* Шапка секции: 80% на десктопе */
.reviews-header-wrap {
    max-width: 80%;
    margin-bottom: 32px;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(1, 46, 94, 0.06);
    border: 1px solid rgba(1, 46, 94, 0.12);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
}

.reviews-badge-star {
    color: #F59E0B;
    font-size: 14px;
}

/* Верхний блок: Заголовок слева и компактная плашка 2ГИС справа */
.reviews-top-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 34px;
}

.reviews-title {
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 800;
    color: var(--color-text-heading);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.reviews-subtitle {
    font-size: 15.5px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 640px;
}

/* Компактный брендовый виджет 2ГИС справа */
.reviews-summary-widget {
    background-color: var(--color-bg-card);
    /* Белый фон */
    border: 1px solid var(--color-border-subtle);
    border-radius: 20px;
    padding: 16px 20px;
    box-shadow: 0 4px 18px rgba(37, 36, 35, 0.04);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 320px;
    flex-shrink: 0;
}

.widget-2gis-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border-subtle);
}

.widget-2gis-logo {
    display: flex;
    align-items: center;
}

.twogis-official-svg {
    width: 86px;
    height: 24px;
    display: block;
}

.widget-2gis-score {
    display: flex;
    align-items: center;
    gap: 6px;
}

.widget-score-num {
    font-size: 20px;
    font-weight: 900;
    color: var(--color-text-heading);
    line-height: 1;
}

.widget-stars {
    color: #F59E0B;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
}

.widget-2gis-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.widget-counts-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.widget-2gis-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--color-primary);
    background-color: rgba(1, 46, 94, 0.06);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.widget-2gis-btn svg {
    width: 12px;
    height: 12px;
    transition: transform var(--transition-fast);
}

.widget-2gis-btn:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.widget-2gis-btn:hover svg {
    transform: translate(2px, -2px);
}

/* Слайдер скриншот-карточек */
.reviews-slider-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.reviews-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.reviews-slider-counter {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-muted);
}

.reviews-slider-arrows {
    display: flex;
    gap: 10px;
}

.reviews-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-heading);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.reviews-arrow-btn svg {
    width: 18px;
    height: 18px;
}

.reviews-arrow-btn:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
}

.reviews-arrow-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: var(--color-bg-card);
    color: var(--color-text-muted);
    border-color: var(--color-border-subtle);
}

/* Сетка карточек-скриншотов */
.reviews-slider-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    transition: opacity 0.25s ease;
}

/* Карточка со скриншотом 2ГИС */
.review-screen-card {
    position: relative;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 18px rgba(37, 36, 35, 0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    cursor: pointer;
}

.review-screen-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(1, 46, 94, 0.1);
    border-color: rgba(1, 46, 94, 0.2);
}

/* Бейдж перехода в 2ГИС в правом верхнем углу внутри карточки */
.review-card-link-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #FFFFFF;
    color: #00b856;
    border: 1px solid rgba(0, 184, 86, 0.3);
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px 4px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
    pointer-events: none;
}

.review-card-link-badge svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    transition: transform 0.25s ease;
}

.review-screen-card:hover .review-card-link-badge {
    background-color: #00b856;
    color: #FFFFFF;
    border-color: #00b856;
    box-shadow: 0 4px 12px rgba(0, 184, 86, 0.3);
}

.review-screen-card:hover .review-card-link-badge svg {
    transform: translate(1px, -1px);
}

.review-screen-img-wrap {
    position: relative;
    width: 100%;
    background-color: transparent;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding: 14px 14px 10px;
}

.review-screen-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.review-screen-card:hover .review-screen-img {
    transform: scale(1.015);
}

/* Пагинация точками */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.reviews-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--color-border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-fast);
}

.reviews-dot.active {
    background-color: var(--color-primary);
    width: 24px;
    border-radius: var(--radius-full);
}

/* Нижняя кнопка */
.reviews-action-wrap {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.btn-reviews-cta {
    font-size: 15px;
    padding: 16px 32px;
    text-decoration: none;
}

/* ==========================================================================
   АДАПТИВНОСТЬ ДЛЯ БЛОКА 9
   ========================================================================== */

@media (max-width: 1024px) {
    .reviews-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .reviews-summary-widget {
        width: 100%;
        min-width: unset;
    }

    .reviews-slider-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 20px 0 60px;
    }

    .reviews-slider-track {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .btn-reviews-cta {
        width: 100%;
        font-size: 14.5px;
        padding: 15px 18px;
    }
}

@media (max-width: 475px) {
    .reviews-section {
        padding: 10px 0 45px;
    }

    .screen-card-content {
        padding: 16px 14px 12px;
    }
}

/* ==========================================================================
   БЛОК 10: ФОРМАТЫ СОПРОВОЖДЕНИЯ
   ========================================================================== */

.section-formats {
    padding: 60px 0 80px;
    background-color: var(--color-bg);
}

.formats-header-wrap {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.formats-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(1, 46, 94, 0.06);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.formats-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.formats-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
    align-items: stretch;
}

/* Базовая карточка формата */
.format-card {
    position: relative;
    background-color: #FFFFFF;
    border: 1px solid var(--color-border-subtle);
    border-radius: 24px;
    padding: 38px 34px 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(37, 36, 35, 0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(1, 46, 94, 0.08);
    border-color: rgba(1, 46, 94, 0.2);
}

/* Акцентная карточка «Полное сопровождение» */
.format-card--featured {
    border: 2px solid var(--color-primary);
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    box-shadow: 0 8px 30px rgba(1, 46, 94, 0.09);
}

.format-card--featured:hover {
    box-shadow: 0 20px 42px rgba(1, 46, 94, 0.14);
}

/* Бейдж популярного выбора */
.format-featured-badge {
    position: absolute;
    top: -14px;
    right: 28px;
    background: linear-gradient(135deg, #012e5e 0%, #02438a 100%);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(1, 46, 94, 0.25);
}

.format-featured-badge svg {
    width: 13px;
    height: 13px;
    fill: #f59e0b;
    stroke: #f59e0b;
}

/* Тег карточки */
.format-card-tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    background-color: rgba(1, 46, 94, 0.06);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.format-card-tag--featured {
    color: #0d9488;
    background-color: rgba(13, 148, 136, 0.09);
}

/* Заголовок и описание карточки */
.format-card-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.format-card-desc {
    font-size: 14.5px;
    color: var(--color-text-muted);
    line-height: 1.55;
    min-height: 44px;
}

/* Разделитель */
.format-card-divider {
    height: 1px;
    background-color: var(--color-border-subtle);
    margin: 24px 0 20px;
}

/* Список преимуществ */
.format-features-label {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.format-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.format-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: var(--color-text);
    line-height: 1.45;
}

.format-feature-item--highlight {
    font-size: 15px;
    color: var(--color-primary);
}

.format-feature-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: rgba(1, 46, 94, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.format-card--featured .format-feature-icon {
    background-color: rgba(1, 46, 94, 0.12);
    color: var(--color-primary);
}

.format-feature-icon svg {
    width: 12px;
    height: 12px;
}

/* Футер карточки */
.format-card-footer {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.format-card-terms {
    display: flex;
    align-items: center;
    justify-content: center;
}

.format-terms-badge {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--color-text-muted);
    background-color: var(--color-bg);
    padding: 5px 14px;
    border-radius: var(--radius-full);
}

.format-terms-badge--featured {
    color: var(--color-primary);
    background-color: rgba(1, 46, 94, 0.06);
    font-weight: 700;
}

/* Кнопки карточек */
.btn-secondary-format {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    background-color: transparent;
    border: 1.5px solid var(--color-primary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.btn-secondary-format:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(1, 46, 94, 0.2);
}

.btn-secondary-format:hover .btn-primary-arrow {
    transform: translateX(4px);
}

.btn-format-cta {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 24px;
}

/* Плашка факторов стоимости */
.formats-factors-box {
    margin-top: 48px;
    background-color: #FFFFFF;
    border: 1px solid var(--color-border-subtle);
    border-radius: 22px;
    padding: 32px 36px;
    box-shadow: 0 4px 18px rgba(37, 36, 35, 0.03);
}

.formats-factors-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.formats-factors-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: rgba(1, 46, 94, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.formats-factors-icon-wrap svg {
    width: 20px;
    height: 20px;
}

.formats-factors-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.formats-factors-subtitle {
    font-size: 14.5px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

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

.formats-factor-card {
    background-color: var(--color-bg);
    border-radius: 16px;
    padding: 20px 22px;
    border: 1px solid var(--color-border-subtle);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.factor-num {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    opacity: 0.85;
    margin-top: 2px;
}

.factor-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 6px;
}

.factor-desc {
    font-size: 13.5px;
    color: var(--color-text-muted);
    line-height: 1.45;
}

/* ==========================================================================
   АДАПТИВНОСТЬ ДЛЯ БЛОКА 10
   ========================================================================== */

@media (max-width: 1024px) {
    .formats-grid {
        gap: 24px;
    }

    .formats-factors-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .formats-factors-box {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .section-formats {
        padding: 45px 0 60px;
    }

    .formats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 36px;
    }

    .format-card {
        padding: 30px 22px 26px;
    }

    .format-featured-badge {
        right: 18px;
        font-size: 11px;
        padding: 5px 12px;
    }

    .formats-factors-box {
        margin-top: 32px;
        padding: 24px 18px;
    }

    .formats-factors-header {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================================
   БЛОК 11: РАБОТАЕМ ЗАКОННО
   ========================================================================== */

.section-legal {
    padding: 80px 0;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border-subtle);
}

.legal-header-wrap {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 52px;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(13, 148, 136, 0.08);
    color: #0d9488;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.legal-badge-icon {
    width: 16px;
    height: 16px;
}

.legal-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.legal-subtitle {
    font-size: 15.5px;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* Сетка карточек сравнения */
.legal-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.legal-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border-subtle);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(37, 36, 35, 0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(37, 36, 35, 0.08);
}

.legal-card--allowed {
    border-color: rgba(1, 46, 94, 0.16);
}

.legal-card--forbidden {
    border-color: rgba(239, 68, 68, 0.22);
}

/* Область изображения карточки */
.legal-card-img-wrap {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #012247;
}

.legal-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.legal-card:hover .legal-card-img {
    transform: scale(1.03);
}

.legal-card-img-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12.5px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.legal-card-img-badge--allowed {
    background: rgba(1, 46, 94, 0.9);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-card-img-badge--allowed svg {
    width: 13px;
    height: 13px;
    stroke: #34d399;
}

.legal-card-img-badge--forbidden {
    background: rgba(220, 38, 38, 0.92);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-card-img-badge--forbidden svg {
    width: 13px;
    height: 13px;
    stroke: #FFFFFF;
}

/* Контентная часть карточки */
.legal-card-content {
    padding: 30px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex-grow: 1;
}

.legal-card-heading {
    font-size: 23px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.legal-card--forbidden .legal-card-heading {
    color: #dc2626;
}

.legal-card-subheading {
    font-size: 13.5px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Списки */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.legal-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.legal-item-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(1, 46, 94, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.legal-item-icon svg {
    width: 13px;
    height: 13px;
}

.legal-item-icon--cross {
    background-color: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.legal-item-body strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 3px;
    line-height: 1.35;
}

.legal-item-body p {
    font-size: 13.5px;
    color: var(--color-text-muted);
    line-height: 1.45;
    margin: 0;
}

/* Плашка законодательной базы */
.legal-basis-box {
    margin-top: 48px;
    background: linear-gradient(135deg, #012e5e 0%, #012247 100%);
    border-radius: 22px;
    padding: 36px 40px;
    color: #FFFFFF;
    box-shadow: 0 12px 34px rgba(1, 46, 94, 0.16);
}

.legal-basis-title-wrap {
    margin-bottom: 24px;
}

.legal-basis-tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.15);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.legal-basis-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.4;
}

.legal-basis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.legal-basis-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: background-color 0.25s ease;
}

.legal-basis-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.legal-basis-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(56, 189, 248, 0.18);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.legal-basis-icon svg {
    width: 17px;
    height: 17px;
}

.legal-basis-text strong {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 3px;
}

.legal-basis-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
    display: block;
}

/* ==========================================================================
   АДАПТИВНОСТЬ ДЛЯ БЛОКА 11
   ========================================================================== */

@media (max-width: 1024px) {
    .legal-comparison-grid {
        gap: 24px;
    }

    .legal-basis-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .legal-basis-box {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .section-legal {
        padding: 50px 0 60px;
    }

    .legal-header-wrap {
        margin-bottom: 36px;
    }

    .legal-title {
        font-size: 28px;
    }

    .legal-comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .legal-card-img-wrap {
        height: 200px;
    }

    .legal-card-content {
        padding: 24px 20px;
    }

    .legal-basis-box {
        margin-top: 32px;
        padding: 24px 18px;
    }

    .legal-basis-title {
        font-size: 17px;
    }
}

/* ==========================================================================
   БЛОК 12: ЧАСТЫЕ ВОПРОСЫ (FAQ)
   ========================================================================== */

.section-faq {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.faq-header-wrap {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(1, 46, 94, 0.06);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

.faq-badge-icon {
    width: 16px;
    height: 16px;
}

.faq-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 15.5px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Аккордеон список (на всю ширину контейнера) */
.faq-accordion-list {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background-color: #FFFFFF;
    border: 1px solid var(--color-border-subtle);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(1, 46, 94, 0.2);
    box-shadow: 0 4px 18px rgba(37, 36, 35, 0.04);
}

.faq-item.is-open {
    border-color: rgba(1, 46, 94, 0.28);
    box-shadow: 0 8px 24px rgba(1, 46, 94, 0.06);
}

/* Кнопка триггера */
.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 26px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.2s ease;
}

.faq-trigger:hover {
    background-color: rgba(1, 46, 94, 0.015);
}

.faq-num {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--color-primary);
    background-color: rgba(1, 46, 94, 0.06);
    padding: 4px 10px;
    border-radius: 8px;
    flex-shrink: 0;
}

.faq-question {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    flex-grow: 1;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-item.is-open .faq-question {
    color: var(--color-primary);
}

.faq-icon-box {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.28s ease, transform 0.28s ease, color 0.28s ease;
    color: var(--color-text-muted);
}

.faq-item.is-open .faq-icon-box {
    background-color: var(--color-primary);
    color: #FFFFFF;
    transform: rotate(180deg);
}

.faq-arrow-svg {
    width: 16px;
    height: 16px;
    transition: stroke 0.2s ease;
}

/* Плавное раскрытие через CSS Grid */
.faq-collapse {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-collapse {
    grid-template-rows: 1fr;
}

.faq-content {
    overflow: hidden;
}

.faq-content p {
    padding: 12px 26px 24px 64px;
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* Карточка контактов внизу FAQ (на всю ширину) */
.faq-contact-card {
    max-width: 100%;
    margin: 36px auto 0;
    background-color: #FFFFFF;
    border: 1px dashed rgba(1, 46, 94, 0.25);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 4px 16px rgba(37, 36, 35, 0.03);
}

.faq-contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(1, 46, 94, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-contact-icon svg {
    width: 22px;
    height: 22px;
}

.faq-contact-text {
    flex-grow: 1;
}

.faq-contact-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.faq-contact-subtitle {
    font-size: 13.5px;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.45;
}

/* ==========================================================================
   АДАПТИВНОСТЬ ДЛЯ БЛОКА 12
   ========================================================================== */

@media (max-width: 768px) {
    .section-faq {
        padding: 50px 0 60px;
    }

    .faq-header-wrap {
        margin-bottom: 32px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-trigger {
        padding: 18px 18px;
        gap: 12px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-content p {
        padding: 10px 18px 18px 18px;
        font-size: 14px;
    }

    .faq-contact-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 18px;
    }

    .faq-contact-icon {
        margin: 0 auto;
    }

    .btn-faq-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   БЛОК 13: ФИНАЛЬНЫЙ ПРИЗЫВ К ДЕЙСТВИЮ (ФОРМА ЗАХВАТА)
   ========================================================================== */

.section-final-cta {
    position: relative;
    padding: 90px 0 85px;
    background: linear-gradient(175deg, #012e5e 0%, #011f40 55%, #001328 100%);
    color: #FFFFFF;
    overflow: hidden;
}

/* Фоновые градиенты свечения */
.cta-glow-1 {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.cta-glow-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

/* Карточка в стиле Блока 4 — на всю ширину контейнера */
.lawyer-style-cta-card {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 44px;
    background: #FFFFFF;
    border-radius: 28px;
    padding: 38px 42px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    color: var(--color-text);
    width: 100%;
    max-width: 100%;
    margin: 0;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* Левая колонка: Фото на всю высоту */
.lawyer-style-photo-col {
    display: flex;
    height: 100%;
}

.lawyer-style-photo-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(165deg, #012e5e 0%, #00172e 100%);
    border: 1px solid rgba(1, 46, 94, 0.15);
    width: 100%;
    height: 100%;
    min-height: 480px;
    box-shadow: 0 8px 24px rgba(1, 46, 94, 0.18);
}

.lawyer-style-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.lawyer-style-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 23, 46, 0) 0%, rgba(0, 23, 46, 0.88) 45%, rgba(0, 23, 46, 0.98) 100%);
    padding: 34px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 2;
}

.lawyer-style-badge-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lawyer-style-badge-name {
    font-size: 17.5px;
    font-weight: 800;
    color: #FFFFFF;
}

.lawyer-style-badge-check {
    width: 18px;
    height: 18px;
    color: #38bdf8;
}

.lawyer-style-badge-role {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

/* Правая колонка формы */
.lawyer-style-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lawyer-pretitle-wrapper {
    margin-bottom: 12px;
}

.lawyer-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    color: #1e40af;
    background: #eff6ff;
    border: 1.5px solid #bfdbfe;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lawyer-pretitle-icon {
    width: 14px;
    height: 14px;
    color: #2563eb;
}

.lawyer-style-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}

.lawyer-style-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.55;
    margin: 0 0 20px;
}

/* Сетка полей формы */
.lawyer-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.form-label-opt {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 400;
    margin-left: 4px;
}

.form-input-wrap {
    position: relative;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14.5px;
    font-family: inherit;
    color: #0f172a;
    background-color: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    outline: none;
    transition: all 0.2s ease;
}

.form-input-wrap .form-input {
    padding-left: 42px;
}

.form-input:focus,
.form-textarea:focus {
    background-color: #FFFFFF;
    border-color: #012e5e;
    box-shadow: 0 0 0 3px rgba(1, 46, 94, 0.12);
}

.form-field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    color: #94a3b8;
    pointer-events: none;
}

.form-textarea {
    resize: vertical;
    min-height: 64px;
    max-height: 140px;
    overflow-y: auto;
    line-height: 1.45;
}

/* Красивые, стильные сегментные переключатели (Табы) */
.segmented-choice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    background-color: #eef2f6;
    padding: 4px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.segmented-option {
    cursor: pointer;
    position: relative;
    margin: 0;
}

.segmented-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.segmented-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
    background-color: transparent;
    border: 1px solid transparent;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.segmented-btn svg {
    width: 16px;
    height: 16px;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.segmented-btn:hover {
    color: #0f172a;
    background-color: rgba(255, 255, 255, 0.6);
}

.segmented-option input:checked + .segmented-btn {
    background-color: #FFFFFF;
    color: #012e5e;
    font-weight: 800;
    border-color: #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.segmented-option input:checked + .segmented-btn svg {
    color: #0284c7;
}

.segmented-option input:checked + .segmented-btn .segmented-btn-icon--yes {
    color: #16a34a;
}

.segmented-option input:checked + .segmented-btn .segmented-btn-icon--no {
    color: #d97706;
}

/* Кнопка отправки формы */
.btn-submit-lawyer-style {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 15.5px;
    font-weight: 800;
    border-radius: 12px;
    margin-top: 4px;
    box-shadow: 0 6px 20px rgba(1, 46, 94, 0.28);
    transition: all 0.25s ease;
}

.btn-submit-lawyer-style:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(1, 46, 94, 0.38);
}

.btn-submit-lawyer-style:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(1, 46, 94, 0.2);
}

.form-privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    margin: 12px 0 0;
    text-align: center;
}

.form-privacy-note svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #0d9488;
}

.form-privacy-note a,
.privacy-link {
    color: #0284c7;
    text-decoration: underline;
    cursor: pointer;
}

/* ==========================================================================
   ПОДВАЛ САЙТА (FOOTER — БЛОК 14)
   ========================================================================== */

.site-footer {
    background-color: #001224;
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.25fr 1.1fr 1.05fr 0.8fr;
    gap: 36px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo .brand-logo-crossed {
    color: #FFFFFF;
}

.footer-logo .brand-logo-crossed::after {
    background: #FF3B30;
}

.footer-logo .brand-logo-accent {
    color: #FF3B30;
}

.footer-logo .brand-logo-tagline {
    color: rgba(255, 255, 255, 0.55);
}

.footer-about {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}

/* Юридические реквизиты */
.footer-requisites {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 12px;
}

.footer-req-item {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.footer-req-item strong {
    color: #FFFFFF;
}

.footer-heading {
    font-size: 15.5px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

/* Офисы */
.footer-office-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-office-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-office-city {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    color: #FFFFFF;
}

.footer-office-city svg {
    width: 15px;
    height: 15px;
    color: #60a5fa;
    flex-shrink: 0;
}

.footer-office-address {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 2px;
    line-height: 1.4;
    padding-left: 22px;
}

.footer-office-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    padding-left: 22px;
}

.footer-office-item--online .footer-office-city svg {
    color: #60a5fa;
}

/* Навигация */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

/* Контакты */
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.footer-contact-item svg {
    width: 17px;
    height: 17px;
    color: #60a5fa;
    flex-shrink: 0;
}

.footer-contact-wa {
    color: #FFFFFF;
}

.footer-contact-wa svg {
    color: #60a5fa;
}

.footer-contact-ig {
    color: #FFFFFF;
}

.footer-contact-ig svg {
    color: #60a5fa;
}

.footer-contact-item:hover {
    opacity: 0.85;
}

.footer-schedule {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: #FFFFFF;
    margin-top: 4px;
}

.footer-schedule svg {
    width: 15px;
    height: 15px;
    color: #60a5fa;
    flex-shrink: 0;
}

/* Дисклеймер */
.footer-disclaimer {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}

.footer-disclaimer strong {
    color: rgba(255, 255, 255, 0.75);
}

/* Нижняя полоса */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 22px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}

.footer-madeby {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 4px;
    width: fit-content;
    margin: 0 auto;
    color: inherit;
    text-decoration: none;
    transition: none;
}

.footer-madeby-text {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.01em;
    line-height: 1;
}

.footer-madeby-logo {
    display: block;
    height: 18px;
    width: auto;
    flex-shrink: 0;
}

.footer-dot {
    color: rgba(255, 255, 255, 0.2);
}

/* Модальное окно успеха */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px 36px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.is-visible .modal-card {
    transform: scale(1);
}

.modal-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-success-icon svg {
    width: 32px;
    height: 32px;
}

.modal-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 8px;
}

.modal-desc {
    font-size: 14.5px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

.modal-close-btn {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    padding: 14px;
}

/* ==========================================================================
   АДАПТИВНОСТЬ ДЛЯ БЛОКА 13 И ФУТЕРА
   ========================================================================== */

@media (max-width: 1024px) {
    .lawyer-style-cta-card {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 32px 28px;
    }

    .lawyer-style-photo-frame {
        height: 320px;
    }

    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .section-final-cta {
        padding: 60px 0;
    }

    .lawyer-style-cta-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .lawyer-style-title {
        font-size: 22px;
    }

    .lawyer-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lawyer-style-photo-frame {
        height: 280px;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* ==========================================================================
   ОБЩИЕ СТИЛИ ШАПКИ И ЛОГОТИПА ДЛЯ ВНУТРЕННИХ СТРАНИЦ
   ========================================================================== */

.site-header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--color-border-subtle);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.site-header .container {
    position: relative;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.site-logo {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    flex-shrink: 0;
}

/* Стили текстового логотипа с красным зачёркиванием и акцентом */
.brand-logo {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.brand-logo-text {
    display: inline-flex;
    align-items: center;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 0.04em;
    font-family: var(--font-main);
    line-height: 1;
    position: relative;
    user-select: none;
}

.brand-logo-crossed {
    position: relative;
    color: #012e5e;
    display: inline-block;
    padding-right: 1px;
}

.brand-logo-crossed::after {
    content: '';
    position: absolute;
    left: -2px;
    right: 0px;
    top: 50%;
    height: 3px;
    background: #E52E2E;
    transform: translateY(-50%);
    border-radius: 1px;
}

.brand-logo-accent {
    color: #E52E2E;
    font-weight: 900;
}

.brand-logo-tagline {
    font-size: 9.5px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-top: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    color: var(--color-primary);
    text-decoration: none;
    transition: background-color var(--transition-fast), color var(--transition-fast);
    flex-shrink: 0;
}

.header-phone-icon svg {
    width: 22px;
    height: 22px;
}

.header-phone-icon:hover {
    background-color: rgba(1, 46, 94, 0.08);
    color: var(--color-primary-hover);
}

.header-phone-icon:focus-visible,
.header-contact-btn:focus-visible,
.header-burger:focus-visible,
.header-dropdown-phone:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.header-contact-btn {
    width: auto;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: var(--radius-md);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0;
}

.header-actions .header-contact-btn {
    height: 44px;
    padding: 0 18px;
    line-height: 1;
    box-shadow: none;
}

.header-contact-btn:hover,
.header-contact-btn:active {
    transform: none;
}

.header-actions .header-contact-btn:hover,
.header-actions .header-contact-btn:active {
    box-shadow: none;
}

.header-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    color: var(--color-primary);
    flex-shrink: 0;
    transition: background-color var(--transition-fast);
}

.header-burger:hover {
    background-color: rgba(1, 46, 94, 0.08);
}

.header-burger-lines {
    position: relative;
    display: block;
    width: 20px;
    height: 14px;
}

.header-burger-lines span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform var(--transition-fast), opacity var(--transition-fast), top var(--transition-fast);
}

.header-burger-lines span:nth-child(1) {
    top: 0;
}

.header-burger-lines span:nth-child(2) {
    top: 6px;
}

.header-burger-lines span:nth-child(3) {
    top: 12px;
}

.site-header.is-nav-open .header-burger-lines span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.site-header.is-nav-open .header-burger-lines span:nth-child(2) {
    opacity: 0;
}

.site-header.is-nav-open .header-burger-lines span:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

/* Не ставим overflow:hidden на html/body: это ломает sticky-шапку и меню уезжает вместе с ней */
html.is-nav-locked {
    overscroll-behavior: none;
}

html.is-nav-locked .header-dropdown {
    touch-action: pan-y;
}

/* Выпадающее меню под шапкой: панель со списком ссылок, без полноэкранного оверлея */
.header-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 24px);
    right: var(--container-padding);
    min-width: 260px;
    width: max-content;
    max-width: min(320px, calc(100vw - 32px));
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 10px 8px;
    z-index: 120;
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
}

.site-header.is-nav-open .header-dropdown,
.header-dropdown:not([hidden]) {
    display: block;
}

.header-dropdown[hidden] {
    display: none;
}

.header-dropdown .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}

.header-dropdown .nav-link {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-heading);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.header-dropdown .nav-link:hover {
    background-color: var(--color-bg-subtle);
    color: var(--color-primary);
}

.header-dropdown-actions {
    display: none;
}

.header-dropdown-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    background-color: transparent;
    border: 1.5px solid var(--color-primary);
    border-radius: var(--radius-md);
    text-decoration: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.header-dropdown-phone:hover {
    background-color: rgba(1, 46, 94, 0.08);
}

@media (max-width: 768px) {
    .header-actions .header-phone-icon,
    .header-actions .header-contact-btn {
        display: none;
    }

    .header-dropdown {
        left: var(--container-padding);
        right: var(--container-padding);
        width: auto;
        min-width: 0;
        max-width: none;
        padding: 10px 8px 12px;
    }

    .header-dropdown .nav-link {
        white-space: normal;
    }

    .header-dropdown-actions {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 8px;
        padding: 8px 8px 4px;
    }

    .header-dropdown-actions .header-contact-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
        font-size: 15px;
        letter-spacing: 0.01em;
    }

    .header-dropdown-actions .header-contact-btn:hover {
        transform: translateY(-2px);
    }

    .header-dropdown-actions .header-contact-btn:active {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .brand-logo-tagline {
        display: none;
    }

    .header-actions {
        gap: 6px;
    }

    .header-actions .header-contact-btn {
        padding: 9px 12px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .header-burger-lines span,
    .header-phone-icon,
    .header-contact-btn,
    .header-dropdown .nav-link,
    .header-dropdown-phone {
        transition: none;
    }
}

/* Legacy header helpers (footer / внутренние страницы могут ссылаться) */
.main-nav .nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 18px;
}

.main-nav .nav-link {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.main-nav .nav-link:hover {
    color: #012e5e;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 700;
    color: #012e5e;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-phone svg {
    width: 15px;
    height: 15px;
    color: #2563eb;
}

.header-cta-btn {
    padding: 9px 18px;
    font-size: 13px;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-wa-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-wa-header svg {
    width: 15px;
    height: 15px;
    color: #059669;
}

.btn-wa-header:hover {
    background: #059669;
    color: #FFFFFF;
}

.btn-wa-header:hover svg {
    color: #FFFFFF;
}

/* ==========================================================================
   СТРАНИЦА 404 (ERROR PAGE)
   ========================================================================== */

.page-404-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
}

.error-header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--color-border-subtle);
    padding: 16px 0;
}

.error-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.error-header-contacts {
    display: flex;
    align-items: center;
    gap: 18px;
}

.error-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #012e5e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.error-phone-link svg {
    width: 16px;
    height: 16px;
    color: #2563eb;
}

.error-main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 80px;
}

.error-content-card {
    background: #FFFFFF;
    border-radius: 28px;
    padding: 48px 40px;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--color-border-subtle);
}

.error-visual-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.error-hero-img {
    max-width: 480px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 30px rgba(1, 46, 94, 0.12));
    animation: errorFloat 4s ease-in-out infinite;
}

@keyframes errorFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.error-title {
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}

.error-subtitle {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 30px;
}

.error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.error-btn-home {
    padding: 15px 34px;
    font-size: 15px;
    border-radius: 12px;
}

.error-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.error-btn-secondary svg {
    width: 18px;
    height: 18px;
    color: #2563eb;
}

.error-btn-secondary:hover {
    background: #e2e8f0;
    color: #012e5e;
}

.error-quick-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border-subtle);
}

.error-quick-label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
}

.error-quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.error-tag {
    font-size: 12.5px;
    font-weight: 600;
    color: #012e5e;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.2s ease;
}

.error-tag:hover {
    background: #012e5e;
    color: #FFFFFF;
    border-color: #012e5e;
}

.error-footer {
    margin-top: auto;
    padding: 24px 0;
}

/* ==========================================================================
   СТРАНИЦА ПОЛИТИКИ КОНФИДЕНЦИАЛЬНОСТИ (PRIVACY POLICY)
   ========================================================================== */

.privacy-page-body {
    background-color: #f8fafc;
    color: #1e293b;
}

.privacy-hero {
    background: linear-gradient(175deg, #012e5e 0%, #011f40 100%);
    color: #FFFFFF;
    padding: 70px 0 60px;
}

.privacy-hero-inner {
    max-width: none;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12.5px;
    font-weight: 700;
    color: #93c5fd;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.privacy-badge svg {
    width: 16px;
    height: 16px;
}

.privacy-main-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 0;
}

.privacy-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-tag {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.25);
    padding: 6px 14px;
    border-radius: 8px;
}

.privacy-body-section {
    padding: 60px 0 90px;
}

.privacy-grid {
    display: block;
}

/* Боковое меню */
.privacy-sidebar {
    position: sticky;
    top: 100px;
}

.privacy-toc-card {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid var(--color-border-subtle);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.privacy-toc-title {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.privacy-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-border-subtle);
}

.toc-link {
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.toc-link:hover {
    color: #012e5e;
    font-weight: 600;
}

.privacy-sidebar-cta {
    font-size: 13px;
    color: #64748b;
}

.privacy-sidebar-cta p {
    margin: 0 0 10px;
}

.btn-sidebar-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-sidebar-wa svg {
    width: 16px;
    height: 16px;
}

.btn-sidebar-wa:hover {
    background: #059669;
    color: #FFFFFF;
}

/* Контент документа */
.privacy-content-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 44px 48px;
    border: 1px solid var(--color-border-subtle);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.privacy-article {
    margin-bottom: 36px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-border-subtle);
}

.privacy-article:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.privacy-article h2 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.privacy-article p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #334155;
    margin: 0 0 12px;
}

.privacy-list {
    margin: 10px 0 14px 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.privacy-list li {
    font-size: 14.5px;
    line-height: 1.6;
    color: #334155;
}

.requisites-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.requisites-box p {
    font-size: 14px;
    margin: 0;
    color: #1e293b;
}

.requisites-box a {
    color: #0284c7;
    font-weight: 600;
}

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

    .error-content-card {
        padding: 32px 20px;
    }

    .privacy-main-title {
        font-size: 26px;
    }

    .privacy-content-card {
        padding: 28px 20px;
    }
}