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

:root {
    /* Neon Color Scheme */
    --neon-cyan: #00f0ff;
    --neon-purple: #a855f7;
    --neon-pink: #ec4899;
    --dark-bg: #0a0a1a;
    --dark-surface: #151528;
    --dark-border: #1e1e3a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0c0;
    --text-muted: #6b6b8a;
    
    /* Shadows with glow */
    --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3);
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(168, 85, 247, 0.3);
    --glow-pink: 0 0 20px rgba(236, 72, 153, 0.5), 0 0 40px rgba(236, 72, 153, 0.3);
}

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

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

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

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

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

.logo:hover {
    color: var(--neon-purple);
    text-shadow: var(--glow-purple);
    transform: scale(1.05);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
    box-shadow: var(--glow-cyan);
}

.nav-link:hover {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

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

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

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

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: circle(0% at 50% 50%);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
    clip-path: circle(150% at 50% 50%);
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--neon-cyan);
    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;
    box-shadow: var(--glow-cyan);
}

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

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

.fullscreen-link {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.fullscreen-menu.active .fullscreen-link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--i) * 0.1s);
}

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

.fullscreen-link:hover {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    padding-left: 2rem;
}

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

/* Hero Section - Isometric 3D */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

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

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

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

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-purple);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--neon-pink);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

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

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-wrapper {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    animation: titleReveal 0.8s ease forwards;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.title-line.highlight {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.btn {
    padding: 1rem 2.5rem;
    border: 2px solid;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-neon {
    background: transparent;
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-cyan);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-neon:hover {
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

.btn-neon:hover::before {
    left: 0;
}

.btn-outline {
    background: transparent;
    color: var(--neon-purple);
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.btn-outline:hover {
    background: var(--neon-purple);
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.8);
    transform: translateY(-2px);
}

/* Circular Design */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease 0.5s both;
}

.circular-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Circle */
.central-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2), rgba(0, 240, 255, 0.05));
    border: 3px solid var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: centralPulse 3s ease-in-out infinite;
}

.inner-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent);
    border: 2px solid var(--neon-purple);
    box-shadow: var(--glow-purple);
    animation: innerRotate 8s linear infinite;
}

.pulse-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid var(--neon-cyan);
    opacity: 0.5;
    animation: pulseRing 2s ease-out infinite;
}

/* Orbits */
.orbit {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.4;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    animation: orbitRotate 15s linear infinite;
}

.orbit-2 {
    width: 400px;
    height: 400px;
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    animation: orbitRotate 20s linear infinite reverse;
}

.orbit-3 {
    width: 500px;
    height: 500px;
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
    animation: orbitRotate 25s linear infinite;
}

/* Orbit Circles */
.orbit-circle {
    position: absolute;
    border-radius: 50%;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.circle-1 {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, var(--neon-cyan), rgba(0, 240, 255, 0.3));
    border: 2px solid var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    animation: circleFloat 3s ease-in-out infinite;
}

.circle-2 {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--neon-purple), rgba(168, 85, 247, 0.3));
    border: 2px solid var(--neon-purple);
    box-shadow: var(--glow-purple);
    animation: circleFloat 4s ease-in-out infinite 0.5s;
}

.circle-3 {
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, var(--neon-pink), rgba(236, 72, 153, 0.3));
    border: 2px solid var(--neon-pink);
    box-shadow: var(--glow-pink);
    animation: circleFloat 3.5s ease-in-out infinite 1s;
}

/* Floating Circles */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.float-1 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.4), transparent);
    border: 2px solid var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    top: 10%;
    left: 20%;
    animation: floatMove 6s ease-in-out infinite;
}

.float-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4), transparent);
    border: 2px solid var(--neon-purple);
    box-shadow: var(--glow-purple);
    bottom: 15%;
    right: 25%;
    animation: floatMove 8s ease-in-out infinite 1s;
}

.float-3 {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.4), transparent);
    border: 2px solid var(--neon-pink);
    box-shadow: var(--glow-pink);
    top: 50%;
    left: 10%;
    animation: floatMove 7s ease-in-out infinite 2s;
}

/* Animations */
@keyframes orbitRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes centralPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: var(--glow-cyan);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(0, 240, 255, 0.8);
    }
}

@keyframes innerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

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

