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

body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.cookie-content {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    text-align: center;
}

.cookie-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.cookie-content p {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.cookie-buttons button {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-buttons .btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
}

.cookie-buttons .btn-secondary {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.cookie-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    z-index: 1000;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    border-radius: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-menu a:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: radial-gradient(ellipse at center, #1e1b4b 0%, #0f0f23 50%, #000 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./assets/neural-network-bg.png') center/cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.signup-form {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.signup-form input {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.signup-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.signup-form input::placeholder {
    color: #ccc;
}

.btn-create-account {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-create-account:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4);
}

.hero-right h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: white;
}

.hero-right p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.8;
}

/* Planning Section */
.planning {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.planning-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.planning-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.planning-left p {
    margin-bottom: 25px;
    color: #ccc;
    line-height: 1.8;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4);
}

.ai-brain {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Investments Section */
.investments {
    padding: 100px 0;
    text-align: center;
    background: #1a1a1a;
}

.investments h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
}

.investments p {
    margin-bottom: 25px;
    color: #ccc;
    line-height: 1.8;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: #000;
}

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

.stat-item {
    text-align: center;
    padding: 40px 20px;
}

.stat-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    filter: hue-rotate(270deg) saturate(2);
}

.stat-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    line-height: 1.4;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    text-align: center;
    background: #1a1a1a;
}

.pricing h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.pricing > p {
    color: #ccc;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 1.8;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #2a2a2a;
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.pricing-description {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card li {
    margin-bottom: 12px;
    color: #ccc;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.pricing-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 30px;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    text-align: center;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 18px;
    color: white;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    padding: 30px 0;
    border-radius: 50px 50px 0 0;
    margin-top: -30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: white;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        margin: 10px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .hero-right h1 {
        font-size: 32px;
    }
    
    .planning-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        margin: 20px;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-right h1 {
        font-size: 28px;
    }
    
    .planning-left h2,
    .investments h2,
    .pricing h2 {
        font-size: 28px;
    }
    
    .navbar {
        padding: 10px 15px;
    }
    
    .brand-text {
        font-size: 20px;
    }
}
.hamburger{
    display: none;
}