        /* ========== HERO SECTION ========== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 140px 48px 80px;
            overflow: hidden;
            background: #f8f9fb;
        }

        /* Grid Background */
        .hero-grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(129, 103, 234, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(129, 103, 234, 0.05) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
        }

        /* Subtle gradient overlay */
        .hero-gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse 60% 50% at 50% 45%, rgba(129, 103, 234, 0.04) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-content {
            text-align: center;
            max-width: 700px;
            position: relative;
            z-index: 10;
            margin-bottom: 60px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            border: 1px solid var(--border-light);
            padding: 10px 20px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 500;
            color: var(--violet);
            margin-bottom: 28px;
            animation: fadeInUp 0.8s ease forwards;
            box-shadow: 0 4px 20px rgba(129, 103, 234, 0.08);
        }

        .badge-icon {
            width: 20px;
            height: 20px;
        }

        .badge-count {
            background: linear-gradient(135deg, #49ccf9 0%, #8700ff 33%, #ff6b9d 66%, #f9a852 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: clamp(44px, 5.5vw, 68px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -2px;
            margin-bottom: 24px;
            color: var(--navy);
            animation: fadeInUp 0.8s ease 0.1s forwards;
            opacity: 0;
        }

        .gradient-text {
            background: linear-gradient(135deg, #49ccf9 0%, #8700ff 33%, #ff6b9d 66%, #f9a852 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .serif-italic {
            font-family: 'Instrument Serif', Georgia, serif;
            font-style: italic;
            font-weight: 400;
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--muted);
            max-width: 550px;
            margin: 0 auto 36px;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-cta-group {
            display: flex;
            justify-content: center;
            gap: 16px;
            animation: fadeInUp 0.8s ease 0.3s forwards;
            opacity: 0;
        }

        .btn-primary {
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
            color: white;
            padding: 18px 32px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 
                0 4px 20px rgba(139, 92, 246, 0.4),
                0 0 40px rgba(139, 92, 246, 0.15);
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
        }

        .btn-secondary {
            background: white;
            color: var(--navy);
            padding: 18px 32px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(129, 103, 234, 0.12);
            border-color: rgba(129, 103, 234, 0.25);
        }

        /* ========== FLOATING INTEGRATION ICONS ========== */
        .integration-icons-container {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 5;
        }

        .integration-icon {
            position: absolute;
            width: 56px;
            height: 56px;
            background: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.06),
                0 1px 3px rgba(0, 0, 0, 0.04);
            transition: all 0.4s ease;
            pointer-events: auto;
            cursor: pointer;
            animation: floatIn 0.8s ease forwards;
            opacity: 0;
        }

        .integration-icon:hover {
            transform: translateY(-6px) scale(1.08);
            box-shadow: 
                0 12px 35px rgba(129, 103, 234, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .integration-icon svg {
            width: 28px;
            height: 28px;
        }

        .integration-icon img {
            width: 28px;
            height: 28px;
            object-fit: contain;
        }

        @keyframes floatIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Position icons in a scattered pattern */
        .icon-salesforce { 
            top: 18%; 
            left: 8%; 
        }
        .icon-hubspot { 
            top: 32%; 
            left: 15%; 
        }
        .icon-outreach { 
            top: 12%; 
            left: 25%; 
        }
        .icon-gong { 
            top: 25%; 
            left: 32%; 
        }
        .icon-6sense { 
            top: 15%; 
            right: 32%; 
        }
        .icon-slack { 
            top: 28%; 
            right: 18%; 
        }
        .icon-cisco { 
            top: 12%; 
            right: 8%; 
        }
        .icon-webflow { 
            bottom: 28%; 
            left: 12%; 
        }
        .icon-clay { 
            bottom: 18%; 
            left: 30%; 
        }
        .icon-intercom { 
            bottom: 25%; 
            right: 15%; 
        }

        /* Subtle float animation */
        .integration-icon {
            animation: floatIn 0.8s ease forwards, gentleFloat 6s ease-in-out infinite;
        }

        @keyframes gentleFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .icon-salesforce { animation-delay: 0.1s, 0s; }
        .icon-hubspot { animation-delay: 0.2s, 0.5s; }
        .icon-outreach { animation-delay: 0.3s, 1s; }
        .icon-gong { animation-delay: 0.4s, 1.5s; }
        .icon-6sense { animation-delay: 0.5s, 2s; }
        .icon-slack { animation-delay: 0.6s, 2.5s; }
        .icon-cisco { animation-delay: 0.7s, 3s; }
        .icon-webflow { animation-delay: 0.8s, 0.3s; }
        .icon-clay { animation-delay: 0.9s, 1.3s; }
        .icon-intercom { animation-delay: 1s, 1.8s; }

        /* ========== STATS SECTION ========== */
        .stats-section {
            position: relative;
            z-index: 10;
            padding: 80px 48px;
            background: white;
        }

        .stats-grid {
            display: flex;
            justify-content: center;
            gap: 80px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 52px;
            font-weight: 800;
            background: linear-gradient(135deg, #49ccf9 0%, #8700ff 33%, #ff6b9d 66%, #f9a852 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--muted);
            font-weight: 500;
        }

        /* ========== INTEGRATIONS SECTION ========== */
        .integrations-section {
            position: relative;
            z-index: 10;
            padding: 100px 48px 120px;
            background: #fefefe;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--navy);
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 18px;
            color: var(--muted);
            line-height: 1.7;
        }

        /* Category Tabs */
        .category-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 60px;
            padding: 0 20px;
        }

        .category-tab {
            background: white;
            border: 1px solid var(--border-light);
            padding: 14px 24px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            color: var(--muted);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        }

        .category-tab:hover {
            color: var(--navy);
            border-color: rgba(129, 103, 234, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(129, 103, 234, 0.1);
        }

        .category-tab.active {
            background: var(--navy);
            color: white;
            border-color: var(--navy);
            box-shadow: 0 8px 25px rgba(14, 14, 68, 0.2);
        }

        /* Category Description */
        .category-description {
            max-width: 800px;
            margin: 0 auto 50px;
            text-align: center;
            padding: 24px 32px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 247, 252, 0.9) 100%);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid var(--border-light);
            box-shadow: 0 8px 30px rgba(129, 103, 234, 0.06);
        }

        .category-description h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .category-description p {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.6;
        }

        /* Integration Grid */
        .integrations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 24px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .integration-card {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 32px;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .integration-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #49ccf9 0%, #8700ff 33%, #ff6b9d 66%, #f9a852 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .integration-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 25px 60px rgba(129, 103, 234, 0.12),
                0 10px 25px rgba(0, 0, 0, 0.06);
            border-color: rgba(129, 103, 234, 0.2);
        }

        .integration-card:hover::before {
            opacity: 1;
        }

        .card-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 16px;
        }

        .card-logo {
            width: 56px;
            height: 56px;
            background: #ffffff;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid var(--border-light);
            overflow: hidden;
        }

        .card-logo svg {
            width: 28px;
            height: 28px;
        }

        .card-logo img {
            width: 36px;
            height: 36px;
            object-fit: contain;
        }

        .card-info {
            flex: 1;
        }

        .card-category {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--violet);
            margin-bottom: 4px;
        }

        .card-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--navy);
        }

        .card-description {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .card-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(129, 103, 234, 0.08);
            padding: 6px 12px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            color: var(--violet);
        }

        .card-tag svg {
            width: 12px;
            height: 12px;
        }

        .card-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--violet);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
        }

        .card-link:hover {
            gap: 10px;
        }

        .card-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .integration-card:hover .card-link svg {
            transform: translateX(4px);
        }

        /* Featured Badge */
        .featured-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #f9a852 0%, #f97316 100%);
            color: white;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 5px 10px;
            border-radius: 100px;
        }

        /* ========== WORKFLOW SECTION ========== */
        .workflow-section {
            position: relative;
            z-index: 10;
            padding: 120px 48px;
            background: #f8f9fb;
        }

        .workflow-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .workflow-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .workflow-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--navy);
            margin-bottom: 16px;
        }

        .workflow-header p {
            font-size: 18px;
            color: var(--muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .workflow-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .workflow-card {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 40px 32px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        }

        .workflow-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(129, 103, 234, 0.1);
        }

        .workflow-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #49ccf9 0%, #8700ff 33%, #ff6b9d 66%, #f9a852 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: white;
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
        }

        .workflow-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f8f7fc 0%, #ede9fe 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px auto 24px;
        }

        .workflow-icon svg {
            width: 40px;
            height: 40px;
            stroke: var(--violet);
        }

        .workflow-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .workflow-card p {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.6;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            position: relative;
            z-index: 10;
            padding: 120px 48px;
            background: white;
        }

        .cta-card {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--navy);
            border-radius: 32px;
            padding: 80px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse 400px 300px at 20% 20%, rgba(129, 103, 234, 0.3) 0%, transparent 60%),
                radial-gradient(ellipse 300px 300px at 80% 80%, rgba(73, 204, 249, 0.2) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-card h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .cta-card p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 550px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-cta-primary {
            background: white;
            color: var(--navy);
            padding: 18px 36px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
        }

        .btn-cta-secondary {
            background: transparent;
            color: white;
            padding: 18px 36px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .btn-cta-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }


        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .integration-icon {
                width: 48px;
                height: 48px;
            }
            
            .integration-icon svg {
                width: 24px;
                height: 24px;
            }
        }

        @media (max-width: 992px) {
            nav {
                padding: 16px 24px;
            }

            .nav-center {
                display: none;
            }

            .hero {
                padding: 120px 24px 60px;
            }

            .integration-icons-container {
                display: none;
            }

            .workflow-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .footer-top {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 100px 20px 40px;
                min-height: auto;
            }

            .hero h1 {
                font-size: 36px;
                letter-spacing: -1px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .hero-cta-group {
                flex-direction: column;
                align-items: center;
            }

            .stats-section {
                padding: 60px 20px;
            }

            .stats-grid {
                flex-direction: column;
                gap: 32px;
            }

            .stat-value {
                font-size: 44px;
            }

            .integrations-section {
                padding: 60px 20px 80px;
            }

            .category-tabs {
                gap: 8px;
            }

            .category-tab {
                padding: 10px 16px;
                font-size: 13px;
            }

            .integrations-grid {
                grid-template-columns: 1fr;
            }

            .workflow-section {
                padding: 80px 20px;
            }

            .cta-section {
                padding: 60px 20px;
            }

            .cta-card {
                padding: 60px 24px;
                border-radius: 24px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            footer {
                padding: 60px 20px 30px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }
