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

:root {
    --primary-blue: #090f46;
    --digital-purple: #7c42d5;
    --intense-cyan: #5c92ff;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-dim: rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #000 100%);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(9, 15, 70, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(92, 146, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.logo-text {
    background: linear-gradient(45deg, var(--intense-cyan), var(--digital-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--intense-cyan), var(--digital-purple));
    filter: blur(20px);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite alternate;
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(92, 146, 255, 0.1);
    box-shadow: 0 0 20px rgba(92, 146, 255, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Pages */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
}

.page.active {
    display: block;
}

/* Home Page */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.typed-text {
    background: linear-gradient(45deg, var(--digital-purple), var(--intense-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    font-weight: 700;
}

.cursor {
    font-weight: 100;
    font-size: 3.5rem;
    color: var(--intense-cyan);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dim);
    margin: 2rem 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    position: relative;
    background: linear-gradient(45deg, var(--digital-purple), var(--intense-cyan));
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(124, 66, 213, 0.4);
}

.btn-glow {
    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-primary:hover .btn-glow {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--intense-cyan);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--intense-cyan);
    box-shadow: 0 10px 30px rgba(92, 146, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.floating-cube {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--digital-purple), var(--intense-cyan));
    opacity: 0.8;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cube-face.front { transform: rotateY(0deg) translateZ(100px); }
.cube-face.back { transform: rotateY(180deg) translateZ(100px); }
.cube-face.right { transform: rotateY(90deg) translateZ(100px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(100px); }
.cube-face.top { transform: rotateX(90deg) translateZ(100px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(100px); }

@keyframes float {
    0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
    50% { transform: translateY(-30px) rotateX(180deg) rotateY(180deg); }
}

.orbit-rings {
    position: absolute;
    width: 400px;
    height: 400px;
}

.ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-color: var(--intense-cyan);
    top: 50px;
    left: 50px;
    animation-duration: 15s;
}

.ring-2 {
    width: 350px;
    height: 350px;
    border-color: var(--digital-purple);
    top: 25px;
    left: 25px;
    animation-duration: 20s;
    animation-direction: reverse;
}

.ring-3 {
    width: 400px;
    height: 400px;
    border-color: var(--primary-blue);
    top: 0;
    left: 0;
    animation-duration: 25s;
}

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

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 0 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--intense-cyan), var(--digital-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

/* Page Headers */
.page-header {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--intense-cyan), var(--digital-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Packages */
.packages-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 2rem 4rem;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.package-card.premium {
    border: 2px solid var(--digital-purple);
    box-shadow: 0 0 40px rgba(124, 66, 213, 0.3);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--digital-purple), var(--intense-cyan));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--intense-cyan);
    margin-bottom: 2rem;
}

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

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--intense-cyan);
    font-weight: bold;
}

.package-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--digital-purple), var(--intense-cyan));
    border: none;
    border-radius: 10px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 66, 213, 0.4);
}

/* Services */
.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.services-section h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

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

.service-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(92, 146, 255, 0.2);
    border-color: var(--intense-cyan);
}

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

.service-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

/* Forms */
.quote-form {
    max-width: 600px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.quote-form h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--intense-cyan);
    box-shadow: 0 0 20px rgba(92, 146, 255, 0.3);
}

.form-group input::placeholder {
    color: var(--text-dim);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    cursor: pointer;
}

/* About Page */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline {
    position: relative;
    padding: 4rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--intense-cyan), var(--digital-purple));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--digital-purple), var(--intense-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 2rem;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    max-width: 400px;
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--intense-cyan);
}

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

.showcase-item {
    text-align: center;
}

.hologram-effect {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
}

.hologram-effect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: hue-rotate(200deg) saturate(150%);
    transition: all 0.3s ease;
}

.hologram-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, var(--intense-cyan), transparent);
    opacity: 0.3;
    animation: hologram 3s linear infinite;
}

@keyframes hologram {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.showcase-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.showcase-item p {
    color: var(--text-dim);
    line-height: 1.6;
}

/* Contact Page */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 2rem 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(92, 146, 255, 0.2);
}

.info-icon {
    font-size: 2rem;
    color: var(--intense-cyan);
}

.info-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-dim);
}

.subscription-section {
    display: flex;
    align-items: center;
}

.subscription-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    width: 100%;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--digital-purple), var(--intense-cyan));
    border-radius: 20px;
    filter: blur(30px);
    opacity: 0.1;
    z-index: -1;
}

.subscription-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: center;
}

.subscription-card p {
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.social-section h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(45deg, var(--digital-purple), var(--intense-cyan));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 66, 213, 0.3);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1,
    .typed-text {
        font-size: 2.5rem;
    }
    
    .cursor {
        font-size: 2.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .packages-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(odd) {
        flex-direction: row !important;
    }
    
    .timeline-year {
        position: absolute;
        left: -30px;
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}