:root {
            --color-primary: #FF5722;
            --color-primary-dark: #D84315;
            /* Оранжевый */
            --color-primary-hover: #e64a19;
            --color-dark: #0F172A;

            --color-card-bg: #1E293B;
            /* Темно-синий фон */
            --color-dark-glass: rgba(15, 23, 42, 0.9);
            --color-text: #F8FAFC;
            /* Белый текст */
            --color-text-muted: #94A3B8;
            /* Серый текст */
            --color-border: rgba(255, 255, 255, 0.1);
            --base-font-size: 14px;
            --container-width: 1200px;
            --header-height: 80px;
            --transition: all 0.3s ease;
            --font-main: 'Manrope', sans-serif;

            --radius-form: 16px;

            --radius-xl: 32px;
            --radius-md: 12px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
  scroll-behavior: smooth;
}

        body {
            font-family: var(--font-main);
            background-color: var(--color-dark);
            color: var(--color-text);
            line-height: 1.5;
            font-size: var(--base-font-size);
            -webkit-font-smoothing: antialiased;
        }

        body.menu-open {
            overflow: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        h2 {
            font-size: clamp(2.25rem, 2.118rem + 0.4225vw, 2.625rem);
        }

        button {
            border: none;
            background: none;
            cursor: pointer;
            font-family: inherit;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        /* --- HEADER --- */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            z-index: 1000;
            background: rgba(15, 23, 42, 0.85);
            /* Полупрозрачность */
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
            display: flex;
            align-items: center;
            transition: var(--transition);
        }

        body.menu-open .header {
            z-index: 3333;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        /* Лого блок */
        .logo-block {
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            z-index: 1002;
            /* Чтобы лого было над шторкой меню */
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .logo:hover .logo-icon {
            transform: rotate(12deg);
        }

        .logo-text {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: white;
        }

        .logo-separator {
            width: 1px;
            height: 32px;
            background-color: #475569;
        }

        .logo-desc {
            font-size: 12px;
            line-height: 1.2;
            color: var(--color-text-muted);
            max-width: 160px;
        }

        /* Навигация (Десктоп) */
        .nav-desktop {
            display: flex;
            gap: 32px;
        }

        .nav-link {
            font-size: 14px;
            font-weight: 600;
            color: #CBD5E1;
            position: relative;
        }

        .nav-link:hover {
            color: var(--color-primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Правая часть (Контакты) */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .phone-block {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            line-height: 1.2;
            white-space: nowrap;
        }

        .phone-number {
            font-weight: 700;
            font-size: 16px;
            color: white;
        }

        .phone-block:hover .phone-number {
            color: var(--color-primary);
        }

        .phone-label {
            font-size: 11px;
            color: var(--color-text-muted);
        }

        .btn-outline {
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition);
            white-space: nowrap;
        }

        .btn-outline:hover {
            background-color: var(--color-primary);
            border-color: var(--color-primary);
        }

        /* --- КНОПКА ГАМБУРГЕР (Modern) --- */
        .mobile-toggle {
            display: none;
            width: 48px;
            height: 48px;
            position: relative;
            z-index: 1002;
            /* Поверх шторки */
            align-items: center;
            justify-content: center;
        }

        .burger {
            width: 28px;
            height: 20px;
            position: relative;
        }

        .burger span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: white;
            position: absolute;
            border-radius: 2px;
            transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        }

        .burger span:nth-child(1) {
            top: 0;
        }

        .burger span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
            width: 70%;
            right: 0;
        }

        .burger span:nth-child(3) {
            bottom: 0;
        }

        /* Анимация в крестик */
        .mobile-toggle.is-active .burger span:nth-child(1) {
            transform: rotate(45deg);
            top: 9px;
        }

        .mobile-toggle.is-active .burger span:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
        }

        .mobile-toggle.is-active .burger span:nth-child(3) {
            transform: rotate(-45deg);
            bottom: 9px;
        }

        /* --- ПОЛНОЭКРАННОЕ МОБИЛЬНОЕ МЕНЮ --- */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(15, 23, 42, 0.96);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 1001;
            /* Под логотипом и кнопкой, но над контентом */
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px;

            /* Скрыто по умолчанию */
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mobile-menu-overlay.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
        }

        /* Фоновая графика в меню */
        .menu-bg-graphic {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100vw;
            height: 100vw;
            background: radial-gradient(circle, rgba(255, 87, 34, 0.05) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 2vh;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        /* Ссылки в меню */
        .mobile-nav-link {
            font-size: 2.5rem;
            /* Крупный шрифт */
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.4s ease;
        }

        .mobile-nav-link:hover {
            color: var(--color-primary);
            transform: scale(1.05);
        }

        /* Анимация появления пунктов (Stagger) */
        .mobile-menu-overlay.is-open .mobile-nav-link {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu-overlay.is-open .mobile-nav-link:nth-child(1) {
            transition-delay: 0.1s;
        }

        .mobile-menu-overlay.is-open .mobile-nav-link:nth-child(2) {
            transition-delay: 0.15s;
        }

        .mobile-menu-overlay.is-open .mobile-nav-link:nth-child(3) {
            transition-delay: 0.2s;
        }

        .mobile-menu-overlay.is-open .mobile-nav-link:nth-child(4) {
            transition-delay: 0.25s;
        }

        .mobile-nav-footer {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.3s;
            /* Задержка после пунктов */
        }

        .mobile-menu-overlay.is-open .mobile-nav-footer {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-phone {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-primary);
        }

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            /* Компенсация шапки */
            padding-bottom: 60px;
            overflow: hidden;
        }

        /* Фон */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Градиент поверх картинки */
            background: linear-gradient(90deg, #0F172A 0%, rgba(15, 23, 42, 0.95) 50%, rgba(15, 23, 42, 0.6) 100%);
            z-index: 1;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            /* Левая часть чуть шире */
            gap: 60px;
            position: relative;
            z-index: 2;
            align-items: center;
        }

        /* Левая колонка */
        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            background: rgba(255, 87, 34, 0.1);
            border: 1px solid rgba(255, 87, 34, 0.2);
            border-radius: 50px;
            width: fit-content;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background-color: var(--color-primary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .badge-text {
            color: var(--color-primary);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero-title {
            font-size: 3.5rem;
            /* ~56px */
            line-height: 1.1;
            font-weight: 800;
        }

        .text-orange {
            color: var(--color-primary);
        }

        .text-underline {
            text-decoration: underline;
            text-decoration-color: rgba(255, 87, 34, 0.5);
            text-decoration-thickness: 4px;
            text-underline-offset: 6px;
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--color-text-muted);
            border-left: 4px solid #334155;
            padding-left: 20px;
            max-width: 600px;
        }

        /* Триггеры (Карточки) */
        .triggers-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 10px;
        }

        .trigger-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 16px;
            transition: var(--transition);
        }

        .trigger-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        .trigger-icon {
            color: var(--color-primary);
            margin-bottom: 12px;
        }

        .trigger-title {
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 4px;
        }

        .trigger-desc {
            font-size: 12px;
            color: var(--color-text-muted);
            line-height: 1.3;
        }

        /* Кнопки CTA */
        .cta-group {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
        }

        .btn-primary {
            background-color: var(--color-primary);
            color: white;
            font-size: 18px;
            font-weight: 700;
            padding: 16px 32px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 25px rgba(255, 87, 34, 0.3);
            transition: var(--transition);
            text-transform: uppercase;
        }

        .btn-primary:hover {
            background-color: var(--color-primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(255, 87, 34, 0.4);
        }

        .cta-note {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--color-text-muted);
        }

        /* Правая колонка (Визуал) */
        .hero-visual {
            position: relative;
            height: 100%;
            min-height: 500px;
            width: 100%;
        }

        .visual-frame {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 100%;
            height: 100%;
            border: 2px solid rgba(255, 87, 34, 0.2);
            z-index: 0;
        }

        .visual-img-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }

        .visual-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s ease;
        }

        .visual-img-container:hover img {
            transform: scale(1.05);
        }

        .status-card {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: var(--color-dark-glass);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 16px;
            z-index: 2;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        /* --- АДАПТИВНОСТЬ (MEDIA QUERIES) --- */

        /* 1. Intermediate / Tablet Breakpoint (до 1100px) */
        @media (max-width: 1100px) {

            .logo-separator,
            .logo-desc {
                display: none;
            }

            .nav-desktop {
                gap: 20px;
            }

            .container {
                padding: 0 20px;
            }

            .hero-title {
                font-size: 2.8rem;
            }
        }

        /* 2. Tablet / Small Laptop (до 900px) */
        @media (max-width: 900px) {

            .nav-desktop,
            .header-actions {
                display: none;
            }

            .mobile-toggle {
                display: flex;
            }

            /* Показываем бургер */

            /* Hero сетка в одну колонку */
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-content {
                align-items: center;
            }

            .triggers-grid {
                order: 5;
                margin-top: 30px;
                text-align: left;
                gap: 12px;
            }

            .hero-subtitle {
                border-left: none;
                border-top: 2px solid #334155;
                padding-left: 0;
                padding-top: 15px;
                text-align: center;
            }

            .cta-group {
                flex-direction: column;
                width: 100%;
                margin-top: 10px;
            }


            .btn-primary {
                width: 100%;
                justify-content: center;
            }

            .hero-visual {
                min-height: 300px;
                margin-top: 20px;
            }

            .visual-frame {
                display: none;
            }
        }

        /* 3. Mobile (до 600px) */
        @media (max-width: 600px) {
            .triggers-grid {
                grid-template-columns: 1fr;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .mobile-nav-link {
                font-size: 2rem;
                /* Чуть меньше на маленьких экранах */
            }
        }

        /* Анимации */
        @keyframes pulse {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .delay-1 {
            animation-delay: 0.1s;
        }

        .delay-2 {
            animation-delay: 0.2s;
        }

        .delay-3 {
            animation-delay: 0.3s;
        }

        .delay-4 {
            animation-delay: 0.4s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .philosophy {
            padding: 80px 20px;
            position: relative;
            background-color: var(--color-dark);
            overflow: hidden;
        }

        /* Декоративный фон (сетка) */
        .philosophy::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.5;
            pointer-events: none;
        }

        .philosophy__container {
            max-width: var(--container-width);
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .philosophy__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            /* Центрируем по вертикали */
        }

        /* Левая колонка: Текстовый контент */
        .philosophy__content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .philosophy__badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--color-border);
            color: var(--color-text-muted);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            width: fit-content;
        }

        .philosophy__title {
            font-weight: 800;
            line-height: 1.1;
        }

        .philosophy__highlight {
            color: var(--color-primary);
        }

        .philosophy__text {
            color: var(--color-text-muted);
            font-size: 16px;
            line-height: 1.6;
        }

        /* Правая колонка: Визуал (Формула) */
        .philosophy__visual {
            position: relative;
        }

        /* Карточка с формулой */
        .philosophy__formula-card {
            background: var(--color-dark-lighter);
            border: 1px solid var(--color-border);
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            position: relative;
        }

        /* Декоративная линия сверху карточки */
        .philosophy__formula-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
        }

        .philosophy__formula-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .philosophy__list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .philosophy__item {
            display: flex;
            align-items: center;
            /* Центрируем по вертикали для мобильных */
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 16px;
            transition: var(--transition);
        }

        .philosophy__item:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 87, 34, 0.3);
            transform: translateX(5px);
        }

        /* Левая часть элемента списка (Иконка + Заголовок) */
        .philosophy__item-head {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 160px;
            /* Фиксированная ширина для выравнивания "=" */
        }

        .philosophy__icon-box {
            width: 36px;
            height: 36px;
            background: rgba(255, 87, 34, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
        }

        .philosophy__item-title {
            font-weight: 700;
            font-size: 15px;
            color: white;
        }

        /* Знак равно */
        .philosophy__equal {
            color: var(--color-text-muted);
            font-weight: 300;
            font-size: 24px;
            padding: 0 16px;
        }

        /* Правая часть (Результат) */
        .philosophy__item-result {
            color: #CBD5E1;
            font-size: 14px;
            font-weight: 500;
        }

        /* Блок Вывода (Conclusion) */
        .philosophy__conclusion {
            margin-top: 20px;
            padding: 24px;
            background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 87, 34, 0.02) 100%);
            border-left: 4px solid var(--color-primary);
            border-radius: 0 12px 12px 0;
        }

        .philosophy__conclusion-text {
            color: white;
            font-weight: 600;
            font-size: 18px;
            line-height: 1.4;
        }

        .philosophy__conclusion-sub {
            display: block;
            margin-top: 8px;
            font-size: 14px;
            color: var(--color-text-muted);
            font-weight: 400;
        }

        /* --- АДАПТИВНОСТЬ --- */
        @media (max-width: 900px) {
            .philosophy__grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .philosophy__formula-card {
                padding: 24px;
            }

            .philosophy__item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .philosophy__equal {
                display: none;
                /* Скрываем "=" на мобильных */
            }

            .philosophy__item-head {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                padding-bottom: 8px;
                margin-bottom: 4px;
            }
        }

        .services {
            padding: 100px 20px;
            background-color: var(--color-dark);
            position: relative;
        }

        .services__container {
            max-width: var(--container-width);
            margin: 0 auto;
        }

        /* Заголовок секции */
        .services__header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .services__badge {
            display: inline-block;
            color: var(--color-primary);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
            border-bottom: 2px solid var(--color-primary);
            padding-bottom: 4px;
        }

        .services__title {
            font-weight: 800;
            line-height: 1.1;
            color: var(--color-text);
        }

        /* Сетка карточек */
        .services__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* Карточка услуги */
        .service-card {
            background-color: var(--color-card-bg);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
            z-index: 1;
        }

        /* Эффект при наведении */
        .service-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 87, 34, 0.5);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* Градиентная подсветка сверху карточки */
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
            opacity: 0;
            transition: var(--transition);
        }

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

        /* Фоновая цифра (01, 02...) */
        .service-card__number {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 120px;
            font-weight: 800;
            color: white;
            opacity: 0.03;
            line-height: 1;
            z-index: -1;
            transition: var(--transition);
            user-select: none;
        }

        .service-card:hover .service-card__number {
            opacity: 0.08;
            color: var(--color-primary);
            transform: scale(1.1);
        }

        /* Иконка */
        .service-card__icon-wrapper {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--color-primary);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }

        .service-card:hover .service-card__icon-wrapper {
            background: var(--color-primary);
            color: white;
            border-color: var(--color-primary);
        }

        .service-card__title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--color-text);
        }

        .service-card__desc {
            font-size: 15px;
            color: var(--color-text-muted);
            line-height: 1.6;
            margin-bottom: 24px;
            flex-grow: 1;
            /* Чтобы кнопки (если будут) прижались к низу, но здесь просто выравнивает высоту */
        }

        /* Список особенностей внутри карточки */
        .service-list {
            list-style: none;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
        }

        .service-list__item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: #CBD5E1;
            margin-bottom: 12px;
        }

        .service-list__item:last-child {
            margin-bottom: 0;
        }

        .service-list__dot {
            width: 6px;
            height: 6px;
            background-color: var(--color-primary);
            border-radius: 50%;
            margin-top: 8px;
            /* Выравнивание по первой строке текста */
            flex-shrink: 0;
        }

        /* Декоративная линия связи (между карточками на десктопе) */
        .services__connector {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 1px;
            border-top: 2px dashed rgba(255, 255, 255, 0.05);
            z-index: 0;
            pointer-events: none;
            display: none;
            /* Пока скрыл, так как карточки высокие, может смотреться грязно */
        }

        /* --- АДАПТИВНОСТЬ --- */
        @media (max-width: 960px) {
            .services__grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services__title {
                font-size: 32px;
            }
        }

        @media (max-width: 640px) {
            .services__grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                padding: 30px 24px;
            }

            .service-card__number {
                font-size: 80px;
                right: 10px;
                top: 10px;
            }
        }

        .equipment {
            padding: 100px 20px;
            background-color: var(--color-dark);
            position: relative;
            overflow: hidden;
        }

        /* Фоновый декоративный элемент (след шины/гусеницы) */
        .equipment::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 100%;
            background: repeating-linear-gradient(45deg,
                    rgba(255, 255, 255, 0.01),
                    rgba(255, 255, 255, 0.01) 10px,
                    transparent 10px,
                    transparent 20px);
            pointer-events: none;
            z-index: 0;
        }

        .equipment__container {
            max-width: var(--container-width);
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Сетка макета: Слева текст/промо, Справа карточки */
        .equipment__layout {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
        }

        /* Левая колонка */
        .equipment__info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .equipment__badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--color-primary);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 0.05em;
        }

        .equipment__title {
            font-weight: 800;
            line-height: 1.1;
        }

        .equipment__desc {
            font-size: 16px;
            color: var(--color-text-muted);
            line-height: 1.6;
        }

        /* Блок Акции "Ускорение" */
        .promo-block {
            margin-top: 20px;
            background: linear-gradient(145deg, rgba(255, 87, 34, 0.1), rgba(255, 87, 34, 0.02));
            border: 1px solid rgba(255, 87, 34, 0.3);
            border-radius: var(--radius-lg);
            padding: 24px;
            position: relative;
        }

        .promo-block__header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .promo-block__icon {
            color: var(--color-primary);
            animation: bounce 2s infinite;
        }

        .promo-block__title {
            font-size: 18px;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
        }

        .promo-block__text {
            color: #CBD5E1;
            margin-bottom: 20px;
        }

        .promo-block__highlight {
            color: var(--color-primary);
            font-weight: 700;
        }

        .btn-primary {
            background-color: var(--color-primary);
            color: white;
            font-size: 16px;
            font-weight: 700;
            padding: 14px 28px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            width: 100%;
            justify-content: center;
        }

        .btn-primary:hover {
            background-color: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
        }

        /* Правая колонка: Сетка техники */
        .equipment__grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        /* Карточка техники */
        .tech-card {
            background-color: var(--color-card-bg);
            overflow: hidden;
            border: 1px solid var(--color-border);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            group: card;
            position: relative;
        }

        .tech-card:hover {
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-5px);
        }

        /* Первая карточка широкая (на всю ширину сетки) */
        .tech-card--wide {
            grid-column: span 2;
        }

        .tech-card__image-box {
            position: relative;
            height: 240px;
            overflow: hidden;
        }

        .tech-card--wide .tech-card__image-box {
            height: 300px;
        }

        .tech-card__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .tech-card:hover .tech-card__img {
            transform: scale(1.05);
        }

        /* Затемнение картинки */
        .tech-card__overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
            z-index: 1;
        }

        /* Текст внутри карточки */
        .tech-card__content {
            padding: 20px;
            position: absolute;
            z-index: 2;
            bottom: 0;
            /* Наезжаем на картинку */
        }

        .tech-card__title {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 6px;
        }

        .tech-card__desc {
            font-size: 14px;
            color: var(--color-text-muted);
            line-height: 1.4;
        }

        /* --- АДАПТИВНОСТЬ --- */
        @media (max-width: 900px) {
            .equipment__layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .equipment__grid {
                grid-template-columns: 1fr;
                /* Одна колонка на мобильных */
            }

            .tech-card--wide {
                grid-column: span 1;
            }

            .tech-card__image-box,
            .tech-card--wide .tech-card__image-box {
                height: 220px;
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        .b2b-section {
            padding: 100px 20px;
            background-color: var(--color-dark);
            position: relative;
            overflow: hidden;
        }

        /* Фоновая сетка (Blueprint) */
        .b2b-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        .b2b-container {
            max-width: var(--container-width);
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Заголовок с техно-стилем */
        .b2b-header {
            margin-bottom: 60px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 700px;
        }

        .b2b-label {
            font-family: var(--font-tech);
            color: var(--color-primary);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.05em;
            /* Чуть меньше разрядка для кириллицы */
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
        }

        .b2b-label::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--color-primary);
            box-shadow: 0 0 10px var(--color-primary);
        }

        .b2b-title {
            font-weight: 800;
            line-height: 1.1;
        }

        .b2b-subtitle {
            font-size: 18px;
            color: var(--color-text-muted);
            border-left: 2px solid var(--color-primary);
            padding-left: 20px;
        }

        /* СЕТКА "HUD" МОДУЛЕЙ */
        .hud-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 24px;
        }

        /* Общий стиль модуля (карточки) */
        .hud-module {
            background: rgba(22, 32, 50, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 4px;
            /* Более строгие углы для техно-стиля */
            padding: 30px;
            position: relative;
            transition: var(--transition);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Уголки (Corner Markers) как в прицеле */
        .hud-module::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 10px;
            height: 10px;
            border-top: 2px solid rgba(255, 255, 255, 0.2);
            border-left: 2px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .hud-module::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 10px;
            height: 10px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
            border-right: 2px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .hud-module:hover {
            background: rgba(22, 32, 50, 0.9);
            border-color: rgba(255, 87, 34, 0.4);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
            transform: translateY(-5px);
        }

        .hud-module:hover::before,
        .hud-module:hover::after {
            border-color: var(--color-primary);
            width: 20px;
            height: 20px;
        }

        /* -- Конфигурация сетки -- */

        /* Модуль 1: Финансы (Большой) */
        .module-finance {
            grid-column: span 7;
            min-height: 280px;
        }

        /* Модуль 2: Бонусы (Вертикальный) */
        .module-bonus {
            grid-column: span 5;
            background: linear-gradient(145deg, rgba(255, 87, 34, 0.1), rgba(22, 32, 50, 0.8));
            border-color: rgba(255, 87, 34, 0.2);
        }

        /* Модуль 3: Плечо (Средний) */
        .module-leverage {
            grid-column: span 5;
            min-height: 240px;
        }

        /* Модуль 4: Дисциплина (Средний) */
        .module-discipline {
            grid-column: span 7;
        }

        /* -- Внутренности модулей -- */

        .hud-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .hud-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            /* Hexagon clip-path */
            clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
        }

        .hud-id {
            font-family: var(--font-tech);
            font-size: 10px;
            color: rgba(255, 255, 255, 0.3);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .hud-title {
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
            display: block;
        }

        .hud-desc {
            font-size: 14px;
            color: var(--color-text-muted);
            line-height: 1.5;
            max-width: 90%;
        }

        /* Индикаторы статуса (внизу карточки) */
        .hud-status-bar {
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .status-label {
            font-family: var(--font-tech);
            font-size: 11px;
            color: #64748B;
            text-transform: uppercase;
        }

        .status-value {
            font-family: var(--font-tech);
            font-size: 12px;
            font-weight: 700;
            color: #10B981;
            /* Зеленый успех */
            display: flex;
            align-items: center;
            gap: 6px;
            text-transform: uppercase;
        }

        .status-dot {
            width: 6px;
            height: 6px;
            background: #10B981;
            border-radius: 50%;
            box-shadow: 0 0 8px #10B981;
        }

        /* CTA Блок (Внизу) */
        .b2b-cta-wrapper {
            margin-top: 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 30px;
            background: rgba(255, 87, 34, 0.05);
            border: 1px dashed rgba(255, 87, 34, 0.3);
            border-radius: 4px;
        }

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

        .cta-big {
            font-size: 20px;
            font-weight: 700;
            color: white;
        }

        .cta-small {
            font-size: 14px;
            color: var(--color-text-muted);
        }

        .btn-glow {
            background: var(--color-primary);
            color: white;
            font-weight: 700;
            padding: 16px 32px;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            border-radius: 50px;
        }

        .btn-glow:hover {
            background: #FF7043;
            box-shadow: 0 0 30px rgba(255, 87, 34, 0.4);
            transform: translateX(5px);
        }

        /* --- АДАПТИВНОСТЬ --- */
        @media (max-width: 900px) {
            .hud-grid {
                grid-template-columns: 1fr;
                /* Одна колонка */
                gap: 16px;
            }

            .module-finance,
            .module-bonus,
            .module-leverage,
            .module-discipline {
                grid-column: span 1;
                min-height: auto;
            }

            .b2b-header {
                margin-bottom: 40px;
            }

            .b2b-title {
                font-size: 32px;
            }

            .b2b-cta-wrapper {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .btn-glow {
                width: 100%;
                justify-content: center;
            }
        }

        .algorithm {
            padding: 100px 20px;
            background-color: var(--color-dark);
            position: relative;
            overflow: hidden;
        }

        .algorithm__container {
            max-width: var(--container-width);
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Заголовок */
        .algorithm__header {
            text-align: center;
            margin-bottom: 80px;
        }

        .algorithm__badge {
            display: inline-block;
            color: var(--color-primary);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
            border: 1px solid rgba(255, 87, 34, 0.3);
            padding: 6px 12px;
            border-radius: 50px;
            background: rgba(255, 87, 34, 0.05);
        }

        .algorithm__title {
            font-weight: 800;
            line-height: 1.1;
        }

        /* --- Timeline (Шкала времени) --- */

        .timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
        }

        /* Линия траектории (Фон) */
        .timeline::before {
            content: '';
            position: absolute;
            top: 40px;
            /* По центру иконок */
            left: 0;
            width: 100%;
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 0;
        }

        /* Линия прогресса (Декоративная оранжевая часть) */
        .timeline::after {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 80%;
            /* Имитация прогресса */
            height: 2px;
            background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
            z-index: 0;
            opacity: 0.5;
        }

        /* Этап (Step) */
        .step {
            position: relative;
            z-index: 1;
            width: 18%;
            /* 5 шагов = ~20% */
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            group: step;
        }

        /* Маркер (Круг с иконкой) */
        .step__marker {
            width: 80px;
            height: 80px;
            background-color: var(--color-dark);
            border: 2px solid var(--color-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: var(--transition);
            color: var(--color-text-muted);
            box-shadow: 0 0 0 8px var(--color-dark);
            /* "Отступ" от линии */
            position: relative;
        }

        /* Внутренний круг для эффекта */
        .step__marker::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid var(--color-primary);
            opacity: 0;
            transform: scale(1.2);
            transition: var(--transition);
        }

        .step:hover .step__marker {
            border-color: var(--color-primary);
            color: white;
            background-color: rgba(255, 87, 34, 0.1);
            transform: scale(1.1);
        }

        .step:hover .step__marker::after {
            opacity: 0.3;
            transform: scale(1.4);
        }

        /* Иконка */
        .step__icon {
            transition: var(--transition);
        }

        /* Контент этапа */
        .step__content {
            padding: 0 10px;
        }

        .step__meta-title {
            color: var(--color-primary);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 4px;
            display: block;
        }

        .step__real-title {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .step__desc {
            color: var(--color-text-muted);
            line-height: 1.5;
        }

        /* Номер этапа (фоновый) */
        .step__number {
            position: absolute;
            top: -20px;
            right: 0;
            font-size: 40px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.03);
            pointer-events: none;
            transition: var(--transition);
        }

        .step:hover .step__number {
            color: rgba(255, 87, 34, 0.1);
            transform: translateY(-10px);
        }

        /* --- АДАПТИВНОСТЬ --- */
        @media (max-width: 900px) {
            .algorithm {
                padding: 60px 20px;
            }

            .timeline {
                flex-direction: column;
                gap: 40px;
            }

            /* Вертикальная линия вместо горизонтальной */
            .timeline::before {
                top: 0;
                left: 40px;
                /* По центру маркера */
                width: 2px;
                height: 100%;
            }

            .timeline::after {
                top: 0;
                left: 40px;
                width: 2px;
                height: 50%;
                /* Прогресс сверху вниз */
                background: linear-gradient(to bottom, var(--color-primary) 0%, transparent 100%);
            }

            .step {
                width: 100%;
                flex-direction: row;
                text-align: left;
                align-items: flex-start;
                gap: 20px;
            }

            .step__marker {
                flex-shrink: 0;
                margin-bottom: 0;
                width: 80px;
                /* Фиксируем размер */
            }

            .step__number {
                right: 20px;
                top: 0;
            }

            .step__content {
                padding-top: 10px;
            }
        }

        .final-section {
            padding: 100px 20px;
            background-color: var(--color-dark);
            position: relative;
        }

        /* Фоновый эффект (Свечение снизу) */
        .final-section::after {
            content: '';
            position: absolute;
            bottom: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 87, 34, 0.15) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        .final-section-container {
            max-width: var(--container-width);
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .final-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        /* --- ЛЕВАЯ КОЛОНКА (Текст + Контакты) --- */
        .final-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .final-title {
            font-weight: 800;
            line-height: 1.1;
        }

        .final-desc {
            font-size: 18px;
            color: var(--color-text-muted);
            line-height: 1.6;
            max-width: 500px;
        }

        /* Блок контактов */
        .contact-block {
            margin-top: 20px;
            padding: 30px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--color-border);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 87, 34, 0.1);
            color: var(--color-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-label {
            display: block;
            font-size: 13px;
            color: var(--color-text-muted);
            margin-bottom: 4px;
        }

        .contact-value {
            font-size: 20px;
            font-weight: 700;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-value:hover {
            color: var(--color-primary);
        }

        /* --- ПРАВАЯ КОЛОНКА (Стилизация вашей формы) --- */

        /* Обертка формы (Стекло) */
        .form-wrapper {
            background: rgba(30, 41, 59, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        /* Декор углов формы */
        .form-wrapper::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
            opacity: 0.5;
        }

        /* Стилизация классов вашей формы */
        .feedback-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative;
        }

        .form-group label {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-text-muted);
            margin-left: 4px;
        }

        /* Инпуты */
        .form-input {
            width: 100%;
            background-color: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 16px;
            font-family: var(--font-main);
            font-size: 16px;
            color: white;
            transition: var(--transition);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--color-primary);
            background-color: rgba(15, 23, 42, 0.8);
            box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.1);
        }

        /* Переключатели связи (Tabs) */
        .form-group__tel-type {
            display: flex;
            gap: 4px;
            background: rgba(15, 23, 42, 0.6);
            padding: 4px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            margin-bottom: 8px;
        }

        .form-group__tel-type-item {
            flex: 1;
            text-align: center;
            padding: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--color-text-muted);
            cursor: pointer;
            border-radius: 8px;
            transition: var(--transition);
        }

        .form-group__tel-type-item:hover {
            color: white;
            background: rgba(255, 255, 255, 0.05);
        }

        /* Активный таб */
        .form-group__tel-type-item_a {
            background-color: var(--color-primary);
            color: white;
            box-shadow: 0 2px 8px rgba(255, 87, 34, 0.4);
        }

        .form-group__tel-type-item_a:hover {
            background-color: var(--color-primary-dark);
        }

        /* Кнопка */
        .button--atlas {
            width: 100%;
            background: var(--color-primary);
            color: white;
            font-family: var(--font-main);
            font-size: 16px;
            font-weight: 700;
            padding: 18px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            ;
            box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
        }

        .button--atlas:hover {
            background-color: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(255, 87, 34, 0.4);
        }

        /* Эффект блика на кнопке */
        .button--atlas::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .button--atlas:hover::after {
            left: 100%;
        }

        /* Соглашение (Footer text) */
        .form-group_last-text {
            font-size: 12px;
            color: rgba(148, 163, 184, 0.6);
            text-align: center;
            line-height: 1.4;
        }

        .form-group_last-text a {
            color: rgba(148, 163, 184, 0.8);
            text-decoration: underline;
            transition: var(--transition);
        }

        .form-group_last-text a:hover {
            color: var(--color-primary);
        }

        /* Ошибки */
        .error-message {
            font-size: 12px;
            margin-top: 4px;
        }

        .result-message {
        margin-top: 15px;
        padding: 15px;
        border-radius: 10px;
        font-size: 14px;
        text-align: center;
        animation: fadeIn 0.5s ease;
    }
    .result-message.success {
        background: rgba(34, 197, 94, 0.2);
        border: 1px solid rgba(34, 197, 94, 0.4);
        color: #86efac;
    }
    .result-message.error {
        background: rgba(239, 68, 68, 0.2);
        border: 1px solid rgba(239, 68, 68, 0.4);
        color: #fca5a5;
    }
    /* Скрываем поле-ловушку для ботов */
    .honeypot-field {
        display: none !important;
        opacity: 0;
        position: absolute;
        left: -9999px;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(5px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* 1. Улучшенная скрытая ловушка для ботов */
    .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        border: 0;
        padding: 0;
        clip: rect(0 0 0 0);
        overflow: hidden;
    }

    /* 2. Стили для красивого окна успеха */
    .form-content {
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .form-success-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        transform: scale(0.9);
        z-index: 10;
    }

    /* Состояние "Активно" для успеха */
    .form-wrapper.sent .form-content {
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
    }

    .form-wrapper.sent .form-success-overlay {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    /* Иконка галочки */
    .success-icon {
        width: 80px;
        height: 80px;
        background: var(--color-primary, #F97316); /* Оранжевый из твоего дизайна */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
    }
    .success-icon svg {
        width: 40px;
        height: 40px;
        color: white;
        stroke-width: 3;
    }

    .success-title {
        font-size: 24px;
        font-weight: 700;
        color: white;
        margin-bottom: 12px;
    }
    
    .success-text {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
    }

        /* --- FOOTER (Копирайт) --- */
        .site-footer {
            background-color: var(--color-dark-deep);
            padding: 30px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-inner {
            max-width: var(--container-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: #64748B;
        }

        /* --- АДАПТИВНОСТЬ --- */
        @media (max-width: 900px) {
            .final-section {
                padding: 60px 20px;
                overflow: hidden;
            }

            .final-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .final-title {
                font-size: 32px;
                text-align: center;
            }

            .final-desc {
                text-align: center;
                margin: 0 auto;
            }

            .contact-block {
                padding: 20px;
            }

            .form-wrapper {
                padding: 24px;
            }

            .footer-inner {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }