/* ============================================
   ZAWY LTD - Mobile App Development Website
   Modern, Responsive Design
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Новая палитра - фиолетово-синяя тема */
    --primary-color: #8b5cf6;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --secondary-color: #06b6d4;
    --accent-color: #ec4899;
    --neon-green: #10b981;
    --neon-blue: #3b82f6;
    
    --text-dark: #ffffff;
    --text-light: #b0b0b0;
    --text-muted: #808080;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-light: #1a1a24;
    --bg-white: rgba(26, 26, 36, 0.8);
    --border-color: rgba(0, 240, 255, 0.2);
    
    /* Glassmorphism shadows */
    --shadow-glass: 0 8px 32px 0 rgba(0, 240, 255, 0.15);
    --shadow-neon: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3);
    --shadow-neon-pink: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
    
    /* Neomorphism shadows */
    --shadow-neo-inset: inset 8px 8px 16px rgba(0, 0, 0, 0.5), inset -8px -8px 16px rgba(0, 240, 255, 0.1);
    --shadow-neo-outset: 8px 8px 16px rgba(0, 0, 0, 0.5), -8px -8px 16px rgba(0, 240, 255, 0.1);
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-darker);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Частицы на фоне */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(16, 185, 129, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(59, 130, 246, 0.2), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%;
    animation: particleMove 20s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes particleMove {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%; }
    50% { background-position: 100% 0%, 0% 100%, 50% 0%, 100% 0%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Typography - Четкие заголовки */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: none;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1 { 
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
}
h2 { 
    font-size: clamp(2rem, 6vw, 4rem);
}
h3 { 
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}
h4 { 
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    color: var(--bg-darker);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-neon);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.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: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-neon), 0 0 40px rgba(0, 240, 255, 0.6);
    filter: brightness(1.2);
}

.btn-secondary {
    background: rgba(0, 240, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.2);
    color: var(--primary-light);
    box-shadow: var(--shadow-neon);
    transform: translateY(-3px) scale(1.05);
    border-color: var(--primary-light);
}

.btn-full {
    width: 100%;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 240, 255, 0.3);
    border-top: 1px solid rgba(0, 240, 255, 0.3);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    color: white;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    color: var(--bg-darker);
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.cookie-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
    filter: brightness(1.2);
}

/* Header - Glassmorphism + Sticky */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 240, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(10, 10, 15, 0.9);
    box-shadow: 0 8px 40px rgba(0, 240, 255, 0.2);
    border-bottom-color: rgba(0, 240, 255, 0.4);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    text-shadow: none;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-color);
}

.logo:hover::after {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-color);
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: none;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(0, 240, 255, 0.3);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Полноэкранное меню */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(30px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

.fullscreen-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fullscreen-menu-links li {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fullscreen-menu.active .fullscreen-menu-links li {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu.active .fullscreen-menu-links li:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.active .fullscreen-menu-links li:nth-child(2) { transition-delay: 0.2s; }
.fullscreen-menu.active .fullscreen-menu-links li:nth-child(3) { transition-delay: 0.3s; }
.fullscreen-menu.active .fullscreen-menu-links li:nth-child(4) { transition-delay: 0.4s; }
.fullscreen-menu.active .fullscreen-menu-links li:nth-child(5) { transition-delay: 0.5s; }
.fullscreen-menu.active .fullscreen-menu-links li:nth-child(6) { transition-delay: 0.6s; }
.fullscreen-menu.active .fullscreen-menu-links li:nth-child(7) { transition-delay: 0.7s; }
.fullscreen-menu.active .fullscreen-menu-links li:nth-child(8) { transition-delay: 0.8s; }

.fullscreen-menu-links a {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--primary-color);
    display: inline-block;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.fullscreen-menu-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    box-shadow: 0 0 15px var(--primary-color);
}

.fullscreen-menu-links a:hover {
    transform: scale(1.1);
    filter: none;
}

.fullscreen-menu-links a:hover::after {
    width: 100%;
}

.fullscreen-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.fullscreen-menu-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: var(--shadow-neon);
    background: rgba(0, 240, 255, 0.2);
}

.fullscreen-menu-close span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    transition: var(--transition);
}

