/* Cyberpunk/Glitched Aesthetic */

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

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a1a1a 100%);
    color: #00ffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Header */
header {
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 2px solid #ff00ff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

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

.logo-icon {
    font-size: 2rem;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    animation: pulse 2s infinite;
}

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

.company-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #00ffff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    transition: width 0.3s ease;
    z-index: -1;
}

nav a:hover::before {
    width: 100%;
}

nav a:hover {
    color: #000;
    border-color: #ff00ff;
    text-shadow: none;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(255, 0, 255, 0.1) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(0, 255, 255, 0.1) 50%, transparent 51%);
    background-size: 20px 20px;
    animation: grid-move 10s linear infinite;
    pointer-events: none;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff00ff;
    text-shadow: 0 0 30px #ff00ff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: glitch 3s infinite;
}

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

.hero p {
    font-size: 1.3rem;
    color: #00ffff;
    max-width: 800px;
    margin: 0 auto 40px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.7);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid #ff00ff;
    border-bottom: 1px solid #00ffff;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    border: 1px solid #ff00ff;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, #ff00ff, transparent);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

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

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    margin-bottom: 10px;
}

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

/* Services Section */
.services {
    padding: 80px 0;
}

.services h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 0, 255, 0.1));
    border: 1px solid #00ffff;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::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 ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ff00ff;
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: hue-rotate(180deg);
}

.service-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: #ccc;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.testimonials h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial-card {
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    border-left: 4px solid #ff00ff;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #00ffff;
    font-family: 'Orbitron', monospace;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    color: #ff00ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Section */
.team {
    padding: 80px 0;
}

.team h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.team-member {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 255, 255, 0.1));
    border: 1px solid #00ffff;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
    border-color: #ff00ff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    color: #000;
    margin: 0 auto 20px;
}

.team-member h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.team-member p {
    color: #ff00ff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* News Section */
.news {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.news h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.news-item {
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 0, 0, 0.8));
    border: 1px solid #00ffff;
    transition: all 0.3s ease;
}

.news-item:hover {
    border-color: #ff00ff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 255, 0.2);
}

.news-item h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.news-item p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-item time {
    color: #ff00ff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-item {
    padding: 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 1px solid #00ffff;
    color: #ccc;
    font-size: 1.1rem;
}

.contact-item strong {
    color: #ff00ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.legal-content h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legal-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #00ffff;
    margin: 40px 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #ff00ff;
    padding-bottom: 10px;
}

.legal-content p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content strong {
    color: #ff00ff;
    font-weight: 600;
}

.legal-content em {
    color: #00ffff;
    font-style: italic;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 2px solid #ff00ff;
    padding: 30px 0;
    text-align: center;
}

footer p {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

footer a:hover {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .services-grid,
    .testimonial-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    nav {
        flex-direction: column;
        gap: 15px;
    }
    
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .services h2,
    .testimonials h2,
    .team h2,
    .news h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
}