        :root {
            --primary: #FFBE00;
            --primary-hover: #E6AC00;
            --bg-dark: #0D0D0D;
            --bg-card: #1A1A1A;
            --bg-card-hover: #252525;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --border: #2A2A2A;
            --gradient-start: rgba(255, 190, 0, 0.1);
            --gradient-end: rgba(255, 190, 0, 0);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Rubik', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(13, 13, 13, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
        }

        .logo-icon {
            height: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-dark);
            font-weight: 800;
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: 'Rubik', sans-serif;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .btn-primary {
            background: var(--primary);
            color: var(--bg-dark);
            font-weight: 600;
            box-shadow: 0 4px 20px rgba(255, 190, 0, 0.3);
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(255, 190, 0, 0.4);
        }

        .btn-large {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
        }

        /* Hero Section */
        /* HERO */

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, var(--gradient-start) 0%, var(--gradient-end) 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        .hero-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: auto;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }


        /* LEFT SIDE */

        .hero-left {
            max-width: 520px;
        }

        .hero-left h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;

            background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-left p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
        }


        /* RIGHT SIDE */

        .hero-right {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .hero-phone {
            width: 380px;
            max-width: 100%;
            height: auto;
        }


        /* QR BLOCK */

        .hero-qr {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);

            background: #111;
            border-radius: 14px;
            padding: 18px 26px;

            display: flex;
            align-items: center;
            gap: 18px;

            border: 1px solid var(--border);
            min-width: 350px;
            /* делает блок шире */
        }

        .hero-qr span {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .hero-qr img {
            width: 110px;
            background: white;
            padding: 6px;
            border-radius: 6px;
        }


        /* MOBILE */

        @media (max-width: 900px) {

            .hero-container {
                flex-direction: column;
                text-align: center;
            }

            .hero-left {
                max-width: 600px;
            }

            .hero-right {
                margin-top: 40px;
            }

            .hero-phone {
                display: none;
            }

            .hero-qr {
                position: relative;
                bottom: auto;
                left: auto;
                transform: none;
                margin-top: -80px;
                justify-content: center;
            }

        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--primary);
        }

        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
            color: var(--primary);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 1.5rem;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 1.5rem 1.5rem;
        }

        .faq-answer p {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* Testimonials */
        .testimonials {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 4rem 2rem;
            overflow: hidden;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 2rem;
        }

        .testimonial-card {
            min-width: calc(50% - 1rem);
            background: var(--bg-dark);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, #FF8C00 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--bg-dark);
            font-size: 1.5rem;
        }

        .testimonial-info h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .testimonial-info span {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .testimonial-text {
            color: var(--text-secondary);
            font-style: italic;
            line-height: 1.8;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--bg-dark);
            border: 1px solid var(--border);
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background: var(--primary);
            color: var(--bg-dark);
            border-color: var(--primary);
        }

        /* Partners Carousel */
        .partners-carousel {
            overflow: hidden;
            padding: 2rem 0;
        }

        .partners-track {
            display: flex;
            gap: 2rem;
            width: max-content;
            animation: scroll 31s linear infinite;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

        .partner-card {
            min-width: 300px;
            background: var(--bg-card);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .partner-card:hover {
            transform: scale(1.05);
            border-color: var(--primary);
        }

        .partner-img {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 3rem;
        }

        .partner-img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .partner-info {
            padding: 1.5rem;
        }

        .partner-info h4 {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .partner-info span {
            color: var(--primary);
            font-size: 0.9rem;
        }

        /* Partner Logos Grid */
        .logos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .logo-item {
            aspect-ratio: 3/2;
            background: var(--bg-card);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            filter: grayscale(100%);
            opacity: 0.6;
        }

        .logo-item:hover {
            filter: grayscale(0%);
            opacity: 1;
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .logo-placeholder {
            font-size: 2rem;
            color: var(--text-muted);
            font-weight: 700;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--bg-card) 0%, #252525 100%);
            border-radius: 24px;
            padding: 5rem 2rem;
            text-align: center;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at top right, var(--gradient-start) 0%, transparent 50%);
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        /* Guide Section */
        .guide-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .guide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .guide-content p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .guide-visual {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 3rem;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .guide-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, var(--gradient-start) 0%, transparent 70%);
        }

        .feature-list {
            list-style: none;
            position: relative;
            z-index: 1;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
        }

        .feature-list li::before {
            content: '✓';
            width: 28px;
            height: 28px;
            background: var(--primary);
            color: var(--bg-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* Who Is It For */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .info-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .info-card:hover::before {
            transform: scaleX(1);
        }

        .info-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(255, 190, 0, 0.1);
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 190, 0, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .info-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .info-card p {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* Contact Section */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-form {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid var(--border);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: var(--bg-dark);
            border: 1px solid var(--border);
            border-radius: 10px;
            color: var(--text-primary);
            font-family: 'Rubik', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 190, 0, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--bg-card);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.25rem;
        }

        /* Social Section */
        .social-section {
            text-align: center;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .social-icon {
            width: 60px;
            height: 60px;
            background: var(--bg-card);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 1.5rem;
            text-decoration: none;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--primary);
            color: var(--bg-dark);
            transform: translateY(-5px) rotate(5deg);
            border-color: var(--primary);
        }

        /* Footer */
        footer {
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            padding: 3rem 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .copyright {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header-container {
                padding: 0 1rem;
            }

            .nav-buttons {
                gap: 0.5rem;
            }

            .btn {
                padding: 0.6rem 1rem;
                font-size: 0.85rem;
            }

            .hero {
                padding: 7rem 1rem 3rem;
            }

            .hero-stats {
                gap: 2rem;
            }

            section {
                padding: 4rem 1rem;
            }

            .testimonial-card {
                min-width: 100%;
            }

            .guide-section,
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-section h2,
            .guide-content h2 {
                font-size: 1.75rem;

            }

            .contact-info {
                display: none;
            }


        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .modal {
            display: none;
            position: fixed;
            margin-top: 20%;
            z-index: 999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
        }

        .modal-content {
            background: #111;
            margin: 5% auto;
            padding: 40px;
            border-radius: 16px;
            max-width: 900px;
            width: 90%;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            cursor: pointer;
        }

        .contact-cta {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .contact-text {
            font-size: 1.1rem;
            color: var(--text-muted);
            text-align: center;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-icon img {
            width: 65px;
            border-radius: 16px;
            object-fit: contain;
        }

        section {
            margin-top: 45px;
        }

        h2 {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }