/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');

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

html {
    scroll-behavior: auto;
}

body {
    font-family: 'Courier Prime', monospace;
    line-height: 1.6;
    color: #00ff88;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #ff0088;
    text-shadow: 0 0 20px #ff0088;
    transform: skew(-5deg);
}

.neon-text {
    color: #00ffff;
    text-shadow: 
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 15px #00ffff,
        0 0 20px #00ffff;
    animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
    0% { text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 15px #00ffff, 0 0 20px #00ffff; }
    100% { text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: skew(-10deg);
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #ff0088, #00ffff);
    color: #000;
    border: 2px solid #ff0088;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #00ffff, #ff0088);
    box-shadow: 0 0 20px #ff0088;
    transform: skew(-10deg) scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
}

.btn-secondary:hover {
    background: #00ffff;
    color: #000;
    box-shadow: 0 0 20px #00ffff;
    transform: skew(-10deg) scale(1.05);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, #ff0088, #8800ff);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-btn {
    background: #000;
    color: #00ff88;
    border: 2px solid #00ff88;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid #ff0088;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #ff0088;
    text-decoration: none;
    text-shadow: 0 0 10px #ff0088;
    transform: skew(-10deg);
}

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

.nav-link {
    color: #00ff88;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ffff;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

/* Burger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ff0088;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a1a0a 100%);
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,0,136,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,0,136,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    transform: skew(-5deg);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #00ff88;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-visual {
    transform: skew(5deg);
}

.hero-image {
    width: 100%;
    height: auto;
    border: 3px solid #ff0088;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255,0,136,0.5);
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: linear-gradient(45deg, #1a0a1a, #0a1a1a);
    position: relative;
}

.services::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"><circle cx="50" cy="50" r="2" fill="%23ff0088" opacity="0.1"/></svg>') repeat;
    background-size: 100px 100px;
}

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

.service-card {
    background: rgba(255,0,136,0.1);
    border: 2px solid #ff0088;
    padding: 3rem 2rem;
    text-align: center;
    transform: skew(-5deg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-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.5s ease;
    opacity: 0;
}

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

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Portfolio Section */
.portfolio {
    padding: 8rem 0;
    background: #0a0a0a;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border: 3px solid #00ffff;
    transform: skew(5deg);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: skew(5deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,255,255,0.3);
}

.portfolio-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    color: #ff0088;
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a0a0a, #0a0a1a);
}

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

.pricing-card {
    background: rgba(0,255,136,0.05);
    border: 2px solid #00ff88;
    padding: 3rem 2rem;
    text-align: center;
    transform: skew(-3deg);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: #ff0088;
    background: rgba(255,0,136,0.1);
    transform: skew(-3deg) scale(1.1);
}

.pricing-card:hover {
    transform: skew(-3deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,255,136,0.2);
}

.pricing-card.featured:hover {
    transform: skew(-3deg) scale(1.15);
    box-shadow: 0 20px 50px rgba(255,0,136,0.3);
}

.pricing-header h3 {
    color: #00ffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: #ff0088;
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
}

.discount {
    background: #ff0088;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: bold;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #00ff88;
    position: relative;
    padding-left: 2rem;
}

.pricing-features li::before {
    content: '▶';
    color: #ff0088;
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(45deg, #0a1a0a, #1a0a1a);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: rgba(0,255,255,0.05);
    border: 2px solid #00ffff;
    padding: 3rem;
    transform: skew(3deg);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: skew(3deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,255,255,0.2);
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #00ff88;
}

.testimonial-author strong {
    color: #ff0088;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #00ffff;
    font-size: 0.9rem;
}

/* Research Section */
.research {
    padding: 8rem 0;
    background: #0a0a0a;
}

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

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,0,136,0.1);
    border: 2px solid #ff0088;
    transform: skew(-5deg);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: skew(-5deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(255,0,136,0.3);
}

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

.stat-label {
    color: #00ff88;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.research-text h3 {
    color: #ff0088;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.research-text p {
    margin-bottom: 1.5rem;
    color: #00ff88;
    line-height: 1.8;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a0a1a, #0a1a0a);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid #00ff88;
    margin-bottom: 2rem;
    background: rgba(0,255,136,0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0,255,136,0.1);
}

.faq-question h3 {
    color: #00ffff;
    font-size: 1.3rem;
}

.faq-toggle {
    color: #ff0088;
    font-size: 2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0,0,0,0.3);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 2rem;
    color: #00ff88;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(45deg, #0a0a1a, #1a0a0a);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #ff0088;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    color: #00ff88;
    line-height: 1.8;
}

.contact-item strong {
    color: #00ffff;
}

.contact-form {
    background: rgba(255,0,136,0.1);
    border: 2px solid #ff0088;
    padding: 3rem;
    transform: skew(-3deg);
}

.contact-form h3 {
    color: #00ffff;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,0.5);
    border: 2px solid #00ff88;
    color: #00ff88;
    font-family: 'Courier Prime', monospace;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0,255,255,0.3);
}

.form-group input::placeholder {
    color: rgba(0,255,136,0.6);
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(45deg, #ff0088, #00ffff);
    padding: 3rem;
    text-align: center;
    border-radius: 10px;
    color: #000;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.popup-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        border-top: 2px solid #ff0088;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .services-grid,
    .portfolio-grid,
    .pricing-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .research-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .research-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-card.featured {
        transform: skew(-3deg) scale(1);
    }

    .pricing-card.featured:hover {
        transform: skew(-3deg) scale(1.05);
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .research-stats {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .popup-content {
        margin: 20px;
        padding: 2rem;
    }
}