        :root {
            --primary: #0B5FFF;
            --accent: #00C2A8;
            --dark: #0F172A;
            --light: #FFFFFF;
            --light-bg: #F8FAFC;
            --light-2: #F1F5F9;
            --light-3: #E2E8F0;
            --text-primary: #0F172A;
            --text-secondary: #475569;
            --text-muted: #64748B;
            --gradient-1: linear-gradient(135deg, #0B5FFF 0%, #00C2A8 100%);
            --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-mesh: radial-gradient(at 0% 0%, rgba(11, 95, 255, 0.08) 0px, transparent 50%),
                            radial-gradient(at 100% 0%, rgba(0, 194, 168, 0.08) 0px, transparent 50%),
                            radial-gradient(at 100% 100%, rgba(11, 95, 255, 0.08) 0px, transparent 50%),
                            radial-gradient(at 0% 100%, rgba(0, 194, 168, 0.08) 0px, transparent 50%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
            background: var(--light);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Bricolage Grotesque', system-ui, sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .material-symbols-outlined {
            font-family: 'Material Symbols Outlined';
            font-weight: normal;
            font-style: normal;
            font-size: 24px;
            line-height: 1;
            letter-spacing: normal;
            text-transform: none;
            display: inline-block;
            white-space: nowrap;
            word-wrap: normal;
            direction: ltr;
        }
        
        /* Animated Background */
        .bg-mesh {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--light-bg);
            z-index: -1;
        }
        
        .bg-mesh::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--gradient-mesh);
            animation: meshMove 20s ease-in-out infinite;
        }
        
        @keyframes meshMove {
            0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
            50% { opacity: 0.8; transform: scale(1.1) rotate(5deg); }
        }
        
        /* Floating Particles */
        .particles {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            pointer-events: none;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(11, 95, 255, 0.3);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
        }
        
        .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { left: 30%; animation-delay: 2s; }
        .particle:nth-child(3) { left: 50%; animation-delay: 4s; }
        .particle:nth-child(4) { left: 70%; animation-delay: 1s; }
        .particle:nth-child(5) { left: 90%; animation-delay: 3s; }
        
        @keyframes float {
            0%, 100% { transform: translateY(100vh) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) translateX(100px); opacity: 0; }
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            z-index: 1000;
            animation: slideDown 0.6s ease-out;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
        }
        
        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }
        
        .logo {
            font-family: 'Bricolage Grotesque', sans-serif;
            font-size: 1.75rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            border: none;
            font-family: 'DM Sans', sans-serif;
        }
        
        .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 4px 20px rgba(11, 95, 255, 0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(11, 95, 255, 0.6);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 5% 4rem;
            position: relative;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }
        
        .hero-left {
            animation: fadeInLeft 1s ease-out;
        }
        
        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .hero-left h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #0F172A 0%, #334155 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
            font-weight: 500;
        }
        
        .compliance-badges {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        
        .badge {
            padding: 0.5rem 1rem;
            background: rgba(11, 95, 255, 0.08);
            border: 1px solid rgba(11, 95, 255, 0.2);
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary);
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .hero-right {
            animation: fadeInRight 1s ease-out;
            position: relative;
        }
        
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        /* Dashboard Mockup */
        .dashboard-mockup {
            position: relative;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 24px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            animation: float-dashboard 6s ease-in-out infinite;
        }
        
        @keyframes float-dashboard {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .invoice-card {
            background: linear-gradient(135deg, rgba(11, 95, 255, 0.04) 0%, rgba(0, 194, 168, 0.04) 100%);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            animation: slideInCard 1s ease-out backwards;
        }
        
        .invoice-card:nth-child(2) { animation-delay: 0.2s; }
        .invoice-card:nth-child(3) { animation-delay: 0.4s; }
        
        @keyframes slideInCard {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .invoice-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .invoice-status {
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .status-approved {
            background: rgba(0, 194, 168, 0.2);
            color: #00C2A8;
            border: 1px solid rgba(0, 194, 168, 0.3);
        }
        
        .status-pending {
            background: rgba(251, 191, 36, 0.2);
            color: #fbbf24;
            border: 1px solid rgba(251, 191, 36, 0.3);
        }
        
        .qr-code {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        /* Section Styling */
        section {
            padding: 6rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        
        .section-header.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-header h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #0F172A 0%, #475569 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-header p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Compliance Cards */
        .compliance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .compliance-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 24px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        
        .compliance-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .compliance-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.4s;
        }
        
        .compliance-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(11, 95, 255, 0.3);
        }
        
        .compliance-card:hover::before {
            opacity: 0.05;
        }
        
        .card-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .card-icon .material-symbols-outlined {
            font-size: 36px;
            color: white;
        }
        
        .compliance-card h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
        
        .compliance-card p {
            color: var(--text-secondary);
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
        
        .compliance-card ul {
            list-style: none;
            margin-top: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .compliance-card ul li {
            padding: 0.5rem 0;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .compliance-card ul li::before {
            content: '✓';
            color: var(--accent);
            font-weight: bold;
        }
        
        /* ERP Integration Section */
        .erp-section {
            background: rgba(255, 255, 255, 0.6);
            border-radius: 32px;
            padding: 4rem;
            margin: 4rem 0;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        
        .erp-hub {
            position: relative;
            max-width: 1000px;
            margin: 4rem auto;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hub-center {
            width: 180px;
            height: 180px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 60px rgba(11, 95, 255, 0.6);
            position: relative;
            z-index: 10;
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .hub-center .material-symbols-outlined {
            font-size: 64px;
            color: white;
        }
        
        .erp-logo {
            position: absolute;
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(0, 0, 0, 0.08);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s;
            animation: fadeInScale 1s ease-out backwards;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            color: var(--text-primary);
        }
        
        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(0.5); }
            to { opacity: 1; transform: scale(1); }
        }
        
        .erp-logo:hover {
            transform: scale(1.1);
            border-color: var(--accent);
            box-shadow: 0 10px 40px rgba(0, 194, 168, 0.4);
        }
        
        .erp-logo:nth-child(2) { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.1s; }
        .erp-logo:nth-child(3) { top: 25%; right: 10%; animation-delay: 0.2s; }
        .erp-logo:nth-child(4) { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 0.3s; }
        .erp-logo:nth-child(5) { bottom: 25%; right: 10%; animation-delay: 0.4s; }
        .erp-logo:nth-child(6) { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.5s; }
        .erp-logo:nth-child(7) { bottom: 25%; left: 10%; animation-delay: 0.6s; }
        .erp-logo:nth-child(8) { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 0.7s; }
        .erp-logo:nth-child(9) { top: 25%; left: 10%; animation-delay: 0.8s; }
        
        .connection-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, rgba(0, 194, 168, 0.5), transparent);
            transform-origin: left center;
            animation: pulse-line 3s ease-in-out infinite;
        }
        
        @keyframes pulse-line {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }
        
        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .product-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 24px;
            padding: 3rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        
        .product-card:hover::before {
            transform: scaleX(1);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            border-color: rgba(11, 95, 255, 0.5);
        }
        
        .product-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(11, 95, 255, 0.2) 0%, rgba(0, 194, 168, 0.2) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
        }
        
        .product-icon .material-symbols-outlined {
            font-size: 42px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .product-card h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .product-card ul {
            list-style: none;
            margin-top: 1.5rem;
        }
        
        .product-card ul li {
            padding: 0.75rem 0;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .product-card ul li::before {
            content: '→';
            color: var(--accent);
            font-weight: bold;
        }
        
        /* Process Timeline */
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 4rem auto;
            padding: 2rem 0;
        }
        
        .timeline-line {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(0, 0, 0, 0.08);
            transform: translateY(-50%);
        }
        
        .timeline-progress {
            position: absolute;
            height: 100%;
            background: var(--gradient-1);
            width: 0%;
            transition: width 2s ease-out;
        }
        
        .timeline.visible .timeline-progress {
            width: 100%;
        }
        
        .timeline-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }
        
        .timeline-step {
            flex: 1;
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }
        
        .timeline-step.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: white;
            border: 3px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-weight: 700;
            font-size: 1.25rem;
            position: relative;
            transition: all 0.4s;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        
        .timeline-step:hover .step-number {
            background: var(--gradient-1);
            transform: scale(1.15);
        }
        
        .step-icon {
            font-size: 28px !important;
        }
        
        .timeline-step h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
			margin-top: 3.5rem;
        }
        
        .timeline-step p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        /* Benefits Section */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 16px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: all 0.3s;
            opacity: 0;
            transform: translateX(-20px);
        }
        
        .benefit-item.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .benefit-item:hover {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(11, 95, 255, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        
        .benefit-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .benefit-icon .material-symbols-outlined {
            font-size: 28px;
            color: white;
        }
        
        .benefit-item h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        
        .benefit-item p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        
        /* Stats Counter */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }
        
        .stat-card {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Bricolage Grotesque', sans-serif;
        }
        
        .stat-label {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-top: 0.5rem;
        }
        
        /* Industries */
        .industries-grid {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }
        
        .industry-tag {
            padding: 1.5rem 2.5rem;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        
        .industry-tag:hover {
            background: rgba(11, 95, 255, 0.2);
            border-color: var(--primary);
            transform: translateY(-5px);
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        }
        
        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            user-select: none;
        }
        
        .faq-question:hover {
            background: rgba(11, 95, 255, 0.1);
        }
        
        .faq-icon {
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        .faq-answer-content {
            padding: 0 2rem 1.5rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        
        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 6rem 5%;
            background: var(--gradient-1);
            border-radius: 32px;
            margin: 4rem 5%;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta-section h2 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }
        
        .btn-white {
            background: white;
            color: var(--primary);
            font-weight: 700;
        }
        
        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
        }
        
        /* Footer */
        footer {
            background: var(--light-2);
            padding: 4rem 5% 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto 3rem;
        }
        
        .footer-brand h3 {
            font-size: 2rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }
        
        .footer-brand p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .social-link:hover {
            background: var(--gradient-1);
            transform: translateY(-3px);
        }
        
        .footer-links h4 {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            color: var(--text-muted);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-left h1 {
                font-size: 3rem;
            }
            
            .erp-hub {
                height: 400px;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero-left h1 {
                font-size: 2.5rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .timeline-steps {
                flex-direction: column;
                gap: 2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
        }