/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #1A3F73;
    --primary-light: #3A6FB5;
    --green: #1CAD48;
    --green-dark: #178A3A;
    --dark: #0B1A2E;
    --gray: #5A6A7A;
    --gray-light: #8A9AA8;
    --bg: transparent;
    --white: #fff;
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.10);
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; min-height: 100vh; }
body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #1A2A3A;
    line-height: 1.6;
    background: transparent;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 90%;
}

/* ===== ИНТЕРАКТИВНЫЙ ФОН ===== */
#bgWrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 0;
    overflow: hidden;
}
#canvas {
    display: block;
    width: 100%; height: 100%;
    background: #0B1A2E;
}
#altBG { display: none; }

/* ===== ШАПКА ===== */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
header.scrolled {
    background: rgba(255,255,255,1);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo img { height: 40px; width: auto; display: block; }

/* Основное меню */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links li { position: relative; }
.nav-links a {
    font-weight: 400;
    color: #1A3F73;
    transition: color 0.3s ease;
    padding: 6px 0;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    text-decoration: none;
}
.nav-links a i {
    font-size: 1.2rem;
    margin-right: 2px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s ease;
}
.nav-links a:hover {
    color: var(--green);
}
.nav-links a:hover::after {
    width: 100%;
}

/* ===== ВЫПАДАЮЩЕЕ МЕНЮ ===== */
.nav-links li.dropdown {
    position: relative;
}
.nav-links li.dropdown > a {
    cursor: pointer;
}
.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    min-width: 200px;
    padding: 8px 0;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    list-style: none;
    z-index: 300;
}
.nav-links .dropdown-menu li {
    padding: 0;
}
.nav-links .dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    color: #1A3F73;
    font-weight: 400;
    transition: 0.2s;
    font-size: 0.95rem;
}
.nav-links .dropdown-menu li a::after {
    display: none;
}
.nav-links .dropdown-menu li a:hover {
    background: rgba(28,173,72,0.08);
    color: var(--green);
}
.nav-links li.dropdown:hover .dropdown-menu {
    display: block;
}

/* Для мобильных устройств – показываем подменю при клике */
@media (max-width: 768px) {
    .nav-links li.dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        backdrop-filter: none;
        padding-left: 20px;
        display: none;
    }
    .nav-links li.dropdown.open .dropdown-menu {
        display: block;
    }
    .nav-links li.dropdown > a .fa-chevron-down {
        transition: transform 0.3s;
    }
    .nav-links li.dropdown.open > a .fa-chevron-down {
        transform: rotate(180deg);
    }
}

/* Иконки почты и MAX – всегда справа, без подчёркивания */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.nav-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1A3F73;
    text-decoration: none;
    height: 40px;
    width: 40px;
    transition: color 0.3s ease;
}
.nav-icons a i {
    font-size: 20px;
    line-height: 1;
}
.nav-icons a img {
    height: 20px;
    width: auto;
    display: block;
}
.nav-icons a:hover {
    color: var(--green);
}
.nav-icons a::after {
    display: none !important; /* убираем подчёркивание */
}

/* Мобильная кнопка меню */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1A3F73;
    padding: 0 8px;
    order: 3;
}

/* ===== ФУТЕР ===== */
footer {
    position: relative;
    z-index: 10;
    background: rgba(11,26,46,0.92);
    backdrop-filter: blur(4px);
    color: #c0c8d0;
    padding: 40px 0 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}
.footer-grid .logo img { height: 36px; width: auto; display: block; margin-bottom: 6px; }
.footer-grid p { font-size: 0.95rem; opacity: 0.8; }
.footer-grid h4 { color: #fff; margin-bottom: 10px; font-size: 1rem; font-weight: 700; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 6px; }
.footer-grid ul li a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
}
.footer-grid ul li a:hover { opacity: 1; color: #fff; }
.footer-grid ul li a i { margin-right: 6px; font-size: 1rem; }
.footer-grid ul li a img { height: 16px; width: auto; display: inline-block; vertical-align: middle; margin-right: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; text-align: center; font-size: 0.85rem; opacity: 0.6; }

/* ===== КНОПКИ ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    border-radius: 0;
    background: transparent;
}
.btn-primary {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.10); border-color: #fff; }
.btn-large { padding: 14px 40px; font-size: 1.05rem; }

/* ===== СЕКЦИИ (уменьшенные отступы) ===== */
.section {
    position: relative;
    z-index: 5;
    padding: 40px 0;
    background: transparent;
    border-bottom: none;
}
.section-title { font-size: 2.2rem; font-weight: 700; text-align: center; margin-bottom: 0.5rem; color: #fff; }
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto;
}
h2 { font-size: 2.2rem; font-weight: 700; color: #fff; }

/* ===== ОТДЕЛЬНЫЙ БЛОК ЗАГОЛОВКА ===== */
.module-header {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 40px 20px 20px;
    max-width: 900px;
    margin: 0 auto;
}
.module-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* ===== ГЕРОЙ (УТП) ===== */
.hero-modern {
    position: relative;
    z-index: 5;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    background: transparent;
}
.hero-modern-content {
    width: 90%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(10, 30, 70, 0.75);
    backdrop-filter: blur(8px);
    padding: 50px 60px;
    border: 1px solid rgba(50, 150, 255, 0.15);
}
.hero-modern-left { display: flex; flex-direction: column; gap: 20px; }
.hero-modern-right { display: flex; flex-direction: column; gap: 16px; }
.video-title { font-size: 1.3rem; font-weight: 700; color: #fff; margin: 0; text-align: center; }
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    overflow: hidden;
}
.video-wrapper video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-modern-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}
.hero-modern-title span { color: var(--green); }
.hero-modern-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0;
}
.hero-modern-left .btn { align-self: flex-start; }

