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

:root {
    /* Neon Color Scheme */
    --neon-cyan: #00f0ff;
    --neon-purple: #b026ff;
    --neon-pink: #ff006e;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --text-light: #e0e0e0;
    --text-muted: #888888;
    
    /* Typography - Large Headlines */
    --font-size-hero: clamp(3rem, 8vw, 8rem);
    --font-size-h1: clamp(2.5rem, 6vw, 5rem);
    --font-size-h2: clamp(2rem, 5vw, 3.5rem);
    --font-size-h3: clamp(1.5rem, 4vw, 2.5rem);
    --font-size-body: clamp(1rem, 2vw, 1.25rem);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    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;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--neon-cyan);
    font-size: 3rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-close:hover {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 30px var(--neon-cyan);
}

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

.fullscreen-link {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fullscreen-link::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    transition: width 0.3s ease;
}

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

.fullscreen-link:hover::before {
    width: 1.5rem;
}

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

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

.logo {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--neon-cyan);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--neon-cyan);
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 30px var(--neon-cyan), 0 0 60px var(--neon-cyan);
}

.menu-toggle {
    background: none;
    border: 2px solid var(--neon-purple);
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10001;
}

.menu-toggle:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan);
}

.menu-line {
    width: 24px;
    height: 2px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--neon-cyan);
}

.menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section - Layered with Parallax */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-layer {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.hero-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(176, 38, 255, 0.4) 0%, rgba(0, 240, 255, 0.3) 100%);
    z-index: 2;
}

.hero-gradient-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--dark-bg) 70%);
    z-index: 3;
}

.hero-content-layer {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--neon-cyan), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 0 50px var(--neon-cyan);
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--neon-purple), transparent);
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
    box-shadow: 0 0 50px var(--neon-purple);
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--neon-pink), transparent);
    top: 50%;
    right: 10%;
    animation-delay: 4s;
    box-shadow: 0 0 50px var(--neon-pink);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-30px) translateX(20px);
    }
    66% {
        transform: translateY(30px) translateX(-20px);
    }
}

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

.hero-title-large {
    font-size: var(--font-size-hero);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 240, 255, 0.5);
}

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

