/* Cyberpunk / Glitched Aesthetic */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #00ff88;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 136, 0.03) 2px,
            rgba(0, 255, 136, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #00ff88;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    font-size: 2rem;
    color: #ff0080;
    text-shadow: 0 0 10px #ff0080;
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.logo-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #ff0080;
    border-color: #ff0080;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.5);
    text-shadow: 0 0 5px #ff0080;
}

/* Main Content */
.main {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2300ff88" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.1;
}

.hero-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px #00ff88;
    animation: textGlow 3s ease-in-out infinite alternate;
    position: relative;
    z-index: 1;
}

@keyframes textGlow {
    from { text-shadow: 0 0 20px #00ff88, 0 0 30px #00ff88, 0 0 40px #00ff88; }
    to { text-shadow: 0 0 10px #00ff88, 0 0 20px #00ff88, 0 0 30px #00ff88; }
}

.hero-description {
    font-size: 1.2rem;
    color: #00ffff;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Sections */
section {
    padding: 4rem 0;
    position: relative;
}

.section-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    color: #ff0080;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px #ff0080;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0080, transparent);
    box-shadow: 0 0 10px #ff0080;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid #00ff88;
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, #00ff88, transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(26, 26, 46, 0.9);
    border-radius: 8px;
    z-index: 1;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.service-card h3 {
    color: #00ffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(22, 33, 62, 0.8);
    border: 1px solid #ff0080;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 0, 128, 0.4);
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 15px #00ff88;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #00ffff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid #00ffff;
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #ff0080;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 10px #ff0080;
}

.testimonial-card p {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.testimonial-author {
    color: #00ff88;
    font-weight: 600;
    text-align: right;
    font-family: 'JetBrains Mono', monospace;
}

/* Contact */
.contact-info {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border: 1px solid #00ff88;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-item {
    color: #cccccc;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    color: #00ffff;
    font-family: 'JetBrains Mono', monospace;
}

/* Page Content */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.page-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    color: #00ff88;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px #00ff88;
}

.content-section {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid #00ffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.content-section h2 {
    color: #ff0080;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #ff0080;
}

.content-section p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-section ul {
    color: #cccccc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    position: relative;
}

.content-section li::marker {
    color: #00ff88;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 2px solid #ff0080;
    padding: 2rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.footer p {
    color: #cccccc;
    font-family: 'JetBrains Mono', monospace;
}

.footer-link {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ff0080;
    text-shadow: 0 0 5px #ff0080;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .content-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card,
    .stat-item,
    .testimonial-card,
    .contact-info,
    .content-section {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-link {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }
}