:root {
            --bg-color: #000000;
            --bg-secondary: #0A0A0A;
            --text-light: #F8FAFC;
            --text-dark: #000000;
            --text-muted: #94A3B8;
            --primary-accent: #00E5FF;
            --secondary-accent: #7000FF;
            --card-bg: rgba(20, 20, 20, 0.6);
            --card-border: rgba(255, 255, 255, 0.08);
            --card-hover: rgba(255, 255, 255, 0.15);
            --glass-blur: blur(24px);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            background-color: var(--bg-color);
            color: var(--text-light);
            font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            line-height: 1.6;
            letter-spacing: -0.01em;
        }

        h1, h2, h3, h4, h5, h6, .logo {
            font-family: "Space Grotesk", sans-serif;
            letter-spacing: -0.03em;
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Animated Background Gradients */
        .bg-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(120px);
            z-index: -1;
            opacity: 0.4;
            pointer-events: none;
            animation: drift 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
        }
        .bg-orb-1 {
            top: -10%; left: -10%;
            width: 50vw; height: 50vw;
            background: radial-gradient(circle, var(--secondary-accent), transparent 70%);
            animation-duration: 25s;
        }
        .bg-orb-2 {
            bottom: -10%; right: -10%;
            width: 45vw; height: 45vw;
            background: radial-gradient(circle, var(--primary-accent), transparent 70%);
            animation-delay: -10s;
        }
        @keyframes drift {
            0% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(5%, 5%) scale(1.1); }
            100% { transform: translate(-5%, -5%) scale(0.95); }
        }
        /* Navbar */

        .navbar {
            background-color: rgba(3, 7, 18, 0.6);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--card-border);
            padding: 0 2rem;
            height: 76px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo { display: flex; align-items: center; gap: 0.75rem; font-weight: 800; font-size: 1.5rem; color: #fff; cursor: pointer; text-decoration: none; letter-spacing: -0.02em; }
        .logo svg { color: var(--primary-accent); }
        .nav-links { display: flex; gap: 2rem; align-items: center; }
        .nav-link { color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 0.95rem; cursor: pointer; transition: all 0.3s ease; }
        .nav-link:hover, .nav-link.active { color: #fff; text-shadow: 0 0 12px rgba(255,255,255,0.4); }

        .profile-btn {
            width: 42px; height: 42px; border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            color: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        }
        .profile-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6); }

        .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: #fff; }
        .mobile-nav { display: none; position: fixed; top: 76px; left: 0; right: 0; background: rgba(3, 7, 18, 0.95); backdrop-filter: blur(20px); padding: 1.5rem 2rem; border-bottom: 1px solid var(--card-border); z-index: 99; flex-direction: column; gap: 1.5rem; }
        .mobile-nav.open { display: flex; }
        .mobile-nav .nav-link { font-size: 1.1rem; color: #fff; }

        /* Pages & Hero */
        .page { display: none; animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; width: 100%; max-width: 1280px; margin: 0 auto; flex: 1; padding: 6rem 2rem; }
        .page.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        .hero { display: flex; align-items: center; justify-content: space-between; gap: 4rem; margin-bottom: 6rem; }
        .hero-content { flex: 1; text-align: left; }
        .hero h1 { font-size: 4.5rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1.5rem; line-height: 1.1; background: linear-gradient(to right, #fff, #9ca3af); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 3rem; line-height: 1.7; max-width: 540px; }
        .hero-visual { flex: 1; position: relative; display: flex; justify-content: flex-end; }
        .hero-visual img { width: 100%; max-width: 600px; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(59, 130, 246, 0.2); object-fit: cover; aspect-ratio: 4/3; border: 1px solid var(--card-border); z-index: 2; transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .hero-visual img:hover { transform: translateY(-10px) scale(1.02); }

        .badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
        .badge { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid var(--card-border); color: #e5e7eb; padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }

        .trust-bar { display: flex; justify-content: center; align-items: center; gap: 4rem; padding: 2rem 0; margin-bottom: 6rem; flex-wrap: wrap; opacity: 0.6; }
        .trust-item { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; }

        .stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 6rem; background: var(--card-bg); backdrop-filter: blur(20px); border: 1px solid var(--card-border); border-radius: 24px; padding: 3rem; }
        .stat-card { text-align: center; border-right: 1px solid var(--card-border); }
        .stat-card:last-child { border-right: none; }
        .stat-number { font-size: 3.5rem; font-weight: 800; margin-bottom: 0.5rem; background: linear-gradient(135deg, #fff, #9ca3af); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Outfit', sans-serif; }
        .stat-label { font-size: 1rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

        .section-header { text-align: center; margin-bottom: 4rem; }
        .section-header h2 { font-size: 3rem; margin-bottom: 1.5rem; font-weight: 800; }
        .section-header p { color: var(--text-muted); font-size: 1.2rem; max-width: 600px; margin: 0 auto; }

        .dashboard-preview { width: 100%; height: 500px; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); margin-bottom: 6rem; border: 1px solid var(--card-border); position: relative; cursor: pointer; overflow: hidden; }
        .dashboard-preview::before { content: ''; position: absolute; inset: 0; background: url('../../images/pic2.png') center/cover no-repeat; transform: scale(1.12); transition: transform 0.4s ease; z-index: 0; }
        .dashboard-preview::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,7,18,1) 2%, transparent 80%); z-index: 1; pointer-events: none; }
        .dashboard-preview:hover { transform: scale(1.01); transition: transform 0.4s ease; box-shadow: 0 40px 80px rgba(0,0,0,0.6); }
        .dashboard-preview:hover::before { transform: scale(1.15); }

        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
        
        .card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 24px;
            padding: 2.5rem;
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }
        .card::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .card:hover {
            transform: translateY(-8px);
            border-color: var(--card-hover);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
        }
        .card:hover::before {
            opacity: 1;
        }

        .card-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; color: var(--primary-accent); }
        .card-icon svg { stroke: var(--primary-accent); }
        .card h3 { font-size: 1.4rem; margin-bottom: 1rem; font-weight: 600; color: #fff; }
        .card p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }

        .cta-section { text-align: center; padding: 6rem 2rem; background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1)); border-radius: 32px; margin: 6rem 0; border: 1px solid var(--card-border); position: relative; overflow: hidden; }
        .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(59,130,246,0.2) 0%, transparent 70%); }
        .cta-section h2 { font-size: 3rem; margin-bottom: 1.5rem; font-weight: 800; position: relative; }
        .cta-section p { color: var(--text-muted); margin-bottom: 3rem; font-size: 1.25rem; position: relative; max-width: 600px; margin-left: auto; margin-right: auto; }
        .btn-cta { display: inline-block; padding: 1rem 2.5rem; background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent)); color: white; border: none; border-radius: 12px; font-size: 1.05rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3); position: relative; }
        .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4); }
        .btn-cta-outline { display: inline-block; padding: 1rem 2.5rem; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); color: white; border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; font-size: 1.05rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; margin-left: 1rem; position: relative; }
        .btn-cta-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255,255,255,0.4); }

        .page-header { text-align: center; margin-bottom: 5rem; }
        .page-header h1 { font-size: 4rem; font-weight: 800; margin-bottom: 1.5rem; background: linear-gradient(to right, #fff, #9ca3af); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .page-header p { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

        .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
        .pricing-card { background: var(--card-bg); backdrop-filter: blur(20px); border-radius: 24px; padding: 3rem 2.5rem; border: 1px solid var(--card-border); display: flex; flex-direction: column; transition: transform 0.3s; }
        .pricing-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
        .pricing-card.featured { background: rgba(59, 130, 246, 0.05); border-color: var(--primary-accent); position: relative; box-shadow: 0 0 40px rgba(59, 130, 246, 0.1); }
        .pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent)); color: white; padding: 0.5rem 1.5rem; border-radius: 50px; font-size: 0.85rem; font-weight: 700; box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3); }
        .price { font-size: 4rem; font-weight: 800; margin: 1.5rem 0; color: #fff; }
        .price span { font-size: 1.2rem; font-weight: 500; color: var(--text-muted); }
        .features-list { list-style: none; margin-bottom: 2.5rem; flex: 1; }
        .features-list li { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 1rem; display: flex; align-items: center; gap: 12px; color: #e5e7eb; }

        .content-block { background: var(--card-bg); backdrop-filter: blur(20px); padding: 3.5rem; border-radius: 24px; border: 1px solid var(--card-border); max-width: 800px; margin: 0 auto; }
        .content-block h2 { font-size: 2rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1.5rem; color: #fff; }
        .content-block h3 { font-size: 1.4rem; margin-bottom: 1rem; margin-top: 2.5rem; color: #fff; }
        .content-block p, .content-block li { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.2rem; font-size: 1.05rem; }
        .content-block ul, .content-block ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
        pre { background: rgba(0,0,0,0.5); padding: 1.5rem; border-radius: 16px; overflow-x: auto; margin-bottom: 1.5rem; border: 1px solid rgba(255,255,255,0.05); box-shadow: inset 0 2px 10px rgba(0,0,0,0.2); }
        code { font-family: 'SF Mono', 'Fira Code', monospace; color: #60a5fa; font-size: 0.95rem; }

        .status-item { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2rem; background: rgba(255,255,255,0.02); border: 1px solid var(--card-border); border-radius: 16px; margin-bottom: 1rem; transition: background 0.2s; }
        .status-item:hover { background: rgba(255,255,255,0.04); }
        .status-indicator { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #10b981; }
        .dot { width: 12px; height: 12px; background: #10b981; border-radius: 50%; box-shadow: 0 0 10px #10b981; animation: pulse 2s infinite; }
        @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }

        .team-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 2rem; width: 100%; margin-top: 2rem; }
        @media (min-width: 700px) { .team-grid { grid-template-columns: 1fr 1fr !important; } }
        .team-card { text-align: center; padding: 2.5rem; background: var(--card-bg); border-radius: 24px; border: 1px solid var(--card-border); transition: transform 0.3s; }
        .team-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.15); }
        .team-avatar { width: 90px; height: 90px; border-radius: 50%; border: 2px solid var(--primary-accent); padding: 4px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; object-fit: cover; background: rgba(0,0,0,0.2); }
        .team-card h4 { font-size: 1.25rem; margin-bottom: 0.25rem; color: #fff; }
        .team-card .role { color: var(--primary-accent); font-size: 0.9rem; font-weight: 500; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
        .team-card .bio { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

        .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
        .blog-card { background: var(--card-bg); border-radius: 24px; overflow: hidden; border: 1px solid var(--card-border); transition: all 0.3s ease; cursor: pointer; }
        .blog-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
        .blog-card-img { height: 220px; background-size: cover; background-position: center; position: relative; }
        .blog-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,7,18,1), transparent); }
        .blog-card-body { padding: 2rem; }
        .blog-tag { display: inline-block; background: rgba(59, 130, 246, 0.15); border: 1px solid rgba(59,130,246,0.3); padding: 0.35rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; color: #60a5fa; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
        .blog-card-body h3 { font-size: 1.3rem; margin-bottom: 1rem; line-height: 1.4; color: #fff; }
        .blog-card-body p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }
        .blog-meta { color: #6b7280; font-size: 0.85rem; margin-top: 1.5rem; font-weight: 500; }

        .integrations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
        .integration-card { text-align: center; padding: 2.5rem 1.5rem; background: var(--card-bg); border-radius: 24px; border: 1px solid var(--card-border); transition: all 0.3s; }
        .integration-card:hover { background: var(--card-hover); transform: translateY(-5px); border-color: rgba(255,255,255,0.15); }
        .integration-icon { width: 56px; height: 56px; margin: 0 auto 1.5rem; background: rgba(255,255,255,0.05); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; border: 1px solid rgba(255,255,255,0.05); }
        .integration-card h4 { font-size: 1.15rem; margin-bottom: 0.75rem; color: #fff; }
        .integration-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

        .form-group { margin-bottom: 1.5rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; color: #e5e7eb; font-size: 0.95rem; font-weight: 500; }
        .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 1.2rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.3); color: white; font-size: 1rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary-accent); box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2); }
        .form-group select option { background: #030712; }

        .timeline { position: relative; padding-left: 3rem; margin-top: 3rem; }
        .timeline::before { content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.1); }
        .timeline-item { position: relative; padding-bottom: 3rem; padding-left: 0; }
        .timeline-item::before { content: ''; position: absolute; left: -3rem; top: 6px; width: 16px; height: 16px; background: var(--primary-accent); border-radius: 50%; border: 4px solid var(--bg-color); box-shadow: 0 0 10px var(--primary-accent); }
        .timeline-item h4 { font-size: 1.25rem; margin-bottom: 0.5rem; color: #fff; }
        .timeline-item .year { color: var(--primary-accent); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: 0.05em; }
        .timeline-item p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; }

        .faq-item { background: rgba(255,255,255,0.02); border: 1px solid var(--card-border); border-radius: 16px; margin-bottom: 1rem; overflow: hidden; transition: background 0.2s; }
        .faq-item:hover { background: rgba(255,255,255,0.04); }
        .faq-question { padding: 1.5rem 2rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 1.05rem; color: #fff; }
        .faq-answer { padding: 0 2rem 1.5rem; color: var(--text-muted); line-height: 1.7; font-size: 1rem; display: none; }
        .faq-item.open .faq-answer { display: block; }
        .faq-item.open .faq-arrow { transform: rotate(180deg); }
        .faq-arrow { transition: transform 0.3s; color: var(--primary-accent); }

        .footer { border-top: 1px solid var(--card-border); padding: 5rem 2rem 2rem; margin-top: auto; background: rgba(0,0,0,0.5); backdrop-filter: blur(20px); position: relative; overflow: hidden; }
        .footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 4rem; margin-bottom: 4rem; text-align: left; }
        .footer-brand p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-top: 1rem; max-width: 300px; }
        .footer-col h4 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; margin-bottom: 1.5rem; }
        .footer-col a { display: block; color: var(--text-muted); text-decoration: none; font-size: 0.95rem; margin-bottom: 0.75rem; transition: color 0.2s; cursor: pointer; }
        .footer-col a:hover { color: #fff; }
        .footer-bottom { max-width: 1280px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
        .footer-bottom p { color: #6b7280; font-size: 0.9rem; }
        .footer-legal-links { display: flex; gap: 2rem; }
        .footer-legal-links a { color: #6b7280; text-decoration: none; font-size: 0.9rem; cursor: pointer; transition: color 0.2s; }
        .footer-legal-links a:hover { color: #e5e7eb; }

        .cookie-banner { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(150%); width: 90%; max-width: 800px; background: rgba(3, 7, 18, 0.95); backdrop-filter: blur(20px); border: 1px solid var(--card-border); padding: 1.5rem 2rem; border-radius: 20px; display: flex; justify-content: space-between; align-items: center; gap: 2rem; z-index: 200; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
        .cookie-banner.show { transform: translateX(-50%) translateY(0); }
        .cookie-banner p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
        .cookie-banner a { color: var(--primary-accent); text-decoration: underline; cursor: pointer; }
        .cookie-btns { display: flex; gap: 1rem; }
        .cookie-btn { padding: 0.75rem 1.5rem; border-radius: 10px; font-size: 0.9rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap; }
        .cookie-accept { background: var(--primary-accent); color: white; box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3); }
        .cookie-accept:hover { background: #2563eb; transform: translateY(-1px); }
        .cookie-decline { background: rgba(255,255,255,0.05); color: #e5e7eb; border: 1px solid rgba(255,255,255,0.1); }
        .cookie-decline:hover { background: rgba(255,255,255,0.1); }

        .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 1000; }
        .modal-overlay.active { opacity: 1; pointer-events: all; }
        .modal { background: #0f172a; border: 1px solid var(--card-border); color: #fff; padding: 3rem; border-radius: 24px; width: 100%; max-width: 440px; box-shadow: 0 25px 50px rgba(0,0,0,0.5); transform: translateY(20px) scale(0.95); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
        .modal-overlay.active .modal { transform: translateY(0) scale(1); }
        .modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
        .modal-header h2 { font-size: 1.75rem; color: #fff; font-weight: 800; }
        .close-btn { background: none; border: none; font-size: 1.75rem; cursor: pointer; color: #6b7280; transition: color 0.2s; }
        .close-btn:hover { color: #fff; }
        .input-group { margin-bottom: 1.5rem; }
        .input-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; font-weight: 500; color: #9ca3af; }
        .input-group input { width: 100%; padding: 1rem; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 12px; outline: none; transition: all 0.2s; }
        .input-group input:focus { border-color: var(--primary-accent); box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2); }
        .btn-primary { width: 100%; padding: 1rem; background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent)); color: white; border: none; border-radius: 12px; font-size: 1.05rem; font-weight: 600; cursor: pointer; margin-top: 1rem; transition: all 0.3s; box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3); }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4); }

        .toast-container { position: fixed; bottom: 2rem; right: 2rem; display: flex; flex-direction: column; gap: 1rem; z-index: 2000; }
        .toast { background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(10px); color: white; padding: 1.25rem 1.5rem; border-radius: 16px; box-shadow: 0 15px 30px rgba(0,0,0,0.4); border: 1px solid var(--card-border); font-size: 0.95rem; display: flex; align-items: flex-start; gap: 1rem; transform: translateX(120%); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); max-width: 380px; position: relative; overflow: hidden; }
        .toast::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--primary-accent); }
        .toast.show { transform: translateX(0); }

        @media(max-width: 900px) {
            .hero { flex-direction: column; gap: 3rem; padding-top: 2rem; }
            .hero-content { text-align: center; }
            .hero h1 { font-size: 3.5rem; }
            .hero p { margin: 0 auto 2rem; }
            .hero-visual { justify-content: center; }
            .nav-links { display: none; }
            .hamburger { display: block; }
            .pricing-grid { grid-template-columns: 1fr; }
            .pricing-card.featured { transform: scale(1); }
            .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 2rem; }
            .stat-card { border-right: none; border-bottom: 1px solid var(--card-border); padding: 1.5rem; }
            .stat-card:nth-child(3), .stat-card:nth-child(4) { border-bottom: none; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
            .trust-bar { gap: 2rem; }
            .cta-section .btn-cta-outline { margin-left: 0; margin-top: 1rem; display: block; }
            .btn-cta { display: block; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }
        @media(max-width: 500px) {
            .stats-bar { grid-template-columns: 1fr; }
            .stat-card { border-bottom: 1px solid var(--card-border); }
            .stat-card:nth-child(3) { border-bottom: 1px solid var(--card-border); }
            .footer-grid { grid-template-columns: 1fr; }
            .page { padding: 4rem 1rem; }
            .hero h1 { font-size: 2.5rem; }
            .cookie-banner { width: 95%; flex-direction: column; text-align: center; gap: 1.5rem; }
        }

        /* --- PREMIUM REDESIGN & GLASSMORPHISM --- */
        body {
            background-color: #05050A;
            color: #E2E8F0;
        }
        .hero {
            position: relative;
            background: linear-gradient(to bottom, rgba(5,5,10,0.8), rgba(5,5,10,1)), url('../../images/hero-bg.png') center/cover no-repeat;
            animation: fadeIn 2s ease-in-out;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 32px;
            padding: 4rem;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
            overflow: hidden;
        }
        .header, .content-block, .feature-card, .faq-item, .integration-card, .price-card {
            background: rgba(20, 20, 30, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }
        .feature-card:hover, .integration-card:hover, .price-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
            border-color: rgba(59, 130, 246, 0.3);
        }
        .btn-primary, .btn-secondary {
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
            transition: all 0.3s;
        }
        .btn-primary:hover {
            box-shadow: 0 0 25px rgba(59, 130, 246, 0.8);
            transform: scale(1.05);
        }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        h1, h2, h3 { text-shadow: 0 2px 10px rgba(255,255,255,0.1); }
        #page-docs .content-block {
            background: linear-gradient(to right, rgba(5,5,10,0.9), rgba(5,5,10,0.9)), url('../../images/feature-bg.png') right/cover no-repeat;
        }