        :root {
            --primary-color: #3a86ff;
            --secondary-color: #8338ec;
            --accent-color: #ff006e;
            --bg-color: #f8f9fa;
            --dark-bg: #2b2d42;
            --text-color: #2b2d42;
            --light-text: #f8f9fa;
            --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3, h4 {
            margin-bottom: 20px;
            font-weight: 700;
        }

        h1 {
            font-size: 3rem;
        }

        h2 {
            font-size: 2.5rem;
        }

        h3 {
            font-size: 1.8rem;
        }

        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--gradient);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .text-center {
            text-align: center;
        }

        .section-title {
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        /* Шапка сайта */
        header {
            background: var(--dark-bg);
            color: var(--light-text);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--light-text);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--accent-color);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--accent-color);
        }

        /* Герой-секция */
        .hero {
            height: 100vh;
            background: var(--gradient);
            color: var(--light-text);
            display: flex;
            align-items: center;
            overflow: hidden;
            position: relative;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .hero-btn-secondary {
            background: transparent;
            border: 2px solid white;
        }

        .hero-image {
            position: absolute;
            right: -50px;
            bottom: -100px;
            width: 600px;
            height: 600px;
            background: url('/api/placeholder/600/600') no-repeat center center;
            background-size: contain;
            opacity: 0.8;
            animation: float 5s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
        }

        /* О нас */
        .about {
            background-color: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-text h2 {
            text-align: left;
        }

        .about-text p {
            margin-bottom: 25px;
        }

        /* Преимущества */
        .benefits {
            background-color: var(--bg-color);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .benefit-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        /* Примеры */
        .examples {
            background-color: white;
        }

        .examples-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .example-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .example-card:hover {
            transform: translateY(-10px);
        }

        .example-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .example-content {
            padding: 20px;
            background: white;
        }

        .example-card h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        /* Процесс работы */
        .process {
            background-color: var(--bg-color);
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-steps:before {
            content: '';
            position: absolute;
            top: 30px;
            left: 40px;
            width: calc(100% - 80px);
            height: 4px;
            background: var(--gradient);
            z-index: 1;
        }

        .process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
            width: 120px;
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient);
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .step-text {
            text-align: center;
            font-weight: 600;
        }

        /* Тарифы */
        .pricing {
            background-color: white;
        }

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

        .pricing-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            padding: 40px 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #eee;
        }

        .pricing-card.featured {
            transform: scale(1.05);
            border: none;
            background: var(--gradient);
            color: white;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            margin: 20px 0;
        }

        .price span {
            font-size: 1rem;
            font-weight: 400;
        }

        .features-list {
            list-style: none;
            margin: 30px 0;
        }

        .features-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }

        .features-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: 700;
        }

        .pricing-card.featured .features-list li:before {
            color: white;
        }

        .pricing-btn {
            background: white;
            color: var(--primary-color);
        }

        /* FAQ секция */
        .faq {
            background-color: var(--bg-color);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            background: white;
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary-color);
        }

        .faq-answer {
            background: white;
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-question:after {
            content: '−';
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        /* Отзывы */
        .testimonials {
            background-color: white;
        }

        .testimonials-slider {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .testimonial {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin: 20px;
            text-align: center;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }

        .client {
            font-weight: 600;
        }

        .client-company {
            color: var(--primary-color);
        }

        .client-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
        }

        .client-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Контакты и форма */
        .contact {
            background: var(--gradient);
            color: white;
        }
		
        .contact a {
            color: white;
        }
		
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info h2 {
            text-align: left;
        }

        .contact-info p {
            margin-bottom: 30px;
        }

        .contact-details {
            list-style: none;
            margin-bottom: 30px;
        }

        .contact-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .contact-icon {
            margin-right: 15px;
            font-size: 1.5rem;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        textarea.form-control {
            height: 150px;
            resize: none;
        }

        /* Подвал */
        footer {
            background: var(--dark-bg);
            color: var(--light-text);
            padding: 50px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--light-text);
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-logo span {
            color: var(--accent-color);
        }

        .footer-about p {
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: background 0.3s;
        }

        .social-link:hover {
            background: var(--accent-color);
        }

        .footer-links h3 {
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links ul li a:hover {
            color: var(--accent-color);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        /* Адаптивность */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-image {
                width: 400px;
                height: 400px;
                right: -100px;
            }

            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .pricing-card.featured {
                transform: none;
            }

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

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .hero-image {
                display: none;
            }

            .process-steps {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }

            .process-steps:before {
                height: calc(100% - 100px);
                width: 4px;
                left: 50%;
                top: 40px;
                transform: translateX(-50%);
            }

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

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                background: var(--dark-bg);
                width: 100%;
                padding: 20px;
                transition: 0.3s;
            }

            .nav-menu.active {
                left: 0;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                margin: 10px 0;
            }

            .hamburger {
                display: block;
                cursor: pointer;
            }
        }

        /* Анимации */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s, transform 0.6s;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Иконки (имитация) */
        .icon {
            display: inline-block;
            width: 1em;
            height: 1em;
            stroke-width: 0;
            stroke: currentColor;
            fill: currentColor;
            margin-right: 0.5em;
        }
