:root {
            --white: #ffffff;
            --cream: #fffaf5;
            --peach: #fff7ed;
            --peach-dark: #ffedd5;
            --blue-light: #eff6ff;
            --blue-100: #dbeafe;
            --blue-500: #3b82f6;
            --blue-600: #2563eb;
            --blue-700: #1d4ed8;
            --orange: #f97316;
            --orange-dark: #ea580c;
            --coral: #fb923c;
            --green: #22c55e;
            --green-light: #dcfce7;
            --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(--orange), var(--coral));
            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(--orange);
        }

        .nav-cta {
            background: var(--orange);
            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(--orange-dark);
            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(--orange);
            color: white;
        }

        .btn-primary:hover {
            background: var(--orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(249, 115, 22, 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 2rem;
        }

        .section-tag {
            display: inline-block;
            background: var(--peach-dark);
            color: var(--orange-dark);
            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(--peach);
        }

        .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);
            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(--orange);
        }

        .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(--green-light);
            color: var(--green);
            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(--orange);
        }

        .form-submit {
			width: 100%;
            background: var(--orange);
            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(--orange-dark);
        }

        .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 - Blue */
        .results {
            background: var(--blue-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(--orange);
            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 - Peach */
        .story-section {
            background: var(--peach);
        }

        .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(--orange);
            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.5rem;
            border-radius: 16px;
            text-align: center;
        }

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

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

        /* Channels - Blue */
        .channels {
            background: var(--blue-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(--orange);
            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(--orange), var(--coral));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

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

        /* 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(--blue-500);
            transform: translateY(-3px);
        }

        .feature-card span.elementor-icon {
            width: 48px;
            height: 48px;
            background: var(--blue-100) !important;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

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

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

        /* Product Locator - Peach */
        .locator {
            background: var(--peach);
        }

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

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

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

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

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

        .locator-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 3rem;
        }

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

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

        .locator-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .locator-stat {
            background: var(--white);
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
        }

        .locator-stat-value {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--orange);
        }

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

        .value-list {
            margin-bottom: 1.5rem;
        }

        .value-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .value-check {
            width: 22px;
            height: 22px;
            background: var(--green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
        }

        /* 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(--orange);
            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(--blue-light);
            align-self: flex-start;
            border-bottom-left-radius: 4px;
        }

        .buy-options {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            margin-top: 0.6rem;
        }

        .buy-option {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 0.6rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
        }

        .buy-option.featured {
            border-color: var(--orange);
            background: var(--peach);
        }

        .buy-option strong {
            flex: 1;
        }

        .buy-option span {
            color: var(--text-muted);
            font-size: 0.7rem;
        }

        .buy-cta {
            background: var(--orange);
            color: white;
            text-align: center;
            padding: 0.6rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.8rem;
            margin-top: 0.6rem;
        }

        /* Partners */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1rem;
            max-width: 1000px;
            margin: 0 auto;
        }

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

        .partner-card:hover {
            border-color: var(--orange);
        }

        .partner-card span.elementor-icon {
            font-size: 1.5rem;
            margin-bottom: 0.4rem;
        }

        .partner-card h5 {
            font-size: 0.8rem;
            color: var(--text) !important;
        }

        .partner-card p {
            font-size: 0.65rem;
            color: var(--text-muted) !important;
        }

        /* Intelligence - Blue */
        .intelligence {
            background: var(--blue-light);
        }

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

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

        .intel-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 14px;
            padding: 1.25rem;
            margin-bottom: 1rem;
        }

        .intel-card:last-child {
            margin-bottom: 0;
        }

        .intel-card-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .intel-card span.elementor-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .intel-icon.alert {
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }

        .intel-icon.trend {
            background: linear-gradient(135deg, var(--orange), var(--coral));
        }

        .intel-card-title {
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .intel-card-time {
            color: rgba(255,255,255,0.5);
            font-size: 0.75rem;
        }

        .intel-card-body {
            color: rgba(255,255,255,0.75);
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .intel-tag {
            display: inline-block;
            background: rgba(239, 68, 68, 0.2);
            color: #fca5a5;
            padding: 0.25rem 0.6rem;
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-top: 0.75rem;
        }

        .trend-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .trend-item {
            display: flex;
            justify-content: space-between;
            color: rgba(255,255,255,0.75);
            font-size: 0.85rem;
        }

        .trend-item span:last-child {
            color: var(--coral);
            font-weight: 600;
        }

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

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

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

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

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

        /* Pipeline - Peach */
        .pipeline {
            background: var(--peach);
        }

        .pipeline-routes {
            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(--orange);
            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.25rem;
            flex-shrink: 0;
        }

        .route-card.qa span.elementor-icon { background: #fee2e2; }
        .route-card.marketing span.elementor-icon { background: #fce7f3; }
        .route-card.product span.elementor-icon { background: #fef3c7; }
        .route-card.ops span.elementor-icon { background: #dbeafe; }

        .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(--blue-light);
            border-radius: 8px;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .route-example strong {
            color: var(--blue-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) !important;
            margin-bottom: 0.4rem;
        }

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

        /* Voice Demo - Blue */
        .voice-section {
            background: var(--blue-light);
        }

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

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

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

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

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

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

        .voice-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; */
        }

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

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

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

        .voice-lines {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .voice-line {
            display: flex;
            gap: 0.6rem;
        }

        .speaker-tag {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            flex-shrink: 0;
            height: fit-content;
        }

        .speaker-tag.caller {
            background: rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
        }

        .speaker-tag.ai {
            background: var(--coral);
            color: white;
        }

        .voice-text {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.85);
            line-height: 1.5;
        }

        /* Comparison - Peach */
        .comparison {
            background: var(--peach);
        }

        .comparison-table-wrap {
/*             max-width: 900px; 
            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(--blue-600);
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
        }

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

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

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

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

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

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

        /* Pricing - Blue */
        .pricing {
            background: var(--blue-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(--blue-500);
        }

        .pricing-card.featured {
            background: var(--blue-600);
            border-color: var(--orange);
            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(--orange);
            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(--coral);
        }

        .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);
            font-weight: 700;
        }

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

        .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(--blue-600);
            color: white;
        }

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

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

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

        /* Holiday Banner */
        .holiday-banner {
            max-width: 900px;
            margin: 2.5rem auto 0;
            background: linear-gradient(135deg, var(--green) 0%, #16a34a 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(--green);
            padding: 0.6rem 1.25rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
        }

        /* CTA - Peach */
        .cta-section {
            padding: 5rem 5%;
            background: var(--peach);
            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;
        }

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

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

        .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;
        }

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

        /* Footer */
        footer {
            padding: 2.5rem 5%;
            background: var(--blue-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,
            .locator-grid,
            .intel-grid,
            .voice-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .results-grid,
            .channels-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;
            }

            .partners-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .pipeline-routes {
                grid-template-columns: 1fr;
            }

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

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

            .revenue-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 {
                grid-template-columns: 1fr;
            }

            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }
			.result-card .elementor-counter-title {
				display: unset !important;
			}

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

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