.fullscreen-menu-close span:first-child {
    transform: rotate(45deg);
}

.fullscreen-menu-close span:last-child {
    transform: rotate(-45deg);
}

/* Hero Section - Улучшенная версия с оригинальным слайдером */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
    z-index: 1;
    perspective: 1000px;
}

/* Декоративные элементы фона */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    animation: heroBgMove 20s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes heroBgMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(5%, 5%) rotate(120deg); }
    66% { transform: translate(-5%, -5%) rotate(240deg); }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(10, 10, 15, 0.7) 0%, rgba(5, 5, 8, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Плавающие декоративные формы */
.hero-section .decorative-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-section .decorative-shape:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-section .decorative-shape:nth-child(2) {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.hero-section .decorative-shape:nth-child(3) {
    width: 250px;
    height: 250px;
    background: var(--neon-green);
    top: 60%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%) scale(0.8) rotateY(15deg);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    pointer-events: all;
    z-index: 2;
}

.hero-slide.prev {
    transform: translateX(-100%) scale(0.8) rotateY(-15deg);
    opacity: 0.3;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    object-fit: cover;
}

.hero-slide.active .hero-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.75) 0%, rgba(5, 5, 8, 0.85) 50%, rgba(10, 10, 15, 0.75) 100%);
    z-index: 1;
    transition: opacity 1s ease;
}

.hero-slide.active .hero-overlay {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: #ffffff;
    max-width: 900px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 0.9;
    color: #ffffff;
    filter: none;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--neon-green));
    animation: titleUnderline 1.5s ease forwards 0.5s;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

@keyframes titleUnderline {
    to { width: 100%; }
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.8;
    text-shadow: none;
    animation: subtitleFade 1s ease forwards 0.7s;
    opacity: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

@keyframes subtitleFade {
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: buttonsFade 1s ease forwards 0.9s;
    opacity: 0;
}

@keyframes buttonsFade {
    to { opacity: 1; }
}

.hero-buttons .btn {
    color: var(--bg-darker);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons .btn::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 ease, height 0.6s ease;
}

.hero-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.4);
}

.hero-buttons .btn-secondary {
    border-color: rgba(0, 240, 255, 0.5);
    color: var(--primary-color);
    background: rgba(0, 240, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(0, 240, 255, 0.25);
    color: var(--primary-light);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon);
}

/* Улучшенная навигация слайдера */
.hero-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
    align-items: center;
    background: rgba(10, 10, 15, 0.5);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.dot:hover {
    transform: scale(1.3);
    background-color: rgba(255, 255, 255, 0.6);
}

.dot:hover::before {
    width: 100%;
    height: 100%;
}

.dot.active {
    width: 40px;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
    transform: scale(1.2);
}

.dot.active::before {
    width: 100%;
    height: 100%;
}

/* Стрелки навигации */
.hero-nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.hero-nav-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 240, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.hero-nav-arrow:hover {
    transform: scale(1.15) rotate(5deg);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
    background: rgba(0, 240, 255, 0.1);
}

.hero-nav-arrow svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.hero-nav-arrow:hover svg {
    transform: scale(1.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    z-index: 10;
    animation: scrollBounce 2s ease infinite;
    text-shadow: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
    color: var(--secondary-color);
    text-shadow: none;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, var(--secondary-color), transparent);
    animation: scrollLineMove 2s ease infinite;
}

@keyframes scrollLineMove {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(200%); opacity: 0; }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpStagger {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Дополнительные декоративные анимации */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.8), 0 0 60px rgba(6, 182, 212, 0.4);
    }
}