/* ===== УНИФИЦИРОВАННЫЕ БЛОКИ ===== */
.section-modules-grid .container-wide,
.section-table .container-wide {
    background: rgba(10, 30, 70, 0.75);
    backdrop-filter: blur(8px);
    padding: 40px 60px;
    border: 1px solid rgba(50, 150, 255, 0.15);
}
.section-modules-grid .container-wide {
    padding: 20px 60px 40px;
}
/* Для аудитории убираем фон у контейнера */
.section-audience .container-wide {
    background: transparent !important;
    backdrop-filter: none;
    border: none;
    padding: 20px 0;
}
/* Для benefits-cta */
.benefits-cta {
    background: rgba(10, 30, 70, 0.6);
    backdrop-filter: blur(4px);
    padding: 30px 40px;
    border: 1px solid rgba(50, 150, 255, 0.1);
    text-align: center;
    color: #e0e8f0;
    margin: 30px 0;
}
.benefits-cta p { margin: 8px 0; }
.benefits-cta i { color: var(--green); margin-right: 8px; }

/* ===== ТЕКСТОВЫЕ БЛОКИ (для systems.html) ===== */
.text-block {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 30px;
}
.text-block-paragraph {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== КАРТОЧКИ ДЛЯ ОС (специальный стиль) ===== */
.os-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}
.os-card {
    background: rgba(0, 0, 0, 0.2);
    padding: 24px 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
    color: #e0e8f0;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}
.os-card:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(52, 211, 153, 0.3);
}
.os-card .os-icon {
    font-size: 2.2rem;
    color: #34D399;
    margin-bottom: 8px;
}
.os-card h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
}
.os-card p {
    font-size: 0.85rem;
    color: #b0c8e0;
    margin: 0;
}

/* ===== БЛОК МОДУЛЕЙ (шахматный порядок) ===== */
.module-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.module-row:last-child { border-bottom: none; }

.module-row .module-text {
    flex: 1 1 300px;
    order: 1;
    padding: 20px 0;
}
.module-row .module-image {
    flex: 1 1 300px;
    order: 2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.module-row.reverse .module-text { order: 2; }
.module-row.reverse .module-image { order: 1; }

.module-text h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}
.module-text p {
    font-size: 1.05rem;
    color: #b0c8e0;
    line-height: 1.7;
    margin: 0;
}

.module-image img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    background: transparent;
}
.module-image:hover img { transform: scale(1.02); }
.module-image .zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.8rem;
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(4px);
}
.module-image:hover .zoom-hint { opacity: 1; }
.module-image .zoom-hint i { margin-right: 6px; }

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    cursor: default;
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    font-weight: 300;
    transition: 0.2s;
}
.lightbox-close:hover { transform: scale(1.2); }

/* ===== ТАБЛИЦА ===== */
.table-wrap {
    overflow-x: auto;
}
.table-wrap table {
    width: 100%;
    border-collapse: collapse;
    color: #e0e8f0;
}
.table-wrap th {
    background: rgba(0,0,0,0.3);
    color: #fff;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 2px solid var(--green);
}
.table-wrap td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.table-wrap tr:hover td { background: rgba(255,255,255,0.05); }

