﻿/* Основні змінні з кольорової схеми */
:root {
    --primary-dark: #0a0a0a;
    --primary-teal: #00ffcc;
    --accent-beige: #D9B08C;
    --accent-peach: #ff6b6b;
    --light-teal: #00ccaa;
    --neon-green: #00ff88;
    --neon-blue: #00b4d8;
    --neon-purple: #7209b7;
    --terminal-green: #33ff00;
    --text-dark: #0a0a0a;
    --text-light: #ffffff;
    --text-gray: #888888;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --neon-shadow: 0 0 20px rgba(0, 255, 204, 0.8);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

/* Загальні стилі */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Orbitron', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: #000000;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

    /* Фонова анімація з параллаксом */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -3;
        background: radial-gradient(circle at 20% 50%, rgba(0, 255, 204, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(114, 9, 183, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 20%, rgba(0, 180, 216, 0.1) 0%, transparent 50%);
        animation: bgFloat 20s ease-in-out infinite;
    }

@keyframes bgFloat {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }

    33% {
        transform: scale(1.1) rotate(120deg);
    }

    66% {
        transform: scale(0.9) rotate(240deg);
    }
}

/* Цифровая сетка на фоне */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: linear-gradient(rgba(0, 255, 204, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 204, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 10s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Параллакс контейнер */
.parallax-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Навігація з футуристичним дизайном */
.navbar {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 204, 0.3);
    box-shadow: 0 4px 30px rgba(0, 255, 204, 0.2);
    transition: all 0.3s ease;
}

    .navbar:hover {
        box-shadow: 0 8px 40px rgba(0, 255, 204, 0.4);
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 80px;
    }

/* Великий логотип */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 10;
    margin: -20px 0;
}

    .logo:hover {
        transform: scale(1.05);
    }

.logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 204, 0.8));
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 204, 0.8));
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(0, 255, 204, 1));
    }
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 255, 204, 0.8), 0 0 20px rgba(0, 255, 204, 0.6), 0 0 30px rgba(0, 255, 204, 0.4);
    }

    50% {
        text-shadow: 0 0 20px rgba(0, 255, 204, 1), 0 0 40px rgba(0, 255, 204, 0.8), 0 0 60px rgba(0, 255, 204, 0.6);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

    .nav-menu a {
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
        font-family: 'Rajdhani', sans-serif;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: var(--transition);
        position: relative;
        padding: 0.5rem 0;
    }

        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
            transition: width 0.3s;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(0, 255, 204, 0.1) 0%, transparent 70%);
            transition: width 0.3s;
            z-index: -1;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--neon-green);
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
        }

            .nav-menu a:hover::before,
            .nav-menu a.active::before {
                width: 100%;
            }

            .nav-menu a:hover::after,
            .nav-menu a.active::after {
                width: 120%;
            }

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
    transition: var(--transition);
    cursor: pointer;
}

    .social-icon:hover {
        fill: var(--neon-green);
        transform: translateY(-3px) scale(1.2);
        filter: drop-shadow(0 5px 15px rgba(0, 255, 204, 0.6));
    }

/* Hero секція з параллаксом */
.hero {
    color: var(--text-light);
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.parallax-layer {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
}

.parallax-layer-1 {
    background: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' x='0' y='0' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0 40L40 0M0 0L40 40' stroke='%2300ffcc' stroke-width='0.5' opacity='0.1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
    animation: parallaxDrift 20s ease-in-out infinite;
}

.parallax-layer-2 {
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 204, 0.1) 0%, transparent 40%), radial-gradient(circle at 70% 30%, rgba(114, 9, 183, 0.1) 0%, transparent 40%);
    animation: parallaxDrift 30s ease-in-out infinite reverse;
}

.parallax-layer-3 {
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='dots' x='0' y='0' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='10' cy='10' r='1' fill='%2300ffcc' opacity='0.3'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23dots)'/%3E%3C/svg%3E");
    animation: parallaxDrift 25s linear infinite;
}

@keyframes parallaxDrift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-2%, -1%) scale(1.02);
    }

    50% {
        transform: translate(1%, -2%) scale(0.98);
    }

    75% {
        transform: translate(-1%, 1%) scale(1.01);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-blue) 50%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-family: 'Rajdhani', sans-serif;
    color: rgba(255, 255, 255, 0.8);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .hero-feature:hover {
        background: rgba(0, 255, 204, 0.2);
        border-color: rgba(0, 255, 204, 0.6);
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0, 255, 204, 0.3);
    }

.feature-icon {
    width: 24px;
    height: 24px;
    fill: var(--neon-green);
}

