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

:root {
    /* Retro Color Palette */
    --neon-cyan: #00ffff;
    --neon-pink: #ff00ff;
    --neon-green: #00ff00;
    --neon-yellow: #ffff00;
    --electric-blue: #0080ff;
    --deep-purple: #1a0033;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --grid-color: rgba(0, 255, 255, 0.1);
    --text-light: #e0e0e0;
    --text-dim: #b0b0b0;
    --danger-red: #ff3366;
    --warning-orange: #ff6600;
}

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

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

/* Retro Grid Background */
.retro-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Header */
.header {
    background: rgba(26, 0, 51, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--neon-cyan);
}

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

.logo h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.tagline {
    font-family: 'VT323', monospace;
    font-size: 1rem;
    color: var(--text-dim);
    margin-top: -5px;
}

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitch 3s infinite;
}

.glitch:before,
.glitch:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch:before {
    animation: glitch-1 0.3s infinite;
    color: var(--neon-pink);
    z-index: -1;
}

.glitch:after {
    animation: glitch-2 0.3s infinite;
    color: var(--neon-green);
    z-index: -2;
}

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

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

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

/* Navigation */
.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav a:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    margin-top: 100px;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--darker-bg) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.neon-text {
    color: var(--neon-cyan);
    text-shadow: 
        0 0 5px var(--neon-cyan),
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan);
    animation: neonFlicker 2s infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    font-family: 'VT323', monospace;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    border: 2px solid var(--neon-cyan);
    padding: 20px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-yellow);
    text-shadow: 0 0 15px var(--neon-yellow);
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 10px 0;
}

.disclaimer {
    display: block;
    font-size: 0.8rem;
    color: var(--danger-red);
    font-style: italic;
    font-family: 'VT323', monospace;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    border: 3px solid var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--neon-pink), var(--electric-blue));
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(255, 0, 255, 0.7);
    background: linear-gradient(45deg, var(--electric-blue), var(--neon-pink));
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--darker-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(26, 0, 51, 0.8);
    border: 2px solid var(--neon-cyan);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-card:hover:before {
    opacity: 1;
    animation: shine 1s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--neon-yellow);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--dark-bg) 100%);
}

.packages-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-bottom: 60px;
    font-family: 'VT323', monospace;
}

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

.package-card {
    background: rgba(10, 10, 15, 0.9);
    border: 3px solid var(--neon-cyan);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.package-card.premium {
    border-color: var(--neon-pink);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-pink);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.3);
}

.package-card.premium:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 0, 255, 0.3);
}

.package-card h3 {
    color: var(--neon-yellow);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-green);
    margin-bottom: 30px;
    text-shadow: 0 0 15px var(--neon-green);
}

.price span {
    font-size: 1rem;
    color: var(--text-dim);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: 700;
}

.package-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--electric-blue));
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.package-button:hover {
    background: linear-gradient(45deg, var(--electric-blue), var(--neon-cyan));
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.5);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--darker-bg);
}

.testimonials-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-bottom: 60px;
    font-family: 'VT323', monospace;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(26, 0, 51, 0.6);
    border: 2px solid var(--warning-orange);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-yellow);
    box-shadow: 0 10px 30px rgba(255, 255, 0, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-family: 'VT323', monospace;
    font-size: 1.1rem;
    line-height: 1.4;
}

.testimonial-author {
    text-align: right;
    color: var(--neon-yellow);
}

.testimonial-author span {
    display: block;
    color: var(--warning-orange);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--deep-purple) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    border: 3px solid var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.image-caption {
    text-align: center;
    color: var(--text-dim);
    font-style: italic;
    margin-top: 10px;
    font-family: 'VT323', monospace;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--darker-bg);
}

.contact-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-bottom: 60px;
    font-family: 'VT323', monospace;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h3,
.guarantees h3 {
    color: var(--neon-cyan);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(26, 0, 51, 0.5);
    border-radius: 10px;
    border-left: 4px solid var(--neon-pink);
}

.contact-item small {
    color: var(--text-dim);
    font-style: italic;
    display: block;
    margin-top: 5px;
}

.guarantee-list {
    list-style: none;
}

.guarantee-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-disclaimer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--danger-red);
    font-style: italic;
    font-family: 'VT323', monospace;
}

.cta-section {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: rgba(26, 0, 51, 0.8);
    border-radius: 20px;
    border: 2px solid var(--neon-yellow);
}

.cta-section h3 {
    color: var(--neon-yellow);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Footer */
.footer {
    background: var(--deep-purple);
    padding: 60px 0 20px;
    border-top: 3px solid var(--neon-cyan);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.footer-links h4,
.footer-disclaimers h4 {
    color: var(--neon-yellow);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-disclaimers ul {
    list-style: none;
}

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

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

.footer-disclaimers li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
    font-family: 'VT323', monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.premium {
        transform: none;
    }
    
    .package-card.premium:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 20px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .glitch,
    .glitch:before,
    .glitch:after {
        animation: none;
    }
    
    .neon-text {
        animation: none;
    }
    
    .retro-grid {
        animation: none;
    }
}