/* ===== АУДИТОРИЯ ===== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.audience-item {
    background: rgba(10, 30, 70, 0.75);
    backdrop-filter: blur(4px);
    padding: 24px 20px 30px;
    border: 1px solid rgba(50, 150, 255, 0.1);
    text-align: center;
    color: #e0e8f0;
}
.audience-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 16px;
    background: rgba(0,0,0,0.2);
}
.audience-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.audience-item h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 6px;
}
.audience-item p {
    font-size: 0.95rem;
    color: #b0c8e0;
    margin: 0;
}

/* ===== ФОРМА (без фона) ===== */
.section-form .container-wide {
    background: transparent !important;
    backdrop-filter: none;
    border: none;
    padding: 20px 0;
}
.section-form #form {
    max-width: 620px;
    margin: 0 auto;
}
.section-form #form .ttm-form {
    background: transparent !important;
    padding: 0 !important;
}
.section-form #form .ttm-form input,
.section-form #form .ttm-form textarea,
.section-form #form .ttm-form select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 12px 16px;
    border-radius: 0;
    width: 100%;
}
.section-form #form .ttm-form input:focus,
.section-form #form .ttm-form textarea:focus {
    border-color: var(--green);
    outline: none;
}
.section-form #form .ttm-form button {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}
.section-form #form .ttm-form button:hover { background: var(--green-dark); }
.section-form #form .ttm-form label { color: rgba(255,255,255,0.8); }
.section-form #form .ttm-form .error { color: #ff6b6b; }

/* ===== НОВЫЙ БЛОК: Нужно больше ? (без фона) ===== */
.section-more .container-wide {
    background: transparent !important;
    backdrop-filter: none;
    border: none;
    padding: 20px 0;
}
.more-text-block {
    background: rgba(10, 30, 70, 0.75);
    backdrop-filter: blur(4px);
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 20px 40px;
    text-align: center;
    border: 1px solid rgba(50, 150, 255, 0.1);
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
}
.more-text-block p {
    margin: 0;
}
.more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.more-item {
    background: rgba(10, 30, 70, 0.75);
    backdrop-filter: blur(4px);
    padding: 28px 24px;
    border: 1px solid rgba(50, 150, 255, 0.1);
    text-align: center;
    color: #e0e8f0;
    transition: 0.3s;
}
.more-item:hover {
    transform: translateY(-4px);
    background: rgba(10, 30, 70, 0.85);
}
.more-item i {
    font-size: 2.4rem;
    color: var(--green);
    margin-bottom: 12px;
}
.more-item h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 6px;
}
.more-item p {
    font-size: 0.95rem;
    color: #b0c8e0;
    margin: 0;
}

/* ===== КАРТОЧКИ (общие) ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.card {
    background: rgba(0,0,0,0.2);
    padding: 24px 20px;
    border: 1px solid rgba(255,255,255,0.06);
    color: #e0e8f0;
    transition: 0.3s;
}
.card:hover {
    background: rgba(0,0,0,0.3);
    border-color: rgba(52,211,153,0.3);
}
.card i {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 12px;
}
.card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 6px;
}
.card h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 4px;
}
.card p {
    font-size: 0.95rem;
    color: #b0c8e0;
    margin: 0;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 992px) {
    .hero-modern-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
        width: 95%;
    }
    .hero-modern-left { order: 1; text-align: center; }
    .hero-modern-right { order: 2; }
    .hero-modern-left .btn { align-self: center; }
    .hero-modern-title { font-size: 2.5rem; }

    .module-header h2 { font-size: 2.2rem; }

    .module-row {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }
    .module-row .module-text,
    .module-row .module-image,
    .module-row.reverse .module-text,
    .module-row.reverse .module-image {
        order: 0 !important;
        flex: 1 1 auto;
        width: 100%;
    }
    .module-row .module-image { order: -1 !important; }
    .module-row.reverse .module-image { order: -1 !important; }
    .module-text {
        text-align: center;
        padding: 10px 0;
    }
    .module-image .zoom-hint {
        opacity: 1;
        bottom: 8px;
        right: 8px;
    }
    .section-modules-grid .container-wide,
    .section-table .container-wide {
        padding: 30px 20px;
        width: 100%;
    }
    .section-audience .container-wide {
        padding: 20px 0;
    }
    .section-form .container-wide,
    .section-more .container-wide {
        padding: 20px 0;
    }
    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }
    .more-grid {
        grid-template-columns: 1fr 1fr;
    }
    .benefits-cta { padding: 24px 20px; }
    .more-text-block {
        padding: 16px 20px;
        font-size: 1rem;
    }
    .text-block-paragraph {
        font-size: 1rem;
    }
    .os-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(8px);
        padding: 20px;
        border: 1px solid rgba(0,0,0,0.06);
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 200;
        gap: 12px;
        align-items: flex-start;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        font-size: 1rem;
        padding: 8px 0;
    }
    .nav-icons {
        order: 2;
        gap: 12px;
        margin-right: 8px;
    }
    .nav-icons a {
        height: 36px;
        width: 36px;
    }
    .nav-icons a i {
        font-size: 18px;
    }
    .nav-icons a img {
        height: 18px;
    }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .section-title, h2 { font-size: 1.8rem; }
    .hero-modern { min-height: auto; padding: 100px 16px 40px; }
    .hero-modern-content { padding: 24px 20px; width: 100%; }
    .hero-modern-title { font-size: 2rem; }
    .module-header h2 { font-size: 1.8rem; }
    .module-text h3 { font-size: 1.3rem; }
    .module-text p { font-size: 1rem; }
    .section-modules-grid .container-wide,
    .section-table .container-wide {
        padding: 20px 16px;
    }
    .section-audience .container-wide,
    .section-form .container-wide,
    .section-more .container-wide {
        padding: 20px 0;
    }
    .audience-grid {
        grid-template-columns: 1fr;
    }
    .more-grid {
        grid-template-columns: 1fr;
    }
    .benefits-cta { padding: 20px 16px; }
    .more-text-block {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    .text-block-paragraph {
        font-size: 0.95rem;
    }
    .os-grid {
        grid-template-columns: 1fr 1fr;
    }
    .os-card {
        min-height: 100px;
        padding: 16px 12px;
    }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .hero-modern-title { font-size: 1.6rem; }
    .logo img { height: 32px; }
    .module-header h2 { font-size: 1.5rem; }
    .module-text h3 { font-size: 1.1rem; }
    .more-text-block {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    .text-block-paragraph {
        font-size: 0.9rem;
    }
    .os-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== БЛОК РЕЗУЛЬТАТА (для admin-module.html) ===== */
