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

:root {
    --dark-blue: #0a0e27;
    --neon-cyan: #00f5ff;
    --neon-pink: #ff00ff;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --bg-dark: #050810;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-dark);
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    font-family: 'Space Grotesk', sans-serif;
}

.logo:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
}

.menu-toggle {
    width: 40px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--neon-cyan);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
    background: var(--neon-pink);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
    background: var(--neon-pink);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-blue);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    color: var(--neon-cyan);
    background: transparent;
    border: none;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.menu-close:hover {
    color: var(--neon-pink);
    transform: rotate(90deg);
}

.fullscreen-nav ul {
    list-style: none;
    text-align: center;
}

.fullscreen-nav li {
    margin: 2rem 0;
}

.menu-link {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    transition: var(--transition);
    font-family: 'Space Grotesk', sans-serif;
}

.menu-link::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    transition: var(--transition);
}

.menu-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 30px var(--neon-cyan);
}

.menu-link:hover::before {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 80px;
}

/* Blob Background */
.blob-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blob-morph 20s infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--neon-cyan);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--neon-pink);
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    top: 50%;
    right: 10%;
    animation-delay: 14s;
}

@keyframes blob-morph {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 50%;
    }
    25% {
        transform: translate(100px, -100px) scale(1.2);
        border-radius: 60% 40% 30% 70%;
    }
    50% {
        transform: translate(-50px, 150px) scale(0.8);
        border-radius: 30% 60% 70% 40%;
    }
    75% {
        transform: translate(150px, 50px) scale(1.1);
        border-radius: 50% 30% 60% 40%;
    }
}

/* Decorative Elements */
.hero-decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.decorative-circle {
    position: absolute;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 3s infinite;
}

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

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 8%;
    border-color: var(--neon-pink);
    animation-delay: 1.5s;
}

.decorative-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0.2;
    animation: line-move 4s infinite;
}

.line-1 {
    width: 2px;
    height: 400px;
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.line-2 {
    width: 400px;
    height: 2px;
    bottom: 25%;
    left: 10%;
    background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
    animation-delay: 2s;
}

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

@keyframes line-move {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.2;
    }
    50% {
        transform: translateY(30px);
        opacity: 0.4;
    }
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
}

.hero-content {
    opacity: 0;
    animation: assemble-in 1.5s ease-out forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.title-part {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
    animation: title-assemble 0.8s ease-out forwards;
}

.title-part.part-1 { animation-delay: 0.2s; }
.title-part.part-2 { animation-delay: 0.4s; color: var(--neon-cyan); }
.title-part.part-3 { animation-delay: 0.6s; }
.title-part.part-4 { animation-delay: 0.8s; color: var(--neon-pink); }
.title-part.part-5 { animation-delay: 1s; }

@keyframes title-assemble {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes assemble-in {
    to {
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fade-in-up 1s ease-out 1.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-in-up 1s ease-out 1.4s forwards;
}

.hero-btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.hero-btn.primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    color: var(--dark-blue);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 245, 255, 0.8);
}

.hero-btn.secondary {
    background: transparent;
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
}

.hero-btn.secondary:hover {
    background: var(--neon-cyan);
    color: var(--dark-blue);
    box-shadow: 0 0 30px var(--neon-cyan);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--neon-cyan);
    border-bottom: 3px solid var(--neon-cyan);
    transform: rotate(45deg);
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(10px);
    }
}

/* Statistics Section */
.stats-section {
    padding: 6rem 0;
    background: rgba(10, 14, 39, 0.5);
    border-top: 1px solid rgba(0, 245, 255, 0.1);
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 20px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.3);
    background: rgba(0, 245, 255, 0.1);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services Section - Interactive Diagram */
.services-section {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-diagram {
    position: relative;
    min-height: 600px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 3rem 2rem;
    padding: 4rem 0;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.diagram-item {
    position: relative;
    width: 100%;
    max-width: 300px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    animation: diagram-appear 0.8s ease-out forwards;
    margin: 0 auto;
}

/* Шахматный порядок для 5 элементов: первая строка - элементы 1, 2, 3 */
/* Вторая строка - элементы 4, 5 смещены вправо */
.diagram-item:nth-child(1) { 
    grid-column: 1 / 3;
    grid-row: 1;
    animation-delay: 0.1s;
}
.diagram-item:nth-child(2) { 
    grid-column: 3 / 5;
    grid-row: 1;
    animation-delay: 0.2s;
}
.diagram-item:nth-child(3) { 
    grid-column: 5 / 7;
    grid-row: 1;
    animation-delay: 0.3s;
}
/* Вторая строка смещена - начинается со 2-й колонки */
.diagram-item:nth-child(4) { 
    grid-column: 2 / 4;
    grid-row: 2;
    animation-delay: 0.4s;
}
.diagram-item:nth-child(5) { 
    grid-column: 4 / 6;
    grid-row: 2;
    animation-delay: 0.5s;
}

.diagram-item:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 3;
}

.diagram-item:hover .diagram-icon {
    box-shadow: 0 0 30px var(--neon-cyan);
    border-color: var(--neon-cyan);
}

.diagram-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid rgba(0, 245, 255, 0.3);
    transition: var(--transition);
}

.diagram-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.diagram-item h3 {
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.diagram-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}

@keyframes diagram-appear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Portfolio Section - Horizontal Scroll */
.portfolio-section {
    padding: 8rem 0;
    background: rgba(10, 14, 39, 0.5);
}

.portfolio-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-cyan) var(--bg-dark);
}

.portfolio-scroll::-webkit-scrollbar {
    height: 8px;
}

.portfolio-scroll::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

.portfolio-scroll::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 4px;
}

.portfolio-item {
    min-width: 400px;
    scroll-snap-align: start;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.3);
}

.portfolio-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.portfolio-info p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-content {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 20px;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-family: 'Playfair Display', serif;
}

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

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

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 245, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: rgba(10, 14, 39, 0.5);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 2rem;
}

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

.contact-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-item a {
    color: var(--neon-pink);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.contact-form {
    background: rgba(0, 245, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    color: var(--dark-blue);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.5);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 245, 255, 0.1);
}

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

.footer-section h3 {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: var(--neon-cyan);
}

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

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

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-blue);
    color: var(--text-light);
    padding: 2rem;
    z-index: 10000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 2px solid var(--neon-cyan);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    color: var(--dark-blue);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .services-diagram {
        min-height: 500px;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .diagram-item {
        max-width: 250px;
    }
    
    .diagram-item:nth-child(1),
    .diagram-item:nth-child(2),
    .diagram-item:nth-child(3),
    .diagram-item:nth-child(4),
    .diagram-item:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
        margin-left: auto;
        margin-right: auto;
    }
    
    .diagram-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .menu-link {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .services-diagram {
        min-height: 400px;
        padding: 2rem 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .diagram-item {
        max-width: 200px;
        width: 100%;
    }
    
    .diagram-item:nth-child(1),
    .diagram-item:nth-child(2),
    .diagram-item:nth-child(3),
    .diagram-item:nth-child(4),
    .diagram-item:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
        margin-left: auto;
        margin-right: auto;
    }
    
    .portfolio-item {
        min-width: 300px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        min-width: 280px;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--neon-cyan);
    color: var(--dark-blue);
}