/* Футуристична кнопка */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    text-decoration: none;
    font-weight: bold;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 30%, 100% 100%, 20px 100%, 0 70%);
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.4), transparent);
        transition: left 0.5s;
    }

    .cta-button:hover {
        background: rgba(0, 255, 204, 0.2);
        box-shadow: 0 0 20px rgba(0, 255, 204, 0.5), inset 0 0 20px rgba(0, 255, 204, 0.1);
        transform: translateY(-2px);
    }

        .cta-button:hover::before {
            left: 100%;
        }

    .cta-button.large {
        font-size: 1.3rem;
        padding: 1.5rem 3rem;
    }

/* Ретро-футуристичний термінал */
.hero-animation {
    animation: slideInRight 1s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.code-window {
    background: #000000;
    border: 2px solid var(--terminal-green);
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 0 50px rgba(51, 255, 0, 0.5), inset 0 0 50px rgba(51, 255, 0, 0.1);
    position: relative;
    overflow: hidden;
    font-family: 'Courier New', monospace;
}

    .code-window::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: repeating-linear-gradient( 0deg, transparent, transparent 2px, rgba(51, 255, 0, 0.03) 2px, rgba(51, 255, 0, 0.03) 4px );
        pointer-events: none;
        animation: scanlines 8s linear infinite;
    }

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
}

.code-header {
    background: var(--terminal-green);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--terminal-green);
}

    .code-header::before {
        content: 'TERMINAL v2.0.1';
        font-size: 0.8rem;
        font-weight: bold;
        color: #000;
        letter-spacing: 2px;
    }

    .code-header::after {
        content: '◼ ◻ ✕';
        font-size: 1rem;
        color: #000;
    }

.code-content {
    padding: 1.5rem;
    color: var(--terminal-green);
    font-size: 1rem;
    line-height: 1.4;
    text-shadow: 0 0 5px rgba(51, 255, 0, 0.8);
    position: relative;
    min-height: 300px;
}

    .code-content::before {
        content: '> ';
        color: var(--terminal-green);
    }

    .code-content pre {
        margin: 0;
        white-space: pre-wrap;
    }

.code-keyword {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.code-function {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.code-string {
    color: #ffff00;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
}

/* Typing cursor */
.code-content::after {
    content: '█';
    animation: blink 1s infinite;
    color: var(--terminal-green);
    text-shadow: 0 0 10px rgba(51, 255, 0, 1);
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }

    50%, 100% {
        opacity: 0;
    }
}

/* Лічильники з цифровим дизайном */
.counters {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-top: 1px solid rgba(0, 255, 204, 0.2);
    border-bottom: 1px solid rgba(0, 255, 204, 0.2);
    position: relative;
    overflow: hidden;
}

    .counters::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: repeating-linear-gradient( 90deg, transparent, transparent 100px, rgba(0, 255, 204, 0.03) 100px, rgba(0, 255, 204, 0.03) 101px );
        animation: slideGrid 10s linear infinite;
    }

@keyframes slideGrid {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(101px);
    }
}

.counters h2,
.services h2,
.featured-works h2,
.video-showcase h2,
.recent-articles h2,
.technologies h2,
.process h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

    .counters h2::before,
    .services h2::before,
    .featured-works h2::before {
        content: '< ';
        position: absolute;
        left: -50px;
        color: var(--neon-green);
        opacity: 0.5;
    }

    .counters h2::after,
    .services h2::after,
    .featured-works h2::after {
        content: ' />';
        position: absolute;
        right: -50px;
        color: var(--neon-blue);
        opacity: 0.5;
    }

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, var(--neon-green), var(--neon-blue), var(--neon-purple)) 1;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

    .counter-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, rgba(0, 255, 204, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .counter-item:hover::before {
        opacity: 1;
    }

    .counter-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(0, 255, 204, 0.3), inset 0 0 30px rgba(0, 255, 204, 0.1);
    }

.counter-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(0, 255, 204, 0.5);
    display: block;
    letter-spacing: 2px;
}

.counter-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
}

/* Послуги з кіберпанк стилем */
.services {
    padding: 5rem 0;
    background: rgba(10, 10, 10, 0.95);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 2.5rem;
    border: 1px solid rgba(0, 255, 204, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

    .service-card::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, var(--neon-green), var(--neon-blue), var(--neon-purple), var(--neon-green));
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .service-card:hover::before {
        opacity: 1;
        animation: borderRotate 3s linear infinite;
    }

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 255, 204, 0.05);
    box-shadow: 0 20px 40px rgba(0, 255, 204, 0.3), inset 0 0 60px rgba(0, 255, 204, 0.05);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    box-shadow: 0 5px 20px rgba(114, 9, 183, 0.5);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(0, 180, 216, 0.1));
    border: 2px solid rgba(0, 255, 204, 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

    .service-icon::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(0, 255, 204, 0.3), transparent);
        animation: iconShine 3s linear infinite;
    }

@keyframes iconShine {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.service-icon img {
    width: 60%;
    height: 60%;
    filter: brightness(0) invert(1);
    z-index: 1;
    position: relative;
}

.service-card h3 {
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin: 1rem 0;
}

.service-card li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 2rem;
}

    .service-card li:before {
        content: '▸';
        position: absolute;
        left: 0;
        color: var(--neon-blue);
        font-size: 1.2rem;
        animation: pulse 2s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.service-price {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.8);
    letter-spacing: 1px;
}

/* Процес роботи */
.process {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

    .process::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--neon-green), var(--neon-blue), transparent);
        z-index: 0;
    }

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    z-index: 1;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.9);
    border: 3px solid var(--neon-green);
    color: var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    margin: 0 auto 1rem;
    position: relative;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: rotate(45deg) scale(1.1);
    background: rgba(0, 255, 204, 0.1);
    box-shadow: 0 0 40px rgba(0, 255, 204, 0.8), inset 0 0 40px rgba(0, 255, 204, 0.2);
}

.process-step h3 {
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Виконані роботи */
.featured-works {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.95);
    position: relative;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.work-card {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(0, 255, 204, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    padding: 2rem;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

    .work-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, transparent 40%, rgba(0, 255, 204, 0.1) 50%, transparent 60%);
        transform: translateX(-100%);
        transition: transform 0.6s;
    }

    .work-card:hover::before {
        transform: translateX(100%);
    }

    .work-card:hover {
        transform: translateY(-5px);
        border-color: var(--neon-green);
        box-shadow: 0 10px 40px rgba(0, 255, 204, 0.3), inset 0 0 30px rgba(0, 255, 204, 0.05);
    }

.work-type-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}

.work-card h3 {
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-family: 'Orbitron', sans-serif;
}

.work-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.work-university {
    color: var(--neon-blue);
    font-weight: 600;
}

.work-language {
    color: var(--neon-purple);
    font-weight: 600;
}

.work-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.work-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 204, 0.2);
}

.work-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.play-video-btn {
    background: linear-gradient(45deg, rgba(0, 255, 204, 0.1), rgba(0, 180, 216, 0.1));
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

    .play-video-btn:hover {
        background: rgba(0, 255, 204, 0.2);
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(0, 255, 204, 0.5);
    }

/* Технології */
.technologies {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

    .technologies::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='circuit' x='0' y='0' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M10 10h80v80h-80z' fill='none' stroke='%2300ffcc' stroke-width='0.5' opacity='0.05'/%3E%3Ccircle cx='10' cy='10' r='2' fill='%2300ffcc' opacity='0.1'/%3E%3Ccircle cx='90' cy='90' r='2' fill='%2300ffcc' opacity='0.1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23circuit)'/%3E%3C/svg%3E");
        animation: techMove 30s linear infinite;
    }

@keyframes techMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 100px);
    }
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.tech-category {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border: 1px solid rgba(0, 255, 204, 0.2);
    position: relative;
    overflow: hidden;
}

    .tech-category::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
        animation: techScan 3s linear infinite;
    }

@keyframes techScan {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.tech-category h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--neon-green);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

    .tech-logos img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        filter: grayscale(100%) brightness(0.3);
        transition: all 0.3s ease;
        padding: 1rem;
        background: rgba(0, 255, 204, 0.05);
        border: 1px solid rgba(0, 255, 204, 0.2);
        clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    }

        .tech-logos img:hover {
            filter: grayscale(0%) brightness(1.2);
            transform: scale(1.2) rotate(5deg);
            background: rgba(0, 255, 204, 0.1);
            border-color: var(--neon-green);
            box-shadow: 0 0 30px rgba(0, 255, 204, 0.6);
        }

/* Статті */
.recent-articles {
    padding: 5rem 0;
    background: rgba(10, 10, 10, 0.95);
    position: relative;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.article-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border: 1px solid rgba(0, 255, 204, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

    .article-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
        animation: articleScan 4s linear infinite;
    }

@keyframes articleScan {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.article-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 204, 0.05);
    border-color: var(--neon-green);
    box-shadow: 0 10px 40px rgba(0, 255, 204, 0.3);
}

