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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --electric-blue: #1B9CFC;
    --soft-mint: #D0FFF1;
    --white: #ffffff;
    --gray-light: #666666;
    --gray-dark: #333333;
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Work Sans', sans-serif;
    
    --glow-blue: 0 0 20px rgba(27, 156, 252, 0.4);
    --glow-mint: 0 0 15px rgba(208, 255, 241, 0.3);
}

body {
    background: var(--bg-primary);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation Styles */
.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(27, 156, 252, 0.2);
    z-index: 1000;
    padding: 2rem 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.sidebar-nav.active {
    transform: translateX(0);
}

.nav-logo {
    padding: 0 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.nav-logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    list-style: none;
    padding: 0 1rem;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1rem;
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    background: rgba(27, 156, 252, 0.1);
    color: var(--electric-blue);
    box-shadow: var(--glow-blue);
}

.nav-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

/* Navigation Icons */
.icon-home::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 10px;
    border: 2px solid var(--electric-blue);
    border-top: none;
    top: 8px;
    left: 3px;
}

.icon-home::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 6px solid var(--electric-blue);
    top: 2px;
    left: 2px;
}

.icon-features::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--electric-blue);
    border-radius: 50%;
    top: 2px;
    left: 2px;
}

.icon-features::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 2px;
    background: var(--electric-blue);
    top: 9px;
    left: 6px;
    box-shadow: 0 -3px 0 var(--electric-blue), 0 3px 0 var(--electric-blue);
}

.icon-pricing::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 12px;
    border: 2px solid var(--electric-blue);
    border-radius: 2px;
    top: 4px;
    left: 6px;
}

.icon-pricing::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: var(--electric-blue);
    top: 6px;
    left: 4px;
    box-shadow: 0 6px 0 var(--electric-blue);
}

.icon-blog::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 15px;
    border: 2px solid var(--electric-blue);
    border-radius: 2px;
    top: 2px;
    left: 4px;
}

.icon-blog::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 1px;
    background: var(--electric-blue);
    top: 7px;
    left: 7px;
    box-shadow: 0 3px 0 var(--electric-blue), 0 6px 0 var(--electric-blue);
}

.icon-support::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 8px;
    border: 2px solid var(--electric-blue);
    border-radius: 6px 6px 0 0;
    top: 6px;
    left: 4px;
}

.icon-support::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 6px;
    border: 2px solid var(--electric-blue);
    border-top: none;
    border-radius: 0 0 3px 3px;
    top: 12px;
    left: 8px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 1001;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid var(--electric-blue);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    box-shadow: var(--glow-blue);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--electric-blue);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content */
.main-content {
    margin-left: 0;
    min-height: 100vh;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    background: radial-gradient(ellipse at center, rgba(27, 156, 252, 0.05) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--electric-blue) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--soft-mint);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--electric-blue), #0f7ab0);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(27, 156, 252, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 156, 252, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--electric-blue);
    border: 2px solid var(--electric-blue);
}

.btn-secondary:hover {
    background: var(--electric-blue);
    color: var(--white);
    box-shadow: var(--glow-blue);
}

.btn-glow {
    background: rgba(27, 156, 252, 0.1);
    color: var(--electric-blue);
    border: 2px solid var(--electric-blue);
    backdrop-filter: blur(10px);
}

.btn-glow:hover {
    background: var(--electric-blue);
    color: var(--white);
    box-shadow: var(--glow-blue);
}

/* Data Grid Background */
.data-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(27, 156, 252, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 156, 252, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    opacity: 0.3;
}

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

/* Showcase Section */
.showcase {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.5) 100%);
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
}

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

.showcase-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(27, 156, 252, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--electric-blue), var(--soft-mint));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.showcase-card:hover::before {
    transform: translateX(0);
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(27, 156, 252, 0.2);
    border-color: var(--electric-blue);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--electric-blue), var(--soft-mint));
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Custom CSS Icons */
.icon-analytics::before {
    content: '';
    width: 24px;
    height: 24px;
    border: 2px solid white;
    border-radius: 4px;
    position: relative;
}

.icon-analytics::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: -8px -4px 0 white, 8px -4px 0 white, 0 8px 0 white;
}

.icon-automation::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
}

.icon-automation::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 0 0 2px white, 
                -8px -8px 0 -2px white,
                8px 8px 0 -2px white;
}

.icon-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    padding: 8px;
}

.icon-dashboard::before,
.icon-dashboard::after {
    content: '';
    background: white;
    border-radius: 2px;
}

.icon-dashboard::before {
    height: 12px;
}

.icon-dashboard::after {
    height: 8px;
    box-shadow: 8px 0 0 white, 0 8px 0 white, 8px 8px 0 white;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.card-description {
    color: var(--gray-light);
    line-height: 1.6;
}

/* CTA Panel */
.cta-panel {
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.glass-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.glass-card p {
    color: var(--gray-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Trusted By Section */
.trusted-by {
    padding: 4rem 2rem;
    text-align: center;
}

.trusted-title {
    color: var(--gray-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gray-light);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-item:hover {
    color: var(--electric-blue);
    opacity: 1;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--electric-blue);
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-link {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--electric-blue);
}

.legal-separator {
    color: var(--gray-dark);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .sidebar-nav {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 280px;
    }
    
    .hero-cta {
        flex-wrap: nowrap;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 4rem 1rem;
    }
    
    .showcase {
        padding: 4rem 1rem;
    }
    
    .cta-panel {
        padding: 4rem 1rem;
    }
    
    .glass-card {
        padding: 2rem;
    }
    
    .logos-container {
        gap: 2rem;
    }
    
    .logo-item {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .showcase-cards {
        grid-template-columns: 1fr;
    }
}

/* Cookies Banner */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(27, 156, 252, 0.2);
    padding: 1.5rem 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
}

.cookies-banner.show {
    transform: translateY(0);
}

.cookies-banner.hide {
    transform: translateY(100%);
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookies-text {
    flex: 1;
    min-width: 250px;
}

.cookies-text h4 {
    font-family: var(--font-heading);
    color: var(--electric-blue);
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookies-text h4::before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--electric-blue);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.8;
}

.cookies-text p {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.cookies-text a {
    color: var(--electric-blue);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.cookies-text a:hover {
    border-bottom-color: var(--electric-blue);
}

.cookies-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookies-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 100px;
}

.cookies-btn.accept {
    background: linear-gradient(135deg, var(--electric-blue), #1e90ff);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(27, 156, 252, 0.3);
}

.cookies-btn.accept:hover {
    background: linear-gradient(135deg, #1e90ff, var(--electric-blue));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 156, 252, 0.4);
}

.cookies-btn.decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookies-btn.decline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookies-btn.settings {
    background: transparent;
    color: var(--electric-blue);
    border: 1px solid var(--electric-blue);
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
}

.cookies-btn.settings:hover {
    background: rgba(27, 156, 252, 0.1);
    color: var(--white);
}

/* Responsive Cookies Banner */
@media (max-width: 768px) {
    .cookies-banner {
        padding: 1.5rem 1rem;
    }
    
    .cookies-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookies-text {
        min-width: auto;
    }
    
    .cookies-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookies-btn {
        flex: 1;
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .cookies-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cookies-btn {
        width: 100%;
    }
    
    .cookies-text h4 {
        font-size: 1rem;
    }
    
    .cookies-text p {
        font-size: 0.85rem;
    }
}