.page-container {
            max-width: 1180px;
            width: 100%;
            margin: 0 auto;
        }
        html { overflow-x: clip; }
        @media (max-width: 767px) {
            .page-container {
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        /* INDEX CLS: swiper height fix — now in critical CSS */

        .section-divider {
            width: 100%;
            height: 1px;
            background: #e8edf3;
            margin: 50px 0;
        }

        /* ============================================================
           БЛОК 1 — ПРЕИМУЩЕСТВА
           ============================================================ */
        .preim-row {
            background: #f7faff;
            border-radius: 16px;
            border: 1px solid #eaf0f6;
            display: flex;
            align-items: stretch;
            overflow: hidden;
            padding: 0;
        }

        .preim-item {
            flex: 1 1 0;
            min-width: 0;
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 22px 20px;
            transition: background 0.2s ease;
        }

        .preim-item:hover {
            background: rgba(0, 102, 204, 0.03);
        }

        .preim-item svg {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            stroke: #0066cc;
            stroke-width: 1.4;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .preim-item > div {
            display: flex;
            flex-direction: column;
            min-width: 0;
            flex: 1;
            justify-content: center;
        }

        .preim-item .top-text {
            font-size: 16px;
            font-weight: 600;
            color: #0b1a2b;
            letter-spacing: -0.02em;
            line-height: 1.2;
            height: 20px;
            display: flex;
            align-items: center;
            margin-bottom: 2px;
        }

        .preim-item .top-text .plus {
            color: #0066cc;
            font-weight: 600;
        }

        .preim-item .bottom-text {
            font-size: 12.5px;
            font-weight: 400;
            color: #455b70;
            line-height: 1.3;
        }

        .preim-item:last-child { gap: 16px; }
        .preim-item:last-child .top-text { font-weight: 400; font-size: 13px; color: #455b70; height: 18px; display: flex; align-items: center; margin-top: 0; }
        .preim-item:last-child .bottom-text { display: none; }

        /* ============================================================
           БЛОК 2 — О КОМПАНИИ
           ============================================================ */
        .company-section {
            display: flex;
            gap: 56px;
            align-items: stretch;
        }

        .company-left {
            flex: 0 0 42%;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .company-left .label {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #0066cc;
            margin-bottom: 8px;
        }

        .company-left h1 {
            font-size: 32px;
            font-weight: 700;
            color: #0a1a2b;
            letter-spacing: -0.03em;
            line-height: 1.15;
            margin-bottom: 10px;
        }

        .company-left .subhead {
            font-size: 16px;
            font-weight: 500;
            color: #1f3a5f;
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }

        .company-left .description {
            font-size: 14px;
            line-height: 1.7;
            color: #2c3e50;
            margin-bottom: 22px;
            max-width: 520px;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 28px;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
            color: #0f2a44;
            padding: 5px 0;
            letter-spacing: -0.01em;
        }

        .feature-list li::before {
            content: "✓";
            color: #0066cc;
            font-size: 17px;
            font-weight: 700;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            flex-shrink: 0;
        }

        .btn-primary {
            display: inline-block;
            background: #0066cc;
            color: white;
            font-weight: 600;
            font-size: 14px;
            padding: 12px 28px;
            border-radius: 60px;
            text-decoration: none;
            letter-spacing: 0.01em;
            transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.18);
            align-self: flex-start;
        }

        .btn-primary:hover {
            background: #0052a3;
            box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
            transform: translateY(-2px);
        }

        .right-cards {
            flex: 1 1 auto;
            display: flex;
            flex-direction: row;
            gap: 20px;
            min-width: 200px;
            align-items: flex-start;
        }

        .grid-item {
            background: #f8faff;
            border-radius: 24px;
            padding: 24px 20px 22px;
            border: 1px solid #eaf0f6;
            transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
            display: flex;
            flex-direction: column;
            flex: 1 1 0;
            min-width: 0;
            position: relative;
        }

        .grid-item:hover {
            border-color: #b8cfe0;
            box-shadow: 0 12px 32px -12px rgba(0, 60, 130, 0.10);
            transform: translateY(-4px);
            background: #ffffff;
        }

        .grid-item .icon {
            width: 48px;
            height: 48px;
            background: #e9f2fe;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            font-size: 22px;
            flex-shrink: 0;
            color: #0066cc;
            transition: background 0.2s, transform 0.2s;
        }

        .grid-item:hover .icon {
            background: #d6e8ff;
            transform: scale(1.04);
        }

        .grid-item .item-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #0066cc;
            margin-bottom: 4px;
        }

        .grid-item h3 {
            font-size: 17px;
            font-weight: 700;
            color: #0a1a2b;
            letter-spacing: -0.02em;
            margin-bottom: 6px;
        }

        .grid-item p {
            font-size: 13.5px;
            line-height: 1.6;
            color: #2b4057;
            margin-bottom: 14px;
            flex: 1 1 auto;
        }

        .grid-item .link-arrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 13px;
            color: #0066cc;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, gap 0.2s;
            align-self: flex-start;
            padding-bottom: 2px;
            cursor: pointer;
        }

        .grid-item .link-arrow:hover {
            border-bottom: 2px solid #0066cc;
            gap: 14px;
        }

        .grid-item .link-arrow::after {
            content: "→";
            font-size: 16px;
            transition: transform 0.2s;
        }

        .grid-item .link-arrow:hover::after {
            transform: translateX(5px);
        }

        /* ============================================================
           БЛОК 3 — ТЕХНОЛОГИИ
           ============================================================ */
        .tech-heading {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 32px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e8edf3;
        }

        .tech-heading-left {
            display: flex;
            flex-direction: column;
        }

        .tech-heading-left .label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #0066cc;
            margin-bottom: 4px;
        }

        .tech-heading-left h2 {
            font-size: 26px;
            font-weight: 700;
            color: #0b1a2b;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .tech-heading-right {
            flex: 0 0 auto;
            padding-bottom: 3px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .tech-heading-right .all-link {
            font-size: 14px;
            font-weight: 500;
            color: #0066cc;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s ease, color 0.2s ease;
            cursor: pointer;
            letter-spacing: -0.01em;
        }

        .tech-heading-right .all-link:hover {
            gap: 12px;
            color: #0052a3;
        }

        .tech-heading-right .all-link .arrow {
            font-size: 18px;
            line-height: 1;
            transition: transform 0.2s ease;
        }

        .tech-heading-right .all-link:hover .arrow {
            transform: translateX(4px);
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        a.tech-item, a.service-item {
            text-decoration: none;
            color: inherit;
        }

        .tech-item {
            background: #f7faff;
            border-radius: 16px;
            padding: 20px 18px 22px;
            border: 1px solid #eaf0f6;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
            display: flex;
            flex-direction: column;
        }

        .tech-item:hover {
            border-color: #b8cee0;
            background: #ffffff;
            box-shadow: 0 8px 24px -10px rgba(0, 60, 120, 0.08);
            transform: translateY(-3px);
        }

        .tech-item .icon {
            width: 40px;
            height: 40px;
            margin-bottom: 12px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tech-item .icon svg {
            width: 100%;
            height: 100%;
            stroke: #0066cc;
            stroke-width: 1.8;
            fill: none;
        }

        .tech-item h4 {
            font-size: 15px;
            font-weight: 700;
            color: #0b1a2b;
            letter-spacing: -0.01em;
            margin-bottom: 4px;
        }

        .tech-item p {
            font-size: 12.5px;
            line-height: 1.5;
            color: #455b70;
        }

        /* ============================================================
           БЛОК 4 — УСЛУГИ
           ============================================================ */
        .services-heading {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 32px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e8edf3;
        }

        .services-heading-left {
            display: flex;
            flex-direction: column;
        }

        .services-heading-left .label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #0066cc;
            margin-bottom: 4px;
        }

        .services-heading-left h2 {
            font-size: 26px;
            font-weight: 700;
            color: #0b1a2b;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .services-heading-right {
            flex: 0 0 auto;
            padding-bottom: 3px;
        }

        .services-heading-right .all-link {
            font-size: 14px;
            font-weight: 500;
            color: #0066cc;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s ease, color 0.2s ease;
            cursor: pointer;
            letter-spacing: -0.01em;
        }

        .services-heading-right .all-link:hover {
            gap: 12px;
            color: #0052a3;
        }

        .services-heading-right .all-link .arrow {
            font-size: 18px;
            line-height: 1;
            transition: transform 0.2s ease;
        }

        .services-heading-right .all-link:hover .arrow {
            transform: translateX(4px);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .service-item {
            background: #f7faff;
            border-radius: 16px;
            padding: 24px 22px 26px;
            border: 1px solid #eaf0f6;
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #0066cc;
            opacity: 0.2;
            transition: opacity 0.25s;
        }

        .service-item:hover {
            border-color: #b8cee0;
            background: #ffffff;
            box-shadow: 0 8px 24px -10px rgba(0, 60, 120, 0.12);
            transform: translateY(-3px);
        }

        .service-item:hover::before {
            opacity: 1;
        }

        .service-item .top-row {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 14px;
        }

        .service-item .icon {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-item .icon svg {
            width: 100%;
            height: 100%;
            stroke: #0066cc;
            stroke-width: 1.8;
            fill: none;
        }

        .service-item .number {
            font-size: 32px;
            font-weight: 700;
            color: #0066cc;
            opacity: 0.12;
            line-height: 1;
            letter-spacing: -0.03em;
            font-variant-numeric: tabular-nums;
            transition: opacity 0.25s;
        }

        .service-item:hover .number {
            opacity: 0.20;
        }

        .service-item h4 {
            font-size: 16px;
            font-weight: 700;
            color: #0b1a2b;
            margin-bottom: 4px;
            letter-spacing: -0.01em;
        }

        .service-item p {
            font-size: 13.5px;
            line-height: 1.5;
            color: #455b70;
            flex: 1;
            margin-bottom: 14px;
        }

        .service-item .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            padding-top: 14px;
            border-top: 1px solid #eef2f8;
            margin-top: auto;
        }

        .service-item .tags span {
            font-size: 10.5px;
            font-weight: 500;
            color: #0066cc;
            background: #e9f2fe;
            padding: 3px 14px;
            border-radius: 20px;
            letter-spacing: 0.02em;
            transition: background 0.2s;
        }

        .service-item:hover .tags span {
            background: #d6e8ff;
        }

        /* ============================================================
           БЛОК 5 — НОВОСТИ
           ============================================================ */
        .news-heading {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 32px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e8edf3;
        }

        .news-heading-left {
            display: flex;
            flex-direction: column;
        }

        .news-heading-left .label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #0066cc;
            margin-bottom: 4px;
        }

        .news-heading-left h2 {
            font-size: 26px;
            font-weight: 700;
            color: #0b1a2b;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .news-heading-right {
            flex: 0 0 auto;
            padding-bottom: 3px;
        }

        .news-heading-right .all-link {
            font-size: 14px;
            font-weight: 500;
            color: #0066cc;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s ease, color 0.2s ease;
            cursor: pointer;
            letter-spacing: -0.01em;
        }

        .news-heading-right .all-link:hover {
            gap: 12px;
            color: #0052a3;
        }

        .news-heading-right .all-link .arrow {
            font-size: 18px;
            line-height: 1;
            transition: transform 0.2s ease;
        }

        .news-heading-right .all-link:hover .arrow {
            transform: translateX(4px);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .news-item {
            background: #f7faff;
            border-radius: 16px;
            padding: 20px 20px 24px;
            border: 1px solid #eaf0f6;
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
        }

        .news-item:hover {
            border-color: #b8cee0;
            background: #ffffff;
            box-shadow: 0 8px 24px -10px rgba(0, 60, 120, 0.10);
            transform: translateY(-3px);
        }

        .news-item .news-image {
            display: block !important;
            width: 100% !important;
            max-width: 260px !important;
            min-height: 200px !important;
            aspect-ratio: 13/10;
            flex-shrink: 0;
            overflow: hidden;
            position: relative !important;
            padding: 0 !important;
            border-radius: 12px;
            margin: 0 auto 16px auto;
            background: #dce6d0;
        }

        .news-item .news-image img {
            width: 100%;
            height: 100%;
            min-height: 200px;
            object-fit: cover;
            display: block;
        }

        .news-item .news-image .tag {
            position: absolute;
            top: 12px;
            left: 12px;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #0066cc;
            background: rgba(255, 255, 255, 0.92);
            padding: 4px 14px;
            border-radius: 20px;
            backdrop-filter: blur(4px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
        }

        .news-item .news-content {
            width: 100%;
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .news-item .date {
            font-size: 11px;
            font-weight: 500;
            color: #455b70;
            margin-bottom: 6px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .news-item h4 {
            font-size: 15px;
            font-weight: 700;
            color: #0b1a2b;
            line-height: 1.3;
            margin-bottom: 4px;
            letter-spacing: -0.01em;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-item p {
            font-size: 13px;
            line-height: 1.5;
            color: #455b70;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-item .read-link {
            font-size: 13px;
            font-weight: 500;
            color: #0066cc;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 14px;
            padding-top: 12px;
            border-top: 1px solid #eef2f8;
            transition: gap 0.2s ease;
            align-self: flex-start;
            cursor: pointer;
        }

        .news-item .read-link:hover {
            gap: 10px;
            color: #0052a3;
        }

        .news-item .read-link::after {
            content: "→";
            font-size: 16px;
            transition: transform 0.2s;
        }

        .news-item .read-link:hover::after {
            transform: translateX(3px);
        }

        /* ============================================================
           БЛОК 6 — ПАРТНЁРЫ
           ============================================================ */
        .partners-heading {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 32px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e8edf3;
        }

        .partners-heading-left {
            display: flex;
            flex-direction: column;
        }

        .partners-heading-left .label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #0066cc;
            margin-bottom: 4px;
        }

        .partners-heading-left h2 {
            font-size: 26px;
            font-weight: 700;
            color: #0b1a2b;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .partners-heading-right {
            flex: 0 0 auto;
            padding-bottom: 3px;
        }

        .partners-heading-right .all-link {
            font-size: 14px;
            font-weight: 500;
            color: #0066cc;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s ease, color 0.2s ease;
            cursor: pointer;
            letter-spacing: -0.01em;
        }

        .partners-heading-right .all-link:hover {
            gap: 12px;
            color: #0052a3;
        }

        .partners-heading-right .all-link .arrow {
            font-size: 18px;
            line-height: 1;
            transition: transform 0.2s ease;
        }

        .partners-heading-right .all-link:hover .arrow {
            transform: translateX(4px);
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        a.partner-item, .partner-item {
            background: #f7faff;
            border-radius: 16px;
            padding: 24px 16px 22px;
            border: 1px solid #eaf0f6;
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-height: 180px;
            justify-content: center;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .partner-item:hover {
            border-color: #b8cee0;
            background: #ffffff;
            box-shadow: 0 8px 24px -10px rgba(0, 60, 120, 0.10);
            transform: translateY(-3px);
        }

        .partner-item .logo {
            width: 100%;
            max-width: 200px;
            height: 200px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            overflow: hidden;
        }

        .partner-item .logo img {
            width: 200px;
            height: 200px;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            display: block;
            transition: filter 0.3s ease;
        }

        .partner-item .name {
            font-size: 13px;
            font-weight: 500;
            color: #0b1a2b;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        /* ============================================================
           БЛОК 7 — CTA
           ============================================================ */
        .cta-card {
            position: relative;
            width: 100%;
            min-height: 600px;
            background: linear-gradient(180deg, #021430 0%, #031632 25%, #041a3a 55%, #041d40 100%);
            border-radius: 22px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 55% 45%;
            padding: 0;
        }

        .cta-left {
            position: relative;
            z-index: 2;
            padding: 48px 0 40px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cta-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 40px;
        }

        .cta-logo-svg {
            height: 29px;
            width: auto;
        }

        .cta-logo-name {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.2px;
        }

        .cta-heading {
            font-size: 38px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.1;
            letter-spacing: -1.4px;
            margin-bottom: 20px;
            max-width: 520px;
        }

        .cta-subtitle {
            font-size: 15px;
            font-weight: 400;
            color: #b8d4f0;
            line-height: 1.6;
            max-width: 440px;
            margin-bottom: 28px;
        }

        .cta-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .cta-feature-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            border-radius: 8px;
            background: rgba(42, 125, 225, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cta-feature-icon svg {
            width: 16px;
            height: 16px;
            stroke: #6a9fe8;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .cta-feature-text {
            font-size: 14px;
            font-weight: 500;
            color: #d8e9ff;
            line-height: 1.4;
        }

        .cta-extra-features {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .cta-extra-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .cta-extra-feature .cta-feature-icon {
            background: rgba(42, 125, 225, 0.10);
        }

        .cta-extra-feature .cta-feature-text {
            color: #d8e9ff;
            font-size: 13px;
        }

        .cta-disclaimer {
            margin-top: 24px;
            font-size: 12px;
            font-weight: 400;
            color: rgba(130, 160, 200, 0.45);
            max-width: 860px;
            line-height: 1.5;
        }

        .cta-right {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 72px 40px 20px;
        }

        .cta-form-box {
            width: 100%;
            max-width: 460px;
        }

        .cta-form-heading {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.4px;
            margin-bottom: 6px;
            text-align: center;
        }

        .cta-form-sub {
            font-size: 14px;
            font-weight: 400;
            color: #a3bde0;
            text-align: center;
            margin-bottom: 28px;
        }

        .cta-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

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

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .form-label {
            font-size: 12px;
            font-weight: 500;
            color: #8da8cc;
            letter-spacing: 0.2px;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            background: rgba(18, 40, 75, 0.7);
            border: 1px solid rgba(80, 120, 175, 0.28);
            border-radius: 12px;
            padding: 12px 16px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 400;
            color: #e8f0ff;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(150, 180, 215, 0.5);
            font-weight: 400;
        }

        .form-input:focus,
        .form-textarea:focus {
            border-color: rgba(42, 125, 225, 0.55);
            box-shadow: 0 0 0 3px rgba(42, 125, 225, 0.1);
        }

        .form-textarea {
            min-height: 80px;
            resize: vertical;
            line-height: 1.5;
        }

        .form-check {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-top: 2px;
        }

        .form-check input[type="checkbox"] {
            display: none;
        }

        .form-check-box {
            width: 18px;
            height: 18px;
            min-width: 18px;
            border: 1.5px solid rgba(80, 120, 175, 0.4);
            border-radius: 5px;
            background: rgba(18, 40, 75, 0.5);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            margin-top: 1px;
        }

        .form-check-box svg {
            width: 12px;
            height: 12px;
            stroke: #fff;
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .form-check input[type="checkbox"]:checked+.form-check-box {
            background: #1e6aff;
            border-color: #1e6aff;
        }

        .form-check input[type="checkbox"]:checked+.form-check-box svg {
            opacity: 1;
        }

        .form-check-text {
            font-size: 12px;
            color: rgba(150, 180, 215, 0.65);
            line-height: 1.4;
        }

        .form-check-text a {
            color: #6a9fe8;
            text-decoration: none;
            border-bottom: 1px dashed rgba(106, 159, 232, 0.4);
            transition: border-color 0.2s;
            cursor: pointer;
        }

        .form-check-text a:hover {
            border-bottom-color: #6a9fe8;
        }

        .form-submit {
            width: 100%;
            padding: 14px 32px;
            background: linear-gradient(135deg, #1e6aff 0%, #1a5cf0 100%);
            border: none;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 8px 28px rgba(30, 106, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            letter-spacing: 0.15px;
            margin-top: 4px;
        }

        .form-submit svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: #fff;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .form-submit:hover {
            background: linear-gradient(135deg, #2a78ff 0%, #1e62f5 100%);
            transform: translateY(-1px);
            box-shadow: 0 12px 36px rgba(30, 106, 255, 0.4);
        }

        .form-submit:active {
            transform: translateY(0);
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -60px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(30, 106, 255, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-card::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: 25%;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(30, 106, 255, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* ===== TOAST ===== */
        .toast {
            visibility: hidden;
            opacity: 0;
            transform: translateX(-50%) scale(0.92);
            position: fixed;
            bottom: 30px;
            left: 50%;
            background: #0f2a47;
            color: #f0f7ff;
            padding: 14px 32px;
            border-radius: 60px;
            font-weight: 500;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
            border: 1px solid rgba(60, 110, 170, 0.35);
            z-index: 999;
            transition: 0.25s ease;
            white-space: nowrap;
            max-width: 90%;
            pointer-events: none;
        }

        .toast.show {
            visibility: visible;
            opacity: 1;
            transform: translateX(-50%) scale(1);
            pointer-events: auto;
        }

        .toast svg {
            width: 20px;
            height: 20px;
            stroke: #7bb3ff;
            fill: none;
            stroke-width: 2;
            flex-shrink: 0;
        }

        /* ============================================================
           АДАПТИВНОСТЬ
           ============================================================ */
        @media (max-width: 1100px) {
            

            .company-section {
                flex-direction: column;
                gap: 40px;
            }
            .company-left {
                flex: 1 1 auto;
                min-width: unset;
            }
            .company-left h1 {
                font-size: 30px;
            }
            .right-cards {
                flex-wrap: wrap;
            }
            .grid-item {
                flex: 1 1 calc(33.33% - 14px);
                min-width: 170px;
            }
            .btn-primary {
                align-self: center;
                width: 100%;
                text-align: center;
            }

            .directions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .preim-row {
                flex-wrap: wrap;
            }
            .preim-item {
                flex: 1 1 calc(50% - 0px);
                padding: 18px 16px;
                gap: 14px;
            }
            .preim-item svg {
                width: 38px;
                height: 38px;
            }
            .preim-item .top-text {
                font-size: 15px;
                height: 18px;
            }
            .preim-item .bottom-text {
                font-size: 12px;
            }
            .preim-item:last-child .top-text {
                font-size: 12.5px;
                height: 16px;
            }

            .tech-heading {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .tech-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-heading {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .news-heading {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-item .news-image {
                max-width: 280px !important;
                min-height: 180px !important;
                aspect-ratio: 14/9;
            }
            .news-item .news-image img {
                min-height: 180px;
            }

            .partners-heading {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .partners-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
            .partner-item .logo {
                height: 160px;
                max-width: 160px;
            }
            .partner-item .logo img {
                width: 160px;
                height: 160px;
            }
            .partner-item {
                min-height: 150px;
            }

            .cta-card {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            .cta-left {
                padding: 48px 40px 24px;
            }
            .cta-heading {
                font-size: 34px;
            }
            .cta-right {
                padding: 20px 40px 48px;
            }
            .cta-disclaimer {
                position: relative;
                bottom: auto;
                left: auto;
                padding: 0 40px 32px;
            }
        }

        @media (max-width: 860px) {
            

            .company-left h1 {
                font-size: 28px;
            }
            .grid-item {
                flex: 1 1 calc(50% - 10px);
                min-width: 150px;
            }
            .section-divider {
                margin: 36px 0;
            }
        }

        @media (max-width: 640px) {
            

            .right-cards {
                flex-direction: column;
            }
            .grid-item {
                flex: 1 1 auto;
                min-width: unset;
            }
            .company-left h1 {
                font-size: 26px;
            }

            .preim-row {
                flex-direction: column;
                border-radius: 12px;
            }
            .preim-item {
                flex: 1 1 auto;
                padding: 14px 16px;
                gap: 14px;
            }
            .preim-item svg {
                width: 36px;
                height: 36px;
            }
            .preim-item .top-text {
                font-size: 15px;
                height: 18px;
            }
            .preim-item .bottom-text {
                font-size: 12px;
            }
            .preim-item:last-child .top-text {
                font-size: 12.5px;
                height: 16px;
            }

            .tech-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
            .service-item .number {
                font-size: 26px;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }
            .news-item .news-image {
                max-width: 100% !important;
                min-height: 200px !important;
                aspect-ratio: 13/10;
            }
            .news-item .news-image img {
                min-height: 200px;
            }

            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .partner-item {
                padding: 16px 12px 16px;
                min-height: 120px;
            }
            .partner-item .logo {
                height: 120px;
                max-width: 120px;
            }
            .partner-item .logo img {
                width: 120px;
                height: 120px;
            }
            .partner-item .name {
                font-size: 12px;
            }

            .cta-card {
                border-radius: 18px;
            }
            .cta-left {
                padding: 32px 24px 20px;
            }
            .cta-heading {
                font-size: 28px;
                letter-spacing: -0.8px;
            }
            .cta-subtitle {
                font-size: 14px;
            }
            .cta-right {
                padding: 16px 24px 40px;
            }
            .cta-form-heading {
                font-size: 20px;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .cta-disclaimer {
                padding: 0 24px 24px;
                font-size: 11px;
            }
            .cta-logo {
                margin-bottom: 24px;
            }
            .section-divider {
                margin: 28px 0;
            }
        }

        @media (max-width: 480px) {
            
            .company-left h1 {
                font-size: 24px;
            }
            .grid-item .icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            .grid-item h3 {
                font-size: 15px;
            }
            .tech-heading-left h2 {
                font-size: 20px;
            }
            .services-heading-left h2 {
                font-size: 20px;
            }
            .news-heading-left h2 {
                font-size: 20px;
            }
            .cta-heading {
                font-size: 24px;
            }
            .section-divider {
                margin: 20px 0;
            }
            .partners-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .partner-item .logo {
                height: 100px;
                max-width: 100px;
            }
            .partner-item .logo img {
                width: 100px;
                height: 100px;
            }
        }

        /* Directions grid */
        .directions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .direction-card {
            background: #f7faff;
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid #eaf0f6;
            transition: all 0.25s ease;
        }
        .direction-card:hover {
            border-color: #b8cfe0;
            box-shadow: 0 8px 24px -12px rgba(0, 60, 130, 0.10);
        }
        .direction-card .num {
            font-size: 32px;
            font-weight: 700;
            color: #004a99;
            opacity: 0.65;
            line-height: 1;
            margin-bottom: 8px;
        }
        .direction-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: #0b1a2b;
            margin-bottom: 10px;
        }
        .direction-card p {
            font-size: 14px;
            line-height: 1.6;
            color: #455b70;
            margin: 0;
        }
        .directions-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 32px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e8edf3;
        }

        /* Why-us section */
        .why-section {
            margin: 50px 0;
            background: #f7faff;
            border-radius: 20px;
            padding: 60px 50px;
            border: 1px solid #eaf0f6;
        }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .seo-text-section {
            margin: 50px 0 30px;
            padding: 40px;
            background: #ffffff;
            border-radius: 20px;
            border: 1px solid #e8edf3;
        }

        @media (max-width: 640px) {
            .directions-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .directions-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .why-section {
                padding: 32px 20px;
                margin: 30px 0;
                border-radius: 16px;
            }
            .why-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .seo-text-section {
                padding: 24px 16px;
                margin: 30px 0 20px;
                border-radius: 16px;
            }
        }

        /* ===== SWIPER CRITICAL CSS (first paint) ===== */
        .swiper{width:100%;overflow:hidden;position:relative}
        .swiper-wrapper{display:flex;width:100%;transition:transform .3s ease}
        .swiper-slide{flex-shrink:0;width:100%;position:relative}
        .hero .swiper-pagination{position:absolute!important;bottom:1rem;z-index:10}

        /* ===== ACCESSIBILITY: touch targets + focus ===== */
        .read-link,
        .news-item .read-link,
        .link-arrow,
        .all-link,
        .contact-link {
            min-height: 44px;
            min-width: 44px;
            display: inline-flex;
            align-items: center;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .read-link:hover,
        .news-item .read-link:hover,
        .link-arrow:hover,
        .all-link:hover,
        .contact-link:hover {
            background: rgba(0, 102, 204, 0.08);
        }
        .swiper-button-next,
        .swiper-button-prev {
            min-width: 44px;
            min-height: 44px;
        }
        .hero-product-content .btn {
            margin-top: 12px;
        }
        .hero-products .hero-product-1 .btn,
        .hero-products .hero-product-2 .btn {
            margin-top: 16px;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 3px solid #0066cc;
            outline-offset: 2px;
        }