/* Reset and Base Styles - global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Палитра — курсы языков: неон + тёплый акцент */
    --neon-blue: #00d4ff;
    --neon-cyan: #00f5ff;
    --neon-orange: #ff6b35;
    --neon-pink: #ff0080;
    --accent-gold: #f0c14b;
    --accent-amber: #e8a838;
    --dark-bg: #0a0e27;
    --dark-secondary: #1a1f3a;
    --dark-tertiary: #252b47;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --text-muted: #7a8ba8;
    
    /* Неоморфные тени */
    --neomorph-light: rgba(255, 255, 255, 0.1);
    --neomorph-dark: rgba(0, 0, 0, 0.3);
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #00f5ff 50%, #f0c14b 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #252b47 100%);
    --gradient-neon: linear-gradient(135deg, #00d4ff 0%, #ff0080 100%);
    --gradient-gold: linear-gradient(135deg, #f0c14b 0%, #e8a838 100%);
    
    /* Анимации */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
}

/* Геометрический паттерн фона + тёплый оттенок */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(0, 212, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(0, 212, 255, 0.03) 87.5%, rgba(0, 212, 255, 0.03)),
        linear-gradient(150deg, rgba(0, 212, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(0, 212, 255, 0.03) 87.5%, rgba(0, 212, 255, 0.03)),
        linear-gradient(30deg, rgba(240, 193, 75, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(240, 193, 75, 0.02) 87.5%),
        linear-gradient(150deg, rgba(240, 193, 75, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(240, 193, 75, 0.02) 87.5%);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    z-index: 0;
    pointer-events: none;
}

/* Декоративная сетка/блик в углу */
body::after {
    content: '';
    position: fixed;
    top: -30%;
    right: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Sticky Header с неоморфизмом */
.header {
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-neon);
    transition: width 0.4s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo-icon {
    color: var(--accent-gold);
    margin-right: 0.25em;
    font-size: 0.9em;
    -webkit-text-fill-color: initial;
    text-shadow: 0 0 12px rgba(240, 193, 75, 0.6);
}

/* Полноэкранное меню */
.nav {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: width 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: var(--neon-cyan);
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Полноэкранное меню для мобильных */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-bg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu .nav {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.fullscreen-menu .nav-link {
    font-size: 2rem;
    color: var(--text-primary);
}

/* Hero Section с параллаксом */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Removed scale transform to prevent image distortion */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(26, 31, 58, 0.75) 50%, rgba(37, 43, 71, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    padding: 0 40px;
    max-width: 1000px;
    width: 100%;
}

/* Огромные заголовки */
.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(240, 193, 75, 0.15);
    border: 1px solid rgba(240, 193, 75, 0.4);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out both;
    box-shadow: 0 0 20px rgba(240, 193, 75, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 3rem;
    color: var(--text-secondary);
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Декоративные формы в hero */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.15;
}
.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
    top: 20%;
    right: 10%;
    animation: float 15s ease-in-out infinite;
}
.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    bottom: 25%;
    left: 5%;
    animation: float 18s ease-in-out infinite reverse;
    animation-delay: 3s;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 4;
}

.slider-btn {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-bounce);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.slider-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--neon-cyan);
    width: 40px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

/* Buttons с неоморфизмом и неоновым свечением */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-bounce);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-neon);
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

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

.btn-outline:hover {
    background: var(--neon-orange);
    color: var(--text-primary);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
}

/* Section Styles */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* Бейдж над заголовком секции */
.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: var(--neon-cyan);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Разделители секций */
.section-divider {
    height: 1px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--accent-gold), var(--neon-cyan), transparent);
    opacity: 0.4;
}
.section-divider-top {
    margin-bottom: 60px;
}
.section-divider-bottom {
    margin-top: 60px;
}

/* Огромные заголовки секций */
.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Services Section с неоморфными карточками */
.services {
    background: var(--dark-secondary);
    position: relative;
}

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

/* Неоморфные карточки с 3D трансформациями */
.service-card {
    background: var(--dark-tertiary);
    padding: 3rem 2rem;
    border-radius: 30px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
    
    /* Неоморфизм */
    box-shadow: 
        inset 8px 8px 16px var(--neomorph-dark),
        inset -8px -8px 16px var(--neomorph-light),
        0 10px 40px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--neon-cyan);
    box-shadow: 
        inset 8px 8px 16px var(--neomorph-dark),
        inset -8px -8px 16px var(--neomorph-light),
        0 20px 60px rgba(0, 212, 255, 0.4),
        0 0 40px rgba(0, 212, 255, 0.2);
}

