﻿/* AI System Landing Page Custom CSS */
/* We rely on style.css for base styles, navbar, footer, contact form */

/* Hero Section Updates */
.ai-hero-section {
    padding: 160px 0 40px;
    background: radial-gradient(circle at 70% 30%, rgba(43, 102, 246, 0.15) 0%, transparent 50%);
}
.ai-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}
.ai-hero-content {
    flex: 1;
}
.ai-hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: #fff;
}
.ai-hero-title span {
    color: #2b66f6;
}
.ai-hero-desc {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.6;
}

.ai-hero-image {
    flex: 1;
    position: relative;
}
.ai-hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}

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

@media (max-width: 992px) {
    .ai-hero-container {
        flex-direction: column;
        text-align: center;
    }
    .ai-hero-title { font-size: 3rem; }
    .ai-hero-desc { margin: 0 auto 40px; }
}

/* Voice Agent Avatars Section */
.ai-avatars-section {
    padding: 60px 0 80px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.ai-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.ai-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #fff;
}
.ai-section-header p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.ai-avatars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ai-avatar-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #111;
    box-sizing: border-box; /* Fix for overflow */
}
.ai-avatar-card:hover {
    transform: translateY(-10px);
}
.ai-avatar-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.ai-avatar-card:hover img {
    transform: scale(1.05);
}
.ai-avatar-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    box-sizing: border-box; /* Fix for overflow */
}
.ai-avatar-info {
    flex: 1;
}
.ai-avatar-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}
.ai-avatar-info p {
    margin: 0 0 12px 0;
    color: #ccc;
    font-size: 0.95rem;
}
.ai-avatar-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.ai-badge {
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
}
.ai-play-btn {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-left: 15px; /* Spacing from info text */
    margin-bottom: 5px;
}
.ai-avatar-card:hover .ai-play-btn {
    background: #2b66f6;
    color: white;
    transform: scale(1.1);
}

