 :root {
            --white: #ffffff;
            --cream: #f0fdf4;
            --mint: #dcfce7;
            --mint-dark: #bbf7d0;
            --slate-light: #f1f5f9;
            --slate-100: #e2e8f0;
            --green-500: #22c55e;
            --green-600: #16a34a;
            --green-700: #15803d;
            --teal: #14b8a6;
            --teal-dark: #0d9488;
            --emerald: #10b981;
            --blue-500: #3b82f6;
            --blue-600: #2563eb;
            --orange: #f97316;
            --text: #1e293b;
            --text-light: #64748b;
            --text-muted: #94a3b8;
            --border: #e2e8f0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--white);
            color: var(--text);
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
        }

        /* Animations */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }

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

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--green-600), var(--teal));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .logo-text-wrap {
            display: flex;
            flex-direction: column;
        }

        .logo-text {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text);
            line-height: 1.1;
        }

        .logo-tagline {
            font-size: 0.65rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--green-600);
        }

        .nav-cta {
            background: var(--green-600);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .nav-cta:hover {
            background: var(--green-700);
            transform: translateY(-2px);
        }

        /* Buttons */
        .btn {
            padding: 1rem 1.75rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--green-600);
            color: white;
        }

        .btn-primary:hover {
            background: var(--green-700);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(22, 163, 74, 0.3);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--text);
            border: 2px solid var(--text);
        }

        .btn-secondary:hover {
            background: var(--text);
            color: white;
        }

        /* Section Styles */
        .section {
            padding: 5rem 5%;
        }

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

        .section-tag {
            display: inline-block;
            background: var(--mint);
            color: var(--green-700);
            padding: 0.5rem 1.25rem;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            color: var(--text);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-light);
        }

        /* Hero */
        .hero {
            padding: 8rem 5% 4rem;
            background: var(--cream);
        }

        .hero-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            animation: fadeUp 0.8s ease-out;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--white);
            border: 1px solid var(--border);
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text);
            margin-bottom: 1.5rem;
        }

        .live-dot {
            width: 10px;
            height: 10px;
            background: var(--green-500);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .hero h1 {
            font-size: clamp(2.75rem, 5.5vw, 4rem);
            color: var(--text);
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            color: var(--green-600);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 500px;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* Hero Form */
        .hero-form-card {
            background: var(--white);
            border-radius: 20px !important;
            padding: 2.5rem !important;
            box-shadow: 0 25px 80px rgba(0,0,0,0.08);
            animation: fadeUp 0.8s ease-out 0.2s both;
        }

        .form-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .form-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--mint);
            color: var(--green-600);
            padding: 0.4rem 0.8rem;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .form-header h3 {
            font-size: 1.4rem;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .form-header p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .hero-form {
/*             display: flex; */
            flex-direction: column;
            gap: 1rem;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 1rem;
        }

        .form-group input {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
			margin-top: 5px;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--green-600);
        }
		.hero-form .form-submit{
			width: 100%;
		}
        .form-submit {
            background: var(--green-600);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 0.5rem;
        }

        .form-submit:hover {
            background: var(--green-700);
        }

        .form-note {
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 1rem;
            line-height: 1.5;
        }

        .form-note-secondary {
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-light);
            margin-top: 0.5rem;
            line-height: 1.4;
        }

        /* Trusted */
        .trusted {
            padding: 3rem 5%;
            background: var(--white);
            border-bottom: 1px solid var(--border);
        }

        .trusted-inner {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .trusted-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .trusted-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem 2.5rem;
            flex-wrap: wrap;
        }

        .trusted-logo {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-muted);
        }

        /* Results - Slate */
        .results {
            background: var(--slate-light);
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .result-card {
            background: var(--white);
            padding: 2rem 1.5rem;
            border-radius: 16px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

        .result-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }
		.result-card .elementor-counter-title{
			flex-wrap: wrap;
			line-height: 21px !important;
		}
        .result-card .elementor-counter-number, 
		.result-card .elementor-counter-number-suffix {
            font-size: 3rem;
            font-weight: 800;
            color: var(--green-600);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .result-label {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.25rem;
        }

        .result-context {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Story Section - Mint */
        .story-section {
            background: var(--cream);
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .story-content h2 {
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            color: var(--text);
            margin-bottom: 1.25rem;
        }

        .story-content p {
            font-size: 1.05rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .story-quote {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 16px;
            border-left: 4px solid var(--green-600);
            margin: 1.5rem 0;
        }

        .story-quote p {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--text);
            margin: 0;
        }

        .story-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .story-stat {
            background: var(--white);
            padding: 1.2rem;
            border-radius: 16px;
            text-align: center;
        }

        .story-stat-value {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--green-600);
        }

        .story-stat-label {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* Channels - Slate */
        .channels {
            background: var(--slate-light);
        }

        .channels-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
            max-width: 900px;
            margin: 0 auto 3rem;
        }

        .channel-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.5rem 1rem;
            text-align: center;
            transition: all 0.3s;
        }

        .channel-card:hover {
            border-color: var(--green-600);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        }

        .channel-card span.elementor-icon {
/*             width: 56px;
            height: 56px; */
            margin: 0 auto 0.75rem;
/*             background: linear-gradient(135deg, var(--green-600), var(--teal)); */
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
        }

        .channel-card h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text);
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.5rem;
            transition: all 0.3s;
        }

        .feature-card:hover {
            border-color: var(--teal);
            transform: translateY(-3px);
        }

        .feature-card span.elementor-icon {
            width: 48px;
            height: 48px;
/*             background: var(--mint); */
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 42px;
            margin-bottom: 1rem;
        }

        .feature-card h5 {
            font-size: 1rem;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .feature-card p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* Query Types - Mint */
        .query-types {
            background: var(--cream);
        }

        .query-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .query-banner {
            background: linear-gradient(135deg, var(--green-600), var(--teal));
            border-radius: 20px;
            padding: 2rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto 3rem;
            color: white;
        }

        .query-banner-icon {
            font-size: 2.5rem;
        }

        .query-banner h3 {
            font-size: 1.25rem;
            margin-bottom: 0.25rem;
        }

        .query-banner p {
            opacity: 0.9;
            font-size: 0.95rem;
        }

        .query-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
            max-width: 1100px;
            margin: 0 auto 3rem;
        }

        .query-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }

        .query-card:hover {
            border-color: var(--green-600);
            transform: translateY(-3px);
        }

        .query-card span.elementor-icon {
            width: 60px;
            height: 56px;
            margin: 0 auto 1rem;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
        }

        .query-card.invoice span.elementor-icon { background: #fef3c7; }
        .query-card.payment span.elementor-icon { background: #dbeafe; }
        .query-card.program span.elementor-icon { background: #fce7f3; }
        .query-card.onboard span.elementor-icon { background: #dcfce7; }

        .query-card h4 {
            font-size: 1rem;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .query-card p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        .query-examples {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 0.75rem;
            font-style: italic;
        }

        /* Phone Mockup */
        .phone-mockup {
            background: var(--text);
            border-radius: 32px;
            padding: 0.5rem;
            max-width: 300px;
            margin: 0 auto;
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        .phone-screen {
            background: var(--white);
            border-radius: 26px;
            overflow: hidden;
        }

        .phone-header {
            background: var(--green-600);
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .phone-avatar {
            width: 32px;
            height: 32px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .phone-brand {
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .phone-chat {
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .chat-bubble {
            padding: 0.7rem 1rem;
            border-radius: 14px;
            font-size: 0.8rem;
            line-height: 1.5;
            max-width: 90%;
        }

        .chat-bubble.user {
            background: #f1f5f9;
            align-self: flex-end;
            border-bottom-right-radius: 4px;
        }

        .chat-bubble.ai {
            background: var(--mint);
            align-self: flex-start;
            border-bottom-left-radius: 4px;
        }

        .status-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 0.75rem;
            margin-top: 0.5rem;
        }

        .status-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            margin-bottom: 0.4rem;
        }

        .status-row:last-child {
            margin-bottom: 0;
        }

        .status-label {
            color: var(--text-muted);
        }

        .status-value {
            font-weight: 600;
            color: var(--text);
        }

        .status-value.success {
            color: var(--green-600);
        }

        /* Integrations - Slate */
        .integrations {
            background: var(--slate-light);
        }

        .integrations-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .integrations-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
        }

        .integrations-visual {
            background: var(--text);
            border-radius: 20px !important;
            padding: 2rem !important;
        }

        .integration-section {
            margin-bottom: 1.5rem;
        }

        .integration-section:last-child {
            margin-bottom: 0;
        }

        .integration-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.5);
            margin-bottom: 0.75rem;
        }

        .integration-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .integration-logo {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 10px;
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s;
        }

        .integration-logo:hover {
            background: rgba(255,255,255,0.15);
        }

        .integration-logo.sap { border-color: #0092d1; }
        .integration-logo.ariba { border-color: #f37321; }
        .integration-logo.oracle { border-color: #f80000; }
        .integration-logo.salesforce { border-color: #00a1e0; }
        .integration-logo.servicenow { border-color: #81b5a1; }
        .integration-logo.freshdesk { border-color: #25c16f; }

        .integrations-text h2 {
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            color: var(--text);
            margin-bottom: 1rem;
        }

        .integrations-text > p {
            font-size: 1.05rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .integration-list {
            list-style: none;
        }

        .integration-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.6rem;
            font-size: 0.95rem;
        }

        .integration-list li::before {
            content: '✓';
            width: 22px;
            height: 22px;
            background: var(--mint);
            color: var(--green-600);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
        }

        /* Routing - Mint */
        .routing {
            background: var(--cream);
        }

        .routing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
            max-width: 1000px;
            margin: 0 auto 3rem;
        }

        .route-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.5rem;
            display: flex;
            gap: 1rem;
            transition: all 0.3s;
        }

        .route-card:hover {
            border-color: var(--green-600);
            transform: translateY(-3px);
        }

        .route-card span.elementor-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .route-card.urgent span.elementor-icon { background: #fee2e2; }
        .route-card.escalate span.elementor-icon { background: #fef3c7; }
        .route-card.specialist span.elementor-icon { background: #dbeafe; }
        .route-card.auto span.elementor-icon { background: #dcfce7; }

        .route-content h4 {
            font-size: 1rem;
            color: var(--text);
            margin-bottom: 0.4rem;
        }

        .route-content p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        .route-example {
            margin-top: 0.75rem;
            padding: 0.6rem 0.75rem;
            background: var(--slate-light);
            border-radius: 8px;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .route-example strong {
            color: var(--green-600);
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .impact-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
        }

        .impact-card span.elementor-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        .impact-card h4 {
            font-size: 1rem;
            color: var(--text);
            margin-bottom: 0.4rem;
        }

        .impact-card p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* AI + Human - Slate */
        .hybrid-section {
            background: var(--slate-light);
        }

        .hybrid-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hybrid-content h2 {
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            color: var(--text);
            margin-bottom: 1rem;
        }

        .hybrid-content p {
            font-size: 1.05rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .hybrid-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .hybrid-tag {
            background: var(--white);
            border: 1px solid var(--border);
            padding: 0.4rem 0.9rem;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .hybrid-demo {
            background: var(--text);
            border-radius: 20px !important;
            padding: 1.5rem !important;
        }

        .hybrid-demo-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 1rem;
        }

        .hybrid-icon-wrap {
            width: 48px;
            height: 48px;
            background: var(--green-600);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .hybrid-info strong {
            display: block;
            color: white;
            font-size: 1rem;
        }

        .hybrid-info span {
            color: rgba(255,255,255,0.5);
            font-size: 0.8rem;
        }

        .hybrid-flow {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .flow-step {
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
        }

        .step-indicator {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .step-indicator.ai {
            background: var(--teal);
            color: white;
        }

        .step-indicator.human {
            background: var(--orange);
            color: white;
        }

        .step-content {
            flex: 1;
        }

        .step-label {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.2rem;
        }

        .step-label.ai-label {
            color: var(--teal);
        }

        .step-label.human-label {
            color: var(--orange);
        }

        .step-text {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.85);
            line-height: 1.4;
        }

        /* Comparison - Mint */
        .comparison {
            background: var(--cream);
        }

        .comparison-table-wrap {
/*             max-width: 900px; */
			width: 100%;
            margin: 0 auto;
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 1rem 1.25rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        .comparison-table th {
            background: var(--green-600);
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .comparison-table th:last-child {
            background: var(--teal);
        }

        .comparison-table td {
            font-size: 0.9rem;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table .check {
            color: var(--green-600);
            font-weight: 700;
        }

        .comparison-table .highlight-row {
            background: var(--mint);
        }

        .comparison-table .highlight-row td {
            font-weight: 700;
        }

        /* Pricing - Slate */
        .pricing {
            background: var(--slate-light);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--white);
            border: 2px solid var(--border);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            transition: all 0.3s;
        }

        .pricing-card:hover {
            border-color: var(--teal);
        }

        .pricing-card.featured {
            background: var(--green-600);
            border-color: var(--teal);
            transform: scale(1.02);
        }

        .pricing-card.featured * {
            color: white;
        }

        .pricing-card.featured .pricing-features li {
            color: rgba(255,255,255,0.85);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--teal);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .pricing-tier {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            margin-bottom: 0.4rem;
        }

        .pricing-card.featured .pricing-tier {
            color: var(--mint);
        }

        .pricing-name {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 0.4rem;
        }

        .pricing-price {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 1.25rem;
        }

        .pricing-desc {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 1.25rem;
            line-height: 1.5;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--green-500);
            font-weight: 700;
        }

        .pricing-card.featured .pricing-features li::before {
            color: var(--mint);
        }

        .pricing-cta {
            display: block;
            text-align: center;
            padding: 0.9rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
        }

        .pricing-card:not(.featured) .pricing-cta {
            background: var(--green-600);
            color: white;
        }

        .pricing-card:not(.featured) .pricing-cta:hover {
            background: var(--green-700);
        }

        .pricing-card.featured .pricing-cta {
            background: var(--teal);
            color: white;
        }

        .pricing-card.featured .pricing-cta:hover {
            background: var(--teal-dark);
        }

        /* Holiday Banner */
        .holiday-banner {
            max-width: 900px;
            margin: 2.5rem auto 0;
            background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
            border-radius: 16px;
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            color: white;
        }

        .holiday-icon {
            font-size: 2.5rem;
            animation: float 3s ease-in-out infinite;
        }

        .holiday-content {
            flex: 1;
        }

        .holiday-content h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .holiday-content p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .holiday-badge {
            background: white;
            color: var(--blue-600);
            padding: 0.6rem 1.25rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
        }

        /* CTA - Mint */
        .cta-section {
            padding: 5rem 5%;
            background: var(--cream);
            text-align: center;
        }

        .cta-content {
/*             max-width: 600px; */
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: clamp(1.75rem, 3.5vw, 2.5rem);
            color: var(--text);
            margin-bottom: 1rem;
			text-align: center;
        }

        .cta-content p.cta_sub {
            font-size: 1.05rem;
            color: var(--text-light);
            margin-bottom: 2rem;
			text-align: center;
        }

        .cta-form {
            background: var(--white);
            border-radius: 20px !important;
            padding: 2rem !important;
        }

        .cta-form h3 {
            font-size: 1.2rem;
            color: var(--text);
            margin-bottom: 0.4rem;
        }

        .cta-form p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 1.25rem;
			text-align: center;
        }

        .cta-form .form-group {
            margin-bottom: 1rem;
        }

        /* Footer */
        footer {
            padding: 2.5rem 5%;
            background: var(--green-600);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-brand .logo-text {
            color: white;
        }

        .footer-brand .logo-tagline {
            color: rgba(255,255,255,0.7);
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: white;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container,
            .story-grid,
            .integrations-grid,
            .hybrid-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .results-grid,
            .channels-grid,
            .query-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

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

            .pricing-card.featured {
                transform: none;
            }

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

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

            .holiday-banner {
                flex-direction: column;
                text-align: center;
            }

            .query-banner {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero {
                padding: 7rem 5% 3rem;
            }

            .results-grid,
            .channels-grid,
            .features-grid,
            .query-grid {
                grid-template-columns: 1fr;
            }

            .story-stats {
                grid-template-columns: 1fr;
            }

            .footer-inner {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
        }