/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Neon Colors */
    --neon-cyan: #00ffff;
    --neon-pink: #ff00ff;
    --neon-purple: #8a2be2;
    --neon-blue: #0080ff;
    --neon-green: #00ff80;
    --neon-orange: #ff8000;
    
    /* Dark Theme Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    
    /* Fonts */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Rajdhani', sans-serif;
    
    /* Shadows */
    --shadow-neon: 0 0 20px var(--neon-cyan);
    --shadow-card: 0 10px 30px rgba(0, 255, 255, 0.1);
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-cyan);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.ai-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    background: transparent;
    border: none;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--neon-cyan, #00ffff);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--neon-cyan, #00ffff);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--neon-cyan, #00ffff);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 50px;
    background: radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    perspective: 1500px; /* Adjusted for a better 3D effect */
}

.hero-images-3d {
    position: relative;
    transform-style: preserve-3d;
    min-height: 50vh;
    perspective: 1500px; /* Nested perspective for the container */
}

.hero-img-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    --depth: 0.5;
    transform-style: preserve-3d; /* This is key for z-axis */
    transition: transform 0.2s ease-out;
    /* Initialize with proper z-index based on depth */
    transform: translateZ(calc(var(--depth) * 100px));
}

.hero-img-layer img {
    position: absolute;
    width: 38%; /* Reduced size to minimize overlap */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 1;
    object-fit: contain;
    filter: brightness(0.9);
    /* Scale based on depth */
    transform: scale(calc(1 - var(--depth) * 0.4));
    max-width: 280px; /* Prevent images from getting too large on wide screens */
    min-width: 150px; /* Ensure minimum visibility */
}

/* Assign depth from data-attribute to CSS variable */
.hero-img-layer[data-depth="0.1"] { --depth: 0.1; }
.hero-img-layer[data-depth="0.2"] { --depth: 0.2; }
.hero-img-layer[data-depth="0.3"] { --depth: 0.3; }
.hero-img-layer[data-depth="0.4"] { --depth: 0.4; }
.hero-img-layer[data-depth="0.5"] { --depth: 0.5; }

/* Desktop positioning - 5 images with minimal overlap, spread distribution */
.hero-img-layer:nth-child(1) { 
    z-index: calc(10 + var(--depth) * 10);
}
.hero-img-layer:nth-child(1) img { 
    top: 5%; 
    left: 2%; 
    transform: scale(calc(1 - var(--depth) * 0.4)) rotate(-8deg); 
}

.hero-img-layer:nth-child(2) { 
    z-index: calc(10 + var(--depth) * 10);
}
.hero-img-layer:nth-child(2) img { 
    top: 35%; 
    left: 20%; 
    transform: scale(calc(1 - var(--depth) * 0.4)) rotate(5deg); 
}

.hero-img-layer:nth-child(3) { 
    z-index: calc(10 + var(--depth) * 10);
}
.hero-img-layer:nth-child(3) img { 
    top: 8%; 
    right: 5%; 
    transform: scale(calc(1 - var(--depth) * 0.4)) rotate(10deg); 
}

.hero-img-layer:nth-child(4) { 
    z-index: calc(10 + var(--depth) * 10);
}
.hero-img-layer:nth-child(4) img { 
    bottom: 20%; 
    right: 18%; 
    transform: scale(calc(1 - var(--depth) * 0.4)) rotate(-4deg); 
}

.hero-img-layer:nth-child(5) { 
    z-index: calc(10 + var(--depth) * 10);
}
.hero-img-layer:nth-child(5) img { 
    bottom: 5%; 
    left: 8%; 
    transform: scale(calc(1 - var(--depth) * 0.4)) rotate(7deg); 
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.glitch {
    position: relative;
    color: var(--neon-cyan);
    text-shadow: 0 0 30px var(--neon-cyan);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--neon-pink);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--neon-pink);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.7);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--neon-cyan);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.7);
}

/* Floating Elements */
.floating-elements {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20px;
    left: 50px;
    animation-delay: 0s;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.floating-card:nth-child(2) {
    top: 150px;
    right: 30px;
    animation-delay: 1s;
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.floating-card:nth-child(3) {
    bottom: 50px;
    left: 100px;
    animation-delay: 2s;
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 128, 0.3);
}

.floating-card i {
    font-size: 2rem;
    color: inherit;
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

/* Section Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--neon-cyan);
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    color: var(--bg-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--neon-cyan);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.credits-info {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
}

.credits {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.per-credit {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.features-list i {
    color: var(--neon-green);
    width: 20px;
}

.btn-pricing {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
    color: var(--bg-primary);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
}

.pricing-card.popular .btn-pricing {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
}

/* Community Section */
.community {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.community-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.2);
}

.community-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border: 2px solid var(--neon-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.community-icon i {
    font-size: 3rem;
    color: var(--neon-pink);
}

.community-card h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.community-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-community {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--neon-pink);
    border: 2px solid var(--neon-pink);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-community:hover {
    background: var(--neon-pink);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.5);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 2px solid var(--neon-cyan);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.footer-section h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--neon-cyan);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    color: var(--neon-cyan);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--neon-cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    color: var(--text-secondary);
}

/* Responsive Design */

/* Tablet and small desktop screens (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-img-layer img {
        width: 35%;
        max-width: 240px;
    }
    
    /* Adjusted positions for tablet screens */
    .hero-img-layer:nth-child(1) img { 
        top: 8%; 
        left: 3%; 
    }
    
    .hero-img-layer:nth-child(2) img { 
        top: 40%; 
        left: 22%; 
    }
    
    .hero-img-layer:nth-child(3) img { 
        top: 10%; 
        right: 6%; 
    }
    
    .hero-img-layer:nth-child(4) img { 
        bottom: 22%; 
        right: 20%; 
    }
    
    .hero-img-layer:nth-child(5) img { 
        bottom: 8%; 
        left: 10%; 
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
        border-top: 2px solid var(--neon-cyan, #00ffff);
        z-index: 999;
        padding: 2rem 0;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 1rem 2rem;
        display: block;
        color: #fff;
        border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(0, 255, 255, 0.1);
        color: var(--neon-cyan, #00ffff);
        transform: translateX(10px);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Mobile hero images positioning - smaller size, strategic placement */
    .hero-img-layer img {
        width: 32%;
        max-width: 180px;
        min-width: 120px;
    }
    
    /* Mobile positions - arranged to avoid center content overlap */
    .hero-img-layer:nth-child(1) img { 
        top: 5%; 
        left: 1%; 
    }
    
    .hero-img-layer:nth-child(2) img { 
        top: 25%; 
        right: 2%; 
    }
    
    .hero-img-layer:nth-child(3) img { 
        top: 50%; 
        left: 3%; 
    }
    
    .hero-img-layer:nth-child(4) img { 
        bottom: 25%; 
        right: 1%; 
    }
    
    .hero-img-layer:nth-child(5) img { 
        bottom: 5%; 
        left: 25%; 
    }
    
    .floating-elements {
        height: 300px;
    }
    
    .floating-card {
        min-width: 120px;
        padding: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 100px 1rem 50px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    /* Extra small mobile - further optimize image sizes and positions */
    .hero-img-layer img {
        width: 28%;
        max-width: 140px;
        min-width: 100px;
    }
    
    /* Compact arrangement for very small screens */
    .hero-img-layer:nth-child(1) img { 
        top: 8%; 
        left: 0%; 
    }
    
    .hero-img-layer:nth-child(2) img { 
        top: 20%; 
        right: 0%; 
    }
    
    .hero-img-layer:nth-child(3) img { 
        top: 60%; 
        left: 2%; 
    }
    
    .hero-img-layer:nth-child(4) img { 
        bottom: 20%; 
        right: 0%; 
    }
    
    .hero-img-layer:nth-child(5) img { 
        bottom: 8%; 
        left: 30%; 
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Simple Animation Overrides - Remove Aggressive Effects */
.simple-fade-in {
    animation: simpleFadeIn 0.8s ease-in-out forwards;
    opacity: 0;
}

@keyframes simpleFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Simplified hover effects for feature cards */
.feature-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.feature-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.15) !important;
}

/* Simplified hover effects for pricing cards */
.pricing-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.pricing-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.15) !important;
}

/* Remove aggressive transforms and effects */
* {
    animation-duration: 0.3s !important;
    transition-duration: 0.3s !important;
}

/* Disable any aggressive particle or matrix effects */
#matrix-rain {
    display: none !important;
}

#custom-cursor {
    display: none !important;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Duplicate hamburger styles removed - using the main media query section above */