/* ===== Page Loader ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-car {
    width: 200px;
    height: 100px;
    margin-bottom: 30px;
}

.loader-car .car-body {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawCar 2s ease forwards;
}

.loader-car .car-window {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawWindow 0.5s ease 1.5s forwards;
}

.loader-car .car-wheel {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawWheel 0.8s ease 1s forwards;
    transform-origin: center;
}

.loader-car .car-wheel:nth-child(4),
.loader-car .car-wheel:nth-child(5) {
    animation: drawWheel 0.8s ease 1.2s forwards, rotateWheel 1s linear infinite;
}

.loader-car .car-wheel:nth-child(6),
.loader-car .car-wheel:nth-child(7) {
    animation: drawWheel 0.8s ease 1.4s forwards, rotateWheel 1s linear infinite;
}

.loader-car .taxi-sign {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawSign 0.3s ease 1.8s forwards;
}

.loader-car .headlight {
    opacity: 0;
    animation: lightOn 0.3s ease 2s forwards;
}

.loader-car .taillight {
    opacity: 0;
    animation: lightOn 0.3s ease 2s forwards;
}

@keyframes drawCar {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawWindow {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawWheel {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes rotateWheel {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes drawSign {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes lightOn {
    to {
        opacity: 1;
    }
}

.loader-text {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulseText 1.5s ease infinite;
}

@keyframes pulseText {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* ===== Базовые стили и переменные ===== */
:root {
    /* Primary Colors */
    --primary-color: #FFD700;
    --primary-dark: #FFA500;
    --primary-light: #FFE44D;
    
    /* Secondary Colors */
    --secondary-color: #1a1a2e;
    --secondary-dark: #0f0f1a;
    
    /* Accent Colors */
    --accent-color: #FF6B6B;
    --accent-hover: #ee5a5a;
    
    /* Text Colors */
    --text-color: #e0e0e0;
    --text-light: #a0a0a0;
    --text-dark: #333333;
    --text-muted: #666666;
    
    /* Background Colors */
    --bg-light: #1a1a2e;
    --bg-white: #0f0f1a;
    --bg-overlay: rgba(26, 26, 46, 0.3);
    --bg-overlay-light: rgba(255, 255, 255, 0.3);
    
    /* Card Colors */
    --card-bg: #1a1a2e;
    
    /* Border Colors */
    --border-light: rgba(255, 255, 255, 0.1);
    --border-lighter: rgba(255, 255, 255, 0.05);
    --border-dark: rgba(255, 255, 255, 0.2);
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #FFD700, #FFA500);
    --gradient-loader: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    
    /* Shadow */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Overlay Colors */
    --overlay-dark: rgba(26, 26, 46, 0.7);
    --overlay-darker: rgba(15, 15, 26, 0.7);
}

/* Светлая тема */
body.light-theme {
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --card-bg: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

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

/* ===== Навигация ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

body.light-theme .nav {
    background: rgba(255, 255, 255, 0.95);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: var(--primary-color);
    transform: rotate(180deg);
}

.theme-icon-sun,
.theme-icon-moon {
    font-size: 1.3rem;
    position: absolute;
    transition: var(--transition-fast);
}

.theme-icon-sun {
    opacity: 0;
    transform: rotate(-180deg);
}

.theme-icon-moon {
    opacity: 1;
    transform: rotate(0deg);
}

body.light-theme .theme-icon-sun {
    opacity: 1;
    transform: rotate(0deg);
}

body.light-theme .theme-icon-moon {
    opacity: 0;
    transform: rotate(180deg);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-dark);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ===== Кнопки ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 215, 0, 0.7);
    }
}

/* ===== Hero секция ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 1;
    transition: opacity 1s ease;
}

.hero-image-bg.hidden {
    opacity: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-video.loaded {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.3) 0%, rgba(15, 15, 26, 0.3) 100%);
    backdrop-filter: blur(5px);
    z-index: 2;
}

body.light-theme .hero-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(240, 240, 240, 0.3) 100%);
}

.hero-container {
    position: relative;
    z-index: 3;
}

body.light-theme .hero-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(240, 240, 240, 0.3) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.hero-content {
    color: white;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title-accent {
    display: block;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-buttons {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    display: flex;
    justify-content: center;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    justify-content: center;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.feature-icon {
    font-size: 1.3rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-text {
    font-size: 0.85rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== Секции ===== */
section {
    padding: 100px 0;
    background-color: var(--bg-white);
    transition: background-color var(--transition-normal);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-color);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    margin: 15px auto 0;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.8s ease 0.3s;
}

