 :root {
     /* Primary Colors - More Vibrant */
     --primary: #6366F1;
     --primary-dark: #4F46E5;
     --secondary: #10B981;
     --accent: #F59E0B;

     /* Additional Vibrant Colors */
     --purple: #8B5CF6;
     --pink: #EC4899;
     --blue: #3B82F6;
     --teal: #14B8A6;
     --orange: #F97316;
     --yellow: #FBBF24;

     /* Neutral Colors */
     --light: #F9FAFB;
     --dark: #1F2937;
     --gray: #6B7280;
     --light-gray: #F3F4F6;
     --border: #E5E7EB;

     /* Status Colors */
     --success: #10B981;
     --warning: #F59E0B;
     --danger: #EF4444;

     /* Colorful Gradients */
     --gradient-1: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
     --gradient-2: linear-gradient(135deg, #EC4899 0%, #F97316 100%);
     --gradient-3: linear-gradient(135deg, #3B82F6 0%, #14B8A6 100%);
     --gradient-4: linear-gradient(135deg, #FBBF24 0%, #F97316 100%);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Inter', sans-serif;
     color: var(--dark);
     line-height: 1.6;
     overflow-x: hidden;
     background-color: #F8F9FD;
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Header Styles */
 header {
     background-color: #fff;
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     transition: all 0.3s ease;
     background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
     backdrop-filter: blur(10px);
 }

 header.scrolled {
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }

 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 0;
 }

 .logo {
     display: flex;
     align-items: center;
     font-weight: 700;
     font-size: 24px;
     background: var(--gradient-1);
     -webkit-background-clip: text;
     background-clip: text;
     color: var(--dark);
 }

 .logo a {
     text-decoration: none;
     color: var(--dark);
 }

 .logo i {
     margin-right: 10px;
     font-size: 28px;
     color: var(--primary);
 }

 .nav-links {
     display: flex;
     list-style: none;
     align-items: center;
 }

 .nav-links li {
     margin-left: 30px;
 }

 .nav-links a {
     text-decoration: none;
     color: var(--dark);
     font-weight: 500;
     transition: all 0.3s;
     position: relative;
 }

 .nav-links a:hover {
     color: var(--primary);
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--gradient-1);
     transition: width 0.3s;
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .btn {
     display: inline-block;
     padding: 12px 24px;
     border-radius: 6px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s;
     border: none;
     cursor: pointer;
     font-size: 16px;
     text-align: center;
     position: relative;
     overflow: hidden;
     z-index: 1;
 }

 .btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(255, 255, 255, 0.2);
     transform: translateX(-100%);
     transition: transform 0.3s;
     z-index: -1;
 }

 .btn:hover::before {
     transform: translateX(0);
 }

 .btn-primary {
     background: var(--gradient-1);
     color: white;
     box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.4);
 }

 .btn-outline {
     background-color: transparent;
     color: var(--primary);
     border: 2px solid var(--primary);
 }

 .btn-outline:hover {
     background-color: var(--primary);
     color: white;
     box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
 }

 .btn-white {
     background-color: white;
     color: var(--primary);
     border: 2px solid white;
 }

 .btn-white:hover {
     background-color: var(--light);
     color: var(--primary-dark);
 }

 .btn-success {
     background: linear-gradient(135deg, #10B981, #059669);
     color: white;
     box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
 }

 .btn-success:hover {
     box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
 }

 /* Mobile Menu */
 .mobile-menu-toggle {
     display: none;
     background: none;
     border: none;
     font-size: 24px;
     cursor: pointer;
     color: var(--dark);
 }

 /* Hero Section */
 .hero {
     padding: 140px 0 80px;
     background: linear-gradient(135deg, #f5f7ff 0%, #eef2ff 100%);
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -10%;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0) 70%);
     border-radius: 50%;
     z-index: 0;
 }

 .hero::after {
     content: '';
     position: absolute;
     bottom: -50%;
     left: -10%;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 70%);
     border-radius: 50%;
     z-index: 0;
 }

 .hero-content {
     display: flex;
     align-items: center;
     gap: 50px;
     position: relative;
     z-index: 1;
 }

 .hero-text {
     flex: 1;
 }

 .hero-text h1 {
     font-size: 56px;
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 20px;
     background: var(--gradient-1);
     -webkit-background-clip: text;
     background-clip: text;
     color: var(--dark);
 }

 .hero-text p {
     font-size: 20px;
     color: var(--gray);
     margin-bottom: 30px;
     max-width: 600px;
 }

 .hero-buttons {
     display: flex;
     gap: 15px;
     margin-bottom: 30px;
 }

 .trust-badges {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-top: 40px;
 }

 .trust-badge {
     display: flex;
     align-items: center;
     gap: 8px;
     color: var(--gray);
     font-size: 14px;
 }

 .trust-badge i {
     color: var(--success);
 }

 .hero-image {
     flex: 1;
     position: relative;
 }

 .hero-image img {
     width: 100%;
     height: auto;
     border-radius: 10px;
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
     animation: float 6s ease-in-out infinite;
 }

 @keyframes float {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 /* Modules Overview Section */
 .modules-overview {
     padding: 100px 0;
     background-color: white;
     position: relative;
 }

 .modules-overview::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, rgba(99, 102, 241, 0.03) 25%, transparent 25%, transparent 50%, rgba(99, 102, 241, 0.03) 50%, rgba(99, 102, 241, 0.03) 75%, transparent 75%, transparent);
     background-size: 20px 20px;
     z-index: 0;
 }

 .section-header {
     text-align: center;
     margin-bottom: 60px;
     position: relative;
     z-index: 1;
 }

 .section-header h2 {
     font-size: 42px;
     font-weight: 700;
     margin-bottom: 15px;
     background: var(--gradient-1);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }

 .section-header p {
     font-size: 18px;
     color: var(--gray);
     max-width: 700px;
     margin: 0 auto;
 }

 .modules-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
     position: relative;
     z-index: 1;
 }

 .module-card {
     background-color: var(--light);
     border-radius: 12px;
     padding: 40px 30px;
     transition: all 0.3s;
     height: 100%;
     display: flex;
     flex-direction: column;
     position: relative;
     overflow: hidden;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
 }

 .module-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
 }

 .module-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: var(--gradient-1);
 }

 .module-card:nth-child(2)::before {
     background: var(--gradient-2);
 }

 .module-card:nth-child(3)::before {
     background: var(--gradient-3);
 }

 .module-card:nth-child(4)::before {
     background: var(--gradient-4);
 }

 .module-icon {
     width: 80px;
     height: 80px;
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 32px;
     margin-bottom: 25px;
     background: var(--gradient-1);
     color: white;
     box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
 }

 .module-card:nth-child(2) .module-icon {
     background: var(--gradient-2);
     box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.3);
 }

 .module-card:nth-child(3) .module-icon {
     background: var(--gradient-3);
     box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
 }

 .module-card:nth-child(4) .module-icon {
     background: var(--gradient-4);
     box-shadow: 0 10px 15px -3px rgba(251, 191, 36, 0.3);
 }

 .module-card h3 {
     font-size: 24px;
     font-weight: 600;
     margin-bottom: 15px;
     color: var(--dark);
 }

 .module-card p {
     color: var(--gray);
     line-height: 1.8;
     margin-bottom: 20px;
     flex-grow: 1;
 }

 .module-link {
     color: var(--primary);
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 5px;
     transition: all 0.3s;
 }

 .module-link:hover {
     gap: 10px;
 }

 /* Integration Section */
 .integration {
     padding: 100px 0;
     background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
     position: relative;
 }

 .integration::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
     z-index: 0;
 }

 .integration-content {
     display: flex;
     align-items: center;
     gap: 50px;
     position: relative;
     z-index: 1;
 }

 .integration-text {
     flex: 1;
 }

 .integration-text h2 {
     font-size: 36px;
     font-weight: 700;
     margin-bottom: 20px;
     background: var(--gradient-1);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }

 .integration-text p {
     font-size: 18px;
     color: var(--gray);
     margin-bottom: 30px;
 }

 .integration-image {
     flex: 1;
 }

 .integration-image img {
     width: 100%;
     height: auto;
     border-radius: 10px;
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
 }

 /* Testimonials Section */
 .testimonials {
     padding: 100px 0;
     background-color: white;
     position: relative;
 }

 .testimonials::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, rgba(16, 185, 129, 0.03) 25%, transparent 25%, transparent 50%, rgba(16, 185, 129, 0.03) 50%, rgba(16, 185, 129, 0.03) 75%, transparent 75%, transparent);
     background-size: 20px 20px;
     z-index: 0;
 }

 .testimonial-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 30px;
     margin-top: 50px;
     position: relative;
     z-index: 1;
 }

 .testimonial-card {
     background-color: var(--light);
     border-radius: 12px;
     padding: 30px;
     position: relative;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
     transition: all 0.3s;
     border-left: 5px solid transparent;
 }

 .testimonial-card:nth-child(1) {
     border-left-color: var(--primary);
 }

 .testimonial-card:nth-child(2) {
     border-left-color: var(--secondary);
 }

 .testimonial-card:nth-child(3) {
     border-left-color: var(--accent);
 }

 .testimonial-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
 }

 .testimonial-card::before {
     content: '\f10d';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     position: absolute;
     top: 20px;
     left: 20px;
     font-size: 30px;
     color: var(--primary);
     opacity: 0.2;
 }

 .testimonial-text {
     font-style: italic;
     margin-bottom: 20px;
     color: var(--gray);
     line-height: 1.8;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
 }

 .author-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     overflow: hidden;
     margin-right: 15px;
     border: 3px solid var(--light);
 }

 .author-avatar img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .author-info h4 {
     font-weight: 600;
     margin-bottom: 3px;
     color: var(--dark);
 }

 .author-info p {
     font-size: 14px;
     color: var(--gray);
 }

 .rating {
     color: var(--warning);
     margin-bottom: 15px;
 }

 /* Stats Section */
 .stats {
     padding: 100px 0;
     background: var(--gradient-1);
     color: white;
     position: relative;
     overflow: hidden;
 }

 .stats::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
     opacity: 0.2;
     z-index: 0;
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     text-align: center;
     position: relative;
     z-index: 1;
 }

 .stat-item h3 {
     font-size: 48px;
     font-weight: 700;
     margin-bottom: 10px;
 }

 .stat-item p {
     font-size: 18px;
     opacity: 0.9;
 }

 /* Pricing Section */
 .pricing {
     padding: 100px 0;
     background-color: white;
     position: relative;
 }

 .pricing::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, rgba(245, 158, 11, 0.03) 25%, transparent 25%, transparent 50%, rgba(245, 158, 11, 0.03) 50%, rgba(245, 158, 11, 0.03) 75%, transparent 75%, transparent);
     background-size: 20px 20px;
     z-index: 0;
 }

 .pricing-toggle {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 20px;
     margin-bottom: 50px;
     position: relative;
     z-index: 1;
 }

 .toggle-switch {
     position: relative;
     width: 60px;
     height: 30px;
     background-color: var(--border);
     border-radius: 15px;
     cursor: pointer;
     transition: background-color 0.3s;
 }

 .toggle-switch.active {
     background: var(--gradient-1);
 }

 .toggle-slider {
     position: absolute;
     top: 3px;
     left: 3px;
     width: 24px;
     height: 24px;
     background-color: white;
     border-radius: 50%;
     transition: transform 0.3s;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 }

 .toggle-switch.active .toggle-slider {
     transform: translateX(30px);
 }

 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     position: relative;
     z-index: 1;
 }

 .pricing-card {
     background-color: var(--light);
     border-radius: 12px;
     padding: 40px 30px;
     text-align: center;
     position: relative;
     transition: all 0.3s;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
 }

 .pricing-card.featured {
     border: 2px solid var(--primary);
     transform: scale(1.05);
     box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
 }

 .pricing-card.featured::before {
     content: 'Most Popular';
     position: absolute;
     top: -12px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--gradient-1);
     color: white;
     padding: 5px 15px;
     border-radius: 20px;
     font-size: 14px;
     font-weight: 600;
 }

 .pricing-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
 }

 .pricing-card.featured:hover {
     transform: scale(1.05) translateY(-10px);
 }

 .plan-name {
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 10px;
     color: var(--dark);
 }

 .plan-price {
     font-size: 48px;
     font-weight: 700;
     background: var(--gradient-1);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     margin-bottom: 5px;
 }

 .pricing-card:nth-child(2) .plan-price {
     background: var(--gradient-2);
     -webkit-background-clip: text;
     background-clip: text;
 }

 .pricing-card:nth-child(3) .plan-price {
     background: var(--gradient-3);
     -webkit-background-clip: text;
     background-clip: text;
 }

 .plan-price span {
     font-size: 18px;
     font-weight: 400;
     color: var(--gray);
 }

 .plan-period {
     color: var(--gray);
     margin-bottom: 30px;
 }

 .plan-features {
     list-style: none;
     margin-bottom: 30px;
     text-align: left;
 }

 .plan-features li {
     padding: 10px 0;
     border-bottom: 1px solid var(--border);
     display: flex;
     align-items: center;
 }

 .plan-features li:last-child {
     border-bottom: none;
 }

 .plan-features i {
     color: var(--success);
     margin-right: 10px;
 }

 /* FAQ Section */
 .faq {
     padding: 100px 0;
     background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
     position: relative;
 }

 .faq::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
     z-index: 0;
 }

 .faq-container {
     max-width: 800px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
 }

 .faq-item {
     background-color: white;
     border-radius: 8px;
     margin-bottom: 15px;
     overflow: hidden;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
     border-left: 4px solid transparent;
 }

 .faq-item:nth-child(1) {
     border-left-color: var(--primary);
 }

 .faq-item:nth-child(2) {
     border-left-color: var(--secondary);
 }

 .faq-item:nth-child(3) {
     border-left-color: var(--accent);
 }

 .faq-item:nth-child(4) {
     border-left-color: var(--purple);
 }

 .faq-item:nth-child(5) {
     border-left-color: var(--pink);
 }

 .faq-question {
     padding: 20px;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: background-color 0.3s;
 }

 .faq-question:hover {
     background-color: var(--light);
 }

 .faq-question i {
     transition: transform 0.3s;
     color: var(--primary);
 }

 .faq-item:nth-child(2) .faq-question i {
     color: var(--secondary);
 }

 .faq-item:nth-child(3) .faq-question i {
     color: var(--accent);
 }

 .faq-item:nth-child(4) .faq-question i {
     color: var(--purple);
 }

 .faq-item:nth-child(5) .faq-question i {
     color: var(--pink);
 }

 .faq-item.active .faq-question i {
     transform: rotate(180deg);
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
 }

 .faq-item.active .faq-answer {
     max-height: 300px;
 }

 .faq-answer-content {
     padding: 0 20px 20px;
     color: var(--gray);
     line-height: 1.8;
 }

 /* CTA Section */
 .cta {
     padding: 100px 0;
     background: var(--gradient-1);
     color: white;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .cta::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
     opacity: 0.2;
     z-index: 0;
 }

 .cta h2 {
     font-size: 42px;
     font-weight: 700;
     margin-bottom: 20px;
     position: relative;
     z-index: 1;
 }

 .cta p {
     font-size: 20px;
     max-width: 700px;
     margin: 0 auto 30px;
     opacity: 0.9;
     position: relative;
     z-index: 1;
 }

 /* Newsletter Section */
 .newsletter {
     padding: 80px 0;
     background-color: white;
     position: relative;
 }

 .newsletter::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, rgba(59, 130, 246, 0.03) 25%, transparent 25%, transparent 50%, rgba(59, 130, 246, 0.03) 50%, rgba(59, 130, 246, 0.03) 75%, transparent 75%, transparent);
     background-size: 20px 20px;
     z-index: 0;
 }

 .newsletter-form {
     max-width: 600px;
     margin: 0 auto;
     display: flex;
     gap: 15px;
     position: relative;
     z-index: 1;
 }

 .newsletter-form input {
     flex: 1;
     padding: 15px 20px;
     border: 1px solid var(--border);
     border-radius: 6px;
     font-size: 16px;
     transition: all 0.3s;
 }

 .newsletter-form input:focus {
     outline: none;
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
 }

 /* Footer */
 footer {
     background-color: var(--dark);
     color: white;
     padding: 80px 0 30px;
     position: relative;
 }

 footer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: var(--gradient-1);
 }

 .footer-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 40px;
     margin-bottom: 50px;
 }

 .footer-col h3 {
     font-size: 18px;
     margin-bottom: 20px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-col h3::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 40px;
     height: 3px;
     background: var(--gradient-1);
 }

 .footer-col:nth-child(2) h3::after {
     background: var(--gradient-2);
 }

 .footer-col:nth-child(3) h3::after {
     background: var(--gradient-3);
 }

 .footer-col:nth-child(4) h3::after {
     background: var(--gradient-4);
 }

 .footer-col ul {
     list-style: none;
 }

 .footer-col ul li {
     margin-bottom: 10px;
 }

 .footer-col ul li a {
     color: #D1D5DB;
     text-decoration: none;
     transition: all 0.3s;
 }

 .footer-col ul li a:hover {
     color: white;
     transform: translateX(5px);
     display: inline-block;
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: white;
     transition: all 0.3s;
 }

 .social-links a:nth-child(1) {
     background: linear-gradient(135deg, #1DA1F2, #0D8BD9);
 }

 .social-links a:nth-child(2) {
     background: linear-gradient(135deg, #0077B5, #005885);
 }

 .social-links a:nth-child(3) {
     background: linear-gradient(135deg, #4267B2, #365899);
 }

 .social-links a:nth-child(4) {
     background: linear-gradient(135deg, #E1306C, #C13584);
 }

 .social-links a:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
 }

 .footer-bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     flex-wrap: wrap;
     gap: 20px;
 }

 .footer-links {
     display: flex;
     gap: 20px;
 }

 .footer-links a {
     color: #9CA3AF;
     text-decoration: none;
     font-size: 14px;
     transition: color 0.3s;
 }

 .footer-links a:hover {
     color: white;
 }

 .copyright {
     color: #9CA3AF;
     font-size: 14px;
 }

 /* Responsive Styles */
 @media (max-width: 992px) {
     .hero-content {
         flex-direction: column;
     }

     .hero-text {
         text-align: center;
     }

     .hero-buttons {
         justify-content: center;
     }

     .hero-image {
         margin-top: 40px;
     }

     .steps-container {
         flex-direction: column;
         gap: 40px;
     }

     .steps-container::before {
         display: none;
     }

     .integration-content {
         flex-direction: column;
         gap: 40px;
     }
 }

 @media (max-width: 768px) {
     .nav-links {
         display: none;
     }

     .mobile-menu-toggle {
         display: block;
     }

     .hero-text h1 {
         font-size: 36px;
     }

     .hero-text p {
         font-size: 18px;
     }

     .section-header h2 {
         font-size: 30px;
     }

     .cta h2 {
         font-size: 28px;
     }

     .newsletter-form {
         flex-direction: column;
     }

     .footer-bottom {
         flex-direction: column;
         text-align: center;
     }

     .footer-links {
         justify-content: center;
     }
 }

 /* Animations */
 .fade-in {
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.6s ease, transform 0.6s ease;
 }

 .fade-in.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* Dropdown Styles */
 .nav-links .dropdown {
     position: relative;
 }

 .nav-links .dropdown-menu {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     background: #fff;
     list-style: none;
     padding: 10px 0;
     min-width: 200px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     border-radius: 6px;
     z-index: 1000;
 }

 .nav-links .dropdown-menu li {
     margin: 0;
 }

 .nav-links .dropdown-menu li a {
     display: block;
     padding: 10px 20px;
     color: var(--dark);
     text-decoration: none;
     font-weight: 500;
 }

 .nav-links .dropdown-menu li a:hover {
     background: var(--light-gray);
     color: var(--primary);
 }

 .nav-links .dropdown:hover .dropdown-menu {
     display: block;
 }

 /* ERP Features Section */
 .features {
     padding: 100px 0;
     background-color: white;
 }

 .section-header {
     text-align: center;
     margin-bottom: 60px;
 }

 .section-header h2 {
     font-size: 42px;
     font-weight: 700;
     margin-bottom: 15px;
     color: var(--dark);
 }

 .section-header p {
     font-size: 18px;
     color: var(--gray);
     max-width: 700px;
     margin: 0 auto;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 30px;
 }

 .feature-card {
     background-color: var(--light);
     border-radius: 12px;
     padding: 40px 30px;
     transition: all 0.3s;
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
 }

 .feature-icon {
     width: 70px;
     height: 70px;
     background-color: var(--primary);
     color: white;
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     margin-bottom: 25px;
 }

 .feature-card h3 {
     font-size: 24px;
     font-weight: 600;
     margin-bottom: 15px;
     color: var(--dark);
 }

 .feature-card p {
     color: var(--gray);
     line-height: 1.8;
     margin-bottom: 20px;
     flex-grow: 1;
 }

 .feature-link {
     color: var(--primary);
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 5px;
     transition: gap 0.3s;
 }

 .feature-link:hover {
     gap: 10px;
 }

 /* How It Works Section */
 .how-it-works {
     padding: 100px 0;
     background-color: var(--light);
 }

 .steps-container {
     display: flex;
     justify-content: space-between;
     position: relative;
     margin-top: 60px;
 }

 .steps-container::before {
     content: '';
     position: absolute;
     top: 35px;
     left: 0;
     right: 0;
     height: 2px;
     background-color: var(--border);
     z-index: 0;
 }

 .step {
     flex: 1;
     text-align: center;
     position: relative;
     z-index: 1;
     max-width: 280px;
 }

 .step-number {
     width: 70px;
     height: 70px;
     background-color: white;
     border: 3px solid var(--primary);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     font-weight: 700;
     color: var(--primary);
     margin: 0 auto 20px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
 }

 .step h3 {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 10px;
     color: var(--dark);
 }

 .step p {
     color: var(--gray);
     line-height: 1.6;
 }

 /* Integrations Section */
 .integrations {
     padding: 100px 0;
     background-color: white;
 }

 .logo-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
     gap: 30px;
     align-items: center;
     margin-top: 50px;
 }

 .logo-item {
     background-color: var(--light);
     border-radius: 10px;
     padding: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     height: 100px;
     transition: all 0.3s;
     cursor: pointer;
 }

 .logo-item:hover {
     transform: scale(1.05);
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
 }

 .logo-item img {
     max-width: 100%;
     max-height: 60px;
     filter: grayscale(100%);
     opacity: 0.7;
     transition: all 0.3s;
 }

 .logo-item:hover img {
     filter: grayscale(0%);
     opacity: 1;
 }
 /* Lead Form Styles */
.lead-form {
  max-width: 700px;
  margin: 0 auto;
}

.lead-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.lead-form input,
.lead-form select {
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
}

/* Responsive: stack single column on tablets/mobiles */
@media (max-width: 768px) {
  .lead-form .form-row {
    grid-template-columns: 1fr;
  }
}