@keyframes rotateGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Section Styles - Улучшенные декоративные элементы */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.2) 20%, 
        rgba(6, 182, 212, 0.2) 50%, 
        rgba(139, 92, 246, 0.2) 80%, 
        transparent 100%);
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(255, 0, 255, 0.2));
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Services Section - Оригинальная верстка с улучшенными эффектами */
.services-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    z-index: 1;
    padding: 120px 0;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(26, 26, 36, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid rgba(0, 240, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: 0;
}

.service-card:hover::before {
    left: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03) rotateY(2deg);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 60px rgba(139, 92, 246, 0.4),
        0 0 40px rgba(0, 240, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(26, 26, 36, 0.85);
}

.service-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 240, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(0, 240, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-card:hover .service-icon::before {
    width: 150%;
    height: 150%;
}

.service-card:hover .service-icon {
    transform: rotate(8deg) scale(1.15) translateY(-5px);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 15px 40px rgba(139, 92, 246, 0.5),
        0 0 30px rgba(0, 240, 255, 0.4);
    border-color: var(--primary-color);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card:hover h3 {
    transform: translateX(5px);
    filter: none;
}

.service-card p {
    margin-bottom: 1.75rem;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.service-features {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.5));
    transition: all 0.3s ease;
}

.service-card:hover .service-features li {
    transform: translateX(8px);
    color: rgba(255, 255, 255, 0.9);
}

.service-card:hover .service-features li::before {
    transform: translateX(5px);
    color: var(--neon-green);
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.8));
}

.service-features li:nth-child(1) { transition-delay: 0.05s; }
.service-features li:nth-child(2) { transition-delay: 0.1s; }
.service-features li:nth-child(3) { transition-delay: 0.15s; }

/* Solutions Accordion Section - Креативный дизайн */
.solutions-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.accordion-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.accordion-item {
    border: 2px solid rgba(0, 240, 255, 0.15);
    border-radius: 24px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: rgba(26, 26, 36, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.98);
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--neon-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

.accordion-item.active::before {
    transform: scaleX(1);
}

.accordion-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.accordion-item.active::after {
    opacity: 1;
}

.accordion-item.active {
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 60px rgba(139, 92, 246, 0.4),
        0 0 50px rgba(0, 240, 255, 0.3);
    background: rgba(26, 26, 36, 0.85);
    transform: translateY(0) scale(1);
}

.accordion-header {
    padding: 2rem 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.accordion-header:hover::before {
    transform: translateX(100%);
}

.accordion-header:hover {
    background-color: rgba(26, 26, 36, 0.7);
    padding-left: 3rem;
}

.accordion-item.active .accordion-header {
    background-color: rgba(26, 26, 36, 0.9);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
}

.accordion-item.active .accordion-header h3 {
    transform: translateX(5px);
    filter: none;
}

.accordion-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 240, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    flex-shrink: 0;
}

.accordion-header:hover .accordion-icon {
    transform: scale(1.1) rotate(90deg);
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg) scale(1.15);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-darker);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
    border-color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 1200px;
}

.accordion-body {
    padding: 0 2.5rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease 0.2s;
}

.accordion-item.active .accordion-body {
    opacity: 1;
    transform: translateY(0);
}

.accordion-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s ease;
    overflow: hidden;
    position: relative;
}

.accordion-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.accordion-item.active .accordion-image::before {
    opacity: 1;
}

.accordion-item.active .accordion-image {
    transform: scale(1.05);
    box-shadow: 
        0 20px 50px rgba(139, 92, 246, 0.4),
        0 0 40px rgba(0, 240, 255, 0.3);
}

.accordion-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
    filter: brightness(0.9);
}

.accordion-item.active .accordion-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.accordion-text {
    position: relative;
    z-index: 1;
}

.accordion-text p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.accordion-item.active .accordion-text p {
    color: rgba(255, 255, 255, 0.9);
}

.accordion-text ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.accordion-text li {
    padding: 0.875rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    transition: all 0.4s ease;
    transform: translateX(0);
    border-left: 2px solid transparent;
    padding-left: 2.5rem;
}

.accordion-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    filter: none;
    transition: all 0.4s ease;
}

.accordion-item.active .accordion-text li {
    transform: translateX(8px);
    color: rgba(255, 255, 255, 0.9);
    border-left-color: rgba(139, 92, 246, 0.3);
}

.accordion-item.active .accordion-text li::before {
    transform: translateX(5px);
    color: var(--neon-green);
    filter: none;
}

.accordion-text li:nth-child(1) { transition-delay: 0.1s; }
.accordion-text li:nth-child(2) { transition-delay: 0.15s; }
.accordion-text li:nth-child(3) { transition-delay: 0.2s; }
.accordion-text li:nth-child(4) { transition-delay: 0.25s; }

