        /* =========================================
           1. CORE VARIABLES & RESET
           ========================================= */
        :root {
            --bg-deep: #030307;
            --bg-glass: rgba(20, 25, 40, 0.6);
            --bg-glass-modal: rgba(10, 12, 18, 0.85);

            --accent-primary: #3b82f6;
            --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);

            --text-main: #ffffff;
            --text-muted: #a3b3cc;
            --text-logo: #F9F9F9;

            --border-light: rgba(255, 255, 255, 0.08);

            --container-width: 1280px;
            --header-height: 110px;
            --radius-lg: 20px;
            --radius-md: 12px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-deep);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* =========================================
           2. DYNAMIC COSMIC BACKGROUND (SLIDESHOW)
           ========================================= */
        .space-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background-color: var(--bg-deep);
            overflow: hidden;
        }

        .bg-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            animation: slideFade 24s infinite;
            transform: scale(1);
        }

        .slide-1 {
            background-image: url('images/phon1.avif');
            animation-delay: 0s;
        }

        .slide-2 {
            background-image: url('images/phon2.avif');
            animation-delay: 8s;
        }

        .slide-3 {
            background-image: url('images/phon3.avif');
            animation-delay: 16s;
        }

        @keyframes slideFade {
            0% {
                opacity: 0;
                transform: scale(1);
            }

            10% {
                opacity: 1;
            }

            33% {
                opacity: 1;
            }

            43% {
                opacity: 0;
                transform: scale(1.05);
            }

            100% {
                opacity: 0;
                transform: scale(1.05);
            }
        }

        .bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(3, 3, 7, 0.7) 0%, rgba(10, 10, 18, 0.95) 100%);
            z-index: 1;
        }

        .stars-container {
            position: absolute;
            z-index: 2;
            width: 100%;
            height: 100%;
            -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 90%);
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 90%);
        }

        .stars {
            width: 1px;
            height: 1px;
            background: transparent;
            box-shadow:
                100px 200px #fff, 300px 100px #fff, 500px 400px #fff,
                800px 100px #fff, 1000px 500px #fff, 50px 600px #fff,
                200px 300px rgba(255, 255, 255, 0.7), 600px 200px rgba(255, 255, 255, 0.6),
                900px 600px rgba(255, 255, 255, 0.8), 1100px 300px rgba(255, 255, 255, 0.7),
                400px 500px rgba(255, 255, 255, 0.5), 150px 800px #fff,
                700px 700px #fff, 350px 150px rgba(255, 255, 255, 0.8);
            animation: twinkle 4s infinite alternate;
        }

        .nebula {
            position: fixed;
            top: 50%;
            left: 50%;
            width: 120vw;
            height: 120vh;
            background: radial-gradient(circle at center, rgba(60, 100, 255, 0.1) 0%, transparent 60%);
            z-index: 2;
            pointer-events: none;
            animation: nebulaDrift 30s linear infinite alternate;
        }

        @keyframes twinkle {
            0% {
                opacity: 0.3;
            }

            100% {
                opacity: 1;
            }
        }

        @keyframes nebulaDrift {
            0% {
                transform: translate(-50%, -50%) scale(1) rotate(0deg);
                opacity: 0.5;
            }

            100% {
                transform: translate(-45%, -55%) scale(1.1) rotate(15deg);
                opacity: 0.9;
            }
        }

        /* =========================================
           3. UI COMPONENTS
           ========================================= */
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .glass-card {
            background: var(--bg-glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            transition: transform 0.4s ease, border-color 0.4s ease;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            border-color: rgba(59, 130, 246, 0.4);
        }

        .link-card {
            display: flex;
            cursor: pointer;
        }

        .link-card:hover h3 {
            color: var(--accent-primary);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 99px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--accent-gradient);
            color: white;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 0 35px rgba(59, 130, 246, 0.6);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: white;
            border: 1px solid var(--border-light);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-2px);
        }

        .btn-vk {
            background: #0077FF;
            color: white;
            padding: 8px 16px;
            font-size: 0.85rem;
        }

        .btn-vk:hover {
            background: #0066DD;
            box-shadow: 0 0 15px rgba(0, 119, 255, 0.4);
        }

        .btn-menu {
            background: rgba(255, 255, 255, 0.05);
            color: white;
            padding: 10px 20px;
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
        }

        .btn-menu:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }

        /* =========================================
           4. HEADER & NAVIGATION
           ========================================= */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--header-height);
            z-index: 1000;
            background: rgba(3, 3, 7, 0.65);
            backdrop-filter: blur(25px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            transition: height 0.3s ease;
        }

        .header-inner {
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            gap: 20px;
        }

        @media (min-width: 1025px) {
            .header-inner {
                display: grid;
                grid-template-columns: 1fr auto 1fr;
            }
        }

        .nav-left {
            display: flex;
            justify-content: flex-end;
            gap: 35px;
        }

        .nav-right {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 35px;
        }

        .logo-centered {
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo-centered:hover {
            transform: scale(1.05);
        }

        .header-logo-img {
            height: 85px;
            width: auto;
            max-width: 250px;
            object-fit: contain;
            transition: height 0.3s ease;
        }

        .nav-link {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            position: relative;
            padding: 8px 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-link:hover,
        .nav-link.active {
            color: white;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--accent-primary);
            box-shadow: 0 -2px 10px var(--accent-primary);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
        }

        /* =========================================
           5. ANIMATIONS & LAYOUTS (DESKTOP)
           ========================================= */
        @keyframes elegantEntry {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.98);
                filter: blur(5px);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        .stagger-item {
            opacity: 1;
        }

        .active-home .stagger-item {
            opacity: 0;
            animation: elegantEntry 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }

        .active-home .delay-1 {
            animation-delay: 0.1s;
        }

        .active-home .delay-2 {
            animation-delay: 0.2s;
        }

        .active-home .delay-3 {
            animation-delay: 0.4s;
        }

        .active-home .delay-4 {
            animation-delay: 0.6s;
        }

        .active-home .delay-5 {
            animation-delay: 0.8s;
        }

        @keyframes simpleFade {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .view-section:not(#home) {
            animation: simpleFade 0.4s ease-out;
        }

        .hero-layout {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
            margin: 40px 0 80px;
        }

        .hero-visual {
            flex: 0.8;
            display: flex;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .hero-rocket-img {
            max-height: 60vh;
            width: auto;
            object-fit: contain;
            mix-blend-mode: screen;
            filter: drop-shadow(0 0 25px rgba(59, 130, 246, 0.2));
        }

        .hero-text-content {
            flex: 1.2;
            text-align: left;
        }

        .hero-title-main {
            font-size: clamp(2.5rem, 6vw, 5.5rem);
            line-height: 1.05;
            font-weight: 900;
            letter-spacing: -2px;
            margin-bottom: 20px;
            color: white;
            text-transform: uppercase;
        }

        .hero-subtitle-legal {
            font-size: clamp(0.95rem, 1.5vw, 1.4rem);
            color: var(--text-muted);
            font-weight: 400;
            line-height: 1.5;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .hero-actions {
            display: flex;
            gap: 20px;
            justify-content: flex-start;
        }

        .ecosystem-section {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 100px;
        }

        .satellite-animation-container {
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px;
            height: 100%;
            min-height: 350px;
        }

        .orbit-system {
            position: relative;
            width: 280px;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
            transform: rotateX(65deg);
            transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .satellite-animation-container:hover .orbit-system {
            transform: rotateX(65deg) scale(1.15);
        }

        .planet-core {
            width: 100px;
            height: 100px;
            background: radial-gradient(circle at 30% 30%, #60a5fa, #1e3a8a, #020617);
            border-radius: 50%;
            box-shadow: 0 0 50px rgba(59, 130, 246, 0.4), inset -15px -15px 25px rgba(0, 0, 0, 0.5);
            transform: rotateX(-65deg);
            z-index: 2;
        }

        .orbit-path {
            position: absolute;
            width: 320px;
            height: 320px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 50%;
            box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.05), 0 0 20px rgba(59, 130, 246, 0.05);
        }

        .satellite-wrapper {
            position: absolute;
            width: 320px;
            height: 320px;
            animation: orbit 14s linear infinite;
            transform-style: preserve-3d;
            z-index: 3;
        }

        .satellite-icon {
            position: absolute;
            top: -20px;
            left: calc(50% - 20px);
            font-size: 2.5rem;
            color: #e2e8f0;
            filter: drop-shadow(0 0 15px #3b82f6);
            animation: counterRotate 14s linear infinite;
            cursor: pointer;
            transition: color 0.3s;
        }

        .satellite-icon:hover {
            color: #fff;
            filter: drop-shadow(0 0 25px #60a5fa);
        }

        @keyframes orbit {
            100% {
                transform: rotateZ(360deg);
            }
        }

        @keyframes counterRotate {
            0% {
                transform: rotateZ(0deg) rotateX(-65deg);
            }

            100% {
                transform: rotateZ(-360deg) rotateX(-65deg);
            }
        }

        /* =========================================
           6. SECTIONS & CONTENT
           ========================================= */
        .view-section {
            display: none;
            padding-top: 150px;
            min-height: 100vh;
        }

        .view-section.active-view {
            display: block;
        }

        .hero-content {
            text-align: center;
            max-width: 950px;
            margin: 20px auto 40px;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            width: 100%;
        }

        .feature-card {
            padding: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.4s ease;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #60a5fa;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 20px;
            transition: all 0.4s ease;
        }

        .link-card:hover .feature-icon {
            background: rgba(59, 130, 246, 0.15);
            border-color: var(--accent-primary);
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: white;
            transition: color 0.3s;
        }

        .team-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: stretch;
            gap: 30px;
            margin-top: 40px;
        }

        .team-card-premium {
            flex: 0 1 320px;
            width: 100%;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: linear-gradient(180deg, rgba(20, 25, 40, 0.6) 0%, rgba(10, 12, 20, 0.8) 100%);
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 20px;
            border: 2px solid rgba(59, 130, 246, 0.3);
            background: #0a0f1c;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-avatar i {
            font-size: 3.5rem;
            color: rgba(255, 255, 255, 0.2);
        }

        .team-meta h4 {
            font-size: 1.15rem;
            color: white;
            margin-bottom: 8px;
            font-weight: 700;
            line-height: 1.2;
        }

        .team-meta .role {
            font-size: 0.9rem;
            color: var(--accent-primary);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .team-socials {
            display: flex;
            gap: 10px;
            justify-content: center;
            width: 100%;
            flex-wrap: wrap;
        }

        .social-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .vk-btn {
            background: rgba(0, 119, 255, 0.1);
            color: #0077FF;
            border: 1px solid rgba(0, 119, 255, 0.3);
        }

        .vk-btn:hover {
            background: #0077FF;
            color: white;
            box-shadow: 0 4px 15px rgba(0, 119, 255, 0.4);
        }

        .mail-btn {
            background: rgba(255, 255, 255, 0.05);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mail-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: white;
        }

        .form-grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 24px;
        }

        .form-control {
            width: 100%;
            padding: 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #3b82f6;
            background: rgba(59, 130, 246, 0.05);
        }

        .legal-text {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: left;
        }

        .legal-text h3 {
            color: white;
            margin: 40px 0 20px;
            font-size: 1.4rem;
            font-weight: 700;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
        }

        .legal-text h4 {
            color: white;
            margin: 25px 0 15px;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .legal-text p {
            margin-bottom: 15px;
            text-align: justify;
            hyphens: auto;
        }

        .legal-text ul {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 25px;
        }

        .legal-text ul li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 10px;
        }

        .legal-text ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--accent-primary);
            font-weight: bold;
            font-size: 1.2rem;
            line-height: 1.4;
        }

        .legal-text strong {
            color: var(--text-logo);
            font-weight: 600;
        }

        .site-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 80px 0 40px;
            margin-top: 120px;
            background: #010102;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 50px;
        }

        .social-link-icon {
            color: var(--text-muted);
            margin-right: 15px;
            font-size: 1.4rem;
            transition: 0.3s;
        }

        .social-link-icon:hover {
            color: var(--accent-primary);
        }

        .legal-info {
            font-size: 0.85rem;
            color: #64748b;
            margin-top: 15px;
            line-height: 1.6;
        }

        /* =========================================
           7. MOBILE MENU MODAL
           ========================================= */
        .menu-modal {
            position: fixed;
            inset: 0;
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(5px);
            background: rgba(0, 0, 0, 0.6);
        }

        .menu-modal.active {
            opacity: 1;
            pointer-events: all;
        }

        .menu-window {
            background: var(--bg-glass-modal);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
            width: 90%;
            max-width: 400px;
            text-align: center;
            transform: translateY(20px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .menu-modal.active .menu-window {
            transform: translateY(0) scale(1);
        }

        .menu-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.2rem;
            cursor: pointer;
        }

        .menu-nav-link {
            display: block;
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-muted);
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .menu-nav-link.active {
            color: white;
            border-color: var(--accent-primary);
        }

        /* =========================================
           8. ABOUT SECTION
           ========================================= */
        .about-wrapper {
            max-width: 900px;
            margin: 0 auto 40px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .about-org-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            margin-bottom: 12px;
        }

        .about-org-icon {
            width: 64px;
            height: 64px;
            background: var(--accent-gradient);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            color: white;
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
            flex-shrink: 0;
        }

        .about-org-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            letter-spacing: -0.5px;
        }

        .about-block {
            padding: 32px;
            transition: transform 0.4s ease, border-color 0.4s ease;
        }

        .about-block:hover {
            transform: translateY(-3px);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .about-block-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
        }

        .about-block-icon {
            width: 42px;
            height: 42px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.25);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            color: #60a5fa;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .about-block:hover .about-block-icon {
            background: rgba(59, 130, 246, 0.2);
            border-color: var(--accent-primary);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
        }

        .about-block-icon-accent {
            background: var(--accent-gradient) !important;
            border-color: transparent !important;
            color: white !important;
        }

        .about-block-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
        }

        .about-block-text {
            font-size: 1.02rem;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 12px;
        }

        .about-block-text:last-child {
            margin-bottom: 0;
        }

        .about-block-text strong {
            color: white;
            font-weight: 600;
        }

        .about-block-cta {
            border-color: rgba(59, 130, 246, 0.2);
            background: linear-gradient(180deg, rgba(59, 130, 246, 0.06) 0%, var(--bg-glass) 100%);
        }

        /* =========================================
           9. RESPONSIVE
           ========================================= */

        /* --- Tablet: 1024px --- */
        @media (max-width: 1024px) {

            .nav-left,
            .nav-right {
                display: none;
            }

            .header-inner {
                display: flex !important;
                justify-content: space-between;
                align-items: center;
            }

            .logo-centered {
                justify-content: flex-start;
                flex: 1;
            }

            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .hero-layout {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }

            .hero-text-content {
                text-align: center;
                order: 1;
                max-width: 100%;
                flex: 1;
            }

            .hero-actions {
                justify-content: center;
            }

            .hero-visual {
                display: flex !important;
                justify-content: center;
                order: 0;
            }

            .hero-rocket-img {
                max-height: 40vh;
            }

            .ecosystem-section {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .satellite-animation-container {
                min-height: 250px;
            }
        }

        /* --- Mobile: 768px --- */
        @media (max-width: 768px) {
            :root {
                --header-height: 70px;
            }

            .container {
                padding: 0 16px;
            }

            .view-section {
                padding-top: 90px;
                min-height: calc(100vh - 70px);
                padding-bottom: 40px;
            }

            .header-logo-img {
                height: 42px;
                max-width: 180px;
            }

            /* --- HERO: вертикальная колонка --- */
            .hero-layout {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 20px;
                margin: 10px 0 30px;
            }

            .hero-text-content {
                order: 1;
                flex: 1;
                max-width: 100%;
                text-align: center;
            }

            .hero-title-main {
                font-size: clamp(1.8rem, 9vw, 2.6rem);
                line-height: 1.1;
                letter-spacing: -1px;
                margin-bottom: 12px;
            }

            .hero-subtitle-legal {
                font-size: 0.9rem;
                margin-bottom: 20px;
                line-height: 1.5;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-actions {
                display: flex;
                flex-direction: column;
                gap: 10px;
                width: 100%;
                max-width: 320px;
                margin: 0 auto;
            }

            .hero-actions .btn {
                width: 100%;
                padding: 14px 20px;
                font-size: 0.95rem;
                justify-content: center;
            }

            .hero-visual {
                display: flex !important;
                justify-content: center;
                order: 0;
                flex: 0 0 auto;
            }

            .hero-rocket-img {
                max-height: 200px;
                width: auto;
                object-fit: contain;
            }

            /* --- ЭКОСИСТЕМА: вертикальная колонка --- */
            .ecosystem-section {
                display: flex;
                flex-direction: column;
                gap: 20px;
                margin-bottom: 20px;
            }

            .satellite-animation-container {
                min-height: 160px;
                margin: 0 auto;
            }

            .orbit-system {
                transform: rotateX(65deg) scale(0.5);
            }

            .satellite-animation-container:hover .orbit-system {
                transform: rotateX(65deg) scale(0.5);
            }

            /* Карточки экосистемы: 2 в ряд */
            .grid-2 {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 10px;
                width: 100%;
            }

            .feature-card {
                padding: 14px;
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
                gap: 8px;
            }

            .feature-icon {
                width: 32px;
                height: 32px;
                font-size: 1rem;
                margin-bottom: 0;
                flex-shrink: 0;
            }

            .feature-title {
                font-size: 0.8rem;
                margin-bottom: 0;
                line-height: 1.3;
            }

            .feature-card p {
                display: none;
            }

            /* --- ОБЩИЕ ЗАГОЛОВКИ --- */
            .hero-content h1 {
                font-size: clamp(1.6rem, 7vw, 2.4rem) !important;
                letter-spacing: -0.5px;
            }

            .hero-content .hero-sub {
                font-size: 0.9rem;
            }

            /* --- О НАС (мобильная оптимизация) --- */
            .about-wrapper {
                gap: 16px;
            }

            .about-org-header {
                flex-direction: column;
                gap: 12px;
                margin-bottom: 8px;
            }

            .about-org-icon {
                width: 56px;
                height: 56px;
                font-size: 1.5rem;
            }

            .about-org-title {
                font-size: clamp(1.2rem, 5vw, 1.6rem);
            }

            .about-block {
                padding: 20px 16px;
            }

            .about-block-header {
                gap: 12px;
                margin-bottom: 14px;
            }

            .about-block-icon {
                width: 36px;
                height: 36px;
                font-size: 0.95rem;
                flex-shrink: 0;
            }

            .about-block-title {
                font-size: 1rem;
            }

            .about-block-text {
                font-size: 0.9rem;
                line-height: 1.65;
            }

            /* --- ЮРИДИЧЕСКИЕ СТРАНИЦЫ --- */
            #privacy .glass-card,
            #consent .glass-card,
            #terms .glass-card {
                padding: 24px 16px !important;
            }

            #privacy h1,
            #consent h1,
            #terms h1 {
                font-size: clamp(1.1rem, 5vw, 1.6rem) !important;
                letter-spacing: 0 !important;
                margin-bottom: 24px !important;
                line-height: 1.3;
            }

            .legal-text {
                font-size: 0.85rem;
                line-height: 1.7;
            }

            .legal-text h3 {
                font-size: 1.1rem;
                margin: 28px 0 14px;
            }

            .legal-text h4 {
                font-size: 0.95rem;
            }

            /* --- ФОРМА ПАРТНЁРСТВА --- */
            #partner .glass-card {
                padding: 24px 16px !important;
            }

            .form-grid-2 {
                grid-template-columns: 1fr;
                gap: 0;
                margin-bottom: 0;
            }

            .form-grid-2>div {
                margin-bottom: 20px;
            }

            /* --- ДИРЕКЦИЯ --- */
            .team-grid {
                gap: 16px;
            }

            .team-card-premium {
                flex: 0 1 100%;
                padding: 24px 16px;
            }

            .team-avatar {
                width: 90px;
                height: 90px;
            }

            .team-meta h4 {
                font-size: 1rem;
            }

            /* --- ФУТЕР --- */
            .site-footer {
                padding: 40px 0 20px;
                margin-top: 40px;
            }

            .footer-grid {
                grid-template-columns: 1fr !important;
                text-align: center;
                gap: 30px;
            }

            .site-footer [style*="text-align: left"] {
                text-align: center !important;
            }

            .site-footer .legal-info {
                text-align: center;
            }

            .site-footer a {
                justify-content: center;
            }
        }

        /* --- Small Mobile: 480px (iPhone SE и подобные) --- */
        @media (max-width: 480px) {
            :root {
                --header-height: 64px;
            }

            .container {
                padding: 0 12px;
            }

            .view-section {
                padding-top: 80px;
            }

            .header-logo-img {
                height: 36px;
            }

            .hero-title-main {
                font-size: clamp(1.6rem, 9vw, 2.2rem);
            }

            .hero-subtitle-legal {
                font-size: 0.82rem;
            }

            .hero-actions .btn {
                font-size: 0.88rem;
                padding: 12px 16px;
            }

            .hero-rocket-img {
                max-height: 160px;
            }

            /* Экосистема: 1 колонка */
            .grid-2 {
                grid-template-columns: 1fr;
            }

            .feature-card {
                flex-direction: row;
                align-items: center;
                gap: 12px;
                padding: 12px;
            }

            .satellite-animation-container {
                display: none;
            }

            .btn {
                font-size: 0.88rem;
                padding: 12px 20px;
            }

            #privacy .glass-card,
            #consent .glass-card,
            #terms .glass-card {
                padding: 20px 12px !important;
            }

            #privacy h1,
            #consent h1,
            #terms h1 {
                font-size: clamp(1rem, 4.5vw, 1.4rem) !important;
            }

            .legal-text {
                font-size: 0.82rem;
            }

            .team-grid {
                gap: 12px;
            }

            .team-card-premium {
                padding: 20px 12px;
            }

            .social-btn {
                padding: 7px 12px;
                font-size: 0.8rem;
            }

            /* --- О НАС (малый экран) --- */
            .about-wrapper {
                gap: 12px;
            }

            .about-org-icon {
                width: 48px;
                height: 48px;
                font-size: 1.3rem;
            }

            .about-org-title {
                font-size: clamp(1.1rem, 4.5vw, 1.4rem);
            }

            .about-block {
                padding: 16px 14px;
            }

            .about-block-icon {
                width: 32px;
                height: 32px;
                font-size: 0.85rem;
            }

            .about-block-title {
                font-size: 0.92rem;
            }

            .about-block-text {
                font-size: 0.84rem;
                line-height: 1.6;
            }
        }

        #loader {
            position: fixed;
            inset: 0;
            background: #030307;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.6s ease;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(255, 255, 255, 0.1);
            border-top-color: var(--accent-primary);
            border-radius: 50%;
            animation: spin 1s infinite linear;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* =========================================
           10. PARTNERS IN ABOUT SECTION
           ========================================= */
        .about-partners-section {
            margin-top: 8px;
        }

        .about-partners-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 24px;
        }

        .about-partners-header .about-block-icon {
            background: var(--accent-gradient);
            border-color: transparent;
            color: white;
        }

        .about-partners-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .about-partner-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.4s ease;
        }

        .about-partner-card:hover {
            transform: translateY(-3px);
            border-color: rgba(59, 130, 246, 0.3);
            background: rgba(59, 130, 246, 0.04);
            box-shadow: 0 8px 28px rgba(59, 130, 246, 0.1);
        }

        .about-partner-logo {
            width: 90px;
            height: 90px;
            border-radius: 18px;
            overflow: hidden;
            margin-bottom: 18px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            flex-shrink: 0;
        }

        .about-partner-card:hover .about-partner-logo {
            border-color: var(--accent-primary);
            background: rgba(59, 130, 246, 0.08);
            box-shadow: 0 6px 18px rgba(59, 130, 246, 0.15);
        }

        .about-partner-name {
            font-size: 1.05rem;
            font-weight: 700;
            color: white;
            margin-bottom: 6px;
        }

        .about-partner-type {
            font-size: 0.78rem;
            color: var(--accent-primary);
            font-weight: 500;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .about-partner-desc {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.65;
        }

        /* Single item in last row — center it */
        .about-partners-grid>.about-partner-card:last-child:nth-child(odd) {
            grid-column: 1 / -1;
            max-width: 50%;
            justify-self: center;
        }

        /* =========================================
           10b. COMING SOON CARD
           ========================================= */
        .coming-soon-card {
            opacity: 0.65;
            cursor: default !important;
            position: relative;
            overflow: hidden;
        }

        .coming-soon-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(99, 102, 241, 0.03) 100%);
            border-radius: inherit;
            pointer-events: none;
        }

        .coming-soon-card:hover {
            transform: none !important;
            border-color: rgba(255, 255, 255, 0.08) !important;
            box-shadow: none !important;
            opacity: 0.75;
        }

        .coming-soon-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #a3b3cc;
            animation: comingSoonPulse 3s ease-in-out infinite;
        }

        @keyframes comingSoonPulse {

            0%,
            100% {
                opacity: 0.6;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.05);
            }
        }

        /* =========================================
           10c. NEWS FILTER
           ========================================= */
        .news-filter-wrapper {
            display: flex;
            justify-content: flex-start;
            margin-top: 24px;
            position: relative;
        }

        .news-filter-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 99px;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .news-filter-btn:hover {
            background: rgba(59, 130, 246, 0.1);
            border-color: rgba(59, 130, 246, 0.3);
            color: white;
        }

        .news-filter-btn.active {
            background: rgba(59, 130, 246, 0.15);
            border-color: var(--accent-primary);
            color: white;
        }

        .news-filter-badge {
            background: var(--accent-primary);
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .news-filter-badge.visible {
            display: inline-flex;
        }

        .news-filter-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            background: rgba(15, 18, 30, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            padding: 16px;
            min-width: 260px;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.25s ease;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        }

        .news-filter-dropdown.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .news-filter-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
            user-select: none;
        }

        .news-filter-item:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        .news-filter-item input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: var(--accent-primary);
            cursor: pointer;
            flex-shrink: 0;
        }

        .news-filter-item label {
            color: var(--text-muted);
            font-size: 0.88rem;
            cursor: pointer;
            flex: 1;
            transition: color 0.2s;
        }

        .news-filter-item:hover label {
            color: white;
        }

        .news-filter-actions {
            display: flex;
            gap: 8px;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .news-filter-apply {
            flex: 1;
            padding: 8px 16px;
            border: none;
            border-radius: 8px;
            background: var(--accent-gradient);
            color: white;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .news-filter-apply:hover {
            box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
        }

        .news-filter-reset {
            padding: 8px 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            background: transparent;
            color: var(--text-muted);
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .news-filter-reset:hover {
            background: rgba(255, 255, 255, 0.05);
            color: white;
        }

        /* =========================================
           11. NEWS SECTION
           ========================================= */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .news-card {
            cursor: pointer;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.4s ease;
        }

        .news-card:hover {
            transform: translateY(-6px);
            border-color: rgba(59, 130, 246, 0.5);
            box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
        }

        .news-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        }

        .news-card-body {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-card-date {
            font-size: 0.8rem;
            color: var(--accent-primary);
            font-weight: 500;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .news-card-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            line-height: 1.4;
            transition: color 0.3s;
        }

        .news-card:hover .news-card-title {
            color: var(--accent-primary);
        }

        .news-card-summary {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
            flex: 1;
        }

        .news-card-read {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 16px;
            font-size: 0.85rem;
            color: var(--accent-primary);
            font-weight: 600;
            transition: gap 0.3s;
        }

        .news-card:hover .news-card-read {
            gap: 10px;
        }

        .news-empty {
            text-align: center;
            color: var(--text-muted);
            width: 100%;
            margin-top: 40px;
            grid-column: 1 / -1;
        }

        /* =========================================
           12. NEWS MODAL
           ========================================= */
        .news-modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 3000;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            padding: 20px;
        }

        .news-modal-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .news-modal {
            background: var(--bg-glass-modal);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            transform: translateY(20px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .news-modal-overlay.active .news-modal {
            transform: translateY(0) scale(1);
        }

        .news-modal-carousel {
            position: relative;
            background: rgba(0, 0, 0, 0.3);
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .news-modal-image {
            width: 100%;
            max-height: 400px;
            object-fit: contain;
            display: none;
            animation: fadeInModal 0.4s ease;
        }

        .news-modal-image.active {
            display: block;
        }

        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
        }

        .carousel-control:hover {
            background: var(--accent-primary);
            border-color: var(--accent-primary);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-control.prev {
            left: 20px;
        }

        .carousel-control.next {
            right: 20px;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.2);
        }

        .carousel-dot.active {
            background: var(--accent-primary);
            transform: scale(1.3);
        }

        @keyframes fadeInModal {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .news-modal-body {
            padding: 32px;
        }

        .news-modal-date {
            font-size: 0.85rem;
            color: var(--accent-primary);
            font-weight: 500;
            margin-bottom: 12px;
        }

        .news-modal-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .news-modal-content {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.8;
            white-space: pre-line;
        }

        .news-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: white;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .news-modal-close:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: rotate(90deg);
        }

        /* News modal scrollbar */
        .news-modal::-webkit-scrollbar {
            width: 6px;
        }

        .news-modal::-webkit-scrollbar-track {
            background: transparent;
        }

        .news-modal::-webkit-scrollbar-thumb {
            background: rgba(59, 130, 246, 0.3);
            border-radius: 3px;
        }

        /* =========================================
           13. RESPONSIVE FOR NEW SECTIONS
           ========================================= */
        @media (max-width: 768px) {
            .about-partners-grid {
                gap: 14px;
            }

            .about-partner-card {
                padding: 20px 16px;
            }

            .about-partner-logo {
                width: 72px;
                height: 72px;
            }

            .about-partner-name {
                font-size: 0.95rem;
            }

            .about-partner-desc {
                font-size: 0.82rem;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .about-partner-card.expanded .about-partner-desc {
                -webkit-line-clamp: unset;
            }

            .about-partners-grid>.about-partner-card:last-child:nth-child(odd) {
                max-width: 100%;
            }

            .news-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .news-card-image {
                height: 180px;
            }

            .news-card-body {
                padding: 16px;
            }

            .news-modal-body {
                padding: 20px;
            }

            .news-modal-title {
                font-size: 1.3rem;
            }

            .news-modal-image {
                max-height: 250px;
            }

            .news-filter-dropdown {
                min-width: 240px;
            }
        }

        @media (max-width: 480px) {
            .about-partners-grid {
                gap: 10px;
            }

            .about-partner-card {
                padding: 16px 12px;
            }

            .about-partner-logo {
                width: 60px;
                height: 60px;
                border-radius: 14px;
            }

            .about-partner-name {
                font-size: 0.88rem;
            }

            .about-partner-type {
                font-size: 0.72rem;
            }

            .about-partner-desc {
                font-size: 0.78rem;
            }

            .news-card-image {
                height: 150px;
            }

            .news-modal-title {
                font-size: 1.1rem;
            }

            .news-modal-content {
                font-size: 0.9rem;
            }

            .news-filter-btn {
                font-size: 0.82rem;
                padding: 8px 16px;
            }
        }