/* Полностью переработанная темная дизайн-система для Огайо */
:root {
    --bg-main: #0b0f19;
    --bg-card: #131926;
    --bg-card-alt: #1e2638;
    --border-dark: #242f47;
    --text-primary: #f3f4f6;
    --text-muted: #9ca3af;
    --accent-cyan: #00d2ff;
    --accent-cyan-hover: #00b4db;
    --alert-orange: #ff9f43;
    --site-width: 1160px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body.oh-dark-theme {
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Общий контейнер выравнивания */
.w-box, .wrp-block {
    width: 100%;
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 24px;
}

.tight-wrp {
    max-width: 850px;
}

/* Верхняя строка уведомлений */
.top-line {
    background-color: #060910;
    border-bottom: 1px solid var(--border-dark);
    font-size: 13px;
    padding: 10px 0;
}

.line-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.line-txt {
    color: var(--text-muted);
}

.sys-live {
    font-weight: bold;
}

.on-air {
    color: #4ade80;
}

/* Шапка сайта и жесткое центрирование навигации */
.hdr-node {
    background-color: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-dark);
    position: sticky;
    top: 0;
    z-index: 999;
}

.hdr-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.brand-side {
    flex-shrink: 0;
}

.logo-txt {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-dot {
    color: var(--accent-cyan);
}

/* Навигационное меню — теперь стоит строго по центру хедера */
.nav-bar {
    margin: 0 auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.lnk-item {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.lnk-item:hover {
    color: var(--accent-cyan);
}

/* Кнопка телефона в шапке */
.phone-action {
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    flex-shrink: 0;
    transition: background-color 0.2s;
}

.phone-action:hover {
    background-color: var(--bg-card-alt);
}

.ph-label {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.ph-view {
    font-size: 16px;
    font-weight: 800;
    color: var(--accent-cyan);
}

/* Бургер для мобилок */
.menu-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.b-line {
    width: 26px;
    height: 2px;
    background-color: var(--text-primary);
}

/* Первый экран (Hero) */
/* Первый экран с фоновой картинкой и темным оверлеем */
.intro-section {
    background: linear-gradient(135deg, rgba(11, 15, 25, 0.92) 0%, rgba(19, 25, 38, 0.88) 100%), 
                url('../media/bg-columbus.png') no-repeat center center;
    background-size: cover;
    background-attachment: scroll; /* Для плавной работы на мобилках */
    padding: 80px 0;
    border-bottom: 1px solid var(--border-dark);
}
.intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

/* Левая колонка — Лид-форма */
.action-shield {
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 32px;
}

.shield-head {
    margin-bottom: 20px;
}

.alert-pilling {
    color: var(--alert-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 8px;
}

.shield-title {
    font-size: 24px;
    font-weight: 800;
}

.shield-body .shield-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.action-trigger-btn {
    width: 100%;
    background-color: var(--accent-cyan);
    color: #000000;
    border: none;
    padding: 18px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.action-trigger-btn:hover {
    background-color: var(--accent-cyan-hover);
}

/* Правая колонка — Текст заголовка */
.intro-content {
    display: flex;
    flex-direction: column;
}

.main-heading {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
}

.accent-color {
    color: var(--accent-cyan);
}

.main-prose {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 32px;
}

.mini-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feat-node {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Основной контентный лонгрид */
.exposition-block {
    padding: 80px 0;
}

.article-lane {
    max-width: 800px;
    margin: 0 auto;
}

.section-heading {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}

.article-paragraph {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 16px;
    text-align: justify;
}

.minor-heading {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 16px 0;
    color: var(--text-primary);
}

/* Картинки и схемы с обтеканием (Рандомизация верстки) */
.media-container {
    margin: 32px 0;
    border: 1px solid var(--border-dark);
    padding: 12px;
    background-color: var(--bg-card);
    border-radius: 8px;
}

/* Картинка справа, текст обтекает слева */
.img-right {
    float: right;
    width: 340px;
    margin-left: 28px;
    margin-top: 0;
    margin-bottom: 16px;
}

.responsive-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.media-caption {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
    text-align: center;
    line-height: 1.4;
    display: block;
}

/* Горизонтальный сплит картинок */
.text-image-split {
    display: flex;
    gap: 28px;
    align-items: center;
    clear: both;
}

.split-text-node {
    width: 60%;
    font-size: 15px;
    color: var(--text-muted);
}

.split-photo-node {
    width: 40%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.full-width-media {
    clear: both;
}

/* Блок отзывов клиентов */
.feedback-zone {
    padding: 80px 0;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.center-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.feedback-deck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feedback-card {
    background-color: var(--bg-main);
    padding: 28px;
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

.card-stars {
    color: #ffd200;
    margin-bottom: 14px;
    font-size: 14px;
}

.feedback-prose {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
}

.feedback-sign {
    font-size: 13px;
    color: var(--text-primary);
    display: block;
}

/* Сетка карточек структуры (Опущена вниз) */
.matrix-section {
    padding: 80px 0;
}

.center-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: -24px auto 48px auto;
    font-size: 16px;
}

.matrix-deck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.matrix-node {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

.node-num {
    font-size: 36px;
    font-weight: 900;
    color: rgba(0, 210, 255, 0.15);
    margin-bottom: 8px;
    line-height: 1;
}

.node-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
}

.node-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.node-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.node-link:hover {
    text-decoration: underline;
}

/* FAQ Контейнер */
.qa-block {
    padding: 80px 0;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-dark);
}

.qa-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qa-item {
    background-color: var(--bg-main);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

.qa-question {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-cyan);
}

.qa-answer {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Корпоративный футер */
.ftr-block {
    background-color: #060910;
    padding: 64px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-dark);
}

.ftr-nav {
    text-align: center;
    margin-bottom: 32px;
}

.ftr-link {
    color: var(--text-primary);
    text-decoration: none;
    margin: 0 8px;
}

.ftr-link:hover {
    color: var(--accent-cyan);
}

.disc-txt {
    margin-bottom: 16px;
    line-height: 1.6;
    text-align: justify;
}

.line-split {
    border-top: 1px solid var(--border-dark);
    padding-top: 16px;
    margin-top: 16px;
}

.copyright-txt {
    text-align: center;
    margin-top: 32px;
    color: #4b5563;
    font-weight: 500;
}

/* Стики плашка вызова (Мобильные экраны) */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent-cyan);
    color: #000000;
    padding: 14px;
    z-index: 9999;
    cursor: pointer;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.sticky-align {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sticky-icon {
    font-size: 20px;
}

.sticky-meta {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 10px;
    font-weight: 700;
    opacity: 0.8;
}

.meta-action {
    font-size: 14px;
    font-weight: 800;
}

/* Адаптивные медиа-запросы */
@media (max-width: 991px) {
    .hdr-flex {
        height: 80px;
    }
    .nav-bar {
        display: none; /* Скрываем десктопное меню */
    }
    .menu-burger {
        display: flex; /* Показываем кнопку бурга */
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .matrix-deck, .feedback-deck {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .img-right {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 24px;
    }
    .text-image-split {
        flex-direction: column;
        gap: 20px;
    }
    .split-text-node, .split-photo-node {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .mobile-sticky {
        display: block; /* Включаем нижний фикс-вызов */
    }
    body.oh-dark-theme {
        padding-bottom: 68px; /* Защита от перекрытия контента плашкой */
    }
    .main-heading {
        font-size: 30px;
    }
    .phone-action {
        display: none; /* Прячем верхний телефон на мелких экранах */
    }
}

.intake-form-box { background: #182235; border: 1px solid #243452; padding: 32px; border-radius: 4px; margin: 32px 0; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--text-light); }
        .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; background: #0f1624; border: 1px solid #243452; color: #fff; border-radius: 4px; font-family: inherit; font-size: 15px; }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent-cyan); outline: none; }
        .submit-fake-btn { width: 100%; background: #00e5ff; color: #0f1624; border: none; padding: 16px; font-weight: 700; font-size: 16px; letter-spacing: 0.5px; cursor: pointer; transition: background 0.2s; text-transform: uppercase; }
        .submit-fake-btn:hover { background: #00b2cc; }
        
        /* Блок предупреждения, который выскочит вместо формы */
        .fake-warning-alert { display: none; background: #3d141d; border: 2px dashed #ff3355; padding: 24px; border-radius: 4px; margin-top: 10px; }
        .alert-status-title { color: #ff3355; font-size: 20px; font-weight: 700; margin-top: 0; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
        .alert-status-text { color: #f2d6dc; font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
        .alert-call-action-btn { display: block; width: 100%; background: #ff3355; color: #fff; text-align: center; padding: 16px; font-weight: 700; font-size: 18px; text-decoration: none; border-radius: 4px; text-transform: uppercase; }
        .alert-call-action-btn:hover { background: #cc2440; }