.section-title.animate::after {
    transform: scaleX(1);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Анимации появления ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

/* ===== Услуги ===== */
.services {
    background: var(--bg-light);
}

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

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-desc {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Тарифы ===== */
.tariffs {
    background: var(--bg-white);
    background-image: radial-gradient(#333 1px, transparent 1px);
    background-size: 20px 20px;
}

body.light-theme .tariffs {
    background-image: radial-gradient(var(--text-muted) 1px, transparent 1px);
}

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

.tariff-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    border: 2px solid transparent;
}

.tariff-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.tariff-popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.tariff-popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.tariff-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.tariff-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tariff-icon {
    font-size: 2.5rem;
}

.tariff-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.tariff-price {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.price-unit {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.tariff-features li {
    padding: 10px 0;
    color: var(--text-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tariff-features li:last-child {
    border-bottom: none;
}

.tariff-card .btn {
    width: 100%;
}

/* ===== Режим работы ===== */
.schedule {
    position: relative;
    color: white;
    overflow: hidden;
    min-height: 100vh;
}

.schedule-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('jobs.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.schedule-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(15, 15, 26, 0.7) 100%);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.schedule .container {
    position: relative;
    z-index: 2;
}

.schedule .section-title,
.schedule .section-subtitle {
    color: white;
}

.schedule .section-subtitle {
    opacity: 0.9;
}

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

.schedule-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.schedule-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.schedule-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.schedule-desc {
    opacity: 0.9;
    line-height: 1.7;
}

/* ===== FAQ ===== */
.faq {
    background: var(--bg-light);
    background-image: radial-gradient(var(--text-dark) 1px, transparent 1px);
    background-size: 20px 20px;
}

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

.faq-item {
    background: var(--card-bg);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition-fast);
    color: var(--primary-dark);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

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

/* ===== Как заказать ===== */
.how-to-order {
    position: relative;
    background: var(--bg-white);
    overflow: hidden;
    min-height: 100vh;
}

.neurons-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.neuron {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: neuronFloat 15s infinite ease-in-out;
}

@keyframes neuronFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.9);
    }
    75% {
        transform: translate(-50px, -20px) scale(1.05);
    }
}

body.light-theme .neuron {
    background: rgba(0, 0, 0, 0.1);
}

body:not(.light-theme) .neuron {
    background: rgba(255, 255, 255, 0.3);
}

.how-to-order .container {
    position: relative;
    z-index: 1;
}

.steps-list {
    max-width: 800px;
    margin: 0 auto 60px;
}

.step-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 20px;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step-desc {
    color: var(--text-light);
    line-height: 1.7;
}

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

/* ===== Футер ===== */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: var(--transition-fast);
}

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

.social-icon {
    font-size: 1.3rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

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

    .hero-title-accent {
        font-size: 2rem;
    }

    .hero-features {
        justify-content: center;
    }

    .tariff-popular {
        transform: none;
    }

    .tariff-popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--card-bg);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: var(--transition-normal);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-title-accent {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .services-grid,
    .tariffs-grid,
    .schedule-content {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-title-accent {
        font-size: 1.3rem;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .service-card,
    .tariff-card,
    .schedule-card {
        padding: 30px 20px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .step-item {
        padding: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ===== Дополнительные анимации ===== */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

/* ===== Плавный скролл ===== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ===== Улучшение доступности ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== Фокус для клавиатуры ===== */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* ===== Кастомный скроллбар ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
    border: 3px solid var(--bg-light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-light);
}

/* ===== Плавная прокрутка для всей страницы ===== */
html {
    scroll-behavior: smooth;
}

/* ===== Кнопка возврата вверх ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--secondary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* ===== Печать ===== */
@media print {
    .nav,
    .hero-scroll,
    .btn,
    .scroll-to-top {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }
}
