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

        :root {
            --primary: #8B5CF6;
            --primary-light: #A78BFA;
            --primary-dark: #7C3AED;
            --secondary: #06B6D4;
            --success: #10B981;
            --warning: #F59E0B;
            --error: #EF4444;
            
            --slate-950: #020617;
            --slate-900: #0F172A;
            --slate-800: #1E293B;
            --slate-700: #334155;
            --slate-600: #475569;
            --slate-500: #64748B;
            --slate-400: #94A3B8;
            --slate-300: #CBD5E1;
            --slate-200: #E2E8F0;
            --slate-100: #F1F5F9;
            --white: #FFFFFF;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--slate-950);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Background Effects */
        .bg-effects {
            position: fixed;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .bg-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.5;
        }

        .bg-blob-1 {
            top: -10%;
            left: 20%;
            width: 600px;
            height: 600px;
            background: rgba(139, 92, 246, 0.15);
        }

        .bg-blob-2 {
            bottom: 20%;
            right: 10%;
            width: 500px;
            height: 500px;
            background: rgba(6, 182, 212, 0.1);
        }

        .bg-blob-3 {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

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

        .nav.scrolled {
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(51, 65, 85, 0.5);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .nav-logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            color: white;
        }

        .nav-logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            color: var(--slate-300);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.2s;
        }

        .nav-link:hover {
            color: var(--white);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        /* Language Dropdown */
        .lang-dropdown {
            position: relative;
        }

        .nav-lang {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(51, 65, 85, 0.5);
            border: 1px solid var(--slate-700);
            border-radius: 8px;
            padding: 8px 12px;
            cursor: pointer;
            color: var(--slate-300);
            font-size: 14px;
            transition: all 0.2s;
        }

        .nav-lang:hover {
            border-color: var(--slate-600);
            background: rgba(51, 65, 85, 0.8);
        }

        .lang-dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 8px;
            background: var(--slate-900);
            border: 1px solid var(--slate-700);
            border-radius: 12px;
            padding: 8px;
            min-width: 160px;
            display: none;
            z-index: 100;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        }

        .lang-dropdown.active .lang-dropdown-menu {
            display: block;
        }

        .lang-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
            color: var(--slate-300);
            font-size: 14px;
        }

        .lang-option:hover {
            background: var(--slate-800);
        }

        .lang-option.active {
            background: rgba(139, 92, 246, 0.1);
            color: var(--primary-light);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
        }

        .btn-ghost {
            color: var(--slate-300);
            background: transparent;
        }

        .btn-ghost:hover {
            color: var(--white);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
        }

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

        .btn-secondary {
            background: rgba(51, 65, 85, 0.5);
            border: 1px solid var(--slate-700);
            color: var(--white);
        }

        .btn-secondary:hover {
            background: rgba(51, 65, 85, 0.8);
            border-color: var(--slate-600);
        }

        .btn-large {
            padding: 16px 32px;
            font-size: 16px;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            cursor: pointer;
            padding: 8px;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: var(--slate-900);
            border-bottom: 1px solid var(--slate-700);
            padding: 24px;
            z-index: 999;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .mobile-menu-link {
            color: var(--slate-300);
            text-decoration: none;
            font-size: 16px;
            padding: 12px 0;
            border-bottom: 1px solid var(--slate-800);
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 160px 0 100px;
            overflow: hidden;
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.3);
            color: var(--primary-light);
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .hero-title {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .hero-title-highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 20px;
            color: var(--slate-400);
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 60px;
        }

        .hero-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            padding-top: 40px;
            border-top: 1px solid var(--slate-800);
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-value {
            font-size: 36px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 4px;
        }

        .hero-stat-label {
            font-size: 14px;
            color: var(--slate-500);
        }

        /* Trust Logos */
        .trust {
            padding: 60px 0;
            border-bottom: 1px solid var(--slate-800);
        }

        .trust-title {
            text-align: center;
            font-size: 14px;
            color: var(--slate-500);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 32px;
        }

        .trust-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
            opacity: 0.5;
        }

        .trust-logo {
            font-size: 20px;
            font-weight: 600;
            color: var(--slate-400);
        }

        /* Features Section */
        .features {
            padding: 120px 0;
            position: relative;
        }

        /* Audience Section */
        .audience {
            padding: 120px 0;
            position: relative;
        }

        .audience-cta {
            display: flex;
            justify-content: center;
            margin-top: 32px;
        }

        .audience-note {
            margin-top: 16px;
            text-align: center;
            color: var(--slate-400);
            font-size: 14px;
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 64px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-light);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--slate-400);
        }

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

        .feature-card {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--slate-800);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.3s;
        }

        .feature-card:hover {
            border-color: var(--slate-700);
            transform: translateY(-4px);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
        }

        .feature-icon-purple { background: rgba(139, 92, 246, 0.15); }
        .feature-icon-cyan { background: rgba(6, 182, 212, 0.15); }
        .feature-icon-green { background: rgba(16, 185, 129, 0.15); }
        .feature-icon-amber { background: rgba(245, 158, 11, 0.15); }
        .feature-icon-red { background: rgba(239, 68, 68, 0.15); }
        .feature-icon-blue { background: rgba(59, 130, 246, 0.15); }

        .feature-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--white);
        }

        .feature-desc {
            font-size: 15px;
            color: var(--slate-400);
            line-height: 1.6;
        }

        .feature-badge {
            display: inline-block;
            background: rgba(16, 185, 129, 0.15);
            color: var(--success);
            font-size: 11px;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 6px;
            margin-left: 8px;
            vertical-align: middle;
        }

        .feature-badge.coming,
        .feature-badge.pripravovane {
            background: rgba(245, 158, 11, 0.15);
            color: var(--warning);
        }

        /* Modules Section */
        .modules {
            padding: 120px 0;
        }

        .modules-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .module-card {
            display: flex;
            flex-direction: column;
            padding: 32px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .module-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(99, 102, 241, 0.3);
            transform: translateY(-4px);
        }

        .module-icon {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        .module-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .module-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .module-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 16px;
            flex: 1;
        }

        .module-cta {
            display: inline-block;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .module-cta:hover {
            color: var(--secondary);
        }

        @media (max-width: 960px) {
            .modules-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .modules-list {
                grid-template-columns: 1fr;
            }

            .module-card {
                padding: 24px;
            }
        }

        /* How It Works */
        .how-it-works {
            padding: 120px 0;
            background: rgba(15, 23, 42, 0.5);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            position: relative;
        }

        .steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
            opacity: 0.3;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            margin: 0 auto 24px;
            position: relative;
            z-index: 1;
        }

        .step-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--white);
        }

        .step-desc {
            font-size: 14px;
            color: var(--slate-400);
        }

        /* Benefits Section */
        .benefits {
            padding: 120px 0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .benefits-content h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .benefits-content p {
            font-size: 18px;
            color: var(--slate-400);
            margin-bottom: 32px;
        }

        .benefits-list {
            list-style: none;
        }

        .benefits-list li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
        }

        .benefits-check {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--success);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .benefits-list li span {
            color: var(--slate-300);
            font-size: 16px;
        }

        .benefits-image {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--slate-800);
            border-radius: 24px;
            padding: 32px;
            position: relative;
        }

        .benefits-mockup {
            background: var(--slate-900);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid var(--slate-700);
        }

        .mockup-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .mockup-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .mockup-dot-red { background: #EF4444; }
        .mockup-dot-yellow { background: #F59E0B; }
        .mockup-dot-green { background: #10B981; }

        .mockup-bar {
            height: 12px;
            background: var(--slate-800);
            border-radius: 6px;
            margin-bottom: 16px;
        }

        .mockup-bar-60 { width: 60%; }
        .mockup-bar-80 { width: 80%; }
        .mockup-bar-40 { width: 40%; }

        .mockup-chart {
            display: flex;
            align-items: flex-end;
            gap: 12px;
            height: 120px;
            padding-top: 20px;
        }

        .mockup-chart-bar {
            flex: 1;
            border-radius: 8px 8px 0 0;
            background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
        }

        /* Comparison Section */
        .comparison {
            padding: 120px 0;
            background: rgba(15, 23, 42, 0.5);
        }

        .comparison-table-wrapper {
            overflow-x: auto;
        }

        .comparison-note {
            margin-top: 16px;
            text-align: center;
            color: var(--slate-400);
            font-size: 14px;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(30, 41, 59, 0.5);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--slate-800);
        }

        .comparison-table th,
        .comparison-table td {
            padding: 20px 24px;
            text-align: left;
            border-bottom: 1px solid var(--slate-800);
        }

        .comparison-table-wide th,
        .comparison-table-wide td {
            padding: 14px 12px;
            font-size: 14px;
        }

        .comparison-table-wide th {
            font-size: 11px;
            letter-spacing: 0.5px;
        }

        .comp-note {
            display: inline-block;
            font-size: 11px;
            color: var(--slate-500);
            margin-top: 2px;
            font-style: italic;
        }

        .comparison-table th {
            background: var(--slate-900);
            font-weight: 600;
            color: var(--slate-400);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .comparison-table th:first-child {
            text-align: left;
        }

        .comparison-table th:not(:first-child) {
            text-align: center;
        }

        .comparison-table td:not(:first-child) {
            text-align: center;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table .feature-name {
            font-weight: 500;
            color: var(--white);
        }

        .comparison-table th.comparison-votelio {
            background: rgba(139, 92, 246, 0.2);
            position: relative;
            color: var(--white);
        }

        .comparison-table td.comparison-votelio {
            background: rgba(139, 92, 246, 0.1);
        }

        .comparison-recommended {
            display: block;
            font-size: 10px;
            color: var(--primary-light);
            margin-top: 4px;
            font-weight: 500;
        }

        .check-icon {
            color: var(--success);
            font-size: 20px;
        }

        .cross-icon {
            color: var(--slate-600);
            font-size: 20px;
        }

        .partial-icon {
            color: var(--warning);
            font-size: 14px;
        }

        .price-highlight {
            color: var(--success);
            font-weight: 700;
        }

        /* Pricing Section */
        .pricing {
            padding: 120px 0;
        }

        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 48px;
        }

        .pricing-toggle span {
            font-size: 15px;
            color: var(--slate-400);
        }

        .pricing-toggle span.active {
            color: var(--white);
        }

        .toggle-switch {
            width: 56px;
            height: 28px;
            background: var(--slate-700);
            border-radius: 14px;
            position: relative;
            cursor: pointer;
        }

        .toggle-switch::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 24px;
            height: 24px;
            background: var(--white);
            border-radius: 50%;
            transition: transform 0.2s;
        }

        .toggle-switch.annual::after {
            transform: translateX(28px);
        }

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

        .pricing-card {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--slate-800);
            border-radius: 24px;
            padding: 40px 32px;
            transition: all 0.3s;
            position: relative;
        }

        .pricing-card:hover {
            border-color: var(--slate-700);
            transform: translateY(-4px);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
            border-color: rgba(139, 92, 246, 0.3);
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-4px);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 100px;
            white-space: nowrap;
        }

        .pricing-icon {
            font-size: 40px;
            margin-bottom: 16px;
        }

        .pricing-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--white);
        }

        .pricing-desc {
            font-size: 14px;
            color: var(--slate-400);
            margin-bottom: 24px;
        }

        .pricing-price {
            margin-bottom: 24px;
        }

        .pricing-amount {
            font-size: 48px;
            font-weight: 700;
            color: var(--white);
        }

        .pricing-period {
            font-size: 16px;
            color: var(--slate-500);
        }

        .pricing-yearly {
            font-size: 14px;
            color: var(--success);
            margin-top: 4px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--slate-800);
            font-size: 14px;
            color: var(--slate-300);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features .check {
            color: var(--success);
        }

        .pricing-features .cross {
            color: var(--slate-600);
        }

        .pricing-features .coming-soon,
        .pricing-features .pripravovane {
            font-size: 10px;
            background: rgba(245, 158, 11, 0.15);
            color: var(--warning);
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 4px;
        }

        .pricing-card .btn {
            width: 100%;
        }

        .pricing-savings {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 24px;
            text-align: center;
        }

        .pricing-savings-text {
            font-size: 14px;
            color: var(--success);
            font-weight: 500;
        }

        /* Testimonials */
        .testimonials {
            padding: 120px 0;
            background: rgba(15, 23, 42, 0.5);
        }

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

        .testimonial-card {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--slate-800);
            border-radius: 20px;
            padding: 32px;
        }

        .testimonial-stars {
            color: var(--warning);
            margin-bottom: 16px;
            font-size: 18px;
        }

        .testimonial-text {
            font-size: 16px;
            color: var(--slate-300);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 18px;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--white);
            margin-bottom: 2px;
        }

        .testimonial-role {
            font-size: 14px;
            color: var(--slate-500);
        }

        /* FAQ */
        .faq {
            padding: 120px 0;
        }

        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--slate-800);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
            background: none;
            border: none;
            color: var(--white);
            font-size: 18px;
            font-weight: 500;
            text-align: left;
            cursor: pointer;
            font-family: inherit;
        }

        .faq-question:hover {
            color: var(--primary-light);
        }

        .faq-icon {
            font-size: 24px;
            color: var(--slate-500);
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-inner {
            padding-bottom: 24px;
            color: var(--slate-400);
            line-height: 1.7;
        }

        /* CTA */
        .cta {
            padding: 120px 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }

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

        .cta-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .cta-subtitle {
            font-size: 18px;
            color: var(--slate-400);
            margin-bottom: 32px;
        }

        .cta-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .cta-note {
            margin-top: 24px;
            font-size: 14px;
            color: var(--slate-500);
        }

        /* Footer */
        .footer {
            padding: 80px 0 40px;
            border-top: 1px solid var(--slate-800);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .footer-logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
        }

        .footer-logo-text {
            font-size: 20px;
            font-weight: 700;
        }

        .footer-desc {
            font-size: 14px;
            color: var(--slate-400);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--slate-800);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--slate-400);
            text-decoration: none;
            transition: all 0.2s;
        }

        .footer-social a:hover {
            background: var(--primary);
            color: white;
        }

        .footer-column h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--slate-400);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 32px;
            border-top: 1px solid var(--slate-800);
        }

        .footer-copyright {
            font-size: 14px;
            color: var(--slate-500);
        }

        .footer-legal {
            display: flex;
            gap: 24px;
        }

        .footer-legal a {
            font-size: 14px;
            color: var(--slate-500);
            text-decoration: none;
        }

        .footer-legal a:hover {
            color: var(--slate-300);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps::before {
                display: none;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .pricing-cards {
                grid-template-columns: 1fr;
                max-width: 400px;
            }

            .pricing-card.featured {
                transform: none;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .nav-actions .btn-ghost,
            .nav-actions .btn-primary {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-actions {
                flex-direction: column;
            }

            .hero-stats {
                flex-direction: column;
                gap: 24px;
            }

            .section-title {
                font-size: 32px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .steps {
                grid-template-columns: 1fr;
            }

            .comparison-table {
                font-size: 13px;
                min-width: 700px;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 10px 8px;
            }

            .comparison-table-wide th {
                font-size: 10px;
            }

            .comp-note {
                font-size: 10px;
            }

            .cta-title {
                font-size: 32px;
            }

            .cta-actions {
                flex-direction: column;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        /* Content Pages (Privacy, Terms, About, Status) */
        .page-header {
            background: var(--slate-900);
            border-bottom: 1px solid var(--slate-800);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(20px);
        }

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

        .page-header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--white);
            font-weight: 700;
            font-size: 20px;
        }

        .page-header-logo .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 16px;
        }

        .page-header-back {
            color: var(--slate-400);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .page-header-back:hover {
            color: var(--white);
        }

        .page-header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        @media (max-width: 480px) {
            .page-header-actions {
                gap: 10px;
            }
            .page-header-back {
                display: none;
            }
        }

        .page-content {
            padding: 80px 0 120px;
            min-height: calc(100vh - 300px);
        }

        .page-content h1 {
            font-size: 36px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
        }

        .page-content .page-subtitle {
            color: var(--slate-400);
            font-size: 14px;
            margin-bottom: 48px;
            padding-bottom: 32px;
            border-bottom: 1px solid var(--slate-800);
        }

        .page-content h2 {
            font-size: 22px;
            font-weight: 600;
            color: var(--white);
            margin: 40px 0 16px;
        }

        .page-content h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--slate-200);
            margin: 28px 0 12px;
        }

        .page-content p {
            color: var(--slate-300);
            line-height: 1.8;
            margin-bottom: 16px;
            font-size: 15px;
        }

        .page-content ul, .page-content ol {
            color: var(--slate-300);
            line-height: 1.8;
            margin-bottom: 16px;
            padding-left: 24px;
            font-size: 15px;
        }

        .page-content li {
            margin-bottom: 6px;
        }

        .page-content strong {
            color: var(--white);
        }

        .page-content a {
            color: var(--primary-light);
            text-decoration: underline;
        }

        .page-content a:hover {
            color: var(--white);
        }

        .page-content .highlight-box {
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 12px;
            padding: 24px;
            margin: 24px 0;
        }

        .page-content .highlight-box p {
            margin-bottom: 0;
        }

        /* Status Page */
        .status-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 32px 0;
        }

        .status-card {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--slate-800);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .status-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--success);
            flex-shrink: 0;
            box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
        }

        .status-card-info h3 {
            margin: 0 0 4px;
            font-size: 16px;
        }

        .status-card-info p {
            margin: 0;
            font-size: 13px;
            color: var(--slate-500);
        }

        /* About Page */
        .about-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
            margin: 32px 0;
        }

        .about-card {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--slate-800);
            border-radius: 16px;
            padding: 28px;
        }

        .about-card h3 {
            margin-top: 0;
        }

        .about-card p {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .page-content h1 {
                font-size: 28px;
            }

            .page-content h2 {
                font-size: 20px;
            }
        }

        /* Blog Listing */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 48px;
        }

        .blog-card {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--slate-800);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            border-color: rgba(139, 92, 246, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }

        .blog-card-image {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 56px;
            position: relative;
        }

        .blog-card-image.bg-1 { background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%); }
        .blog-card-image.bg-2 { background: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%); }
        .blog-card-image.bg-3 { background: linear-gradient(135deg, #059669 0%, #10B981 100%); }
        .blog-card-image.bg-4 { background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%); }
        .blog-card-image.bg-5 { background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%); }
        .blog-card-image.bg-6 { background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%); }

        .blog-card-body {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-card-meta {
            font-size: 13px;
            color: var(--slate-500);
            margin-bottom: 10px;
            display: flex;
            gap: 12px;
        }

        .blog-card-tag {
            display: inline-block;
            background: rgba(139, 92, 246, 0.15);
            color: var(--primary-light);
            font-size: 12px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 20px;
            margin-bottom: 12px;
            width: fit-content;
        }

        .blog-card h3 {
            color: var(--white);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .blog-card p {
            color: var(--slate-400);
            font-size: 14px;
            line-height: 1.6;
            flex: 1;
        }

        .blog-card-link {
            color: var(--primary-light);
            font-size: 14px;
            font-weight: 600;
            margin-top: 16px;
            display: inline-block;
        }

        /* Blog Article */
        .article-hero {
            text-align: center;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--slate-800);
            margin-bottom: 40px;
        }

        .article-hero .blog-card-tag {
            margin-bottom: 16px;
        }

        .article-hero h1 {
            font-size: 40px;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--slate-500);
            font-size: 14px;
        }

        .article-body {
            max-width: 720px;
            margin: 0 auto;
        }

        .article-body h2 {
            margin-top: 48px;
        }

        .article-body blockquote {
            border-left: 3px solid var(--primary);
            padding: 16px 24px;
            margin: 24px 0;
            background: rgba(139, 92, 246, 0.05);
            border-radius: 0 12px 12px 0;
        }

        .article-body blockquote p {
            margin: 0;
            font-style: italic;
        }

        .related-articles {
            margin-top: 80px;
            padding-top: 48px;
            border-top: 1px solid var(--slate-800);
        }

        .related-articles h2 {
            text-align: center;
            margin-bottom: 32px;
        }

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

        @media (max-width: 960px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
            .related-grid {
                grid-template-columns: 1fr;
            }
            .article-hero h1 {
                font-size: 28px;
            }
            .article-meta {
                flex-direction: column;
                gap: 6px;
            }
        }