/* Process Section - Оригинальная временная линия */
.process-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.process-timeline {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Вертикальная линия временной шкалы */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--neon-green) 100%);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    border-radius: 2px;
    opacity: 0.3;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr 320px;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
    padding: 2.5rem;
    border-radius: 24px;
    background: rgba(26, 26, 36, 0.5);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 240, 255, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-60px) scale(0.95);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--primary-color);
}

.process-step:hover::before,
.process-step.visible::before {
    transform: scaleY(1);
}

.process-step::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.process-step:hover::after {
    opacity: 1;
}

.process-step:hover,
.process-step.visible {
    transform: translateX(0) scale(1) translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 50px rgba(139, 92, 246, 0.3),
        0 0 40px rgba(0, 240, 255, 0.2);
    background: rgba(26, 26, 36, 0.75);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    filter: none;
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
}

.step-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.process-step:hover .step-number::before {
    transform: translate(-50%, -50%) scale(1);
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    filter: none;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.process-step:hover .step-content h3 {
    transform: translateX(5px);
    filter: none;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    transition: color 0.4s ease;
}

.process-step:hover .step-content p {
    color: rgba(255, 255, 255, 0.9);
}

.step-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s ease;
    position: relative;
    z-index: 1;
}

.step-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.process-step:hover .step-image::before {
    opacity: 1;
}

.process-step:hover .step-image {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 
        0 20px 50px rgba(139, 92, 246, 0.4),
        0 0 40px rgba(0, 240, 255, 0.3);
}

.step-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.process-step:hover .step-image img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

/* Portfolio Section - Оригинальная галерея с эффектами */
.portfolio-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 240, 255, 0.1);
    background: rgba(26, 26, 36, 0.5);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 
        0 25px 60px rgba(139, 92, 246, 0.4),
        0 0 50px rgba(0, 240, 255, 0.3);
    z-index: 10;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%) skewX(-20deg);
    transition: transform 0.8s ease;
    z-index: 1;
}

.portfolio-item:hover .portfolio-image::after {
    transform: translateX(200%) skewX(-20deg);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    filter: brightness(0.9);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top, 
        rgba(10, 10, 15, 0.98) 0%, 
        rgba(10, 10, 15, 0.7) 40%,
        rgba(10, 10, 15, 0.3) 70%,
        transparent 100%
    );
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: white;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    z-index: 3;
    transform: translateY(20px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
    border-color: var(--primary-color);
    box-shadow: 
        inset 0 0 40px rgba(139, 92, 246, 0.3),
        0 0 30px rgba(0, 240, 255, 0.2);
}

.portfolio-overlay h3 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
}

.portfolio-item:hover .portfolio-overlay h3 {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s ease 0.2s;
}

.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.5);
    transform: translateY(10px) scale(0.9);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
    position: relative;
    overflow: hidden;
}

.portfolio-tag::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: left 0.6s ease;
}

.portfolio-item:hover .portfolio-tag::before {
    left: 100%;
}

