/* AI Chatbots page styles */

        :root {
            --ai-primary: #1e40af;
            --ai-secondary: #3b82f6;
            --ai-accent: #60a5fa;
            --ai-dark: #1f2937;
            --ai-medium: #4b5563;
            --ai-light: #6b7280;
            --ai-bg: #f8fafc;
            --ai-border: #e5e7eb;
            --ai-white: #ffffff;
            --ai-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
        }

        .chatbots-hero {
            background: var(--ai-gradient);
            padding: 5rem 0 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .chatbots-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.4;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .chatbots-hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .chatbots-hero p {
            font-size: 1.25rem;
            line-height: 1.7;
            opacity: 0.95;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto;
        }

        .chatbots-container {
            padding: 4rem 0;
            background: var(--ai-bg);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--ai-dark);
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--ai-medium);
            line-height: 1.6;
        }

        .chatbot-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .chatbot-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border: 1px solid var(--ai-border);
            position: relative;
            overflow: hidden;
        }

        .chatbot-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border-color: var(--ai-accent);
        }

        .chatbot-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--ai-gradient);
        }

        .chatbot-icon {
            width: 64px;
            height: 64px;
            background: var(--ai-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .chatbot-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--ai-dark);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .chatbot-description {
            color: var(--ai-medium);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .chatbot-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .chatbot-features li {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
            color: var(--ai-medium);
            font-size: 0.9rem;
        }

        .chatbot-features li::before {
            content: '✓';
            color: var(--ai-secondary);
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .capabilities-section {
            background: white;
            padding: 4rem 0;
        }

        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .capability-item {
            text-align: center;
            padding: 2rem;
        }

        .capability-icon {
            width: 80px;
            height: 80px;
            background: var(--ai-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
        }

        .capability-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--ai-dark);
            margin-bottom: 1rem;
        }

        .capability-description {
            color: var(--ai-medium);
            line-height: 1.6;
        }

        .demo-section {
            background: var(--ai-bg);
            padding: 4rem 0;
            text-align: center;
        }

        .demo-placeholder {
            background: white;
            border: 2px dashed var(--ai-border);
            border-radius: 16px;
            padding: 4rem 2rem;
            margin-top: 2rem;
            color: var(--ai-medium);
        }

        .demo-placeholder h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--ai-dark);
        }

        .demo-cta {
            margin-top: 2rem;
        }

        .demo-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--ai-gradient);
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
        }

        .demo-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
            text-decoration: none;
            color: white;
        }

        .cta-section {
            background: var(--ai-gradient);
            padding: 4rem 0;
            text-align: center;
            color: white;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* WhatsApp Featured Section */
        .whatsapp-featured {
            background: linear-gradient(135deg, #075e54 0%, #128c7e 50%, #25d366 100%);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .whatsapp-featured::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
            opacity: 0.6;
        }

        .featured-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .featured-badge svg {
            fill: #fbbf24;
        }

        .whatsapp-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .whatsapp-content {
            color: white;
        }

        .whatsapp-icon-large {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .whatsapp-icon-large svg {
            fill: white;
        }

        .whatsapp-content h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .whatsapp-tagline {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .whatsapp-intro {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .whatsapp-value {
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0.85;
            font-style: italic;
        }

        .whatsapp-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: white;
            color: #075e54;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .whatsapp-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
            text-decoration: none;
            color: #075e54;
        }

        .whatsapp-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .whatsapp-visual svg {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
        }

        .whatsapp-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }

        .whatsapp-feature {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 2rem;
            color: white;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .feature-icon svg {
            stroke: white;
        }

        .whatsapp-feature h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .whatsapp-feature p {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .ready-to-offer-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            margin-top: 4rem;
            text-align: center;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .rto-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .rto-icon svg {
            stroke: white;
        }

        .ready-to-offer-section h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
        }

        .rto-subtitle {
            font-size: 1.2rem;
            color: #6b7280;
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .ready-to-offer-section p {
            font-size: 1.1rem;
            color: #4b5563;
            line-height: 1.7;
            max-width: 700px;
            margin: 0 auto 1rem;
        }

        .rto-benefits {
            list-style: none;
            padding: 0;
            margin: 1.5rem auto;
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .rto-benefits li {
            font-size: 1.1rem;
            color: #1a1a1a;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            background: #f0fdf4;
            border-radius: 12px;
            border: 2px solid #10b981;
        }

        .rto-highlight {
            font-size: 1.3rem;
            font-weight: 700;
            color: #10b981;
            margin-top: 2rem;
        }

        .operator-console-section {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3rem;
            align-items: center;
            margin-top: 4rem;
            padding: 3rem;
            background: white;
            border-radius: 20px;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .console-content h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
        }

        .console-subtitle {
            font-size: 1.2rem;
            color: #6b7280;
            margin-bottom: 1.5rem;
        }

        .console-content p {
            font-size: 1.05rem;
            color: #4b5563;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .console-features {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .console-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.05rem;
            color: #1a1a1a;
            margin-bottom: 0.75rem;
            padding: 0.5rem;
        }

        .console-features .emoji {
            font-size: 1.3rem;
        }

        .console-value {
            font-weight: 600;
            color: #1e40af;
            margin-top: 1.5rem;
        }

        .console-visual svg {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }

        .customization-section {
            margin-top: 4rem;
            padding: 3rem;
            background: white;
            border-radius: 20px;
            text-align: center;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .customization-section h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
        }

        .customization-intro {
            font-size: 1.2rem;
            color: #6b7280;
            margin-bottom: 2rem;
        }

        .customization-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .custom-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: #f8fafc;
            border-radius: 12px;
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .custom-item:hover {
            border-color: #3b82f6;
            transform: translateY(-4px);
        }

        .custom-item svg {
            stroke: #1e40af;
        }

        .custom-item span {
            font-size: 1rem;
            font-weight: 600;
            color: #1a1a1a;
        }

        .industries-intro {
            font-size: 1.1rem;
            color: #4b5563;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .industries-list {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .industries-list span {
            font-size: 1rem;
            font-weight: 600;
            color: #1e40af;
            padding: 0.5rem 1.25rem;
            background: #eff6ff;
            border-radius: 8px;
            border: 1px solid #3b82f6;
        }

        .customization-cta {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1e40af;
            margin-top: 1rem;
        }

        .value-prop-section {
            margin-top: 4rem;
            padding: 3rem;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            border-radius: 20px;
            text-align: center;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 40px rgba(30, 64, 175, 0.3);
        }

        .value-prop-section h3 {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }

        .value-comparison {
            font-size: 1.3rem;
            color: white;
            line-height: 1.8;
            margin-bottom: 3rem;
            opacity: 0.95;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .result-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            color: white;
        }

        .result-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        .result-text {
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .whatsapp-hero {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .whatsapp-visual {
                order: -1;
            }

            .operator-console-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .console-visual {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .chatbots-hero {
                padding: 3rem 0 2rem 0;
            }

            .chatbots-hero h1 {
                font-size: 2.5rem;
            }

            .chatbots-hero p {
                font-size: 1.1rem;
            }

            .hero-content {
                padding: 0 1rem;
            }

            .chatbot-types-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .chatbot-card {
                padding: 1.5rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .whatsapp-featured {
                padding: 3rem 0;
            }

            .whatsapp-content h2 {
                font-size: 2rem;
            }

            .whatsapp-tagline {
                font-size: 1.2rem;
            }

            .whatsapp-intro,
            .whatsapp-value {
                font-size: 1rem;
            }

            .whatsapp-features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .ready-to-offer-section,
            .operator-console-section,
            .customization-section,
            .value-prop-section {
                padding: 2rem 1.5rem;
            }

            .ready-to-offer-section h3,
            .console-content h3,
            .customization-section h3 {
                font-size: 1.6rem;
            }

            .value-prop-section h3 {
                font-size: 1.8rem;
            }

            .rto-benefits {
                flex-direction: column;
                gap: 1rem;
            }

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

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