.article-date {
    color: var(--neon-blue);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.article-card h3 {
    margin-bottom: 1rem;
}

    .article-card h3 a {
        color: var(--neon-green);
        text-decoration: none;
        transition: all 0.3s ease;
        font-family: 'Orbitron', sans-serif;
    }

        .article-card h3 a:hover {
            text-shadow: 0 0 10px rgba(0, 255, 204, 0.8);
        }

.article-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

    .read-more:hover {
        color: var(--neon-green);
        gap: 1rem;
        text-shadow: 0 0 10px rgba(0, 255, 204, 0.8);
    }

/* CTA секція */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--neon-green);
    border-bottom: 2px solid var(--neon-green);
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, rgba(0, 255, 204, 0.1) 0%, transparent 50%);
        animation: ctaPulse 4s ease-in-out infinite;
    }

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 255, 204, 0.8);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-family: 'Rajdhani', sans-serif;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid rgba(0, 255, 204, 0.3);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

    .cta-feature svg {
        width: 24px;
        height: 24px;
        fill: var(--neon-green);
    }

/* Футер */
.footer {
    background: #000000;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(0, 255, 204, 0.3);
    margin-top: 5rem;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 204, 0.02) 50%, transparent 100%), url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' x='0' y='0' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M60 0L0 60M0 0L60 60' stroke='%2300ffcc' stroke-width='0.5' opacity='0.05'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
        animation: footerGrid 20s linear infinite;
    }

@keyframes footerGrid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    animation: footerScan 8s linear infinite;
}

@keyframes footerScan {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 204, 0.6));
}

.footer-logo h3 {
    font-size: 2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 400px;
}

/* Заголовки секцій */
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--neon-green);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

    .footer-section h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, var(--neon-green), transparent);
    }

/* Списки */
.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 0.6rem 0;
    position: relative;
    padding-left: 1.5rem;
}

    .footer-section li::before {
        content: '▸';
        position: absolute;
        left: 0;
        color: var(--neon-blue);
        transition: all 0.3s ease;
    }

    .footer-section li:hover::before {
        color: var(--neon-green);
        transform: translateX(5px);
    }

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

    .footer-section a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--neon-green);
        transition: width 0.3s ease;
    }

    .footer-section a:hover {
        color: var(--neon-green);
        text-shadow: 0 0 10px rgba(0, 255, 204, 0.6);
    }

        .footer-section a:hover::after {
            width: 100%;
        }

/* Контактна секція */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

    .contact-info-item::before {
        content: '◆';
        color: var(--neon-blue);
        font-size: 0.8rem;
    }

/* Telegram кнопка у футері */
.footer .telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(0, 180, 216, 0.1));
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
}

    .footer .telegram-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.3), transparent);
        transition: left 0.5s;
    }

    .footer .telegram-button:hover {
        background: rgba(0, 255, 204, 0.2);
        box-shadow: 0 0 30px rgba(0, 255, 204, 0.5);
        transform: translateY(-2px);
    }

        .footer .telegram-button:hover::before {
            left: 100%;
        }

/* Нижня частина футера */
.footer-bottom {
    text-align: center;
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(0, 255, 204, 0.1);
    position: relative;
    z-index: 1;
}

/* Соціальні мережі у футері */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: rgba(0, 255, 204, 0.05);
        border: 1px solid rgba(0, 255, 204, 0.3);
        transition: all 0.3s ease;
        clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    }

        .footer-social a:hover {
            background: rgba(0, 255, 204, 0.1);
            border-color: var(--neon-green);
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 10px 30px rgba(0, 255, 204, 0.3);
        }

    .footer-social svg {
        width: 24px;
        height: 24px;
        fill: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
    }

    .footer-social a:hover svg {
        fill: var(--neon-green);
        filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.8));
    }

/* Copyright */
.footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

    .footer-copyright p {
        color: rgba(255, 255, 255, 0.5);
        margin: 0;
        font-size: 0.9rem;
        font-family: 'Rajdhani', sans-serif;
        letter-spacing: 1px;
    }

.footer-links {
    display: flex;
    gap: 2rem;
}

    .footer-links a {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        position: relative;
    }

        .footer-links a::before {
            content: '[';
            color: var(--neon-blue);
            margin-right: 5px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .footer-links a::after {
            content: ']';
            color: var(--neon-blue);
            margin-left: 5px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--neon-green);
        }

            .footer-links a:hover::before,
            .footer-links a:hover::after {
                opacity: 1;
            }

/* Технічна інформація */
.footer-tech-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 204, 0.1);
    text-align: center;
}

.tech-stack {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1rem;
}

