
        /* ===== HERO SECTION ===== */
        .integrations-hero {
            background: linear-gradient(135deg, #349BD7 0%, #25D366 100%);
            padding: 120px 2rem 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            
        }

        .integrations-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.4;
        }

        .integrations-hero .hero-inner {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: #fff;
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
            animation: fadeInUp 0.8s ease both;
        }

        .integrations-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 1.2rem;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .integrations-hero h1 span {
            color: #b2f0c8;
        }

        .integrations-hero p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 620px;
            margin: 0 auto 2rem;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-cta-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .btn {
            padding: 14px 28px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #349bd7, #128c7e);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
        }

        .btn-secondary {
            background: #fff;
            color: #25d366;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px);
        }

        /* ===== WHY INTEGRATIONS MATTER ===== */
        .why-section {
            padding: 70px 2rem;
            background: #fff;
        }

        .section-center {
            text-align: center;
        }

        .section-badge {
            display: inline-block;
            background: rgba(37, 211, 102, 0.1);
            border: 1px solid rgba(37, 211, 102, 0.3);
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            color: #128c7e;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 0.8rem;
        }

        .section-subtitle {
            font-size: 1rem;
            color: #6b7280;
            max-width: 650px;
            margin: 0 auto 3rem;
            line-height: 1.7;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-card {
            background: #f8fafc;
            border: 1px solid rgba(148, 163, 184, 0.3);
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .why-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #25d366, #128c7e);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .why-card:hover {
            transform: translateY(-8px);
            background: #2e98c7;
            box-shadow: 0 20px 40px rgba(37, 211, 102, 0.15);
            border-color: rgba(37, 211, 102, 0.3);
        }

        .why-card:hover::before {
            opacity: 1;
        }

        .why-card:hover h3 {
            color: #fff;
        }

        .why-card:hover p {
            color: #fff;
        }

        .why-card:hover .why-icon {
            background: #ffffff;
            transform: scale(1.1);
        }

        .why-card:hover .why-icon i {
            color: #000;
        }

        .why-icon {
            width: 54px;
            height: 54px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.3rem;
            margin: 0 auto 1rem;
            transition: all 0.3s ease;
        }

        .why-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .why-card p {
            font-size: 0.88rem;
            color: #6b7280;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        /* ===== BROWSE INTEGRATIONS ===== */
        .browse-section {
            padding: 70px 2rem;
            background: #f8fafc;
        }

        .filter-tabs {
            display: flex;
            gap: 0.6rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }

        .filter-tab {
            padding: 8px 20px;
            border-radius: 50px;
            border: 1px solid rgba(37, 211, 102, 0.4);
            background: transparent;
            color: #128c7e;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-tab:hover,
        .filter-tab.active {
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .integrations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .integration-card {
            background: #fff;
            border: 1px solid rgba(148, 163, 184, 0.3);
            border-radius: 16px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .integration-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: rgba(37, 211, 102, 0.3);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .integration-logo {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .integration-logo.fb {
            background: linear-gradient(135deg, #1877f2, #0d5ca3);
            color: #fff;
        }

        .integration-logo.ig {
            background: linear-gradient(135deg, #e1306c, #833ab4);
            color: #fff;
        }

        .integration-logo.ga {
            background: linear-gradient(135deg, #fbbc05, #ea4335);
            color: #fff;
        }

        .integration-logo.shopify {
            background: linear-gradient(135deg, #96bf48, #5e8e3e);
            color: #fff;
        }

        .integration-logo.woo {
            background: linear-gradient(135deg, #7f54b3, #5b2d8e);
            color: #fff;
        }

        .integration-logo.vibe {
            background: linear-gradient(135deg, #1db954, #0f7042);
            color: #fff;
        }

        .integration-logo.zapier {
            background: linear-gradient(135deg, #ff4a00, #d63d00);
            color: #fff;
        }

        .integration-logo.pabbly {
            background: linear-gradient(135deg, #6366f1, #4338ca);
            color: #fff;
        }

        .integration-logo.gbiz {
            background: linear-gradient(135deg, #4285f4, #0d5ca3);
            color: #fff;
        }

        .integration-logo.razorpay {
            background: linear-gradient(135deg, #072654, #3395ff);
            color: #fff;
        }

        .integration-logo.stripe {
            background: linear-gradient(135deg, #6772e5, #3ecf8e);
            color: #fff;
        }

        .card-title-group {
            flex: 1;
        }

        .card-title-group h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 0.2rem;
        }

        .card-category {
            font-size: 0.75rem;
            color: #6b7280;
            font-weight: 500;
        }

        .badge-popular {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: #fff;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-coming {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #f3f4f6;
            color: #9ca3af;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .card-desc {
            font-size: 0.88rem;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 1.2rem;
        }

        .card-actions {
            display: flex;
            gap: 0.6rem;
        }

        .btn-sm {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .btn-sm-primary {
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: #fff;
        }

        .btn-sm-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
        }

        .btn-sm-outline {
            border: 1px solid rgba(37, 211, 102, 0.5);
            color: #128c7e;
            background: transparent;
        }

        .btn-sm-outline:hover {
            background: rgba(37, 211, 102, 0.08);
        }

        /* ===== WORKFLOW SECTION ===== */
        .workflow-section {
            padding: 70px 2rem;
            background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .workflow-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' d='M0,48L80,42.7C160,37,320,27,480,32C640,37,800,59,960,58.7C1120,59,1280,37,1360,26.7L1440,16L1440,80L1360,80C1280,80,1120,80,960,80C800,80,640,80,480,80C320,80,160,80,80,80L0,80Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
            background-size: cover;
        }

        .workflow-pipeline {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            max-width: 1100px;
            margin: 0 auto 3rem;
            position: relative;
        }

        .pipeline-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            min-width: 140px;
            padding: 0 0.5rem;
        }

        .pipeline-step .step-num {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 50%;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.8rem;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }

        .pipeline-icon-wrap {
            width: 72px;
            height: 72px;
            border-radius: 20px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.6rem;
            margin-bottom: 1rem;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
            transition: all 0.4s ease;
            position: relative;
        }

        .pipeline-icon-wrap::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 24px;
            border: 2px dashed rgba(37, 211, 102, 0.3);
            animation: spinBorder 12s linear infinite;
        }

        @keyframes spinBorder {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .pipeline-step:hover .pipeline-icon-wrap {
            transform: translateY(-6px) scale(1.08);
            box-shadow: 0 16px 40px rgba(37, 211, 102, 0.35);
        }

        .pipeline-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 0.3rem;
        }

        .pipeline-desc {
            font-size: 0.78rem;
            color: #6b7280;
            line-height: 1.5;
            max-width: 140px;
        }

        /* Wave connector between steps */
        .pipeline-connector {
            flex: 0 0 60px;
            height: 4px;
            position: relative;
            z-index: 1;
            margin-top: 4rem;
        }

        .pipeline-connector svg {
            width: 60px;
            height: 20px;
            display: block;
        }

        .pipeline-connector .wave-path {
            stroke: #25d366;
            stroke-width: 2.5;
            fill: none;
            stroke-dasharray: 6 4;
            animation: dashMove 1.5s linear infinite;
        }

        @keyframes dashMove {
            to {
                stroke-dashoffset: -20;
            }
        }

        /* ===== DATA SYNC SECTION ===== */
        .sync-section {
            padding: 70px 2rem;
            background: #f8fafc;
        }

        .sync-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .sync-card {
            background: #fff;
            border: 1px solid rgba(148, 163, 184, 0.3);
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .sync-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.1);
            border-color: rgba(37, 211, 102, 0.3);
        }

        .sync-icon {
            width: 54px;
            height: 54px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.3rem;
            margin: 0 auto 1rem;
        }

        .sync-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 0.5rem;
        }

        .sync-card p {
            font-size: 0.88rem;
            color: #6b7280;
            line-height: 1.6;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 60px 2rem 70px;
            background: #fff;
        }

        .cta-card {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, hsl(210 72% 52%), hsl(200 80% 60%));
            border-radius: 24px;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-card::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-card h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .cta-card p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            margin-bottom: 2rem;
            line-height: 1.7;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
        }

        .cta-btn-white {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: #fff;
            color: #1a1a2e;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
        }

        .cta-btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .cta-btn-white i {
            font-size: 0.85rem;
            transition: transform 0.3s ease;
        }

        .cta-btn-white:hover i {
            transform: translateX(4px);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width:968px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .nav-links.active {
                display: flex;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(5, 5, 5, 0.98);
                flex-direction: column;
                padding: 1.5rem;
                border-bottom: 1px solid rgba(37, 211, 102, 0.3);
                backdrop-filter: blur(20px);
                border-radius: 0 0 12px 12px;
            }

            .nav-item {
                width: 100%;
            }

            .nav-link {
                padding: 1rem;
                width: 100%;
                justify-content: space-between;
            }

            .mega-menu,
            .regular-dropdown {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                min-width: auto;
                max-width: none;
                margin-top: 0.5rem;
                border-radius: 8px;
                display: none;
            }

            .nav-item:hover .mega-menu,
            .nav-item:hover .regular-dropdown {
                display: block;
            }

            .mega-menu-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 1.5rem;
                overflow-y: scroll;
                height: 500px;
            }

            .header-cta-buttons {
                display: none;
            }

            .integrations-hero h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.7rem;
            }

            .workflow-pipeline {
                flex-wrap: wrap;
                gap: 1.5rem;
            }

            .pipeline-connector {
                display: none;
            }

            .pipeline-step {
                flex: 0 0 45%;
                min-width: unset;
            }
        }

        @media (max-width:600px) {
            .integrations-hero {
                padding: 100px 1.5rem 60px;
            }

            .integrations-hero h1 {
                font-size: 1.7rem;
            }

            .why-grid,
            .sync-features {
                grid-template-columns: 1fr 1fr;
            }

            .integrations-grid {
                grid-template-columns: 1fr;
            }

            .pipeline-step {
                flex: 0 0 100%;
            }
        }
        