        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0d0f14;
            color: #fff;
            line-height: 1.6;
            scroll-behavior: smooth;
            overflow-y: scroll;
            height: 100vh;
        }

        /* На десктопе оставляем scroll-snap для всех секций */
        @media (min-width: 901px) {
            body {
                scroll-snap-type: y mandatory;
            }
            
            section {
                scroll-snap-align: start;
                scroll-snap-stop: always;
            }
            
            /* Для FAQ делаем snap в начало, но разрешаем скроллить дальше */
            #faq {
                scroll-snap-align: start;
                scroll-snap-stop: normal; 
            }
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #171922;
            z-index: 1000;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding: 0 24px;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .logo {
            width: 200px;
            height: 200px;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            overflow: hidden;
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        nav {
            display: flex;
            gap: 24px;
            font-size: 14px;
            opacity: .9;
        }

        nav a {
            position: relative;
            padding: 8px 0;
            transition: opacity 0.3s;
        }

        nav a:hover {
            opacity: 1;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg,#3b82f6,#06b6d4);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        .socials {
            display: flex;
            gap: 14px;
        }

        .socials a {
            opacity: .7;
            transition: .2s;
        }

        .socials a:hover {
            opacity: 1;
        }

        .header-buttons {
            display: flex;
            gap: 12px;
        }

        .header-btn {
            padding: 8px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
            transition: .25s;
            cursor: pointer;
        }

        .header-btn.apply {
            background: linear-gradient(135deg,#3b82f6,#06b6d4);
        }

        .header-btn.question {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .header-btn:hover {
            transform: translateY(-2px);
        }

        .header-btn.apply:hover {
            box-shadow: 0 10px 40px rgba(59,130,246,.3);
        }

        section {
            padding: 120px 0;
            scroll-margin-top: 72px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero {
            padding-top: 160px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        /* ОБНОВЛЕННЫЙ СТИЛЬ ПЕРВОЙ СЕКЦИИ */
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            order: 1;
        }

        .hero-image {
            order: 2;
            display: block;
        }

        h1 {
            font-size: 56px;
            line-height: 1.1;
            margin-bottom: 24px;
            text-align: left;
        }

        .hero p {
            font-size: 18px;
            opacity: .9;
            margin-bottom: 32px;
            text-align: left;
        }

        .cta {
            display: inline-block;
            background: linear-gradient(135deg,#3b82f6,#06b6d4);
            padding: 16px 36px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 16px;
            transition: .25s;
            cursor: pointer;
            text-align: center;
        }

        .cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(59,130,246,.3);
        }

        .image-wrapper {
            width: 100%;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
        }

        .image-wrapper img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
        }

        
        .why-image .image-wrapper,
        .skills-image .image-wrapper,
        .about-image .image-wrapper {
            height: 500px; 
        }

        .why, .skills, .about, .faq-section {
            background: linear-gradient(180deg,#0d0f14,#06080d);
            padding-top: 3rem; /* Уменьшил отступ сверху */
            align-items: flex-start; /* Контент начинается выше */
            padding-bottom: 8rem;
            
        }

        h2 {
            font-size: 42px;
            margin-bottom: 40px;
            text-align: left;
        }

        /* СТИЛЬ ДЛЯ ВТОРОЙ СЕКЦИИ */
        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .why-header {
            grid-column: 1 / -1;
            text-align: left;
        }

        .why-cards {
            display: flex;
            flex-direction: column;
            gap: 24px;
            order: 2;
        }

        .why-image {
            order: 1;
            display: block;
        }

        .why .card {
            background: linear-gradient(135deg,#11151e,#090c12);
            border-radius: 24px;
            padding: 32px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: transform 0.3s ease;
        }

        .why .card:hover {
            background: linear-gradient(135deg,#151b26,#0c101a);
            transform: translateY(-5px);
            transition: all 0.3s ease;
            transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
            
        }

        .why .card h3 {
            margin-bottom: 12px;
            font-size: 22px;
            text-align: left;
        }

        .why .card p {
            opacity: 0.8;
            line-height: 1.5;
            text-align: left;
        }

        /* СТИЛЬ ДЛЯ ТРЕТЬЕЙ СЕКЦИИ */
        .skills-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .skills-header {
            grid-column: 1 / -1;
            text-align: left;
            margin-bottom: 20px; 
        }

        .skills-items {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
            order: 1;
            align-self: center; 
        }

        .skills-items .item {
            padding: 22px 28px; 
            border-radius: 24px; 
            background: linear-gradient(135deg,#11151e,#090c12); 
            text-align: left;
            font-size: 19px; 
            opacity: 0.9;
            line-height: 1.6;
            border: 1px solid rgba(255,255,255,0.05); 
            transition: transform 0.3s ease; 
        }

        .skills-items .item:hover {
            background: linear-gradient(135deg,#151b26,#0c101a);
            transform: translateY(-5px);
            transition: all 0.3s ease;
            transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
        }

        .skills-image {
            order: 2;
            display: block;
        }

        /* СТИЛИ  ЧЕТВЕРТОЙ СЕКЦИИ */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .about-image {
            order: 1;
        }

        .about-content {
            order: 2;
        }

        .faq {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
            margin-top: 30px;
        }

        .faq div {
            padding: 18px 22px;
            border-radius: 14px;
            background: rgba(255,255,255,0.04);
            text-align: left;
        }

        .about .faq div {
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .about .faq div:hover {
            background: linear-gradient(135deg,#151b26,#0c101a);
            border-color: rgba(59, 130, 246, 0.3);
            transform: translateY(-5px);
            transition: all 0.3s ease;
            transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
        }
        /* СТИЛИ ДЛЯ ПЯТОЙ СЕКЦИИ */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: start;
        }

        .faq-items {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        /* ОДНА ПЛИТКА ДЛЯ ВСЕХ ВОПРОСОВ */
        .faq-container {
            background: rgba(255,255,255,0.04);
            border-radius: 24px;
            padding: 40px;
            border: 1px solid rgba(255,255,255,0.08);
            min-height: 400px;
        }

        .faq-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .faq-item {
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .faq-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .faq-question {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #fff;
            opacity: 0.95;
        }

        .faq-answer {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(255,255,255,0.8);
        }

        /* ДОПОЛНИТЕЛЬНЫЙ ОТСТУП СНИЗУ ДЛЯ FAQ ЧТОБЫ МОЖНО БЫЛО ПРОСКРОЛЛИТЬ */
        .faq-section {
            padding-bottom: 80px; 
        }

        .floating-btn {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg,#3b82f6,#06b6d4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            cursor: pointer;
            z-index: 1001;
            box-shadow: 0 10px 40px rgba(59,130,246,.4);
            transition: transform 0.3s, opacity 0.3s, bottom 0.3s;
            touch-action: manipulation;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .floating-btn.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .floating-btn:hover {
            transform: translateY(-5px) scale(1.05);
        }

        /* Стили для модального окна */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal {
            background: linear-gradient(135deg,#11151e,#090c12);
            border-radius: 24px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .modal h3 {
            font-size: 24px;
            margin-bottom: 20px;
            text-align: center;
        }

        .modal p {
            margin-bottom: 25px;
            opacity: 0.9;
            text-align: center;
        }

        .modal-input {
            width: 100%;
            padding: 16px 20px;
            margin-bottom: 20px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            color: white;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
        }

        .modal-input:focus {
            outline: none;
            border-color: #3b82f6;
            background: rgba(255,255,255,0.08);
        }

        .modal-input::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .modal .cta {
            width: 100%;
            text-align: center;
            padding: 16px;
            font-size: 16px;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 28px;
            cursor: pointer;
            opacity: 0.7;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .close-modal:hover {
            opacity: 1;
            background: rgba(255,255,255,0.1);
        }

        /* Индикатор активного раздела - только на десктопе */
        .section-indicator {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 999;
        }

        .indicator-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            transition: all 0.3s;
            cursor: pointer;
        }

        .indicator-dot.active {
            background: #3b82f6;
            transform: scale(1.3);
        }

        @media (max-width: 900px) {
            .hero-grid, .why-grid, .skills-grid, .about-grid, .faq-grid {
                grid-template-columns: 1fr;
            }

            .hero-content {
                order: 1;
            }

            /* СКРЫВАЕМ КАРТИНКИ НА МОБИЛЬНЫХ */
            .hero-image,
            .why-image,
            .skills-image,
            .about-image {
                display: none !important;
            }

            /* Корректируем структуру для второй секции */
            .why-header {
                order: 1;
            }

            .why-cards {
                order: 2;
            }

            /* Корректируем структуру для третьей секции */
            .skills-header {
                order: 1;
            }

            .skills-items {
                order: 2;
            }

            /* Корректируем структуру для четвертой секции */
            .about-image {
                order: 1;
            }

            .about-content {
                order: 2;
            }

            h1 {
                font-size: 40px;
                text-align: left; 
                margin-bottom: 20px;
            }

            h2 {
                font-size: 32px;
                text-align: left; 
                margin-bottom: 24px;
            }
            
            .skills h2 {
                margin-bottom: 20px;
            }
            
            .hero p {
                text-align: left; 
                margin-bottom: 24px;
            }
            
            .hero .cta {
                display: inline-block;
                text-align: center;
                margin: 0;
                width: auto;
                margin-top: 8px;
            }
            
            .section-indicator {
                display: none;
            }
            
            nav {
                display: none;
            }
            
            .image-wrapper {
                height: 300px;
            }
            
            section {
                padding: 80px 0;
                min-height: auto;
            }
            
            .hero {
                padding-top: 120px;
                min-height: auto;
                padding-bottom: 60px;
            }
            
            .floating-btn {
                width: 56px;
                height: 56px;
                right: 16px;
                bottom: 16px;
            }
            
            .header-buttons {
                display: none;
            }
            
            .modal {
                padding: 30px 24px;
                margin: 0 16px;
            }
            
            .close-modal {
                top: 15px;
                right: 15px;
            }
            
            /* Убираем отступы для карточек на мобильных */
            .why-cards {
                gap: 16px;
            }
            
            .why .card {
                padding: 24px;
            }
            
            /* Уменьшаем отступы для плиток в 3 секции на мобильных */
            .skills-items {
                gap: 12px;
            }
            
            .skills-items .item {
                padding: 16px 18px;
                font-size: 16px;
                border-radius: 14px;
            }
            
            /* Выравнивание текста в карточках по левому краю */
            .why .card h3,
            .why .card p,
            .skills-items .item {
                text-align: left;
            }
            
            /* Скрываем стандартный список */
            .skills ul {
                display: none;
            }
            
            .about h2,
            .about p {
                text-align: left; 
            }
            
            .about h2 {
                margin-bottom: 20px; 
            }
            
            .about p {
                margin-bottom: 20px;
            }
            
            /* Уменьшаем отступы в FAQ на мобильных */
            .faq {
                gap: 12px;
            }
            
            .faq div {
                padding: 16px 18px;
                font-size: 16px;
            }
            
            /* Уменьшаем отступы для FAQ на мобильных */
            .faq-items {
                gap: 16px;
            }
            
            .faq-container {
                padding: 24px;
                min-height: auto; 
            }
            
            .faq-list {
                gap: 20px;
            }
            
            .faq-question {
                font-size: 18px;
                padding: 20px 0;
            }
            
            .faq-answer {
                font-size: 15px;
            }
            
            /* Выравнивание текста в секции FAQ */
            .faq-section h2,
            .faq-question,
            .faq-answer {
                text-align: left; 
            }
            
            .faq-section h2 {
                margin-bottom: 24px; 
            }
            
            /* Уменьшаем отступы внутри карточек why */
            .why .card h3 {
                margin-bottom: 8px;
            }
            
            /* Уменьшаем отступы для секций */
            .why,
            .skills,
            .about,
            .faq-section {
                padding-top: 60px;
                padding-bottom: 60px;
            }
            
            /* Корректируем отступы в сетке для мобильных */
            .why-grid,
            .skills-grid,
            .about-grid {
                gap: 20px;
            }
        }
        
        /* Мобильное меню */
        .mobile-menu-btn {
            display: none;
            width: 30px;
            height: 20px;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
        }
        
        .mobile-menu-btn span {
            height: 2px;
            width: 100%;
            background: white;
            transition: 0.3s;
        }
        
        .mobile-menu {
            position: fixed;
            top: 72px;
            left: 0;
            width: 100%;
            background: #0d0f14; 
            padding: 20px;
            display: none;
            flex-direction: column;
            gap: 15px;
            z-index: 1001;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .mobile-menu.active {
            display: flex;
        }
        
        .mobile-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }
        
        @media (max-width: 900px) {
            .mobile-menu-btn {
                display: flex;
            }
            
            .mobile-menu a {
                padding: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .mobile-buttons .header-btn {
                width: 100%;
                text-align: center;
                padding: 12px;
            }
        }