/* Cyberpunk 2077 Aggressive Style */
:root {
    --primary: #ff003c;
    --primary-glow: #ff2d5599;
    --secondary: #00ffd2;
    --secondary-glow: #00ffd288;
    --tertiary: #fcee09;
    --background: #050518;
    --background-darker: #010108;
    --text: #ffffff;
    --text-muted: #8f8f8f;
    --border: #2a2a3d;
    --card-bg: rgba(18, 18, 40, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rajdhani', sans-serif;
}

/* AGGRESSIVE ANIMATIONS */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-5px, 5px); }
    40% { transform: translate(-5px, -5px); }
    60% { transform: translate(5px, 5px); }
    80% { transform: translate(5px, -5px); }
    100% { transform: translate(0); }
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        opacity: 0.95;
        text-shadow: -2px -2px 0 var(--primary), 2px 2px 0 var(--secondary);
    }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        opacity: 0.2;
        text-shadow: none;
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 60, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 0, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 60, 0); }
}

@keyframes textGlitch {
    0% { opacity: 1; transform: translate(0); }
    2% { opacity: 0.8; transform: translate(-3px, 3px); }
    4% { opacity: 0.9; transform: translate(3px, -3px); }
    8% { opacity: 1; transform: translate(0); }
    52% { opacity: 0.7; transform: translate(5px, 0); }
    54% { opacity: 1; transform: translate(0); }
    100% { opacity: 1; transform: translate(0); }
}

/* Base Styles */
html, body {
    background-color: var(--background);
    color: var(--text);
    overflow-x: hidden;
    font-weight: 500;
    min-height: 100%;
    height: auto;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 60, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
    animation: pulse 4s infinite;
}

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

/* Noise & Glitch Overlays */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 800 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12;
    z-index: 100;
    pointer-events: none;
}

.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 0%, rgba(255, 0, 60, 0.2) 50%, transparent 100%);
    background-size: 100% 3px;
    pointer-events: none;
    z-index: 1000;
    animation: scanline 3s linear infinite;
    opacity: 0.5;
}

/* Text Styling */
h1, h2, h3, h4 {
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: textGlitch 5s infinite;
}

h1 {
    font-size: 4.5rem;
    text-shadow: 0 0 15px var(--primary);
}

h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--secondary);
}

h3 {
    font-size: 2rem;
    text-shadow: 0 0 8px var(--tertiary);
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
}

a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
    animation: glitch 0.3s;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid transparent;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 10px 5px;
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.6);
}

.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: 0.5s;
}

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

.cta-button.primary {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    animation: pulse 2s infinite;
}

.cta-button.primary:hover {
    background-color: transparent;
    color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
    transform: scale(1.05);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 0 15px var(--secondary-glow);
}

.cta-button.secondary:hover {
    background-color: var(--secondary);
    color: var(--background);
    box-shadow: 0 0 30px var(--secondary-glow);
    transform: scale(1.05);
}

.cta-button.full {
    width: 100%;
    text-align: center;
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 20px 45px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 2.5rem;
}
/* Header & Navigation - AGGRESSIVE STYLE */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(5, 5, 24, 0.9) 0%, rgba(5, 5, 24, 0.8) 50%, transparent 100%);
    border-bottom: 1px solid var(--primary);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.4);
}

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

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logo-glitch {
    position: relative;
    animation: flicker 3s infinite alternate;
    text-shadow: 0 0 15px var(--primary);
}

.logo-glitch span {
    color: var(--primary);
    font-weight: 800;
    animation: pulse 2s infinite;
}

.logo-subtext {
    font-size: 1rem;
    color: var(--secondary);
    position: absolute;
    right: 0;
    bottom: -0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    color: var(--text);
    letter-spacing: 2px;
    padding: 5px 0;
    text-shadow: 0 0 5px var(--text);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-glow);
}

.nav-link:hover {
    color: var(--primary);
}

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

.menu-button {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Hero Section - ULTRA AGGRESSIVE */
.hero {
    height: 100vh;
    background: radial-gradient(circle at center, rgba(30, 10, 40, 0.8) 0%, var(--background) 80%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* border-bottom removed to allow background animations to show through */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ff003c' fill-opacity='0.2'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    text-shadow: 0 0 5px var(--text-muted);
}

.cyber-text {
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 2px;
    animation: flicker 4s infinite alternate;
}

/* Glitch Text Effect */
.glitch, .glitch-small {
    position: relative;
    color: var(--text);
}

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

.glitch::before, .glitch-small::before {
    left: -4px;
    text-shadow: 4px 0 var(--primary);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch 2s infinite linear alternate-reverse;
}

.glitch::after, .glitch-small::after {
    left: 4px;
    text-shadow: -4px 0 var(--secondary);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch 1.5s infinite linear alternate-reverse;
}

/* Features Section */
.features {
    padding: 120px 0;
    background-color: var(--background-darker);
    position: relative;
    border-bottom: 2px solid var(--secondary);
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--primary));
    box-shadow: 0 0 20px var(--primary-glow);
}

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

.feature-card {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--primary);
    animation: pulse 2s infinite;
}

.feature-card:hover::before {
    height: 12px;
}

.feature-card h3 {
    margin-top: 25px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary);
    font-size: 1.5rem;
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-shadow: 0 0 15px var(--primary-glow);
    animation: pulse 2s infinite;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    display: inline-block;
    position: relative;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.3rem;
}
/* Pricing Section */
.pricing {
    padding: 120px 0;
    position: relative;
    background-color: var(--background);
    min-height: auto; /* Ensure it expands with content */
    /* border-bottom removed to allow background animations to show through */
}

.pricing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary), var(--primary), var(--secondary));
    box-shadow: 0 0 20px var(--secondary-glow);
}

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

.pricing-card {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
}

.pricing-card:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    animation: pulse 2s infinite;
}

.pricing-header {
    padding: 35px 20px;
    text-align: center;
    background-color: rgba(10, 10, 30, 0.7);
    border-bottom: 2px solid var(--border);
}

.pricing-header h3 {
    color: var(--secondary);
    font-size: 2.3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--secondary);
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text);
    text-shadow: 0 0 10px var(--text);
}

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

.pricing-features {
    list-style: none;
    padding: 35px;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 2px dashed var(--border);
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

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

.pricing-features li::before {
    content: "»";
    color: var(--primary);
    margin-right: 15px;
    font-weight: bold;
    font-size: 1.5rem;
    text-shadow: 0 0 5px var(--primary);
}

.pricing-card.featured {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(255, 0, 60, 0.4);
    z-index: 2;
    border: 3px solid var(--primary);
}

.pricing-card.featured:hover {
    transform: scale(1.12) translateY(-15px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 25px;
    background-color: var(--primary);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 15px var(--primary-glow);
    animation: pulse 2s infinite;
    letter-spacing: 2px;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background-color: var(--background-darker);
    position: relative;
    /* border-bottom removed to allow background animations to show through */
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--tertiary), var(--primary), var(--tertiary));
    box-shadow: 0 0 20px var(--tertiary);
}

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

.testimonial-card {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--tertiary);
}

.testimonial-content {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    color: var(--text);
}

.testimonial-content::before {
    content: """;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 10, 30, 0.9), rgba(10, 10, 30, 0.9)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ff003c' fill-opacity='0.2'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 4rem;
    margin-bottom: 30px;
}

.cta-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

/* Footer removed as requested */

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 3.5rem;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-button {
        display: block;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .cta-content h2 {
        font-size: 3rem;
    }
    
    /* Footer responsive styles removed */
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .cta-button {
        width: 100%;
        margin: 10px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