.service-icon {
    width: 100%;
    height: 250px;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.service-emoji {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 2rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    z-index: 1;
}
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: brightness(0.8);
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
    filter: brightness(1) drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.service-card h3 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* About Section с асимметричной сеткой */
.about {
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 5rem;
    align-items: center;
}

.about-image {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    transform: rotate(-2deg);
    transition: var(--transition-bounce);
}

.about-image:hover {
    transform: rotate(0deg);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.4);
}

.about-image {
    position: relative;
}
.about-image-frame {
    position: absolute;
    inset: -12px;
    border: 2px solid rgba(240, 193, 75, 0.3);
    border-radius: 30px;
    pointer-events: none;
    z-index: 1;
    transition: var(--transition-smooth);
}
.about-image:hover .about-image-frame {
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(240, 193, 75, 0.2);
}
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) contrast(1.1);
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--dark-tertiary);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s;
}

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Fleet Section */
.fleet {
    background: var(--dark-secondary);
}

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

.fleet-item {
    background: var(--dark-tertiary);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition-bounce);
    border: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
}

.fleet-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity 0.4s;
    mix-blend-mode: overlay;
}

.fleet-item:hover::after {
    opacity: 0.3;
}

.fleet-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
    border-color: var(--neon-cyan);
}

.fleet-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: grayscale(0.3);
}

.fleet-item:hover img {
    filter: grayscale(0) brightness(1.05);
    /* Removed scale transform to prevent image distortion */
}

.fleet-item h3 {
    padding: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.fleet-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Coverage Section - Modern Layout */
.coverage-map-wrapper {
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-map {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition-smooth);
}

.coverage-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.4);
    border-color: var(--neon-cyan);
}

.coverage-map img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    transition: var(--transition-smooth);
}

/* Блок языков без картинки — только бейджи */
.coverage-map-languages {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-tertiary) 0%, var(--dark-secondary) 100%);
}
.coverage-map-languages .coverage-map-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 2rem;
}
.coverage-map-languages .lang-badge {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: var(--neon-cyan);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}
.coverage-map-languages .lang-badge:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
}

.coverage-map:hover img {
    filter: brightness(1) contrast(1.1);
    /* Removed scale transform to prevent image distortion */
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 30px;
}

.map-badge {
    background: rgba(26, 31, 58, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.badge-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.8));
}

.badge-text {
    color: var(--neon-cyan);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Области покрытия */
.coverage-areas-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.coverage-areas-title {
    color: var(--neon-cyan);
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}

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

.coverage-item-modern {
    position: relative;
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 25px;
    padding: 30px;
    transition: var(--transition-bounce);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 200px;
}

.coverage-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.coverage-item-modern:hover::before {
    opacity: 1;
}

.coverage-item-modern:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
}

.coverage-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
    transition: var(--transition-smooth);
}

.coverage-item-modern:hover .coverage-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
}

.coverage-content-item h4 {
    color: var(--neon-cyan);
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.coverage-item-modern:hover .coverage-content-item h4 {
    color: var(--neon-orange);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.coverage-content-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

.coverage-hover-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.coverage-item-modern:hover .coverage-hover-effect {
    width: 400px;
    height: 400px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--dark-tertiary);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 30px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition-bounce);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--neon-cyan);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.4);
}

.pricing-card.featured {
    border-color: var(--neon-orange);
    background: linear-gradient(135deg, var(--dark-tertiary) 0%, rgba(255, 107, 53, 0.1) 100%);
    transform: scale(1.05);
}

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

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-neon);
    color: var(--text-primary);
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.pricing-card h3 {
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1;
}
.price-period {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.pricing-features li {
    padding: 1rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    padding-left: 2rem;
}

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

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--dark-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: var(--dark-tertiary);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: rgba(0, 212, 255, 0.1);
    font-weight: 900;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
}

.testimonial-stars {
    color: var(--neon-orange);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    color: var(--neon-cyan);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact Section - Modern Design */
.contact {
    position: relative;
    overflow: hidden;
}

/* Декоративные элементы фона */
.contact-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: -5%;
    animation-delay: 5s;
}

.decoration-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    height: 2px;
    animation: slideLine 15s linear infinite;
}

.line-1 {
    width: 200px;
    top: 30%;
    left: 10%;
    transform: rotate(45deg);
}