.tech-item {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
    position: relative;
}

    .tech-item::before {
        content: '//';
        color: var(--neon-green);
        margin-right: 5px;
    }

/* Адаптивність футера */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section li {
        padding-left: 0;
    }

        .footer-section li::before {
            display: none;
        }

    .footer-social {
        gap: 1rem;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 1rem;
    }

    .tech-stack {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Інші елементи */
.text-center {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(0, 180, 216, 0.1));
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}

    .view-all-btn:hover {
        transform: translateX(10px);
        background: rgba(0, 255, 204, 0.2);
        box-shadow: 0 5px 30px rgba(0, 255, 204, 0.5);
    }

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000000;
    border: 1px solid rgba(0, 255, 204, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-green), var(--neon-blue));
    border-radius: 6px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, var(--neon-blue), var(--neon-purple));
    }

/* Модальне вікно */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: #000;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 50px rgba(0, 255, 204, 0.5);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--neon-green);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

    .close-modal:hover {
        transform: rotate(90deg) scale(1.2);
        text-shadow: 0 0 20px rgba(0, 255, 204, 1);
    }

/* Адаптивність */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .logo-img {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 1rem;
        border: 1px solid rgba(0, 255, 204, 0.3);
        border-top: none;
    }

        .nav-menu.active {
            display: flex;
        }

    .social-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

        .mobile-menu-toggle span {
            width: 30px;
            height: 3px;
            background: var(--neon-green);
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .logo-img {
        height: 80px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .counters h2::before,
    .counters h2::after {
        display: none;
    }

    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .services-grid,
    .works-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}


/* Плаваюча кнопка Telegram */
.floating-telegram {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ffcc, #00b4d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 255, 204, 0.4);
    border: 2px solid rgba(0, 255, 204, 0.6);
}

    .floating-telegram:hover {
        transform: scale(1.1) translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 255, 204, 0.6);
    }

    .floating-telegram svg {
        width: 30px;
        height: 30px;
        fill: #0a0a0a;
    }

    .contact-section ~ .floating-telegram,
    body.contact-page .floating-telegram {
        display: none !important;
    }

/* Ховаємо на мобільних, якщо вже є в медіа-запиті */
@media (max-width: 480px) {
    .floating-telegram {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

        .floating-telegram svg {
            width: 25px;
            height: 25px;
        }
}

/* Стилі для інших сторінок */
.page-header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 255, 204, 0.3);
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%, rgba(0, 255, 204, 0.1) 0%, transparent 50%);
    }

    .page-header h1 {
        font-size: 3rem;
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 1;
        font-family: 'Orbitron', sans-serif;
        text-transform: uppercase;
        letter-spacing: 3px;
        background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

/* Прогрес-бар скролу */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue), var(--neon-purple));
    z-index: 1001;
    transition: width 0.1s ease;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.8);
}
/* Стилі для сторінки контактів */
.contact-section {
    padding: 4rem 0;
    background: rgba(10, 10, 10, 0.95);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2,
.contact-faq h2 {
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-methods {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: rgba(0, 255, 204, 0.05);
    border: 1px solid rgba(0, 255, 204, 0.2);
    padding: 2rem;
    border-radius: 10px;
}

    .contact-method h3 {
        color: var(--neon-green);
        margin-bottom: 1rem;
        font-family: 'Orbitron', sans-serif;
    }

/* Спеціальний стиль для Telegram посилання на сторінці контактів */
.contact-telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-green);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

    .contact-telegram-link:hover {
        color: var(--neon-blue);
        transform: translateX(5px);
    }

    .contact-telegram-link svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

.contact-process {
    margin-top: 3rem;
}

    .contact-process h3 {
        color: var(--neon-green);
        margin-bottom: 1rem;
        font-family: 'Orbitron', sans-serif;
    }

    .contact-process ol {
        list-style: none;
        counter-reset: process-counter;
        padding: 0;
    }

    .contact-process li {
        counter-increment: process-counter;
        position: relative;
        padding-left: 3rem;
        margin-bottom: 1rem;
        color: rgba(255, 255, 255, 0.8);
    }

        .contact-process li::before {
            content: counter(process-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 2rem;
            height: 2rem;
            background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
            color: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            border-radius: 50%;
        }

.faq-item {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 204, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        border-color: rgba(0, 255, 204, 0.3);
        background: rgba(0, 255, 204, 0.02);
    }

    .faq-item h4 {
        color: var(--neon-green);
        margin-bottom: 0.5rem;
    }

    .faq-item p {
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
    }

/* Адаптивність */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Завантаження шрифтів */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
