
    
        /* ==================== */
        /* ОРИГИНАЛЬНЫЕ ШРИФТЫ С ГЛАВНОЙ */
        /* ==================== */

        /* Загрузка кастомных шрифтов */
@font-face {
    font-family: 'Neo Sans Bold';
    src: url(../fonts/neosans/NeoSansPro-Bold.ttf);
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url(../fonts/neosans/NeoSansPro-Regular.ttf);
    font-weight: 500;
    font-style: normal;
}
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Neo Sans Pro', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: #f8f9fa;
            margin: 0;
            padding: 0;
        }

        a {
            text-decoration: none !important;
        }

        /* ==================== */
        /* УЗКИЙ ХЕДЕР */
        /* ==================== */
        .insade-site-header {
            background:
                radial-gradient(circle at 20% 80%, rgba(0, 150, 199, 0.8) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.7) 0%, transparent 40%),
                linear-gradient(135deg, rgba(0, 119, 182, 0.9) 0%, rgba(3, 4, 94, 0.7) 100%);
            position: relative;
            z-index: 100;
        }

        .insade-header-top {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 18px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .insade-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .insade-logo-icon {
            font-size: 28px;
            color: #FF9900;
        }

        .insade-logo-text {
            font-family: 'Neo Sans Bold', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 24px;
            font-weight: 600;
            color: #FFFFFF;
        }

        .insade-logo-text span {
            color: #FF9900;
        }

        .insade-nav-menu {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        .insade-nav-link {
            font-family: 'Neo Sans Pro', Tahoma, Geneva, Verdana, sans-serif;
            color: #FFFFFF;
            font-size: 18px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 0;
            position: relative;
        }

        .insade-nav-link:hover {
            color: #FF9900;
        }

        .insade-nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #FF9900;
            transition: width 0.3s ease;
        }

        .insade-nav-link:hover::after {
            width: 100%;
        }

        .insade-dropdown {
            position: relative;
        }

        .insade-dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: #006699;
            min-width: 230px;
            border-radius: 8px;
            padding: 12px 0;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .insade-dropdown:hover .insade-dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .insade-dropdown-content a {
            font-family: 'Neo Sans Pro', Tahoma, Geneva, Verdana, sans-serif;
            color: white;
            padding: 10px 25px;
            display: block;
            transition: all 0.3s ease;
            font-size: 15px;
            white-space: nowrap;
        }

        .insade-dropdown-content a:hover {
            background: rgba(255, 153, 0, 0.2);
            color: #FF9900;
            padding-left: 30px;
        }

        .insade-dropdown-content a i {
            margin-right: 10px;
            width: 20px;
        }

        .insade-dropdown-arrow {
            font-size: 11px;
            transition: transform 0.3s ease;
            margin-left: 5px;
        }

        .insade-dropdown:hover .insade-dropdown-arrow {
            transform: rotate(180deg);
        }

        .insade-contact-btn {
            font-family: 'Neo Sans Bold', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #FF9900 0%, #FF6600 100%);
            color: white;
            padding: 9px 22px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 3px 12px rgba(255, 102, 0, 0.3);
        }

        .insade-contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(255, 102, 0, 0.4);
            color: white;
        }

        /* Мобильное меню */
        .insade-mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 26px;
            cursor: pointer;
        }

        .insade-mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: #006699;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            transition: right 0.4s ease;
            padding: 100px 20px 40px;
            overflow-y: auto;
        }

        .insade-mobile-menu.insade-active {
            right: 0;
        }

        .insade-mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 25px;
            align-items: center;
            width: 100%;
        }

        .insade-mobile-nav-link {
            font-family: 'Neo Sans Pro', Tahoma, Geneva, Verdana, sans-serif;
            color: white;
            font-size: 22px;
            font-weight: 500;
            padding: 10px 0;
            transition: color 0.3s ease;
        }

        .insade-mobile-nav-link:hover {
            color: #FF9900;
        }

        .insade-mobile-dropdown {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .insade-mobile-dropdown-toggle {
            font-family: 'Neo Sans Pro', Tahoma, Geneva, Verdana, sans-serif;
            background: none;
            border: none;
            color: white;
            font-size: 22px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
        }

        .insade-mobile-dropdown-arrow {
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .insade-mobile-dropdown-arrow.insade-active {
            transform: rotate(180deg);
        }

        .insade-mobile-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            margin-top: 10px;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .insade-mobile-dropdown-content.insade-active {
            max-height: 400px;
            margin-top: 15px;
            padding: 15px 0;
            opacity: 1;
        }

        .insade-mobile-dropdown-link {
            font-family: 'Neo Sans Pro', Tahoma, Geneva, Verdana, sans-serif;
            color: #d1e7ff;
            padding: 12px 25px;
            width: 100%;
            max-width: 300px;
            text-align: center;
            transition: all 0.3s ease;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .insade-mobile-dropdown-link:hover {
            color: #FF9900;
            background: rgba(255, 153, 0, 0.1);
            border-radius: 8px;
        }

        .insade-mobile-contact-btn {
            font-family: 'Neo Sans Bold', Tahoma, Geneva, Verdana, sans-serif;
            margin-top: 40px;
            background: linear-gradient(135deg, #FF9900 0%, #FF6600 100%);
            color: white;
            padding: 16px 36px;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 600;
        }

        .insade-mobile-menu-close {
            position: fixed;
            top: 25px;
            right: 25px;
            background: none;
            border: none;
            color: white;
            font-size: 32px;
            cursor: pointer;
            z-index: 10000;
            display: none;
        }

        .insade-mobile-menu-close.insade-active {
            display: block;
        }

        /* ==================== */
        /* КРОШКИ */
        /* ==================== */
        .insade-breadcrumbs {
            background: #f5f5f5;
            padding: 12px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .insade-breadcrumbs-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .insade-breadcrumbs-list {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            font-size: 14px;
            font-family: 'Neo Sans Pro', Tahoma, Geneva, Verdana, sans-serif;
        }

        .insade-breadcrumbs-list a {
            color: #006699;
            transition: color 0.2s;
        }

        .insade-breadcrumbs-list a:hover {
            color: #FF9900;
        }

        .insade-breadcrumbs-list span {
            color: #999;
        }

        .insade-breadcrumb-separator {
            color: #ccc;
            font-size: 12px;
        }

        /* ==================== */
        /* ЗАГОЛОВОК НА СВЕТЛОМ ФОНЕ */
        /* ==================== */
        .insade-page-title-section {
            background: white;
            padding: 50px 20px;
            text-align: center;
        }

        .insade-page-title {
            font-family: 'Neo Sans Bold', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 44px;
            font-weight: 700;
            color: #006699;
            margin-bottom: 12px;
        }

        .insade-page-subtitle {
            font-family: 'Neo Sans Pro', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }

        /* ==================== */
        /* КОНТЕНТ-ЗАГЛУШКА */
        /* ==================== */
        .insade-content-placeholder {
            max-width: 1600px;
            margin: 60px auto;
            padding: 0 20px;
           
        }

        .insade-placeholder-block {
            background: white;
            border-radius: 24px;
            padding: 80px 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid #eef2f5;
        }

        .insade-placeholder-icon {
            font-size: 70px;
            color: #FF9900;
            margin-bottom: 25px;
        }

        .insade-placeholder-title {
            font-family: 'Neo Sans Bold', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 28px;
            color: #006699;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .insade-placeholder-text {
            font-family: 'Neo Sans Pro', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 18px;
            color: #666;
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ==================== */
        /* ФУТЕР */
        /* ==================== */
        .insade-site-footer {
            background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
            color: white;
            padding: 70px 0 30px;
            margin-top: 60px;
        }

        .insade-footer-content {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .insade-footer-column h3 {
            font-family: 'Neo Sans Bold', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 20px;
            margin-bottom: 25px;
            color: #FF9900;
            position: relative;
            padding-bottom: 10px;
        }

        .insade-footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #3399CC;
        }

        .insade-footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .insade-footer-links li {
            margin-bottom: 12px;
        }

        .insade-footer-links a {
            font-family: 'Neo Sans Pro', Tahoma, Geneva, Verdana, sans-serif;
            color: #d1e7ff;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
        }

        .insade-footer-links a:hover {
            color: #FF9900;
            transform: translateX(5px);
        }

        .insade-footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .insade-footer-contact li {
            font-family: 'Neo Sans Pro', Tahoma, Geneva, Verdana, sans-serif;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 15px;
        }

        .insade-footer-contact i {
            color: #FF9900;
            font-size: 18px;
            margin-top: 2px;
        }

        .insade-social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .insade-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .insade-social-link:hover {
            background: #FF9900;
            transform: translateY(-3px);
        }

        .insade-footer-bottom {
            text-align: center;
            padding-top: 40px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 1300px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
            color: #a0c8ff;
            font-size: 14px;
            font-family: 'Neo Sans Pro', Tahoma, Geneva, Verdana, sans-serif;
        }

        @media (max-width: 1024px) {
            .insade-nav-menu {
                display: none;
            }
            .insade-mobile-menu-btn {
                display: block;
            }
            .insade-footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .insade-header-top {
                padding: 14px 20px;
            }
            .insade-logo-text {
                font-size: 18px;
            }
            .insade-logo-icon {
                font-size: 22px;
            }
            .insade-page-title {
                font-size: 32px;
            }
            .insade-page-subtitle {
                font-size: 16px;
            }
            .insade-page-title-section {
                padding: 40px 20px 0px 20px;
            }
            .insade-placeholder-block {
                padding: 50px 25px;
            }
            .insade-placeholder-title {
                font-size: 24px;
            }
            .insade-footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 576px) {
            .insade-page-title {
                font-size: 28px;
            }
            .insade-placeholder-title {
                font-size: 22px;
            }
            .insade-placeholder-text {
                font-size: 16px;
            }
        }
  