/* AI Chatbot Page Styles */

/* Hero Section */
.chatbot-hero {
    padding: 180px 0 100px 0;
    background: radial-gradient(circle at 50% -20%, rgba(16, 185, 129, 0.15), transparent 60%);
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.5;
}

/* Feature Modules */
.feature-module {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 48px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.feature-module:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.02);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tag-pill {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* RAG Highlight Section */
.rag-block {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05) 0%, rgba(2, 3, 4, 1) 100%);
    border-left: 4px solid #10b981;
    padding: 40px;
    border-radius: 0 24px 24px 0;
    position: relative;
    z-index: 10;
}

/* Why Us Grid */
.why-us-item {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 8px;
    margin-bottom: 8px;
}

.why-us-item:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 32px;
    border-color: rgba(16, 185, 129, 0.2);
}

.num-label {
    font-family: monospace;
    color: #10b981;
    font-size: 14px;
    margin-right: 15px;
    opacity: 0.7;
    font-weight: 700;
    min-width: 40px;
}

/* Visual Decor */
.node-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, #10b981, transparent);
    width: 100px;
    top: 50px;
    left: 0;
    z-index: 1;
}

/* System Status Box */
.system-status {
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-family: monospace;
    color: rgba(16, 185, 129, 0.7);
    font-size: 11px;
}

/* CTA Button Styles */
.cta-button {
    background: #10b981;
    color: #020304;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #34d399;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

@media (max-width: 1024px) {
    .chatbot-hero {
        padding: 140px 0 80px 0;
    }

    .feature-module {
        padding: 30px 24px;
    }

    .rag-block {
        padding: 30px 24px;
    }
}

@media (max-width: 768px) {
    .chatbot-hero h1 {
        font-size: 3rem;
    }

    .feature-module {
        padding: 24px 20px;
    }

    .why-us-item {
        padding: 20px 16px;
    }

    .why-us-item:hover {
        padding-left: 24px;
    }
}