.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.result-item {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-left: 3px solid #34D399;
    text-align: center;
}
.result-item i {
    font-size: 2rem;
    color: #34D399;
}
.result-item p {
    margin: 8px 0 0 0;
}
.result-item p:first-of-type {
    color: #fff;
    font-weight: 700;
}
.result-item p:last-of-type {
    color: #b0c8e0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .result-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .result-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== БЛОГ ===== */
.blog-list .blog-item {
    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 24px 30px;
    margin-bottom: 20px;
    transition: 0.2s;
    border-radius: 0;
}
.blog-item:hover {
    background: rgba(0,0,0,0.25);
}
.blog-item h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: #fff;
}
.blog-item .meta {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 8px;
}
.blog-item .excerpt {
    color: #b0c8e0;
}
.blog-item .read-more {
    color: #34D399;
    font-weight: 600;
}
/* ===== СЛАЙДЕР ===== */
.slider-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    background: rgba(0,0,0,0.3);
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.06);
}
.slider {
    position: relative;
    overflow: hidden;
}
.slides {
    position: relative;
    min-height: 200px;
}
.slide {
    display: none;
    text-align: center;
}
.slide img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}
.slider-btn:hover {
    background: rgba(0,0,0,0.8);
}
.slider-btn.prev {
    left: 0;
}
.slider-btn.next {
    right: 0;
}
.slider-dots {
    text-align: center;
    margin-top: 12px;
}
.slider-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: 0.3s;
    border-radius: 0;
}
.slider-dots .dot.active {
    background: #34D399;
}
.slider-caption {
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .slider-container {
        max-width: 100%;
        padding: 6px;
    }
    .slider-btn {
        font-size: 1.5rem;
        padding: 6px 12px;
    }
    .slide img {
        max-height: 250px;
    }
}
/* ===== ШИРОКИЙ СЛАЙДЕР ===== */
.slider-container-wide {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.06);
}
.slider-container-wide .slider {
    position: relative;
    overflow: hidden;
}
.slider-container-wide .slides {
    position: relative;
    min-height: 200px;
}
.slider-container-wide .slide {
    display: none;
    text-align: center;
}
.slider-container-wide .slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}
.slider-container-wide .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}
.slider-container-wide .slider-btn:hover {
    background: rgba(0,0,0,0.8);
}
.slider-container-wide .slider-btn.prev {
    left: 0;
}
.slider-container-wide .slider-btn.next {
    right: 0;
}
.slider-container-wide .slider-dots {
    text-align: center;
    margin-top: 12px;
}
.slider-container-wide .slider-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: 0.3s;
    border-radius: 0;
}
.slider-container-wide .slider-dots .dot.active {
    background: #34D399;
}
.slider-container-wide .slider-caption {
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .slider-container-wide {
        width: 100%;
        padding: 8px;
    }
    .slider-container-wide .slider-btn {
        font-size: 1.5rem;
        padding: 6px 12px;
    }
    .slider-container-wide .slide img {
        max-height: 300px;
    }
}