@keyframes floatMove {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    25% { 
        transform: translate(20px, -20px) scale(1.1);
    }
    50% { 
        transform: translate(-15px, -30px) scale(0.9);
    }
    75% { 
        transform: translate(-20px, 10px) scale(1.05);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--neon-cyan), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    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: 3px;
}

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

/* Stats Section */
.stats-section {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

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

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(21, 21, 40, 0.5);
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

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

.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Section with Tabs */
.services-section {
    background: var(--dark-bg);
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid var(--dark-border);
    padding-bottom: 1rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--dark-border);
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
    box-shadow: var(--glow-cyan);
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.tab-btn.active::after,
.tab-btn:hover::after {
    width: 100%;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

.tab-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tab-image {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--dark-border);
}

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

.tab-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.tab-features {
    list-style: none;
}

.tab-features li {
    color: var(--text-primary);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--dark-border);
}

.tab-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
}

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

/* Process Section - Interactive Diagram */
.process-section {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.process-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.process-step.active {
    opacity: 1;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.1);
    box-shadow: var(--glow-cyan);
    flex-shrink: 0;
    position: relative;
}

.process-step.active .step-circle {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: var(--glow-cyan); }
    50% { box-shadow: 0 0 40px rgba(0, 240, 255, 0.8); }
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-cyan);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.process-connector {
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, var(--neon-cyan), var(--neon-purple));
    margin: 0 auto;
    position: relative;
}

.process-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: var(--glow-cyan);
}

/* Industries Section - Horizontal Slider */
.industries-section {
    background: var(--dark-bg);
}

.industries-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.industries-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 0;
    scrollbar-width: none;
    cursor: grab;
}

.industries-slider:active {
    cursor: grabbing;
}

.industries-slider::-webkit-scrollbar {
    display: none;
}

.industry-slide {
    min-width: 100%;
    scroll-snap-align: start;
}

.industry-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    border: 2px solid var(--dark-border);
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover img {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 26, 0.9));
}

.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    z-index: 2;
}

.industry-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-purple);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--glow-purple);
}

.industry-content p {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--neon-cyan);
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--glow-cyan);
    z-index: 10;
}

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

.slider-prev {
    left: -80px;
}

.slider-next {
    right: -80px;
}

/* About Section */
.about-section {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border: 2px solid var(--dark-border);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    background: var(--dark-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-pink);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: var(--glow-pink);
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.contact-item a:hover {
    color: var(--neon-purple);
    text-shadow: var(--glow-purple);
}

.contact-form-wrapper {
    background: var(--dark-surface);
    padding: 3rem;
    border: 2px solid var(--dark-border);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(21, 21, 40, 0.5);
    border: 2px solid var(--dark-border);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    background: rgba(21, 21, 40, 0.8);
}

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

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

/* Footer */
.footer {
    background: var(--dark-surface);
    border-top: 2px solid var(--dark-border);
    padding: 4rem 0 2rem;
}

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

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

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

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

.footer-section a:hover {
    color: var(--neon-purple);
    text-shadow: var(--glow-purple);
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
    color: var(--text-muted);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-surface);
    border-top: 2px solid var(--neon-cyan);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    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;
    margin: 0;
    color: var(--text-primary);
}

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

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

.cookie-btn {
    padding: 0.75rem 2rem;
    background: var(--neon-cyan);
    color: var(--dark-bg);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--glow-cyan);
}

.cookie-btn:hover {
    background: var(--neon-purple);
    box-shadow: var(--glow-purple);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .tab-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .slider-prev {
        left: 1rem;
    }
    
    .slider-next {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }
    
    .hero-section {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .central-circle {
        width: 150px;
        height: 150px;
    }
    
    .inner-circle {
        width: 90px;
        height: 90px;
    }
    
    .pulse-ring {
        width: 150px;
        height: 150px;
    }
    
    .orbit-1 {
        width: 220px;
        height: 220px;
    }
    
    .orbit-2 {
        width: 300px;
        height: 300px;
    }
    
    .orbit-3 {
        width: 380px;
        height: 380px;
    }
    
    .float-1,
    .float-2,
    .float-3 {
        width: 40px;
        height: 40px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .process-connector {
        width: 60px;
        height: 3px;
        transform: rotate(90deg);
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .fullscreen-link {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-content {
        gap: 6rem;
    }
    
    .hero-visual {
        height: 600px;
    }
}
