 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        body {
            background-color: #ffffff;
            color: #1e1e2f;
            line-height: 1.5;
            opacity: 0;
            animation: fadeIn 0.5s ease-in forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        .header {
            padding: 20px 0;
            border-bottom: 1px solid #eaeaea;
            background: white;
            position: relative;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #1e3a6f;
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .logo:hover {
            opacity: 0.8;
        }

        .logo:focus-visible {
            outline: 2px solid #1e3a6f;
            outline-offset: 2px;
            border-radius: 4px;
        }

        .contacts {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .phone {
            font-size: 20px;
            font-weight: 600;
            color: #1e1e2f;
            text-decoration: none;
            white-space: nowrap;
            transition: color 0.2s;
        }

        .phone:hover {
            color: #1e3a6f;
        }

        .phone:focus-visible {
            outline: 2px solid #1e3a6f;
            outline-offset: 2px;
            border-radius: 4px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            font-size: 16px;
            white-space: nowrap;
            max-width: 300px;
            text-align: center;
        }

        .btn-telegram {
            background-color: #27A7E7;
            color: white;
            box-shadow: 0 4px 10px rgba(39, 167, 231, 0.3);
        }

        .btn-telegram:hover {
            background-color: #1e8fc9;
            transform: scale(1.02);
        }

        .btn-telegram:focus-visible {
            outline: 2px solid #1e3a6f;
            outline-offset: 2px;
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid #1e3a6f;
            color: #1e3a6f;
        }

        .btn-outline:hover {
            background-color: #1e3a6f;
            color: white;
        }

        .btn-outline:focus-visible {
            outline: 2px solid #1e3a6f;
            outline-offset: 2px;
        }

        .hero {
            padding: 60px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf2 100%);
        }

        .hero .container {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .hero-content {
            flex: 1 1 400px;
        }

        .hero h1 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #1e3a6f;
        }

        .hero-price-block {
            display: inline-block;
            background-color: #1e3a6f;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            margin-bottom: 25px;
            box-shadow: 0 8px 20px rgba(30,58,111,0.3);
        }

        .hero-price {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero-price small {
            font-size: 16px;
            font-weight: 400;
            opacity: 0.9;
            margin-left: 5px;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #2d3a4a;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-image {
            flex: 1 1 300px;
            height: 300px;
            max-width: 500px;
            border-radius: 20px;
            background-image: url('/images/logo.png');
            background-size: cover;
            background-position: center;
            box-shadow: 0 20px 30px -10px rgba(0,0,0,0.2);
        }

        .services {
            padding: 80px 0;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: #1e3a6f;
        }

        .title-how-we-work {
            color: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 24px;
            padding: 35px 25px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
            border: 1px solid #eaeaea;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-8px);
        }

        .service-icon {
            font-size: 56px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #4a5568;
            margin-bottom: 25px;
            font-size: 16px;
            flex: 1;
        }

        .service-link {
            color: #1e3a6f;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
            font-size: 18px;
            display: inline-block;
            align-self: center;
        }

        .service-link:hover {
            border-color: #1e3a6f;
        }

        .service-link:focus-visible {
            outline: 2px solid #1e3a6f;
            outline-offset: 2px;
            border-radius: 4px;
        }

        .advantages {
            background-color: #f5f7fa;
            padding: 80px 0;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .advantage-item {
            padding: 30px 20px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .advantage-item:hover {
            transform: translateY(-5px);
        }

        .advantage-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .advantage-item h4 {
            font-size: 22px;
            margin-bottom: 12px;
            color: #1e3a6f;
        }

        .advantage-item p {
            color: #4a5568;
            font-size: 16px;
        }

        .carousel-section {
            padding: 80px 0;
        }

        .carousel-section.portfolio-section {
            background: linear-gradient(135deg, #f8fafd 0%, #f0f4fa 100%);
            padding: 100px 0;
        }

        .carousel-container {
            position: relative;
            margin: 50px 0;
            overflow: hidden;
            padding: 0 20px;
        }

        .carousel-track {
            display: flex;
            gap: 25px;
            animation: smoothScroll 70s linear infinite;
            width: fit-content;
            transition: transform 0.3s ease;
            cursor: grab;
            align-items: stretch;
        }

        .carousel-track:active {
            cursor: grabbing;
        }

        .carousel-track:hover {
            animation-play-state: paused;
        }

        .portfolio-track {
            animation: smoothScroll 140s linear infinite;
        }

        .portfolio-track:hover {
            animation-play-state: paused;
        }

        .carousel-track.dragging {
            animation-play-state: paused !important;
            transition: none;
        }

        @keyframes smoothScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-50% - 12.5px));
            }
        }

        .carousel-item {
            flex: 0 0 350px;
        }

        .carousel-section.portfolio-section .carousel-item {
            flex: 0 0 500px;
        }

        .review-card {
            display: flex;
            flex-direction: column;
            background: white;
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border: 1px solid #eaeaea;
            height: 100%;
            min-height: 320px;
            transition: transform 0.3s;
            width: 100%;
        }

        .review-card:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            flex-shrink: 0;
        }

        .review-avatar {
            width: 60px;
            height: 60px;
            min-width: 60px;
            border-radius: 50%;
            background-color: #1e3a6f;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 24px;
            line-height: 1;
            flex-shrink: 0;
        }

        .review-author {
            flex: 1;
            min-width: 0;
        }

        .review-author h4 {
            font-size: 20px;
            margin-bottom: 5px;
            color: #1e3a6f;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .review-date {
            font-size: 14px;
            color: #718096;
        }

        .review-stars {
            color: #fbbf24;
            font-size: 20px;
            margin-bottom: 15px;
            flex-shrink: 0;
            letter-spacing: 2px;
        }

        .review-text {
            color: #2d3748;
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 16px;
            flex: 1;
            overflow-y: auto;
            max-height: 150px;
            padding-right: 5px;
        }

        .review-text::-webkit-scrollbar {
            width: 4px;
        }

        .review-text::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }

        .review-text::-webkit-scrollbar-thumb {
            background: #1e3a6f;
            border-radius: 4px;
        }

        .review-avito-logo {
            display: flex;
            align-items: center;
            margin-top: auto;
            gap: 8px;
            font-size: 15px;
            color: #27A7E7;
            font-weight: 600;
            flex-shrink: 0;
            padding-top: 15px;
            border-top: 1px solid #eaeaea;
        }

        .portfolio-card {
            height: 350px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 35px rgba(0,0,0,0.2);
            background-size: cover;
            background-position: center;
            transition: all 0.3s;
            position: relative;
        }

        .portfolio-card:hover {
            transform: scale(1.03);
            box-shadow: 0 30px 50px rgba(0,0,0,0.25);
        }

        .portfolio-card::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
            pointer-events: none;
        }

        .how-we-work {
            padding: 80px 0;
            background: linear-gradient(135deg, #1e3a6f 0%, #152b4f 100%);
        }

        .steps {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .step {
            flex: 1 1 220px;
            text-align: center;
            position: relative;
            padding: 30px 20px;
            background: #f8fafd;
            border-radius: 20px;
            transition: transform 0.3s;
        }

        .step:hover {
            transform: translateY(-5px);
        }

        .step-number {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: #1e3a6f;
            color: white;
            font-size: 28px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .step h4 {
            font-size: 22px;
            margin-bottom: 12px;
            color: #1e3a6f;
        }

        .step p {
            color: #4a5568;
            font-size: 16px;
        }

        .vandal-advantages {
            padding: 80px 0;
            background: linear-gradient(135deg, #1e3a6f 0%, #152b4f 100%);
            color: white;
        }

        .vandal-advantages .section-title {
            color: white;
        }

        .vandal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .vandal-item {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 35px 25px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
            transition: transform 0.3s;
        }

        .vandal-item:hover {
            transform: translateY(-8px);
            background: rgba(255,255,255,0.15);
        }

        .vandal-icon {
            font-size: 56px;
            margin-bottom: 20px;
        }

        .vandal-item h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: white;
        }

        .vandal-item p {
            color: rgba(255,255,255,0.9);
            font-size: 16px;
            line-height: 1.6;
        }

        .manufacturer-info {
            padding: 80px 0;
            background-color: #ffffff;
            border-bottom: 1px solid #eaeaea;
        }

        .manufacturer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .manufacturer-content {
            padding-right: 20px;
        }

        .manufacturer-badge {
            display: inline-block;
            background-color: #ffd966;
            color: #1e3a6f;
            font-weight: 700;
            padding: 8px 20px;
            border-radius: 40px;
            margin-bottom: 25px;
            font-size: 16px;
            box-shadow: 0 4px 10px rgba(255, 217, 102, 0.3);
        }

        .manufacturer-content h3 {
            font-size: 32px;
            font-weight: 700;
            color: #1e3a6f;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .manufacturer-highlight {
            font-size: 20px;
            font-weight: 600;
            color: #1e3a6f;
            margin: 30px 0 20px;
        }

        .manufacturer-list {
            list-style: none;
            padding: 0;
            margin: 0 0 30px;
        }

        .manufacturer-list li {
            padding-left: 30px;
            position: relative;
            margin-bottom: 15px;
            font-size: 17px;
            color: #2d3a4a;
        }

        .manufacturer-list li::before {
            content: "★";
            color: #1e3a6f;
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 18px;
        }

        .certificate-text {
            font-size: 16px;
            color: #4a5568;
            padding: 20px;
            background: #f5f7fa;
            border-radius: 16px;
            border-left: 4px solid #1e3a6f;
            margin-top: 25px;
        }

        .manufacturer-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf2 100%);
            padding: 40px;
            border-radius: 30px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 42px;
            font-weight: 800;
            color: #1e3a6f;
            line-height: 1.2;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 16px;
            color: #4a5568;
            font-weight: 500;
        }

        .stat-label small {
            font-size: 14px;
            display: block;
            color: #718096;
            margin-top: 4px;
        }

        .for-business {
            background: linear-gradient(135deg, #1e3a6f 0%, #152b4f 100%);
            color: white;
            padding: 80px 0;
        }

        .for-business .container {
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .business-content {
            flex: 1 1 400px;
        }

        .business-content h2 {
            font-size: 42px;
            margin-bottom: 25px;
        }

        .business-content p {
            font-size: 18px;
            margin-bottom: 35px;
            opacity: 0.95;
            line-height: 1.6;
        }

        .business-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .business-image {
            flex: 1 1 350px;
            height: 250px;
            border-radius: 20px;
            background-image: url('/images/business-placeholder.jpg');
            background-size: cover;
            background-position: center;
            box-shadow: 0 20px 30px rgba(0,0,0,0.3);
        }

        .contacts-section {
            padding: 80px 0;
            text-align: center;
            background: #f5f7fa;
        }

        .contacts-section h2 {
            margin-bottom: 40px;
        }

        .contacts-info {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .contacts-info .phone {
            font-size: 42px;
            display: block;
            margin: 15px 0;
            color: #1e3a6f;
        }

        .avito-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background-color: white;
            padding: 18px 40px;
            border-radius: 60px;
            text-decoration: none;
            color: #1e1e2f;
            font-weight: 600;
            margin: 30px 0;
            transition: all 0.2s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            font-size: 18px;
        }

        .avito-link:hover {
            background-color: #f0f0f0;
            transform: scale(1.05);
        }

        .avito-link:focus-visible {
            outline: 2px solid #1e3a6f;
            outline-offset: 2px;
        }

        .avito-logo {
            width: 28px;
            height: 28px;
            background-color: #27A7E7;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 16px;
        }

        .social-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .social-buttons .btn {
            min-width: 220px;
            padding: 16px 32px;
            font-size: 18px;
        }

        .footer {
            background-color: #1e1e2f;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        .footer p {
            opacity: 0.8;
            font-size: 15px;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s;
            color: #1e3a6f;
        }

        .carousel-arrow:hover {
            background: #1e3a6f;
            color: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(30,58,111,0.3);
        }

        .carousel-arrow:focus-visible {
            outline: 2px solid #1e3a6f;
            outline-offset: 2px;
        }

        .carousel-arrow.prev {
            left: -25px;
        }

        .carousel-arrow.next {
            right: -25px;
        }

        .hidden {
            display: none;
        }

        @media (max-width: 992px) {
            .review-card {
                padding: 25px;
                min-height: 300px;
            }
            
            .review-avatar {
                width: 55px;
                height: 55px;
                min-width: 55px;
                font-size: 22px;
            }
            
            .review-author h4 {
                font-size: 18px;
            }
            
            .review-text {
                font-size: 15px;
                max-height: 140px;
            }

            .manufacturer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .manufacturer-content {
                padding-right: 0;
            }

            .manufacturer-stats {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .header .container {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero-price-block {
                padding: 10px 20px;
            }

            .hero-price {
                font-size: 24px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn {
                width: 100%;
                text-align: center;
            }

            .contacts {
                width: 100%;
                justify-content: space-between;
            }

            .carousel-item {
                flex: 0 0 300px;
            }

            .carousel-section .carousel-item {
                flex: 0 0 300px;
            }

            .carousel-section.portfolio-section .carousel-item {
                flex: 0 0 350px;
            }

            .portfolio-card {
                height: 250px;
            }

            .section-title {
                font-size: 32px;
            }

            .contacts-info .phone {
                font-size: 32px;
            }

            .social-buttons .btn {
                min-width: 180px;
            }

            .carousel-arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .carousel-arrow.prev {
                left: -15px;
            }
            
            .carousel-arrow.next {
                right: -15px;
            }

            .review-card {
                padding: 20px;
                min-height: 280px;
                border-radius: 20px;
            }
            
            .review-header {
                gap: 12px;
                margin-bottom: 15px;
            }
            
            .review-avatar {
                width: 50px;
                height: 50px;
                min-width: 50px;
                font-size: 20px;
            }
            
            .review-author h4 {
                font-size: 17px;
                white-space: normal;
                overflow: visible;
            }
            
            .review-date {
                font-size: 13px;
            }
            
            .review-stars {
                font-size: 18px;
                margin-bottom: 12px;
                letter-spacing: 1px;
            }
            
            .review-text {
                font-size: 14px;
                line-height: 1.5;
                margin-bottom: 15px;
                max-height: 120px;
            }
            
            .review-avito-logo {
                font-size: 14px;
                padding-top: 12px;
            }

            .manufacturer-content h3 {
                font-size: 28px;
            }

            .stat-number {
                font-size: 32px;
            }
        }

        @media (max-width: 480px) {
            .review-card {
                padding: 15px;
                min-height: 260px;
            }
            
            .review-avatar {
                width: 45px;
                height: 45px;
                min-width: 45px;
                font-size: 18px;
            }
            
            .review-author h4 {
                font-size: 16px;
            }
            
            .review-date {
                font-size: 12px;
            }
            
            .review-stars {
                font-size: 16px;
            }
            
            .review-text {
                font-size: 13px;
                max-height: 100px;
            }
            
            .review-avito-logo {
                font-size: 13px;
            }

            .manufacturer-stats {
                grid-template-columns: 1fr;
                padding: 30px 20px;
            }
        }

        @media (max-width: 360px) {
            .carousel-item {
                flex: 0 0 280px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }