/** Shopify CDN: Minification failed

Line 334:31 Expected identifier but found whitespace
Line 334:32 Unexpected "#3b82f6"

**/


/* CSS from section stylesheet tags */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .nexav-transformation-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #0a0e27;
            min-height: 100vh;
            padding: 80px 20px;
            position: relative;
            overflow-x: hidden;
        }

        .nexav-transformation-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .grid-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .header {
            text-align: center;
            margin-bottom: 80px;
        }

        h1 {
            font-size: 3.2em;
            color: #ffffff;
            margin-bottom: 16px;
            font-weight: 700;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg,rgb(168, 168, 168) 0%, #cbd5e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: 1.3em;
            color:rgb(232, 232, 232) !important;
            font-weight: 400;
            letter-spacing: 0.01em;
        }

        .flow-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Connection Lines */
        .connection-line {
            position: absolute;
            top: 50%;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(99, 102, 241, 0.3) 20%, 
                rgba(99, 102, 241, 0.5) 50%, 
                rgba(99, 102, 241, 0.3) 80%, 
                transparent 100%);
            z-index: 0;
            left: 48%;
            width: 8%;
        }

        .connection-line::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background: #6366f1;
            border-radius: 50%;
            box-shadow: 0 0 12px rgba(99, 102, 241, 0.6);
        }

        .line-2 {
            display: none;
        }

        /* Step 3 spanning full width below */
        .step-3 {
            grid-column: 1 / -1;
            max-width: 900px;
            margin: 40px auto 0;
        }

        .step {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
            border: 1px solid rgba(148, 163, 184, 0.1);
            border-radius: 16px;
            padding: 0;
            position: relative;
            z-index: 1;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }

        .step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, currentColor, transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .step:hover::before {
            opacity: 1;
        }

        .step:hover {
            border-color: rgba(148, 163, 184, 0.3);
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }

        .step-1::before { color: #ef4444; }
        .step-2::before { color: #10b981; }
        .step-3::before { color: #3b82f6; }

        .step-header {
            padding: 24px 28px 20px;
            border-bottom: 1px solid rgba(148, 163, 184, 0.1);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 6px;
            font-size: 0.9em;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .step-1 .step-number {
            background: rgba(239, 68, 68, 0.15);
            color: #f87171;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .step-2 .step-number {
            background: rgba(16, 185, 129, 0.15);
            color: #34d399;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .step-3 .step-number {
            background: rgba(59, 130, 246, 0.15);
            color: #60a5fa;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .step-title {
            font-size: 1.6em;
            font-weight: 700;
            color: #f1f5f9;
            margin-bottom: 6px;
            letter-spacing: -0.02em;
        }

        .step-description {
            font-size: 0.9em;
            color: #94a3b8;
            font-weight: 400;
        }

        .step-content {
            padding: 24px 28px;
        }

        /* Message Bubbles */
        .message-group {
            margin-bottom: 20px;
        }

        .message {
            border-radius: 8px;
            padding: 12px 16px;
            margin-bottom: 10px;
            font-size: 0.9em;
            color: #e2e8f0;
            line-height: 1.5;
            position: relative;
            max-width: 85%;
        }

        .message::before {
            content: attr(data-sender);
            display: block;
            font-size: 0.7em;
            font-weight: 600;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.7;
        }

        /* Customer Messages */
        .message.customer {
            background: rgba(30, 41, 59, 0.6);
            border-left: 3px solid #64748b;
            margin-left: 0;
            margin-right: auto;
        }

        .message.customer::before {
            color: #94a3b8;
        }

        /* Agent/AI Messages */
        .message.agent {
            margin-left: auto;
            margin-right: 0;
            border-right: 3px solid;
            border-left: none;
        }

        /* Traditional Agent (Red) */
        .message.agent.traditional {
            border-right-color: #ef4444;
            background: rgba(239, 68, 68, 0.08);
            margin-right: 0;
            margin-left: 0;
        }

        .message.agent.traditional::before {
            color: #f87171;
        }

        /* Nexav AI (Green) */
        .message.agent.nexav {
            border-right-color: #10b981;
            background: rgba(16, 185, 129, 0.08);
            margin-left: auto;
            margin-right: 0;
        }

        .message.agent.nexav::before {
            color: #34d399;
        }

        .step-1 .message.agent {
            border-right-color: #ef4444;
            background: rgba(239, 68, 68, 0.08);
        }

        .step-1 .message.agent::before {
            color: #f87171;
        }

        .step-2 .message.agent {
            border-right-color: #10b981;
            background: rgba(16, 185, 129, 0.08);
        }

        .step-2 .message.agent::before {
            color: #34d399;
        }

        /* Step 3 - Comparison layout */
        .step-3 .message-group {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 20px;
        }

        .step-3 .message {
            margin-bottom: 0;
            max-width: 100%;
        }

        .step-3 .message.agent.traditional {
            margin-left: 0;
            margin-right: auto;
        }

        .step-3 .message.agent.nexav {
            margin-left: auto;
            margin-right: 0;
        }
            border-right-color: #3b82f6;
            background: rgba(59, 130, 246, 0.08);
        }

        .step-3 .message.agent:not(.traditional):not(.nexav)::before {
            color: #60a5fa;
        }

        /* Icons Section */
        .icons-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: 20px;
        }

        .icon-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            background: rgba(30, 41, 59, 0.4);
            border-radius: 8px;
            border: 1px solid rgba(148, 163, 184, 0.1);
            transition: all 0.3s ease;
        }

        .icon-item:hover {
            background: rgba(30, 41, 59, 0.6);
            border-color: rgba(148, 163, 184, 0.2);
        }

        .icon-box {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .step-1 .icon-box {
            background: rgba(239, 68, 68, 0.15);
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .step-2 .icon-box {
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .step-3 .icon-box {
            background: rgba(59, 130, 246, 0.15);
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .icon-svg {
            width: 18px;
            height: 18px;
        }

        .step-1 .icon-svg { stroke: #f87171; }
        .step-2 .icon-svg { stroke: #34d399; }
        .step-3 .icon-svg { stroke: #60a5fa; }

        .icon-label {
            font-size: 0.85em;
            color: #cbd5e1;
            font-weight: 500;
        }

        /* AI Processing Section */
        .ai-process {
            margin-top: 24px;
            padding: 20px;
            background: rgba(16, 185, 129, 0.08);
            border-radius: 8px;
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        .process-title {
            font-size: 0.9em;
            color: #34d399;
            font-weight: 600;
            margin-bottom: 16px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .channels-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .channel {
            text-align: center;
            padding: 12px;
            background: rgba(30, 41, 59, 0.6);
            border-radius: 6px;
            border: 1px solid rgba(148, 163, 184, 0.1);
        }

        .channel-icon {
            width: 32px;
            height: 32px;
            margin: 0 auto 8px;
            border-radius: 6px;
            background: rgba(16, 185, 129, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .channel-icon svg {
            width: 16px;
            height: 16px;
            stroke: #34d399;
        }

        .channel-name {
            font-size: 0.8em;
            color: #94a3b8;
            font-weight: 500;
        }

        /* Automation Gear */
        .automation-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px 0;
            gap: 8px;
        }

        .gear {
            width: 24px;
            height: 24px;
            animation: rotate 4s linear infinite;
        }

        .gear:nth-child(2) {
            animation-direction: reverse;
            animation-duration: 3s;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .gear svg {
            stroke: #34d399;
        }

        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 24px;
        }

        .stat-card {
            padding: 16px;
            background: rgba(30, 41, 59, 0.4);
            border-radius: 8px;
            border: 1px solid rgba(148, 163, 184, 0.1);
            text-align: center;
        }

        .stat-value {
            font-size: 1.6em;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .step-3 .stat-value {
            color: #60a5fa;
        }

        .stat-label {
            font-size: 0.8em;
            color: #94a3b8;
            font-weight: 500;
        }

        @media (max-width: 1024px) {
            .flow-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .connection-line {
                display: none;
            }

            h1 {
                font-size: 2.4em;
            }
        }