/* Общие сбросы стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Стили для шапки */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a7fff;
    text-decoration: none;
}

.logo svg {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #2a7fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2a7fff;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #2a7fff;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(42, 127, 255, 0.1);
    transition: all 0.3s;
}

.phone-link:hover {
    background: rgba(42, 127, 255, 0.2);
    transform: translateY(-2px);
}

/* Интерактивное бургер-меню */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Мобильное навигационное меню */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: none;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 0.8rem;
    gap: 5px;
    transition: color 0.3s;
    padding: 5px;
}

.mobile-nav .nav-item.active,
.mobile-nav .nav-item:hover {
    color: #2a7fff;
}

/* Блок героя */

/* Обновленные стили для блока героя */
.hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e2e8f0;
    max-width: 500px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.hero-feature svg {
    flex-shrink: 0;
}

.hero-car-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-car-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(42, 127, 255, 0.2) 0%, rgba(42, 127, 255, 0) 70%);
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2a7fff;
    margin-bottom: 5px;
}

.hero-stat .stat-label {
    font-size: 0.8rem;
    color: #cbd5e1;
}

/* Убираем старые плавающие карточки */
.floating-card {
    display: none;
}
.hero {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(42, 127, 255, 0.1);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -100px;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
/* Исправления для быстрого заказа */
.quick-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .quick-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quick-services {
        grid-template-columns: 1fr;
    }
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-car {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 200px;
    animation: pulse 2s infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    left: 0;
}

.floating-card:nth-child(2) {
    bottom: 30%;
    right: 0;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Новый блок: Быстрый заказ */
.quick-order {
    padding: 80px 0;
    background: white;
}

.quick-order h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
    color: #1e293b;
}

.quick-order > p {
    text-align: center;
    margin-bottom: 50px;
    color: #64748b;
    font-size: 1.1rem;
}


.quick-service {
    background: #f8fafc;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.quick-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #2a7fff;
    background: white;
}

.quick-service .service-icon {
    margin-bottom: 15px;
}

.quick-service h3 {
    margin-bottom: 10px;
    color: #1e293b;
}

.quick-service p {
    color: #2a7fff;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Блок "О компании" */
.about {
    padding: 100px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.about-text p {
    margin-bottom: 20px;
    color: #64748b;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a7fff;
    margin-bottom: 5px;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Блок "Наши преимущества" */
.advantages {
    padding: 100px 0;
    background: white;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #1e293b;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2a7fff, #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-animation {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(42, 127, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.advantage-card:hover .card-icon {
    background: #2a7fff;
    transform: scale(1.1);
}

.advantage-card:hover .card-icon svg {
    fill: white;
}

.advantage-card h3 {
    margin-bottom: 15px;
    color: #1e293b;
    font-size: 1.3rem;
}

.advantage-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Новый блок: Технологии и оборудование */
.technologies {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.technologies h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.technologies  p {
    text-align: center;
    margin-bottom: 60px;
    color: #cbd5e1;
    font-size: 1.1rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tech-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.tech-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.tech-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.tech-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tech-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Интерактивные табы услуг */
.services-tabs {
    padding: 100px 0;
    background: #f8fafc;
}

.services-tabs h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #1e293b;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    justify-content: center;
}

.tab-btn {
    padding: 15px 25px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
}

.tab-btn.active {
    background: #2a7fff;
    border-color: #2a7fff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 127, 255, 0.3);
}

.tab-btn:hover:not(.active) {
    border-color: #2a7fff;
    color: #2a7fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tab-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.tab-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #64748b;
}

.tab-text ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.tab-text li {
    margin-bottom: 10px;
    color: #64748b;
    position: relative;
}

.tab-text li::before {
    content: '✓';
    color: #2a7fff;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.tab-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-actions .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a7fff;
}

.tab-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Таймер акции */
.promotion {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a7fff 0%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.promotion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,255,255,0.05)"><circle cx="50" cy="50" r="2"/></svg>') repeat;
}

.promotion .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.promotion-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.promotion-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.promotion-image img {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

/* Таймер обратного отсчета */
.countdown-timer {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin: 40px 0;
    flex-wrap: wrap;
}

.time-unit {
    text-align: center;
    background: rgba(255,255,255,0.2);
    padding: 20px 15px;
    border-radius: 12px;
    min-width: 80px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.time-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.time-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Новый блок: Как мы работаем */
.work-process {
    padding: 100px 0;
    background: white;
}

.work-process h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #1e293b;
}
.step-content h3 {
    margin-bottom: 10px;
    color: #1e293b;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}
/* Стили для страницы услуг */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    overflow: hidden;
}
.services-grid {margin-top:40px;}
.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.additional-services p {text-align: center;margin-bottom:40px;}
.page-header-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #cbd5e1;
}

.header-badge {
    display: inline-block;
    background: rgba(42, 127, 255, 0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(42, 127, 255, 0.3);
    font-weight: 600;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(42, 127, 255, 0.1);
}

.bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -100px;
}

.bg-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
}

/* Сетка услуг */
.services-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    color: #64748b;
}

.filter-btn.active,
.filter-btn:hover {
    background: #2a7fff;
    border-color: #2a7fff;
    color: white;
    transform: translateY(-2px);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-badge.popular {
    background: #ffd700;
    color: #1e293b;
}

.service-badge.urgent {
    background: #ef4444;
    color: white;
}

.service-badge.seasonal {
    background: #10b981;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-card li {
    margin-bottom: 8px;
    color: #64748b;list-style: none;
    position: relative;
}
/* Стили для страницы контактов */
.contact-main {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.contact-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(42, 127, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 8px;
    color: #1e293b;
    font-size: 1.2rem;
}

.contact-text p {
    margin-bottom: 5px;
    color: #64748b;
}

.contact-text a {
    color: #2a7fff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: #1e40af;
}

.contact-note {
    font-size: 0.9rem;
    color: #94a3b8;
    font-style: italic;
}

.contact-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f9ff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #0369a1;
}

/* Карта */
.contact-map {
    position: relative;
}

.map-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.map-content h3 {
    margin-bottom: 10px;
    color: #1e293b;
    font-size: 1.4rem;
}

.map-content > p {
    color: #64748b;
    margin-bottom: 30px;
}

.map-image {
    position: relative;
    height: 200px;
    background: #cbd5e1;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-point {
    position: relative;
    z-index: 2;
}

.point-pulse {
    width: 40px;
    height: 40px;
    background: rgba(42, 127, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.point-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #2a7fff;
    border-radius: 50%;
    border: 2px solid white;
}

.map-instructions h4 {
    margin-bottom: 15px;
    color: #1e293b;
}

.map-instructions ul {
    list-style: none;
    padding: 0;
}

.map-instructions li {
    margin-bottom: 8px;
    color: #64748b;
    padding-left: 20px;
    position: relative;
}

.map-instructions li::before {
    content: '•';
    color: #2a7fff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Форма обратной связи */
.contact-form-section {
    padding: 100px 0;
    background: #f8fafc;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.form-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a7fff;
    box-shadow: 0 0 0 3px rgba(42, 127, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.form-submit .cta-button {
    min-width: 200px;
}

.form-note {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
}

/* Дополнительные контакты */
.additional-contacts {
    padding: 100px 0;
    background: white;
}

.additional-contacts h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #1e293b;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.contact-card .card-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: #1e293b;
    font-size: 1.3rem;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    background: #2a7fff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-link:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* FAQ на странице контактов */
.contact-faq {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #1e293b;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

/* Адаптивность для страницы контактов */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-map {
        order: -1;
    }
    
    .form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    @media (max-width: 768px) {
    .hero-car {
        max-width: 300px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat {
        min-width: 120px;
        padding: 20px 15px;
    }
    
    .hero-stat .stat-number {
        font-size: 2rem;
    }
}
/* Обновленные стили для SVG машинки */
.hero-car-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.hero-car {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.hero-car-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(42, 127, 255, 0.3) 0%, rgba(42, 127, 255, 0) 70%);
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-glow {
    0%, 100% { 
        opacity: 0.5; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.05); 
    }
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px 20px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 150px;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    color: #e2e8f0;
    font-weight: 500;
}
@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stat {
        width: 100%;
        max-width: 200px;
    }
}
    .contact-icon {
        align-self: center;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-main {
        padding: 60px 0;
    }
    
    .contact-form-section,
    .additional-contacts,
    .contact-faq {
        padding: 60px 0;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
}
.service-card li::before {
    content: '✓';
    color: #2a7fff;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.service-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-time,
.feature-warranty {
    padding: 5px 12px;
    background: #f8fafc;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #64748b;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a7fff;
}

.old-price {
    font-size: 1rem;
    color: #94a3b8;
    text-decoration: line-through;
}

/* Дополнительные услуги */
.additional-services {
    padding: 100px 0;
    background: #f8fafc;
}

.additional-services h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
    color: #1e293b;
}

.additional-services > p {
    text-align: center;
    margin-bottom: 50px;
    color: #64748b;
    font-size: 1.1rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.additional-service {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.additional-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.additional-service h3 {
    margin: 20px 0 10px;
    color: #1e293b;
    font-size: 1.2rem;
}

.additional-service p {
    color: #64748b;
    margin-bottom: 15px;
}

.additional-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2a7fff;
}

/* Процесс работы на странице услуг */
.service-process.enhanced {
    padding: 100px 0;
    background: white;
}

.service-process h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #1e293b;
}

.process-steps.enhanced {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2a7fff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(42, 127, 255, 0.3);
}

.step-line {
    width: 2px;
    height: 40px;
    background: #e2e8f0;
    margin-top: 10px;
}

.process-step:last-child .step-line {
    display: none;
}

.step-content h3 {
    margin-bottom: 10px;
    color: #1e293b;
    font-size: 1.3rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Гарантии */
.guarantee.enhanced {
    padding: 100px 0;
    background: #f8fafc;
}

.guarantee-header {
    text-align: center;
    margin-bottom: 60px;
}

.guarantee-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.guarantee-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.guarantee-item:last-child {
    margin-bottom: 0;
}

.guarantee-item h3 {
    margin-bottom: 5px;
    color: #1e293b;
    font-size: 1.2rem;
}

.guarantee-item p {
    color: #64748b;
    line-height: 1.6;
}

.guarantee-image {
    position: relative;
}

.image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.certificate-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2a7fff;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* CTA блок на странице услуг */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a7fff 0%, #1e40af 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Адаптивность для страницы услуг */
@media (max-width: 1024px) {
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .guarantee-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-line {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
}
/* Интерактивные аккордеоны FAQ */
.faq {
    padding: 100px 0;
    background: #f8fafc;
}

.faq h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #1e293b;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    background: white;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #2a7fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s;
    font-size: 1.1rem;
    color: #1e293b;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2a7fff;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    line-height: 1.7;
    color: #64748b;
}

/* Слайдер отзывов */
.reviews {
    padding: 100px 0;
    background: white;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #1e293b;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    height: auto;
    margin-bottom: 30px;
}

.review-slide {
    display: none;
}

.review-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.review-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    background: #f8fafc;
    padding: 50px;
    border-radius: 16px;
}

.quote-icon {
    font-size: 4rem;
    color: #2a7fff;
    line-height: 1;
    margin-bottom: 20px;
}

.review-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author strong {
    display: block;
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.review-author span {
    color: #64748b;
    font-size: 0.9rem;
}

.review-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    background: #2a7fff;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #1e40af;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #2a7fff;
}

/* Подвал сайта */
footer {
    background: #1e293b;
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h3 {
    color: #2a7fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #2a7fff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #2a7fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Кнопки CTA */
.cta-button, .submit-btn {
    background: #2a7fff;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.cta-button::before, .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before, .submit-btn:hover::before {
    left: 100%;
}

.cta-button:hover, .submit-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(42, 127, 255, 0.3);
}

.cta-button:active, .submit-btn:active {
    transform: translateY(0);
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #2a7fff;
}
.quick-order p {margin-bottom:50px;}
.cta-button.secondary:hover {
    background: #2a7fff;
    color: white;
}

/* Кнопка "Наверх" */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: #2a7fff;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover {
    background: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Стилизованные уведомления */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    background: white;
    border-left: 4px solid #2a7fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    animation: slideIn 0.3s ease;
    max-width: 400px;
}

.notification.success {
    border-left-color: #10b981;
}

.notification.error {
    border-left-color: #ef4444;
}

.notification.info {
    border-left-color: #3b82f6;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.notification.fade-out {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Анимации при скролле */
.advantage-card, .service-card, .review-slide, .process-step, .contact-method, .stat-item, .tech-item, .quick-service {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .hero .container,
    .about-content,
    .tab-content-inner,
    .review-content,
    .promotion .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-image,
    .tab-image,
    .review-image,
    .promotion-image {
        order: -1;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .advantages-grid,
    .quick-services,
    .tech-grid,
    .process-steps,
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 10px;
        justify-content: center;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 15px 10px;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .tab-content-inner,
    .review-content {
        padding: 30px 20px;
    }
    
    .floating-card {
        position: relative;
        margin: 10px auto;
        max-width: 100%;
    }
    
    .floating-card:nth-child(1),
    .floating-card:nth-child(2) {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
    }
    
    .scroll-to-top {
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .advantages, .about, .services-tabs, .promotion, .faq, .reviews, .technologies, .quick-order, .work-process {
        padding: 60px 0;
    }
    
    .tab-content-inner,
    .review-content {
        gap: 20px;
    }
    
    .tab-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
}


/* Исправления для главной страницы */

/* Герой блок - исправление фона и элементов */
.hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 41, 59, 0.8);
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(42, 127, 255, 0.1);
    z-index: 2;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: 100px;
    left: -150px;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
}

.hero .container {
    position: relative;
    z-index: 3;
}

/* Быстрый заказ - исправление центрирования */
.quick-order {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.quick-order h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #1e293b;
}

.quick-order > p {
    text-align: center;
    margin-bottom: 50px;
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Преимущества - 4 в строку */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Технологии - центрирование */
.technologies {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.technologies h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}



/* Переделанный блок акции */
.promotion-new {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a7fff 0%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.promotion-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,255,255,0.1)"><polygon points="50,0 100,50 50,100 0,50"/></svg>') repeat;
    background-size: 80px 80px;
}

.promotion-content-new {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.promotion-content-new h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.promotion-content-new .discount {
    font-size: 5rem;
    font-weight: 800;
    color: #ffd700;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.promotion-content-new .discount-label {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.promotion-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.promotion-feature {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Новый стиль для процесса работы */
.work-process-new {
    padding: 100px 0;
    background: white;
}

.work-process-new h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #1e293b;
}

.process-steps-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    counter-reset: step;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step-new {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-step-new::before {
    counter-increment: step;
    content: counter(step);
    width: 60px;
    height: 60px;
    background: #2a7fff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(42, 127, 255, 0.3);
}

.process-step-new::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: #e2e8f0;
    display: none;
}

.process-step-new:last-child::after {
    display: none;
}

.process-step-new h3 {
    margin-bottom: 15px;
    color: #1e293b;
    font-size: 1.3rem;
}

.process-step-new p {
    color: #64748b;
    line-height: 1.6;
}

/* Адаптивность */
@media (min-width: 1200px) {
    .process-step-new::after {
        display: block;
    }
}

@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step-new::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps-new {
        grid-template-columns: 1fr;
    }
    
    .promotion-content-new h2 {
        font-size: 2rem;
    }
    
    .promotion-content-new .discount {
        font-size: 3rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}