        :root {
            --primary: #00ff88;
            --primary-dark: #00cc6a;
            --secondary: #8b5cf6;
            --accent: #fbbf24;
            --dark: #0a0a0f;
            --dark-alt: #15151f;
            --dark-card: #1a1a2e;
            --text: #e5e5e5;
            --text-muted: #a0a0a0;
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
            --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--dark);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Animated Background */
        .bg-animated {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: 
                radial-gradient(ellipse at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
            animation: bgShift 20s ease-in-out infinite;
        }
        
        @keyframes bgShift {
            0%, 100% { filter: hue-rotate(0deg); }
            50% { filter: hue-rotate(30deg); }
        }
        
        /* Noise Texture Overlay */
        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.03;
            z-index: 1;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }
        
        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }
        
        /* Header */
        header {
            padding: 24px 0;
            position: sticky;
            top: 0;
            background: rgba(10, 10, 15, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            z-index: 1000;
            animation: slideDown 0.6s ease-out;
        }
        
        @keyframes slideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Syne', sans-serif;
            font-size: 28px;
            font-weight: 800;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        
        nav ul {
            display: flex;
            gap: 48px;
            list-style: none;
        }
        
        nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav a:hover {
            color: var(--primary);
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
        }
        
        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(0, 255, 136, 0.1);
            border: 1px solid rgba(0, 255, 136, 0.3);
            border-radius: 50px;
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero h1 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(48px, 8vw, 88px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -2px;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }
        
        .hero h1 .gradient-text {
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: 20px;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 48px;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }
        
        .hero-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 32px;
            margin-bottom: 48px;
            animation: fadeInUp 0.8s ease-out 0.5s both;
            flex-wrap: wrap;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }
        
        .stars {
            color: var(--accent);
            font-size: 18px;
        }
        
        .rating-text {
            font-weight: 600;
            color: var(--text);
        }
        
        .rating-count {
            color: var(--text-muted);
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }
        
        .btn {
            padding: 16px 40px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary {
            background: var(--primary);
            color: var(--dark);
            box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 50px rgba(0, 255, 136, 0.5);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        
        /* Stats Section */
        .stats {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            text-align: center;
        }
        
        .stat-item {
            animation: fadeInUp 0.8s ease-out both;
        }
        
        .stat-item:nth-child(1) { animation-delay: 0.1s; }
        .stat-item:nth-child(2) { animation-delay: 0.2s; }
        .stat-item:nth-child(3) { animation-delay: 0.3s; }
        .stat-item:nth-child(4) { animation-delay: 0.4s; }
        .stat-item:nth-child(5) { animation-delay: 0.5s; }
        
        .stat-number {
            font-family: 'Syne', sans-serif;
            font-size: 56px;
            font-weight: 800;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }
        
        .stat-label {
            color: var(--text-muted);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Section Title */
        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 800;
            text-align: center;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto 64px;
        }
        
        /* Case Studies */
        .case-studies {
            padding: 120px 0;
        }
        
        .case-study-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }
        
        .case-card {
            background: var(--dark-card);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
            animation: fadeInUp 0.8s ease-out both;
        }
        
        .case-card:nth-child(1) { animation-delay: 0.1s; }
        .case-card:nth-child(2) { animation-delay: 0.2s; }
        .case-card:nth-child(3) { animation-delay: 0.3s; }
        
        .case-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
        }
        
        .case-tag {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 50px;
            color: var(--secondary);
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .case-card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        
        .case-card p {
            color: var(--text-muted);
            margin-bottom: 24px;
            line-height: 1.7;
        }
        
        .case-results {
            display: flex;
            gap: 16px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .result-item {
            flex: 1;
            min-width: 0;
            text-align: center;
        }
        
        .result-value {
            font-family: 'Syne', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            word-break: break-word;
        }
        
        .result-label {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Industry Growth Tables */
        .industry-growth {
            padding: 120px 0;
            background: rgba(255, 255, 255, 0.02);
        }
        
        .tables-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }
        
        .table-card {
            background: var(--dark-card);
            border-radius: 20px;
            padding: 32px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            animation: fadeInUp 0.8s ease-out both;
        }
        
        .table-card:nth-child(1) { animation-delay: 0.1s; }
        .table-card:nth-child(2) { animation-delay: 0.2s; }
        .table-card:nth-child(3) { animation-delay: 0.3s; }
        
        .table-card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 24px;
            text-align: center;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th {
            text-align: left;
            padding: 12px;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        }
        
        td {
            padding: 16px 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .growth-positive {
            color: var(--primary);
            font-weight: 600;
        }
        
        .growth-neutral {
            color: var(--accent);
            font-weight: 600;
        }
        
        /* Client Reviews Carousel */
        .reviews {
            padding: 120px 0;
            overflow: hidden;
        }
        
        .reviews-carousel {
            display: flex;
            gap: 32px;
            animation: scrollLeft 60s linear infinite;
            width: fit-content;
        }
        
        .reviews-carousel:hover {
            animation-play-state: paused;
        }
        
        @keyframes scrollLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .review-card {
            min-width: 450px;
            background: var(--dark-card);
            border-radius: 20px;
            padding: 32px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .review-stars {
            color: var(--accent);
            font-size: 20px;
            letter-spacing: 2px;
        }
        
        .review-logo {
            width: 80px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 14px;
        }
        
        .review-text {
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 24px;
            font-style: italic;
        }
        
        .review-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 18px;
        }
        
        .author-info h4 {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 2px;
        }
        
        .author-info p {
            font-size: 14px;
            color: var(--text-muted);
        }
        
        /* FAQs */
        .faqs {
            padding: 120px 0;
            background: rgba(255, 255, 255, 0.02);
        }
        
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--dark-card);
            border-radius: 16px;
            margin-bottom: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            animation: fadeInUp 0.6s ease-out both;
        }
        
        .faq-item:nth-child(1) { animation-delay: 0.05s; }
        .faq-item:nth-child(2) { animation-delay: 0.1s; }
        .faq-item:nth-child(3) { animation-delay: 0.15s; }
        .faq-item:nth-child(4) { animation-delay: 0.2s; }
        .faq-item:nth-child(5) { animation-delay: 0.25s; }
        .faq-item:nth-child(6) { animation-delay: 0.3s; }
        .faq-item:nth-child(7) { animation-delay: 0.35s; }
        .faq-item:nth-child(8) { animation-delay: 0.4s; }
        .faq-item:nth-child(9) { animation-delay: 0.45s; }
        .faq-item:nth-child(10) { animation-delay: 0.5s; }
        
        .faq-question {
            padding: 24px 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            color: var(--primary);
        }
        
        .faq-icon {
            font-size: 24px;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 32px;
            color: var(--text-muted);
            line-height: 1.7;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 32px 24px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            text-align: center;
        }
        
        .cta-box {
            background: var(--dark-card);
            border-radius: 32px;
            padding: 80px 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta-box h2 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            margin-bottom: 24px;
        }
        
        .cta-box p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Footer */
        footer {
            background: var(--dark-alt);
            padding: 80px 0 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-col h3 {
            font-family: 'Syne', sans-serif;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 12px;
        }
        
        .footer-col a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 15px;
        }
        
        .footer-col a:hover {
            color: var(--primary);
        }
        
        .footer-col p {
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        
        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }
        
        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        
        .footer-bottom p {
            color: var(--text-muted);
            font-size: 14px;
        }
        
        .footer-meta {
            font-size: 12px;
            color: var(--text-muted);
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            .header-content {
                flex-direction: column;
                gap: 24px;
            }
            
            nav ul {
                gap: 24px;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
            
            .case-study-grid,
            .tables-container {
                grid-template-columns: 1fr;
            }
            
            .review-card {
                min-width: 350px;
            }
        }
        
        @media (max-width: 640px) {
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 16px;
            }
            
            .hero {
                padding: 80px 0 60px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
    