.line-2 {
    width: 150px;
    bottom: 30%;
    right: 15%;
    transform: rotate(-45deg);
    animation-delay: 7s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes slideLine {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotate(45deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(100px) rotate(45deg);
    }
}

/* Современная компоновка контактной секции */
.contact-content-modern {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Контактные карточки вокруг формы */
.contact-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card-modern {
    position: relative;
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-bounce);
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.contact-card-modern:hover::before {
    opacity: 1;
}

.contact-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.card-content h4 {
    color: var(--neon-cyan);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

.card-content a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.card-content a:hover {
    color: var(--neon-orange);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.emergency-text {
    color: var(--neon-orange) !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.card-hover-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-card-modern:hover .card-hover-effect {
    width: 300px;
    height: 300px;
}

/* Центральная форма с glassmorphism */
.contact-form-modern {
    position: relative;
    background: rgba(26, 31, 58, 0.7);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.contact-form-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0.5;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.form-header h3 {
    color: var(--neon-cyan);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

/* Современные поля формы */
.contact-form-modern .contact-form {
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group-modern {
    position: relative;
    margin-bottom: 0;
}

.form-group-modern input,
.form-group-modern textarea,
.form-group-modern select {
    width: 100%;
    padding: 18px 20px;
    background: rgba(10, 14, 39, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
    outline: none;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus,
.form-group-modern select:focus {
    border-color: var(--neon-cyan);
    background: rgba(10, 14, 39, 0.8);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.form-group-modern label {
    position: absolute;
    top: 18px;
    left: 20px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    pointer-events: none;
    transition: var(--transition-smooth);
    background: rgba(10, 14, 39, 0.9);
    padding: 0 8px;
    z-index: 1;
}

.form-group-modern input:focus + label,
.form-group-modern input:not(:placeholder-shown) + label,
.form-group-modern textarea:focus + label,
.form-group-modern textarea:not(:placeholder-shown) + label {
    top: -12px;
    left: 15px;
    font-size: 0.85rem;
    color: var(--neon-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group-modern select:focus + label,
.form-group-modern select:not([value=""]) + label,
.form-group-modern select:not([value=""][disabled]) + label {
    top: -12px;
    left: 15px;
    font-size: 0.85rem;
    color: var(--neon-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group-modern select:not([value=""]) + label {
    top: -12px;
    left: 15px;
    font-size: 0.85rem;
    color: var(--neon-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.form-group-modern input:focus ~ .input-border,
.form-group-modern textarea:focus ~ .input-border,
.form-group-modern select:focus ~ .input-border {
    width: 100%;
}

.form-textarea-wrapper {
    grid-column: 1 / -1;
}

.form-textarea-wrapper textarea {
    min-height: 150px;
    resize: vertical;
}

.form-select-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d4ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
    cursor: pointer;
    color: var(--text-muted);
}

.form-select-wrapper select:not([value=""]) {
    color: var(--text-primary);
}

.form-select-wrapper select option {
    background: var(--dark-tertiary);
    color: var(--text-primary);
}

.form-select-wrapper select option[value=""][disabled] {
    color: var(--text-muted);
}

/* Кнопка отправки */
.btn-form-submit {
    width: 100%;
    padding: 18px 40px;
    background: var(--gradient-neon);
    border: none;
    border-radius: 15px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-bounce);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.btn-form-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-form-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-form-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.btn-form-submit svg {
    transition: transform 0.3s ease;
}

.btn-form-submit:hover svg {
    transform: translateX(5px);
}

.form-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-primary);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-neon);
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h3 {
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-tertiary);
    color: var(--text-primary);
    padding: 2rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 2px solid var(--neon-cyan);
}

.cookie-notification.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

.cookie-content a {
    color: var(--neon-cyan);
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.cookie-content a:hover {
    color: var(--neon-orange);
}

.cookie-btn {
    background: var(--gradient-neon);
    color: var(--text-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-bounce);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.cookie-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

/* Policy Pages Styles */
.policy-page {
    padding: 150px 0 100px;
    min-height: 80vh;
    background: var(--dark-bg);
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--dark-tertiary);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.policy-content h1 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.policy-content h2 {
    color: var(--neon-cyan);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-content h3 {
    color: var(--neon-cyan);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.policy-content ul,
.policy-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.policy-content li {
    margin-bottom: 0.75rem;
    line-height: 1.9;
}

.policy-content a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.policy-content a:hover {
    color: var(--neon-orange);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.policy-content .last-updated {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.1);
}

/* Accordion Styles */
.accordion {
    margin: 2rem 0;
}

.accordion-item {
    margin-bottom: 1rem;
    background: var(--dark-tertiary);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: var(--neon-cyan);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    color: var(--neon-cyan);
    background: rgba(0, 212, 255, 0.05);
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--neon-cyan);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 2rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.accordion-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Thanks Page */
.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 100px;
    text-align: center;
    background: var(--dark-bg);
}

.thanks-content {
    max-width: 700px;
    background: var(--dark-tertiary);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.thanks-content h1 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.thanks-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.9;
}

/* ========== Inner pages: hero, bento, cta ========== */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 31, 58, 0.8) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-hero-label {
    display: inline-block;
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.page-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Bento grid - Services page */
.services-page-section {
    padding-top: 60px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-item {
    border-radius: 24px;
    overflow: hidden;
    background: var(--dark-tertiary);
    border: 1px solid rgba(0, 212, 255, 0.15);
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    flex-direction: row;
}

.bento-large .bento-image {
    width: 45%;
    min-height: 100%;
}

.bento-large .bento-content {
    width: 55%;
    padding: 2.5rem;
    justify-content: center;
}

.bento-tall {
    grid-row: span 2;
}

.bento-tall .bento-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bento-wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
}

.bento-wide .bento-image {
    width: 40%;
    min-height: 220px;
}

.bento-wide .bento-content {
    width: 60%;
    padding: 2rem;
}

.bento-small {
    grid-column: span 1;
}

.bento-small .bento-content {
    padding: 1.5rem;
}

.bento-image {
    min-height: 200px;
    overflow: hidden;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.bento-item:hover .bento-image img {
    transform: scale(1.05);
}

.bento-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bento-content h3 {
    color: var(--neon-cyan);
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.bento-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.bento-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.bento-content.bento-accent {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 24px;
}

.link-arrow {
    color: var(--neon-cyan);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.link-arrow:hover {
    color: var(--neon-orange);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* CTA strip */
.cta-strip {
    background: var(--dark-secondary);
    padding: 80px 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.cta-strip-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-strip-inner h2 {
    color: var(--neon-cyan);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-strip-inner p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.cta-strip-inner .btn {
    margin: 0;
}

/* ========== About page: timeline / split ========== */
.about-page-hero {
    min-height: 55vh;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 80px 0 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-split-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.25);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.about-split-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) contrast(1.05);
}

.about-split-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-split-text p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.timeline-section {
    padding: 80px 0 120px;
    background: var(--dark-secondary);
}

.timeline-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-orange));
    opacity: 0.5;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-tertiary);
    border: 3px solid var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    z-index: 1;
}

.timeline-item h3 {
    color: var(--neon-cyan);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stats-row .stat {
    margin: 0;
}

/* Contact page */
.contact-page-section {
    padding: 120px 0 100px;
    min-height: 70vh;
}

.contact-page .section-header {
    margin-bottom: 50px;
}

.contact-page .contact-form-modern {
    max-width: 700px;
}

/* Bento + About responsive */
@media (max-width: 968px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
        flex-direction: column;
    }
    .bento-large .bento-image {
        width: 100%;
        min-height: 220px;
    }
    .bento-large .bento-content {
        width: 100%;
        padding: 2rem;
    }
    .bento-tall {
        grid-row: span 1;
    }
    .bento-wide {
        grid-column: span 2;
        flex-direction: column;
    }
    .bento-wide .bento-image {
        width: 100%;
        min-height: 200px;
    }
    .bento-wide .bento-content {
        width: 100%;
    }
    .about-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 60px 0 80px;
    }
    .about-split-text .section-title {
        text-align: center;
    }
    .timeline::before {
        left: 18px;
    }
    .timeline-item {
        padding-left: 55px;
        padding-bottom: 2rem;
    }
    .timeline-dot {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 40px 0;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-large,
    .bento-wide {
        grid-column: span 1;
    }
    .page-hero {
        min-height: 40vh;
        padding: 120px 0 60px;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Stagger animation для карточек */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .coverage-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 100px 2rem 2rem;
        box-shadow: none;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        justify-content: flex-start;
    }

    .nav.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    }

    .burger-menu {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-15px) scale(1.02);
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 80px 0;
    }

    .services-grid,
    .fleet-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .cookie-btn {
        width: 100%;
    }

    .policy-content {
        padding: 2.5rem 2rem;
    }

    .policy-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .coverage-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .coverage-areas-title {
        font-size: 2rem;
    }
    
    .contact-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-modern {
        padding: 35px 25px;
    }
    
    .contact-content-modern {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }

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

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

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