
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: #fff;
        }
        
        :root {
            --primary-blue: #1A3A6B;
            --accent-blue: #2563EB;
            --light-grey: #F5F7FA;
            --dark: #1a1a1a;
            --text-grey: #555555;
            --success: #10B981;
            --danger: #EF4444;
        }
        
        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 8px rgba(26, 58, 107, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-top {
            background: var(--primary-blue);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .header-main {
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo img {
            height: 50px;
            width: auto;
        }
        
        .logo-text h1 {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1.2;
        }
        
        .logo-text span {
            font-size: 14px;
            color: var(--text-grey);
            display: block;
        }
        
        .header-contacts {
            text-align: right;
        }
        
        .phone {
            font-size: 20px;
            font-weight: 700;
            color: var(--accent-blue);
            text-decoration: none;
            display: block;
        }
        
        .address {
            font-size: 14px;
            color: var(--text-grey);
        }
        
        .hours {
            font-size: 12px;
            color: white;
            background: var(--primary-blue);
            padding: 4px 12px;
            border-radius: 4px;
            display: inline-block;
            margin-top: 4px;
        }
        
        nav {
            background: var(--light-grey);
            padding: 12px 0;
        }
        
        .nav-container {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        nav a {
            text-decoration: none;
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: var(--accent-blue);
        }
        
        /* Mobile Menu Toggle button */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1010;
        }
        
        .menu-toggle span {
            width: 100%;
            height: 3px;
            background-color: var(--primary-blue);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .menu-toggle.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #fff 0%, var(--light-grey) 100%);
            padding: 80px 0;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .hero-text h2 {
            font-size: 48px;
            font-weight: 900;
            color: var(--primary-blue);
            margin-bottom: 16px;
            line-height: 1.1;
        }
        
        .hero-text .subtitle {
            font-size: 22px;
            color: var(--text-grey);
            margin-bottom: 16px;
            font-weight: 500;
        }
        
        .hero-text .tagline {
            font-size: 18px;
            color: var(--accent-blue);
            font-weight: 600;
            margin-bottom: 24px;
            padding: 16px;
            background: white;
            border-left: 4px solid var(--accent-blue);
            border-radius: 4px;
        }
        
        .hero-text .money-loss {
            font-size: 16px;
            color: var(--danger);
            font-weight: 700;
            margin-bottom: 32px;
            padding: 12px;
            background: #FEE2E2;
            border-radius: 4px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        
        .btn {
            padding: 16px 32px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }
        
        .btn-primary {
            background: var(--accent-blue);
            color: white;
        }
        
        .btn-primary:hover {
            background: var(--primary-blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
        }
        
        .btn-primary:disabled {
            background: #a5b4fc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }
        
        .btn-secondary:hover {
            background: var(--primary-blue);
            color: white;
        }
        
        .hero-stats {
            display: flex;
            gap: 24px;
            align-items: center;
            font-size: 14px;
            color: var(--text-grey);
            flex-wrap: wrap;
        }
        
        .hero-stats strong {
            color: var(--primary-blue);
        }
        
        .hero-image {
            text-align: center;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        
        /* Quick Form */
        .quick-form {
            background: white;
            padding: 32px;
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            margin-top: 32px;
        }
        
        .quick-form h3 {
            font-size: 20px;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        .form-group {
            margin-bottom: 16px;
        }
        
        .form-group label {
            display: block;
            font-size: 14px;
            color: var(--text-grey);
            margin-bottom: 6px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e5e7eb;
            border-radius: 6px;
            font-size: 15px;
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }
        
        /* Уведомления формы */
        .form-notification {
            padding: 16px;
            border-radius: 6px;
            margin-top: 20px;
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            display: none; /* Контролируется через JS */
        }
        .form-notification.success {
            background: #D1FAE5;
            color: #065F46;
            border: 1px solid #10B981;
        }
        .form-notification.error {
            background: #FEE2E2;
            color: #991B1B;
            border: 1px solid #EF4444;
        }
        
        /* Stats Bar */
        .stats-bar {
            background: var(--light-grey);
            padding: 60px 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }
        
        .stat-item {
            background: white;
            padding: 32px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .stat-number {
            font-size: 42px;
            font-weight: 900;
            color: var(--accent-blue);
            display: block;
            margin-bottom: 8px;
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--text-grey);
        }
        
        /* Comparison Table */
        .comparison {
            padding: 80px 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 16px;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--text-grey);
            margin-bottom: 48px;
        }
        
        .comparison-table {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }
        
        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .comparison-table th {
            background: var(--primary-blue);
            color: white;
            padding: 20px;
            text-align: left;
            font-size: 16px;
            font-weight: 700;
        }
        
        .comparison-table td {
            padding: 16px 20px;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .comparison-table tr:nth-child(even) {
            background: var(--light-grey);
        }
        
        .check {
            color: var(--success);
            font-weight: 900;
            font-size: 20px;
        }
        
        .cross {
            color: var(--danger);
            font-weight: 900;
            font-size: 20px;
        }
        
        .our-col {
            background: #DBEAFE !important;
            font-weight: 600;
        }
        
        /* Models Section */
        .models {
            padding: 80px 0;
            background: var(--light-grey);
        }
        
        .models-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        .model-card {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            padding: 32px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .model-card:hover {
            border-color: var(--accent-blue);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(26, 58, 107, 0.15);
        }
        
        .model-card h3 {
            font-size: 24px;
            color: var(--primary-blue);
            margin-bottom: 8px;
        }
        
        .model-card .model-type {
            font-size: 14px;
            color: var(--accent-blue);
            font-weight: 600;
            margin-bottom: 16px;
        }
        
        .model-card p {
            font-size: 14px;
            color: var(--text-grey);
            margin-bottom: 20px;
        }
        
        .breakdown-list {
            text-align: left;
            margin: 16px 0;
            padding: 16px;
            background: var(--light-grey);
            border-radius: 6px;
        }
        
        .breakdown-list h4 {
            font-size: 14px;
            color: var(--primary-blue);
            margin-bottom: 12px;
        }
        
        .breakdown-list ul {
            list-style: none;
            padding-left: 0;
        }
        
        .breakdown-list li {
            padding: 6px 0;
            padding-left: 24px;
            position: relative;
            font-size: 14px;
            color: var(--text-grey);
        }
        
        .breakdown-list li::before {
            content: '⚠️';
            position: absolute;
            left: 0;
        }
        
        .model-card a {
            color: var(--accent-blue);
            text-decoration: none;
            font-weight: 600;
        }
        
        /* Parts Section */
        .parts {
            background: white;
            padding: 80px 0;
        }
        
        .parts-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        
        .part-card {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .part-card:hover {
            border-color: var(--accent-blue);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }
        
        .part-card img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        
        .part-card-content {
            padding: 24px;
        }
        
        .part-card h3 {
            font-size: 22px;
            color: var(--primary-blue);
            margin-bottom: 12px;
        }
        
        .part-card p {
            color: var(--text-grey);
            margin-bottom: 16px;
        }
        
        .part-card a {
            color: var(--accent-blue);
            text-decoration: none;
            font-weight: 600;
        }
        
        /* Urgency Banner */
        .urgency-banner {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .urgency-banner h2 {
            font-size: 36px;
            margin-bottom: 16px;
        }
        
        .urgency-banner p {
            font-size: 18px;
            margin-bottom: 32px;
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-white {
            background: white;
            color: var(--primary-blue);
            padding: 16px 40px;
            font-weight: 700;
        }
        
        .btn-white:hover {
            background: var(--light-grey);
        }
        
        /* Cases Section */
        .cases {
            padding: 80px 0;
            background: var(--light-grey);
        }
        
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        
        .case-card {
            background: white;
            padding: 32px;
            border-radius: 8px;
            border-left: 4px solid var(--accent-blue);
        }
        
        .case-card h3 {
            font-size: 22px;
            color: var(--primary-blue);
            margin-bottom: 16px;
        }
        
        .case-card .problem {
            margin-bottom: 12px;
            padding: 12px;
            background: #FEE2E2;
            border-radius: 4px;
        }
        
        .case-card .problem strong {
            color: var(--danger);
            display: block;
            margin-bottom: 4px;
        }
        
        .case-card .solution {
            margin-bottom: 12px;
            padding: 12px;
            background: #DBEAFE;
            border-radius: 4px;
        }
        
        .case-card .solution strong {
            color: var(--primary-blue);
            display: block;
            margin-bottom: 4px;
        }
        
        .case-card .result {
            padding: 12px;
            background: #D1FAE5;
            border-radius: 4px;
        }
        
        .case-card .result strong {
            color: var(--success);
            display: block;
            margin-bottom: 4px;
        }
        
        /* Repair Section */
        .repair {
            padding: 80px 0;
            background: white;
        }
        
        .repair-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .repair-image img {
            width: 100%;
            border-radius: 8px;
        }
        
        .repair-text h2 {
            font-size: 36px;
            color: var(--primary-blue);
            margin-bottom: 24px;
        }
        
        .repair-text > p {
            font-size: 16px;
            color: var(--text-grey);
            margin-bottom: 32px;
        }
        
        .repair-list {
            list-style: none;
            margin-bottom: 24px;
        }
        
        .repair-list li {
            padding: 12px 0;
            padding-left: 36px;
            position: relative;
            font-size: 16px;
        }
        
        .repair-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-blue);
            font-weight: 900;
            font-size: 20px;
        }
        
        .warranty-note {
            background: var(--light-grey);
            padding: 16px;
            border-radius: 6px;
            border-left: 4px solid var(--accent-blue);
        }
        
        /* Why Us */
        .why-us {
            background: var(--light-grey);
            padding: 80px 0;
        }
        
        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        
        .why-item {
            background: white;
            padding: 32px;
            border-radius: 8px;
        }
        
        .why-item h3 {
            font-size: 20px;
            color: var(--primary-blue);
            margin-bottom: 12px;
        }
        
        .why-item p {
            color: var(--text-grey);
            font-size: 15px;
        }
        
        /* Testimonial */
        .testimonial {
            padding: 80px 0;
            background: white;
        }
        
        .testimonial-box {
            max-width: 900px;
            margin: 0 auto;
            background: var(--light-grey);
            padding: 48px;
            border-radius: 8px;
            text-align: center;
        }
        
        .testimonial-text {
            font-size: 20px;
            font-style: italic;
            color: var(--text-grey);
            margin-bottom: 24px;
            line-height: 1.8;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--primary-blue);
        }
        
        /* Payment */
        .payment {
            background: var(--light-grey);
            padding: 60px 0;
        }
        
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
        }
        
        .payment-item {
            background: white;
            padding: 32px;
            border-radius: 8px;
        }
        
        .payment-item .icon {
            font-size: 40px;
            margin-bottom: 12px;
        }
        
        /* Contacts */
        .contacts {
            padding: 80px 0;
        }
        
        .contacts-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .contacts-info h2 {
            font-size: 36px;
            color: var(--primary-blue);
            margin-bottom: 24px;
            }
        
        .contact-item {
            margin-bottom: 24px;
            padding: 20px;
            background: var(--light-grey);
            border-radius: 8px;
        }
        
        .contact-item strong {
            display: block;
            color: var(--primary-blue);
            margin-bottom: 8px;
            font-size: 16px;
        }
        
        .contact-item p, .contact-item a {
            color: var(--text-grey);
            text-decoration: none;
            font-size: 18px;
        }
        
        .map-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        /* Footer */
        footer {
            background: var(--primary-blue);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 16px;
        }
        
        .footer-section p, .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            line-height: 1.8;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 14px;
        }
        
        /* Floating Call Button */
        .floating-call {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--accent-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(37, 99, 235, 0.5);
            z-index: 1000;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        /* ==========================================================================
           АДАПТИВНАЯ ВЕРСТКА: ПЛАНШЕТЫ И СМАРТФОНЫ (МЕДИА-ЗАПРОСЫ)
           ========================================================================== */
        
        /* Планшетная версия (max-width: 1024px) */
        @media (max-width: 1024px) {
            .hero-content,
            .repair-content,
            .contacts-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .models-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .parts-grid,
            .cases-grid,
            .why-grid,
            .payment-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero-text h2 {
                font-size: 40px;
            }
        }
        
        /* Мобильная версия (max-width: 768px) */
        @media (max-width: 768px) {
            .stats-grid,
            .models-grid,
            .parts-grid,
            .why-grid,
            .payment-grid,
            .cases-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-text h2 {
                font-size: 32px;
            }
            
            .hero-text .subtitle {
                font-size: 18px;
            }
            
            .header-main {
                flex-direction: column;
                text-align: center;
            }
            
            .header-contacts {
                text-align: center;
            }
            
            .comparison-table {
                overflow-x: auto;
                display: block;
            }
            
            /* Бургер-меню адаптив */
            .menu-toggle {
                display: flex;
                margin: 5px auto;
            }
            
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0;
                padding-top: 10px;
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(26, 58, 107, 0.1);
            }
            
            nav ul li:last-child {
                border-bottom: none;
            }
            
            nav a {
                display: block;
                padding: 12px 0;
                width: 100%;
            }
            
            /* Адаптация формы (инпуты в одну колонку) */
            .quick-form form div[style*="grid-template-columns"] {
                grid-template-columns: 1fr !important;
                gap: 0 !important;
            }
            
            .testimonial-box {
                padding: 24px;
            }
            
            .testimonial-text {
                font-size: 16px;
            }
            
            /* Футер */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }
            
            .footer-section .logo {
                justify-content: center;
            }
        }
