        :root {
            --primary: #0F172A;
            --primary-light: #1E293B;
            --accent: #3B82F6;
            --accent-bright: #60A5FA;
            --success: #10B981;
            --warning: #F59E0B;
            --text: #0F172A;
            --text-light: #64748B;
            --bg: #FFFFFF;
            --bg-alt: #F8FAFC;
            --border: #E2E8F0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'DM Sans', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--bg);
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Header */
        header {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            animation: slideDown 0.6s ease-out;
        }
        
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .cta-button {
            background: var(--accent);
            color: white;
            padding: 12px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            border: 2px solid var(--accent);
        }
        
        .cta-button:hover {
            background: var(--accent-bright);
            border-color: var(--accent-bright);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
        }
        
        .cta-button-outline {
            background: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
        }
        
        .cta-button-outline:hover {
            background: var(--accent);
            color: white;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }
        
        .hero h1 .highlight {
            color: var(--accent-bright);
            position: relative;
        }
        
        .hero-subtitle {
            font-size: 24px;
            margin-bottom: 16px;
            opacity: 0.95;
            font-weight: 500;
        }
        
        .hero-description {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.85;
            max-width: 700px;
        }
        
        .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        .hero-cta .cta-button {
            background: var(--success);
            border-color: var(--success);
            font-size: 18px;
            padding: 16px 36px;
        }
        
        .hero-cta .cta-button:hover {
            background: #059669;
            border-color: #059669;
        }
        
        /* Industries Section */
        .industries {
            padding: 100px 0;
            background: var(--bg-alt);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .section-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--primary);
            letter-spacing: -1px;
        }
        
        .section-header p {
            font-size: 20px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .industry-card {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            border: 2px solid transparent;
            animation: fadeInUp 0.6s ease-out both;
        }
        
        .industry-card:nth-child(1) { animation-delay: 0.1s; }
        .industry-card:nth-child(2) { animation-delay: 0.2s; }
        .industry-card:nth-child(3) { animation-delay: 0.3s; }
        .industry-card:nth-child(4) { animation-delay: 0.4s; }
        .industry-card:nth-child(5) { animation-delay: 0.5s; }
        .industry-card:nth-child(6) { animation-delay: 0.6s; }
        
        .industry-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
            border-color: var(--accent);
        }
        
        .industry-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .industry-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--primary);
        }
        
        .industry-card p {
            color: var(--text-light);
            line-height: 1.7;
        }
        
        .industry-card .learn-more {
            display: inline-block;
            margin-top: 16px;
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .industry-card .learn-more:hover {
            color: var(--accent-bright);
            transform: translateX(4px);
        }
        
        /* How It Works */
        .how-it-works {
            padding: 100px 0;
            background: white;
        }
        
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-top: 60px;
        }
        
        .step {
            text-align: center;
            position: relative;
            animation: fadeInUp 0.6s ease-out both;
        }
        
        .step:nth-child(1) { animation-delay: 0.1s; }
        .step:nth-child(2) { animation-delay: 0.2s; }
        .step:nth-child(3) { animation-delay: 0.3s; }
        .step:nth-child(4) { animation-delay: 0.4s; }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent), var(--accent-bright));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 36px;
            font-weight: 800;
            margin: 0 auto 24px;
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
        }
        
        .step h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--primary);
        }
        
        .step p {
            color: var(--text-light);
            line-height: 1.7;
        }
        
        /* Benefits */
        .benefits {
            padding: 100px 0;
            background: var(--primary);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .benefits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
        }
        
        .benefits-content {
            position: relative;
            z-index: 1;
        }
        
        .benefits h2 {
            color: white;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .benefit-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 36px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s;
            animation: fadeInUp 0.6s ease-out both;
        }
        
        .benefit-card:nth-child(1) { animation-delay: 0.1s; }
        .benefit-card:nth-child(2) { animation-delay: 0.2s; }
        .benefit-card:nth-child(3) { animation-delay: 0.3s; }
        
        .benefit-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-4px);
        }
        
        .benefit-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .benefit-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        .benefit-card p {
            opacity: 0.9;
            line-height: 1.7;
        }
        
        /* Social Proof */
        .social-proof {
            padding: 80px 0;
            background: var(--bg-alt);
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .stat {
            animation: fadeInUp 0.6s ease-out both;
        }
        
        .stat:nth-child(1) { animation-delay: 0.1s; }
        .stat:nth-child(2) { animation-delay: 0.2s; }
        .stat:nth-child(3) { animation-delay: 0.3s; }
        .stat:nth-child(4) { animation-delay: 0.4s; }
        
        .stat-number {
            font-family: 'Outfit', sans-serif;
            font-size: 56px;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 8px;
            letter-spacing: -1px;
        }
        
        .stat-label {
            font-size: 18px;
            color: var(--text-light);
            font-weight: 500;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-section h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .cta-section p {
            font-size: 22px;
            margin-bottom: 40px;
            opacity: 0.95;
        }
        
        .cta-section .cta-button {
            background: white;
            color: var(--success);
            font-size: 18px;
            padding: 18px 40px;
            border: 2px solid white;
        }
        
        .cta-section .cta-button:hover {
            background: transparent;
            color: white;
            border-color: white;
        }
        
        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 12px;
        }
        
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: var(--accent-bright);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 42px;
            }
            
            .hero-subtitle {
                font-size: 20px;
            }
            
            .section-header h2 {
                font-size: 36px;
            }
            
            .nav-links {
                display: none;
            }
            
            .industries-grid,
            .steps-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }
