        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #883CF0;
            --primary-light: #a855f7;
            --primary-dark: #7c3aed;
            --text-primary: #f0f8ff;
            --text-secondary: #d6d6d6;
            --text-muted: #a0a0a0;
            --bg-page: #191127;
            --bg-header: #180f26;
            --bg-card: #23133a;
            --bg-card-hover: #1f1232;
            --border: #3a1c63;
            --border-hover: #5e309d;
            --success: #60c090;
            --error: #ff5f57;
            --code-bg: #0f0818;
            --tag-bg: #291a3e;
            --gradient-1: linear-gradient(90deg, #3a1c63, #684895);
            --gradient-2: linear-gradient(135deg, #883CF0 0%, #5e309d 100%);
            --glow: 0 0 40px rgba(136, 60, 240, 0.3);
            --glow-strong: 0 0 60px rgba(136, 60, 240, 0.5);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--bg-page);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            line-height: 1.2;
        }

        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #873cf015;
        }

        ::-webkit-scrollbar-thumb {
            background: #873cf050;
            border-radius: 3px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(24, 15, 38, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(58, 28, 99, 0.5);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(24, 15, 38, 0.95);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--glow);
        }

        .logo-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .status-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: transparent;
            border: 1px solid #3a1c63;
            border-radius: 100px;
            font-size: 0.8rem;
            color: var(--primary);
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s ease;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(136, 60, 240, 0.15) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 50%, rgba(124, 60, 237, 0.1) 0%, transparent 40%),
                        radial-gradient(ellipse at 20% 80%, rgba(94, 48, 157, 0.1) 0%, transparent 40%);
            pointer-events: none;
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(136, 60, 240, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(136, 60, 240, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
        }

        .hero-content {
            max-width: 900px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--tag-bg);
            border: 1px solid var(--border);
            border-radius: 100px;
            font-size: 0.85rem;
            color: var(--primary-light);
            margin-bottom: 2rem;
            animation: fadeInUp 0.6s ease forwards;
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
            fill: var(--primary);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 50%, var(--text-primary) 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.6s ease 0.1s forwards, shimmer 3s linear infinite;
            opacity: 0;
        }

        @keyframes shimmer {
            0% { background-position: 200% center; }
            100% { background-position: -200% center; }
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 2.5rem;
            animation: fadeInUp 0.6s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.6s ease 0.3s forwards;
            opacity: 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: inherit;
        }

        .btn-primary {
            background: var(--gradient-2);
            color: white;
            box-shadow: var(--glow);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--glow-strong);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

        .btn-secondary:hover {
            background: var(--bg-card);
            border-color: var(--border-hover);
        }

        .btn svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .hero-visual {
            margin-top: 4rem;
            position: relative;
            animation: fadeInUp 0.6s ease 0.4s forwards;
            opacity: 0;
        }

        .hero-dashboard {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: var(--glow), 0 20px 60px rgba(0, 0, 0, 0.4);
            max-width: 800px;
            margin: 0 auto;
        }

        .dashboard-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }

        .dashboard-title {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .dashboard-dots {
            display: flex;
            gap: 0.5rem;
        }

        .dashboard-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dashboard-dot.red { background: #ff5f57; }
        .dashboard-dot.yellow { background: #febc2e; }
        .dashboard-dot.green { background: #28ca41; }

        .experiment-card {
            background: var(--code-bg);
            border-radius: 12px;
            padding: 1.25rem;
            margin-bottom: 1rem;
        }

        .experiment-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .experiment-name {
            font-weight: 600;
            color: var(--text-primary);
        }

        .experiment-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            color: var(--success);
        }

        .experiment-status::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .variant-bars {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .variant-row {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .variant-label {
            width: 80px;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .variant-bar-container {
            flex: 1;
            height: 24px;
            background: rgba(136, 60, 240, 0.1);
            border-radius: 6px;
            overflow: hidden;
            position: relative;
        }

        .variant-bar {
            height: 100%;
            border-radius: 6px;
            transition: width 1.5s ease;
        }

        .variant-bar.variant-a {
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            width: 0;
        }

        .variant-bar.variant-b {
            background: linear-gradient(90deg, #5e309d, #7c3aed);
            width: 0;
        }

        .variant-bar.animate.variant-a { width: 72%; }
        .variant-bar.animate.variant-b { width: 65%; }

        .variant-value {
            width: 50px;
            text-align: right;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* Marquee */
        .marquee-section {
            padding: 2rem 0;
            background: var(--bg-header);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }

        .marquee-container {
            display: flex;
            animation: marquee 30s linear infinite;
        }

        .marquee-content {
            display: flex;
            gap: 4rem;
            padding: 0 2rem;
            white-space: nowrap;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .marquee-item svg {
            width: 20px;
            height: 20px;
            fill: var(--primary);
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Stats Section */
        .stats {
            padding: 6rem 2rem;
            position: relative;
        }

        .stats-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .stats-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .stats-label {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--tag-bg);
            border: 1px solid var(--border);
            border-radius: 100px;
            font-size: 0.85rem;
            color: var(--primary-light);
            margin-bottom: 1.5rem;
        }

        .stats-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            margin-bottom: 1rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
            box-shadow: var(--glow);
        }

        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* Problem Section */
        .problem {
            padding: 6rem 2rem;
            background: var(--bg-header);
        }

        .problem-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: #1f1232;
            border: 1px solid var(--border);
            border-radius: 100px;
            font-size: 0.85rem;
            color: var(--primary-light);
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .problem-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .problem-card:hover {
            border-color: var(--border-hover);
            background: var(--bg-card-hover);
        }

        .problem-icon {
            width: 56px;
            height: 56px;
            background: rgba(255, 95, 87, 0.1);
            border: 1px solid rgba(255, 95, 87, 0.3);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .problem-icon svg {
            width: 28px;
            height: 28px;
            fill: var(--error);
        }

        .problem-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .problem-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Solution Section */
        .solution {
            padding: 6rem 2rem;
        }

        .solution-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .solution-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .solution-text h2 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            margin-bottom: 1.5rem;
        }

        .solution-text p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .solution-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .solution-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .solution-check {
            width: 24px;
            height: 24px;
            background: rgba(96, 192, 144, 0.1);
            border: 1px solid rgba(96, 192, 144, 0.3);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .solution-check svg {
            width: 14px;
            height: 14px;
            fill: var(--success);
        }

        .solution-item span {
            color: var(--text-secondary);
            font-size: 1rem;
        }

        .solution-visual {
            position: relative;
        }

        .solution-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: var(--glow);
        }

        .code-block {
            background: var(--code-bg);
            border-radius: 12px;
            padding: 1.5rem;
            font-family: 'JetBrains Mono', 'Fira Code', monospace;
            font-size: 0.85rem;
            overflow-x: auto;
        }

        .code-line {
            display: block;
            line-height: 1.8;
        }

        .code-keyword { color: var(--primary-light); }
        .code-string { color: var(--success); }
        .code-comment { color: var(--text-muted); }
        .code-function { color: #fbbf24; }
        .code-variable { color: var(--text-primary); }

        /* Features Section */
        .features {
            padding: 6rem 2rem;
            background: var(--bg-header);
        }

        .features-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-2);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: rgba(136, 60, 240, 0.1);
            border: 1px solid rgba(136, 60, 240, 0.3);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            fill: var(--primary);
        }

        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Workflow Section */
        .workflow {
            padding: 6rem 2rem;
        }

        .workflow-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .workflow-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            position: relative;
        }

        .workflow-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: var(--gradient-1);
            z-index: 0;
        }

        .workflow-step {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .workflow-step:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
            box-shadow: var(--glow);
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: var(--gradient-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            box-shadow: var(--glow);
        }

        .workflow-step h3 {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }

        .workflow-step p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Benefits Section */
        .benefits {
            padding: 6rem 2rem;
            background: var(--bg-header);
        }

        .benefits-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .benefit-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2.5rem;
            display: flex;
            gap: 1.5rem;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            border-color: var(--border-hover);
        }

        .benefit-icon {
            width: 64px;
            height: 64px;
            background: rgba(136, 60, 240, 0.1);
            border: 1px solid rgba(136, 60, 240, 0.3);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .benefit-icon svg {
            width: 32px;
            height: 32px;
            fill: var(--primary);
        }

        .benefit-content h3 {
            font-size: 1.35rem;
            margin-bottom: 0.75rem;
        }

        .benefit-content p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.7;
        }

        /* Use Cases Section */
        .use-cases {
            padding: 6rem 2rem;
        }

        .use-cases-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .use-case-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .use-case-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
        }

        .use-case-tag {
            display: inline-block;
            padding: 0.35rem 0.75rem;
            background: var(--tag-bg);
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: 0.75rem;
            color: var(--primary-light);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .use-case-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .use-case-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Integrations Section */
        .integrations {
            padding: 6rem 2rem;
            background: var(--bg-header);
        }

        .integrations-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .integrations-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .integrations-text h2 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            margin-bottom: 1.5rem;
        }

        .integrations-text p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .integrations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .integration-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.25rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .integration-item:hover {
            border-color: var(--border-hover);
            transform: translateY(-2px);
        }

        .integration-item svg {
            width: 32px;
            height: 32px;
            fill: var(--primary);
            margin-bottom: 0.5rem;
        }

        .integration-item span {
            display: block;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        /* Security Section */
        .security {
            padding: 6rem 2rem;
        }

        .security-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .security-content {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .security-text h2 {
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            margin-bottom: 1.5rem;
        }

        .security-text p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .compliance-badges {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .compliance-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            background: rgba(136, 60, 240, 0.1);
            border: 1px solid rgba(136, 60, 240, 0.3);
            border-radius: 10px;
            font-size: 0.9rem;
            color: var(--text-primary);
        }

        .compliance-badge svg {
            width: 18px;
            height: 18px;
            fill: var(--success);
        }

        .security-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .security-feature {
            background: var(--code-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.25rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .security-feature svg {
            width: 24px;
            height: 24px;
            fill: var(--primary);
            flex-shrink: 0;
        }

        .security-feature span {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 6rem 2rem;
            background: var(--bg-header);
        }

        .testimonials-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
        }

        .testimonial-quote {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-quote::before {
            content: '"';
            font-size: 3rem;
            color: var(--primary);
            font-family: Georgia, serif;
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            opacity: 0.3;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            background: var(--gradient-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .testimonial-info h4 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .testimonial-info p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Comparison Table */
        .comparison {
            padding: 6rem 2rem;
        }

        .comparison-inner {
            max-width: 900px;
            margin: 0 auto;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-card);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .comparison-table th,
        .comparison-table td {
            padding: 1.25rem 1.5rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        .comparison-table th {
            background: var(--code-bg);
            font-weight: 600;
            color: var(--text-primary);
        }

        .comparison-table th:first-child {
            width: 50%;
        }

        .comparison-table td {
            color: var(--text-secondary);
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table .check {
            color: var(--success);
            font-size: 1.25rem;
        }

        .comparison-table .cross {
            color: var(--error);
            font-size: 1.25rem;
        }

        .table-highlight {
            background: rgba(136, 60, 240, 0.05);
        }

        /* CTA Section */
        .cta {
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(136, 60, 240, 0.2) 0%, transparent 60%);
        }

        .cta-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1.5rem;
        }

        .cta p {
            color: var(--text-secondary);
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        .footer {
            padding: 3rem 2rem;
            background: var(--bg-header);
            border-top: 1px solid var(--border);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .footer-nav {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--primary);
        }

        .footer-copyright {
            color: var(--text-muted);
            font-size: 0.85rem;
        }


        .btn-submit {
            width: 100%;
            padding: 1rem;
            background: var(--gradient-2);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            box-shadow: var(--glow-strong);
            transform: translateY(-2px);
        }

        /* Mobile Menu */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: var(--bg-header);
            border-bottom: 1px solid var(--border);
            padding: 1.5rem;
            flex-direction: column;
            gap: 1rem;
            z-index: 999;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .mobile-nav.active {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 1rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
            transition: color 0.3s ease;
        }

        .mobile-nav a:hover {
            color: var(--primary);
        }

        /* Scroll Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .problem-grid,
            .features-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .workflow-steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .workflow-steps::before {
                display: none;
            }

            .solution-content,
            .integrations-content,
            .security-content {
                grid-template-columns: 1fr;
            }

            .security-features {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links,
            .status-badge {
                display: none;
            }

            .mobile-toggle {
                display: flex;
            }

            .mobile-nav {
                display: flex;
            }

            .header-inner {
                padding: 1rem;
            }

            .hero {
                padding: 7rem 1.5rem 3rem;
            }

            .stats-grid,
            .problem-grid,
            .features-grid,
            .benefits-grid,
            .use-cases-grid,
            .workflow-steps,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .integrations-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .security-features {
                grid-template-columns: 1fr;
            }

            .comparison-table th:first-child {
                width: auto;
            }

            .footer-inner {
                flex-direction: column;
                text-align: center;
            }

            .footer-nav {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {

            .stats, .problem, .solution, .features, .workflow, .benefits, .use-cases, .integrations, .security, .testimonials, .comparison, .cta{
                padding:40px 20px;
            }

            .comparison-table th, .comparison-table td {
                padding: 10px;
            }

            .solution-card{
                padding: 0px;
            }

            .security-content{
                padding: 20px;
            }

            .benefit-card{
                flex-direction: column;
                padding: 20px;
            }
            .hero-cta {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .integrations-grid {
                grid-template-columns: 1fr;
            }

            .compliance-badges {
                flex-direction: column;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .footer-nav{
                gap:10px;
            }
        }