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

:root {
    --primary: #0066cc;
    --primary-dark: #004d99;
    --secondary: #1a1a2e;
    --text: #333;
    --text-light: #666;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --accent: #00d4ff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--secondary);
    transition: all 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary) 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding-top: 80px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 60px;
}

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-header {
    padding: 40px 30px 20px;
    text-align: center;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.product-icon.dark {
    background: linear-gradient(135deg, var(--secondary) 0%, #16213e 100%);
}

.product-icon.green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.product-icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.product-icon.orange {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.product-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.product-card h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.product-tagline {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.product-body {
    padding: 20px 30px 30px;
    flex-grow: 1;
}

.product-body p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.product-features li {
    padding: 8px 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

.product-footer {
    padding: 0 30px 30px;
}

.product-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #0052a3 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.product-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.product-btn.dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
}

.product-btn.dark:hover {
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.4);
}

.product-btn.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.product-btn.green:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.product-btn.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.product-btn.purple:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* About */
.about {
    padding: 100px 0;
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary);
}

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

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.tech-stack span {
    background: var(--bg-alt);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
    border: 1px solid #e0e0e0;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--secondary);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 60px;
}

.contact > .container > p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.contact-link:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #0d0d1a;
    color: white;
    padding: 30px 0;
}

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

.footer p {
    opacity: 0.7;
}

.footer nav {
    display: flex;
    gap: 30px;
}

.footer nav a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer nav a:hover {
    opacity: 1;
}

/* Mobile Styles */
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .products h2 {
        font-size: 2rem;
    }
    
    .product-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

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

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

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

    .hero {
        padding: 120px 20px 80px;
    }

    .products, .about, .contact {
        padding: 60px 0;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }
}

/* Privacy Banner */
.privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: white;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.privacy-banner.show {
    padding: 20px;
    max-height: 200px;
}

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

.privacy-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.privacy-content a {
    color: var(--accent);
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.privacy-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.privacy-btn:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .privacy-content {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-btn {
        width: 100%;
    }
}