.portfolio-item:hover .portfolio-tag {
    transform: translateY(0) scale(1);
    opacity: 1;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

/* About Section - Улучшенная верстка */
.about-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-top: 1rem;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    filter: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section - Оригинальный слайдер */
.testimonials-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-slider {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.testimonial-slide {
    display: none;
    padding: 4rem 3.5rem;
    background: rgba(26, 26, 36, 0.7);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 30px;
    border: 2px solid rgba(0, 240, 255, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateX(100px) rotateY(-15deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.testimonial-slide.active::before {
    opacity: 1;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0) rotateY(0deg) scale(1);
    animation: testimonialSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes testimonialSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px) rotateY(-15deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg) scale(1);
    }
}

.testimonial-quote {
    margin-bottom: 2rem;
    color: var(--primary-color);
    filter: none;
    opacity: 0.7;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.testimonial-slide.active .testimonial-quote {
    animation: quotePulse 2s ease infinite;
}

@keyframes quotePulse {
    0%, 100% { 
        filter: none;
        transform: scale(1);
        opacity: 0.7;
    }
    50% { 
        filter: none;
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    padding-left: 2rem;
    border-left: 3px solid var(--primary-color);
    transition: all 0.4s ease;
}

.testimonial-slide.active .testimonial-text {
    border-left-color: var(--secondary-color);
    box-shadow: -5px 0 20px rgba(0, 240, 255, 0.2);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    transition: all 0.4s ease;
    position: relative;
}

.author-avatar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.testimonial-slide.active .author-avatar::before {
    opacity: 1;
}

.testimonial-slide.active .author-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.testimonial-slide.active .author-avatar img {
    transform: scale(1.1);
}

.author-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.testimonial-slide.active .author-info h4 {
    filter: none;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: color 0.4s ease;
}

.testimonial-slide.active .author-info span {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.test-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.test-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.test-dot:hover {
    transform: scale(1.4);
    background-color: rgba(255, 255, 255, 0.5);
}

.test-dot:hover::before {
    width: 100%;
    height: 100%;
}

.test-dot.active {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 45px;
    height: 12px;
    border-radius: 6px;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.8);
    transform: scale(1.2);
}

.test-dot.active::before {
    width: 100%;
    height: 100%;
}

/* Contact Section - Улучшенная верстка */
.contact-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(255, 0, 255, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    box-shadow: var(--shadow-neo-inset), 0 0 20px rgba(0, 240, 255, 0.2);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-neon), var(--shadow-neo-inset);
    border-color: var(--primary-color);
}

.contact-details h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    transition: var(--transition-fast);
    text-shadow: none;
}

.contact-details a:hover {
    color: var(--primary-light);
    text-shadow: none;
    text-decoration: underline;
}

.contact-form {
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: var(--shadow-glass), var(--shadow-neo-outset);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    box-shadow: var(--shadow-neo-inset);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.2), var(--shadow-neon), var(--shadow-neo-inset);
    background: rgba(10, 10, 15, 0.8);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(0, 240, 255, 0.4);
    background: rgba(10, 10, 15, 0.7);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: var(--primary-color);
    transition: var(--transition-fast);
    text-shadow: none;
}

.footer-contact a:hover {
    color: var(--primary-light);
    text-shadow: none;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition-fast);
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
    text-shadow: none;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.business-id {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Policy Pages Styles */
.policy-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: var(--shadow-glass);
}

.policy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.policy-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: var(--shadow-glass);
}

.policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.policy-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
}

.policy-content ul,
.policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-light);
}

.policy-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
    transition: var(--transition-fast);
    box-shadow: 0 0 5px rgba(0, 240, 255, 0.3);
}

.policy-content a:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary-light);
    text-shadow: none;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.policy-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    text-align: center;
    background-color: var(--bg-light);
}

.thanks-content {
    max-width: 600px;
    background: rgba(26, 26, 36, 0.8);
    backdrop-filter: blur(20px);
    padding: 4rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: var(--shadow-neon), var(--shadow-glass);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    filter: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.thanks-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr 250px;
        gap: 1.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation - используем полноэкранное меню */
    .nav-menu {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .fullscreen-menu-links a {
        font-size: clamp(1.5rem, 6vw, 3rem);
    }
    
    /* Hero */
    .hero-section .decorative-shape {
        display: none;
    }
    
    .hero-nav-arrows {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.25rem);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-dots {
        bottom: 30px;
        padding: 10px 20px;
    }
    
    .scroll-indicator {
        bottom: 90px;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Accordion */
    .accordion-body {
        grid-template-columns: 1fr;
    }
    
    .accordion-image {
        order: -1;
    }
    
    /* Process */
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
        margin-left: 40px;
    }
    
    .step-number {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .step-image {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .process-step::before {
        left: -20px;
        width: 3px;
        height: 100%;
        top: 0;
        transform: none;
    }
    
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Cookie Notice */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    /* Fullscreen Menu */
    .fullscreen-menu-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .fullscreen-menu-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .testimonial-slide {
        padding: 2rem 1.5rem;
    }
    
    .policy-content {
        padding: 2rem 1.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