/* AI Theme Overrides for Contact Section */
.ai-contact-theme {
    padding-top: 20px !important;
}
.ai-contact-theme .contact-title span {
    background: linear-gradient(135deg, #2b66f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ai-contact-theme .contact-proof div {
    background: rgba(43, 102, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(43, 102, 246, 0.2);
}
.ai-contact-theme .contact-btn {
    background: linear-gradient(90deg, #2b66f6, #1d4ed8);
    box-shadow: 0 15px 40px -15px rgba(43, 102, 246, 0.5);
}
.ai-contact-theme .contact-btn:hover {
    box-shadow: 0 15px 40px -15px rgba(43, 102, 246, 0.7);
}
.ai-contact-theme .form-group input:focus,
.ai-contact-theme .form-group select:focus,
.ai-contact-theme .form-group textarea:focus {
    border-color: #2b66f6;
}
.ai-contact-theme input[type="checkbox"] {
    accent-color: #2b66f6 !important;
}
.ai-contact-theme label a {
    color: #60a5fa !important;
}

.ai-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2b66f6;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(43, 102, 246, 0.4);
}
.ai-hero-btn:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(43, 102, 246, 0.6);
    color: #fff;
}

/* Revenue Engine Overrides for AI Theme */
.ai-revenue-engine {
    padding: 60px 0 60px !important;
}

.ai-revenue-engine .section-title span {
    background: linear-gradient(135deg, #2b66f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-revenue-engine .ai-card .step-num {
    background: linear-gradient(135deg, #2b66f6, #60a5fa) !important;
    box-shadow: 0 6px 15px rgba(43, 102, 246, 0.3) !important;
}

.ai-revenue-engine .ai-feature i {
    color: #2b66f6 !important;
}

.ai-revenue-engine .highlight-ai {
    border-color: rgba(43, 102, 246, 0.4) !important;
    box-shadow: 0 10px 20px rgba(43, 102, 246, 0.08) !important;
}

.ai-revenue-engine .highlight-ai i {
    color: #2b66f6 !important;
}

.ai-revenue-engine .ai-value-prop strong {
    color: #60a5fa !important;
}

/* AI Theme Override for Logo and Mobile Icons */
.navbar .logo span {
    background: linear-gradient(135deg, #2b66f6, #60a5fa) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}
.btn-premium-cta:hover {
    background: linear-gradient(135deg, #2b66f6, #60a5fa) !important;
    box-shadow: 0 15px 30px -10px rgba(43, 102, 246, 0.5) !important;
}
.nav-links .mobile-icon {
    color: #2b66f6 !important;
}

/* Demo CTA Section */
.ai-demo-cta {
    padding: 0 0 20px;
    background: transparent;
}
.ai-demo-cta-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 70px 40px;
    background: linear-gradient(135deg, rgba(43, 102, 246, 0.08) 0%, rgba(43, 102, 246, 0.02) 100%);
    border: 1px solid rgba(43, 102, 246, 0.15);
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}
.ai-demo-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.ai-stat-item {
    text-align: center;
}
.ai-stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1;
}
.ai-stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.ai-demo-cta-box h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}
.ai-cta-desc {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 680px;
    margin: 0 auto 36px auto;
    line-height: 1.6;
}
.ai-cta-btn {
    padding: 22px 50px;
    font-size: 1.2rem;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #2b66f6, #1d4ed8);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 15px 35px -5px rgba(43, 102, 246, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.ai-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 45px -5px rgba(43, 102, 246, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.ai-cta-btn i {
    font-size: 1.5rem;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@media (max-width: 768px) {
    .crm-chat-input { padding: 12px 15px; gap: 8px; }
    .input-fake { padding: 12px 15px; font-size: 0.85rem; }
    .crm-chat-input button { font-size: 1.2rem; }
    .crm-chat-input button.send { width: 38px; height: 38px; }

    .ai-demo-cta-box {
        padding: 40px 20px;
        border-radius: 20px;
    }
    .ai-demo-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
        text-align: center;
        max-width: 320px;
        margin: 0 auto 30px auto;
    }
    .ai-stat-item {
        text-align: center;
    }
    .ai-stat-value {
        font-size: 2rem;
    }
    .ai-demo-cta-box h2 {
        font-size: 1.8rem;
    }
    .ai-cta-desc {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }
    .ai-cta-btn {
        padding: 16px 24px;
        font-size: 1.05rem;
        width: 100%;
    }
}

/* CRM MOCKUP SECTION */
.ai-crm-preview {
    padding: 60px 0 80px;
    background: transparent;
}
.ai-crm-preview .section-title span {
    background: linear-gradient(135deg, #2b66f6, #60a5fa) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}
.crm-dashboard-mockup {
    display: flex;
    max-width: 1050px;
    margin: 50px auto 0;
    height: 600px;
    background: #0b0b0c;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(43, 102, 246, 0.05);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    text-align: left;
}
.crm-sidebar {
    width: 280px;
    background: #151515;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}
.crm-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.crm-logo {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.crm-logo i { color: #2b66f6; font-size: 1.4rem; }
.crm-chat-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}
.crm-chat-list::-webkit-scrollbar { width: 4px; }
.crm-chat-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.crm-chat-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 5px;
    position: relative;
    border-left: 3px solid transparent;
}
.crm-chat-item.active {
    background: #1e1e24;
    border-left-color: #2b66f6;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.crm-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2a2a35;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #94a3b8;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.crm-chat-info { overflow: hidden; }
.crm-chat-info h4 { color: #f8fafc; font-size: 0.95rem; margin-bottom: 3px; font-weight: 600;}
.crm-chat-info p { color: #94a3b8; font-size: 0.8rem; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px; }
.crm-badge {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
}
.crm-badge.whatsapp { color: #25D366; }
.crm-badge.instagram { color: #E1306C; }
.crm-badge.facebook { color: #1877F2; }

.crm-main-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #0b0b0c;
    min-width: 0;
}
.crm-chat-header {
    padding: 15px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.crm-chat-user { display: flex; align-items: center; }
.crm-chat-user h4 { color: #f8fafc; font-size: 1.05rem; margin-bottom: 2px; font-weight: 600;}
.crm-chat-user span { color: #10b981; font-size: 0.8rem; display: flex; align-items: center; gap: 4px; font-weight: 500; }
.crm-chat-user span::before { content: ''; width: 6px; height: 6px; background: #10b981; border-radius: 50%; }
.crm-chat-actions button { background: transparent; border: none; color: #94a3b8; font-size: 1.3rem; margin-left: 15px; cursor: pointer; transition: 0.2s;}
.crm-chat-actions button:hover { color: #2b66f6; }

.crm-chat-body {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #0f0f13;
}
.crm-chat-body::-webkit-scrollbar { width: 4px; }
.crm-chat-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.chat-bubble {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.chat-bubble p { margin: 0; font-size: 0.95rem; line-height: 1.5; }
.chat-bubble .time { display: block; font-size: 0.7rem; margin-top: 6px; text-align: right; opacity: 0.6; }
.chat-bubble.user { align-self: flex-start; background: #1e1e24; color: #f8fafc; border-bottom-left-radius: 2px; border: 1px solid rgba(255,255,255,0.05); }
.chat-bubble.ai { align-self: flex-end; background: #2b66f6; color: #fff; border-bottom-right-radius: 2px; box-shadow: 0 5px 15px rgba(43, 102, 246, 0.2); }
.ai-indicator { font-size: 0.7rem; font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 5px; color: #bfdbfe; text-transform: uppercase; letter-spacing: 0.5px; }

.crm-chat-input {
    padding: 15px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    background: #0b0b0c;
}
.input-fake { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; background: #1a1a20; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 30px; padding: 12px 20px; color: #94a3b8; font-size: 0.95rem; }
.crm-chat-input button { background: transparent; border: none; color: #94a3b8; font-size: 1.4rem; cursor: pointer; transition: 0.2s;}
.crm-chat-input button:hover { color: #2b66f6; }
.crm-chat-input button.send { background: #2b66f6; color: #fff; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(43, 102, 246, 0.3); }

.crm-lead-panel {
    width: 280px;
    background: #151515;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
}
.lead-score { text-align: center; margin-bottom: 25px; }
.score-circle { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; color: #ffffff; border: 3px solid transparent; background: linear-gradient(#16161a, #16161a) padding-box, linear-gradient(135deg, #2b66f6, #60a5fa) border-box; box-shadow: 0 0 15px rgba(43, 102, 246, 0.15); }
.score-label { color: #94a3b8; font-size: 0.75rem; font-weight: 600; }
.lead-details { margin-bottom: 25px; }
.lead-details h4 { color: #f8fafc; font-size: 0.85rem; margin-bottom: 12px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px;}
.lead-details ul { list-style: none; padding: 0; margin: 0; }
.lead-details li { display: flex; align-items: center; gap: 8px; color: #cbd5e1; font-size: 0.8rem; margin-bottom: 10px; font-weight: 500; }
.lead-details li i { color: #2b66f6; font-size: 1rem; }

/* New CRM Controls */
.crm-lead-panel { overflow-y: auto; }
.crm-lead-panel::-webkit-scrollbar { width: 4px; }
.crm-lead-panel::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.crm-control-group { margin-bottom: 20px; }
.crm-control-group label { display: block; color: #94a3b8; font-size: 0.7rem; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.crm-select, .crm-input, .crm-textarea { width: 100%; background: #1a1a20; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 6px; color: #f8fafc; font-size: 0.85rem; padding: 8px 12px; font-family: inherit; transition: 0.2s; outline: none; }
.crm-select:focus, .crm-input:focus, .crm-textarea:focus { border-color: #2b66f6; background: #1e1e24; box-shadow: 0 0 0 3px rgba(43, 102, 246, 0.1); }
.crm-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2394a3b8%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"); background-repeat: no-repeat; background-position: right 10px top 50%; background-size: 10px auto; }
.crm-select option { background: #1a1a20; color: #f8fafc; }
.crm-flex-input { display: flex; gap: 8px; }
.crm-btn-small { background: rgba(43, 102, 246, 0.1); color: #2b66f6; border: 1px solid rgba(43, 102, 246, 0.2); padding: 8px 14px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: 0.2s; }
.crm-btn-small:hover { background: #2b66f6; color: #fff; }
.crm-textarea { resize: vertical; min-height: 60px; margin-bottom: 8px; }
.crm-btn-block { width: 100%; background: #2b66f6; color: #fff; border: none; padding: 10px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: 0.2s; box-shadow: 0 4px 10px rgba(43, 102, 246, 0.2); }
.crm-btn-block:hover { background: #1d4ed8; }

.lead-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.lead-tags .tag { background: rgba(43, 102, 246, 0.1); color: #2b66f6; padding: 4px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 600; border: 1px solid rgba(43, 102, 246, 0.2); }

/* Real Screenshot (Flattened) */
.crm-real-screenshot {
    margin-top: 80px;
    text-align: center;
    padding: 0 40px;
}
.crm-real-screenshot img {
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    margin: 0 auto;
}

@media (max-width: 992px) { .crm-lead-panel { display: none; } }
@media (max-width: 768px) {
    .crm-chat-input { padding: 12px 15px; gap: 8px; }
    .input-fake { padding: 12px 15px; font-size: 0.85rem; }
    .crm-chat-input button { font-size: 1.2rem; }
    .crm-chat-input button.send { width: 38px; height: 38px; }
 
    .crm-sidebar { display: none; } 
    .crm-dashboard-mockup { height: 500px; border-radius: 12px; } 
    .crm-real-screenshot img { transform: none; }
    .config-body { flex-direction: column; }
    .config-sidebar { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
    .stats-grid { grid-template-columns: 1fr; }
}

/* New Agent Config & Dashboard Mockup Styles */
.agent-config-mockup, .dashboard-stats-mockup {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    color: #fff;
    margin: 0 auto;
    max-width: 900px;
}
.config-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #101014;
}
.config-header h3 { font-size: 1.1rem; font-weight: 600; display: flex; align-items: center; gap: 8px; margin: 0; }
.config-status { font-size: 0.85rem; color: #94a3b8; display: flex; align-items: center; gap: 6px; }
.status-dot { width: 8px; height: 8px; background: #25D366; border-radius: 50%; display: inline-block; box-shadow: 0 0 8px rgba(37, 211, 102, 0.6); }

.config-body { display: flex; }
.config-sidebar {
    width: 300px;
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    background: #121216;
}
.config-main {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}
.config-avatar {
    width: 100px; height: 100px;
    border-radius: 50%;
    margin: 0 auto 24px;
    position: relative;
    border: 2px solid #2b66f6;
    padding: 3px;
}
.config-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.change-avatar-btn {
    position: absolute; bottom: 0; right: 0;
    width: 32px; height: 32px;
    background: #2b66f6; color: #fff;
    border: none; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.config-group { margin-bottom: 20px; }
.config-group label { display: block; font-size: 0.8rem; font-weight: 600; color: #94a3b8; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.lang-toggles { display: flex; gap: 8px; flex-wrap: wrap; }
.lang-toggle {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem; font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8; cursor: pointer; transition: 0.2s;
}
.lang-toggle.active { background: rgba(43, 102, 246, 0.15); border-color: #2b66f6; color: #2b66f6; }
.voice-selector { display: flex; gap: 10px; }
.voice-play-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; width: 40px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.2s; }
.voice-play-btn:hover { background: #2b66f6; border-color: #2b66f6; }
.config-slider { width: 100%; accent-color: #2b66f6; cursor: pointer; }

.prompt-area { height: 180px; resize: none; font-family: 'Courier New', Courier, monospace; line-height: 1.5; font-size: 0.9rem; }
.config-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: auto; padding-top: 20px; }

/* Dashboard Stats Mockup */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 24px; }
.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: 0.2s;
}
.stat-card:hover { background: rgba(255, 255, 255, 0.04); border-color: rgba(43, 102, 246, 0.3); }
.stat-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: rgba(43, 102, 246, 0.1);
    color: #2b66f6;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.stat-info h4 { font-size: 0.85rem; color: #94a3b8; margin: 0 0 4px; font-weight: 500; }
.stat-info span { font-size: 1.8rem; font-weight: 700; color: #fff; display: block; line-height: 1; }

.full-dashboard-mockup {
    display: flex;
    max-width: 1200px;
    margin: 80px auto 0;
    height: auto;
    background: #0f111a;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.5), 0 0 0 10px rgba(56, 189, 248, 0.05);
    overflow: hidden;
}
.db-main-content {
    flex: 1;
    padding: 30px;
    background: #0b0f19;
}
.db-header-title { font-size: 1.5rem; font-weight: 600; margin: 0 0 5px; color: #fff; }
.db-header-subtitle { color: #94a3b8; font-size: 0.9rem; margin: 0 0 24px; }
.db-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.db-card {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}
.db-card-header { display: flex; justify-content: space-between; margin-bottom: 15px; }
.db-card-title { font-size: 0.75rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; }
.db-card-value { font-size: 2rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.db-card-subtext { font-size: 0.75rem; color: #94a3b8; display: flex; align-items: center; gap: 5px; }
.db-charts-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 20px; margin-bottom: 24px; }
.db-chart-title { font-size: 0.9rem; margin: 0 0 20px; font-weight: 600; color: #fff; }
.db-donut {
    width: 140px; height: 140px; border-radius: 50%;
    background: conic-gradient(#38bdf8 0% 33%, #25D366 33% 66%, #e11d48 66% 100%);
    display: flex; align-items: center; justify-content: center;
}
.db-donut-inner { width: 90px; height: 90px; background: #151515; border-radius: 50%; }
.db-tables-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
.db-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; text-align: left; }
.db-table th { padding: 10px 0; font-weight: 500; color: #94a3b8; border-bottom: 1px solid rgba(255,255,255,0.05); }
.db-table td { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: #94a3b8; }
.db-table td:first-child { color: #fff; font-weight: 500; }
.db-badge { background: rgba(16, 185, 129, 0.1); color: #10b981; padding: 4px 10px; border-radius: 20px; font-size: 0.7rem; }
@media (max-width: 992px) {
    .db-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .db-charts-grid { grid-template-columns: 1fr; }
    .db-tables-grid { grid-template-columns: 1fr; }
    .full-dashboard-mockup { height: auto; min-height: 800px; flex-direction: column; }
}