.hero-subtitle-large {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.btn-neon {
    padding: 1rem 2.5rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    border: 2px solid;
}

.btn-primary-neon {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-color: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.btn-primary-neon:hover {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.8), 0 0 80px rgba(176, 38, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary-neon {
    background: transparent;
    border-color: var(--neon-purple);
    color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.3);
}

.btn-secondary-neon:hover {
    background: var(--neon-purple);
    color: var(--dark-bg);
    box-shadow: 0 0 40px rgba(176, 38, 255, 0.8);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--neon-cyan), transparent);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

/* Section Headers */
.section-header-neon {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title-neon {
    font-size: var(--font-size-h2);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-subtitle-neon {
    font-size: var(--font-size-body);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section - Horizontal Slider */
.services-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-secondary);
    position: relative;
}

.services-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.services-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    will-change: transform;
}

.service-slide {
    flex: 0 0 100%;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .service-slide {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .service-slide {
        flex: 0 0 calc(33.333% - 1.33rem);
    }
}

.service-card-neon {
    background: var(--dark-tertiary);
    border: 2px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(176, 38, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-neon:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    transform: translateY(-10px);
}

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

.service-icon-neon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.3);
}

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

.service-title-neon {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-description-neon {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 240, 255, 0.2);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

/* About Section - Icon Cards */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
}

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

.about-card-neon {
    background: var(--dark-secondary);
    border: 2px solid rgba(176, 38, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card-neon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(176, 38, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card-neon:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 40px rgba(176, 38, 255, 0.4);
    transform: translateY(-5px);
}

.about-card-neon:hover::after {
    opacity: 1;
}

.card-icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-icon-neon {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px var(--neon-purple));
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.card-title-neon {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.card-text-neon {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-secondary);
}

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

.feature-item-neon {
    text-align: center;
    padding: 2rem;
}

.feature-number-neon {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.feature-title-neon {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.feature-text-neon {
    color: var(--text-light);
    line-height: 1.8;
}

/* Process Section - Timeline */
.process-section-neon {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
}

.process-timeline-neon {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline-neon::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.process-step-neon {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number-neon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-h2);
    font-weight: 900;
    color: var(--dark-bg);
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    position: relative;
    z-index: 2;
}

.step-content-neon {
    flex: 1;
    padding-top: 1rem;
}

.step-title-neon {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.step-description-neon {
    color: var(--text-light);
    line-height: 1.8;
    font-size: var(--font-size-body);
}

.step-connector-neon {
    display: none;
}

/* Statistics Section */
.statistics-section-neon {
    padding: var(--spacing-xl) 0;
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.statistics-section-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.1), transparent);
    pointer-events: none;
}

.stats-grid-neon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card-neon {
    background: var(--dark-tertiary);
    border: 2px solid rgba(176, 38, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-neon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card-neon:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
    transform: translateY(-10px);
}

.stat-card-neon:hover::before {
    opacity: 1;
}

.stat-number-neon {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-label-neon {
    font-size: var(--font-size-body);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Technologies Section */
.technologies-section-neon {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
}

.technologies-grid-neon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.tech-item-neon {
    background: var(--dark-secondary);
    border: 2px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.tech-item-neon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.tech-item-neon:hover::before {
    opacity: 1;
}

.tech-icon-neon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px var(--neon-cyan));
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.tech-item-neon:hover .tech-icon-neon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 30px var(--neon-cyan));
}

.tech-name-neon {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.tech-description-neon {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq-section-neon {
    padding: var(--spacing-xl) 0;
    background: var(--dark-secondary);
}

.faq-container-neon {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-neon {
    background: var(--dark-tertiary);
    border: 2px solid rgba(0, 240, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-neon:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.faq-item-neon.active {
    border-color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.3);
}

.faq-question-neon {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: var(--font-size-body);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question-neon:hover {
    color: var(--neon-cyan);
}

.faq-item-neon.active .faq-question-neon {
    color: var(--neon-purple);
}

.faq-icon-neon {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    transition: transform 0.3s ease;
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item-neon.active .faq-icon-neon {
    transform: rotate(45deg);
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

.faq-answer-neon {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item-neon.active .faq-answer-neon {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer-neon p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.cta-section-neon {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(176, 38, 255, 0.1));
    position: relative;
    overflow: hidden;
}

.cta-section-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 240, 255, 0.2), transparent),
                radial-gradient(circle at 70% 50%, rgba(176, 38, 255, 0.2), transparent);
    pointer-events: none;
}

.cta-content-neon {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title-neon {
    font-size: var(--font-size-h1);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-text-neon {
    font-size: var(--font-size-body);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

.cta-buttons-neon {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-carousel {
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
}

.testimonial-card-neon {
    background: var(--dark-tertiary);
    border: 2px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.testimonial-content-neon {
    margin-bottom: 2rem;
}

.testimonial-text-neon {
    font-size: var(--font-size-body);
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    position: relative;
}

.testimonial-text-neon::before,
.testimonial-text-neon::after {
    content: '"';
    font-size: 3rem;
    color: var(--neon-purple);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text-neon::before {
    top: -1rem;
    left: -1rem;
}

.testimonial-text-neon::after {
    bottom: -2rem;
    right: -1rem;
}

.testimonial-author-neon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar-neon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.author-avatar-neon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name-neon {
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 0.25rem;
}

.author-role-neon {
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

.dot-neon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.3);
    border: 2px solid var(--neon-cyan);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-neon.active {
    background: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan);
    transform: scale(1.2);
}

/* Contact Section - Map + Form */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-secondary);
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.contact-map-side {
    background: var(--dark-tertiary);
    border-right: 2px solid rgba(0, 240, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.map-placeholder-neon {
    width: 100%;
    height: 100%;
    background: var(--dark-secondary);
    border: 2px dashed rgba(176, 38, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-content {
    text-align: center;
    z-index: 1;
}

.map-title-neon {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
}

.contact-info-neon {
    text-align: left;
}

.contact-info-item {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-info-item strong {
    color: var(--neon-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-info-item a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.contact-form-side {
    background: var(--dark-bg);
    padding: 3rem;
    display: flex;
    align-items: center;
}

.form-container-neon {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.form-title-neon {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.form-subtitle-neon {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form-neon {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-neon input,
.form-group-neon textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-tertiary);
    border: 2px solid rgba(0, 240, 255, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: var(--font-size-body);
    font-family: inherit;
    transition: all 0.3s ease;
}

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

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

.form-group-neon textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-neon {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border: none;
    color: var(--dark-bg);
    padding: 1rem 2.5rem;
    font-size: var(--font-size-body);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.btn-submit-neon:hover {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.8);
    transform: translateY(-2px);
}

/* Footer */
.footer-neon {
    background: var(--dark-bg);
    border-top: 2px solid rgba(0, 240, 255, 0.2);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

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

.footer-text-neon {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-text-neon a {
    color: var(--neon-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-links-neon {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-neon a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links-neon a:hover {
    color: var(--neon-cyan);
    padding-left: 0.5rem;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-tertiary);
    border-top: 2px solid var(--neon-cyan);
    box-shadow: 0 -4px 20px rgba(0, 240, 255, 0.3);
    z-index: 2000;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    color: var(--text-light);
    margin: 0;
}

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

.cookie-content a:hover {
    text-shadow: 0 0 10px var(--neon-cyan);
}

.cookie-btn {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-btn:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .contact-map-side {
        border-right: none;
        border-bottom: 2px solid rgba(0, 240, 255, 0.2);
    }
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-neon {
        width: 100%;
        text-align: center;
    }
    
    .services-slider-wrapper {
        padding: 1rem 0;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .slider-prev {
        left: 0.5rem;
    }
    
    .slider-next {
        right: 0.5rem;
    }
    
    .about-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-neon {
        grid-template-columns: 1fr;
    }
    
    .process-timeline-neon::before {
        left: 40px;
    }
    
    .step-number-neon {
        width: 80px;
        height: 80px;
        font-size: var(--font-size-h3);
    }
    
    .process-step-neon {
        gap: 1rem;
    }
    
    .stats-grid-neon {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .technologies-grid-neon {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons-neon {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-floating-elements {
        display: none;
    }
    
    .service-card-neon,
    .about-card-neon,
    .testimonial-card-neon {
        padding: 1.5rem;
    }
    
    .contact-map-side,
    .contact-form-side {
        padding: 2rem 1.5rem;
    }
    
    .process-timeline-neon::before {
        display: none;
    }
    
    .process-step-neon {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number-neon {
        margin: 0 auto;
    }
    
    .stats-grid-neon {
        grid-template-columns: 1fr;
    }
    
    .technologies-grid-neon {
        grid-template-columns: 1fr;
    }
    
    .tech-item-neon {
        min-height: 180px;
        padding: 2rem 1.5rem;
    }
    
    .tech-icon-neon {
        font-size: 3rem;
    }
    
    .faq-question-neon {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .faq-answer-neon {
        padding: 0 1.5rem;
    }
    
    .faq-item-neon.active .faq-answer-neon {
        padding: 0 1.5rem 1rem 1.5rem;
    }
}

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

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.policy-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 240, 255, 0.2);
}

.policy-title {
    font-size: var(--font-size-h1);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.policy-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.policy-content {
    line-height: 1.8;
    color: var(--text-light);
}

.policy-content h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

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

.policy-content p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

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

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-content a:hover {
    text-shadow: 0 0 10px var(--neon-cyan);
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    text-shadow: 0 0 10px var(--neon-cyan);
    padding-left: 0.5rem;
}

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

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    text-shadow: 0 0 30px var(--neon-cyan);
}

.thanks-title {
    font-size: var(--font-size-h1);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.thanks-text {
    font-size: var(--font-size-body);
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}
