/* Xeboki Chat - Complete Self-Contained Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-logo i {
    color: var(--text-green);
    font-size: 1.5rem;
}

.brand-name {
    color: var(--text-green);
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-badge {
    background: var(--primary);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--text-green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

/* Primary Button - Universal Style */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: 1px solid var(--primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}


.btn-outline {
    background: transparent;
    color: var(--text-green);
    border: 1px solid var(--border-green);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.dropdown-link:last-child {
    margin-bottom: 0;
}

.dropdown-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(5px);
}

.dropdown-link i {
    color: var(--text-green);
    width: 16px;
    text-align: center;
}

.dropdown-link strong {
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.dropdown-link small {
    font-size: 12px;
    color: var(--text-muted);
}

:root {
    /* Primary Green Color Palette */
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-darker: #047857;
    --primary-light: #34d399;
    --primary-lighter: #6ee7b7;
    --primary-lightest: #a7f3d0;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-green: #f0fdf4;
    --bg-green-light: #ecfdf5;
    --bg-green-lighter: #d1fae5;
    
    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #374151;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    --text-green: var(--primary);
    
    /* Border Colors */
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    --border-dark: #9ca3af;
    --border-green: var(--primary);
    
    /* Shadow */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary-darker) 100%);
    --gradient-light: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-lighter) 100%);
    --gradient-bg: linear-gradient(135deg, var(--bg-green) 0%, var(--bg-green-light) 50%, var(--bg-green-lighter) 100%);
    
    /* Progress widths as CSS variables */
    --progress-satisfaction: 95%;
    --progress-speed: 98%;
    --progress-escalation: 95%;
}

/* Progress bar width classes */
.progress-satisfaction {
    width: var(--progress-satisfaction) !important;
}

.progress-speed {
    width: var(--progress-speed) !important;
}

.progress-escalation {
    width: var(--progress-escalation) !important;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

/* Hero Section Styles */
.hero-section-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 0rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Chat Demo Styles */
.demo-chat {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
}

.chat-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.chat-info span {
    font-size: 0.875rem;
    opacity: 0.8;
}

.chat-actions {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

.chat-actions i {
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.chat-actions i:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Xeboki Chat Specific Styles */

/* Override parent CSS with green theme */
.brand-name {
    color: var(--text-green) !important;
}

.btn-outline {
    color: var(--text-green) !important;
    border-color: var(--border-green) !important;
}

.btn-outline:hover {
    background: var(--primary) !important;
    color: var(--text-white) !important;
}

/* Ensure all navigation links use green theme */
.nav-link {
    color: var(--text-secondary) !important;
}

.nav-link:hover {
    color: var(--text-green) !important;
}

/* Override any blue colors from parent CSS */

/* Force override all possible blue color references */
[style*="#2563eb"], [style*="#3b82f6"], [style*="#1e40af"] {
    color: var(--text-green) !important;
    background: var(--primary) !important;
    border-color: var(--border-green) !important;
}

/* Override parent theme variables if they exist */
:root {
    --primary-blue: var(--primary) !important;
    --text-blue: var(--text-green) !important;
}

/* Specific overrides for header elements */
.header .brand-name,
.nav-brand .brand-name {
    color: var(--text-green) !important;
    font-weight: 600 !important;
}

/* Force robot icon in brand logo */
.brand-logo i {
    color: var(--text-green) !important;
}

.brand-logo i:before {
    content: "\f544" !important; /* fa-robot unicode */
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.header .btn-outline,
.nav-actions .btn-outline {
    color: var(--text-green) !important;
    border: 1px solid var(--border-green) !important;
    background: transparent !important;
}

.header .btn-outline:hover,
.nav-actions .btn-outline:hover {
    background: var(--primary) !important;
    color: var(--text-white) !important;
    border-color: var(--primary) !important;
}

/* Sign In Dropdown Styling */
.nav-actions .nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-actions .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-actions .dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-actions .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-actions .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-actions .dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-light);
}

.nav-actions .dropdown-link:last-child {
    border-bottom: none;
}

.nav-actions .dropdown-link:hover {
    background: var(--bg-green);
    color: var(--text-green);
}

.nav-actions .dropdown-link i {
    color: var(--text-green);
    width: 16px;
    text-align: center;
}

.nav-actions .dropdown-link div {
    display: flex;
    flex-direction: column;
}

.nav-actions .dropdown-link strong {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.nav-actions .dropdown-link small {
    font-size: 12px;
    color: var(--text-muted);
}

/* Chat Brand Badge */
.brand-badge {
    background: var(--gradient-primary);
}

/* Chat Hero Customizations */
.hero-section-modern {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-content {
    max-width: 650px;
    padding-right: 1rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

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

/* Chat Preview Styling */
.chat-preview {
    perspective: 1000px;
}

.chat-window {
    width: 400px;
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.chat-window:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.chat-header {
    background: var(--gradient-primary);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    flex-shrink: 0;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chat-info {
    flex: 1;
}

.chat-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

.chat-status {
    font-size: 0.85rem;
    opacity: 0.8;
}

.chat-actions {
    display: flex;
    gap: 1rem;
}

.chat-actions i {
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.chat-actions i:hover {
    opacity: 1;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    scroll-behavior: smooth;
    background: var(--bg-secondary);
    min-height: 0;
}

/* Custom scrollbar for chat messages */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Custom scrollbar for demo messages */
.demo-messages::-webkit-scrollbar {
    width: 4px;
}

.demo-messages::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
}

.demo-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.demo-messages::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.message {
    display: flex;
    gap: 0.75rem;
}

.message.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.message-content {
    max-width: 280px;
    background: white;
    border-radius: 16px;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.user-message .message-content {
    background: var(--gradient-primary);
    color: white;
}

.message-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.25rem;
    display: block;
}

.quick-replies {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.quick-reply {
    background: #e5e7eb;
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-reply:hover {
    background: var(--primary);
    color: white;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
}

.typing-dots {
    display: flex;
    gap: 0.25rem;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: typingDots 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.typing-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.chat-input {
    padding: 1rem 1.5rem;
    background: white;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    border-top: 1px solid var(--border-light);
    flex-shrink: 0;
}

.chat-input input {
    flex: 1;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.chat-input input:focus {
    border-color: var(--border-green);
}

.chat-input button {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.chat-input button:hover {
    transform: scale(1.05);
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typingDots {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* Text Gradient for Chat */
.text-gradient {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Chat Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--text-green);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Chat Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #d1fae5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Floating Shapes for Chat Theme */
.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #34d399, #6ee7b7);
    border-radius: 50%;
    top: 30%;
    right: 20%;
    animation: float 10s ease-in-out infinite;
}

.shape-4 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #047857, #059669);
    border-radius: 50%;
    bottom: 30%;
    left: 20%;
    animation: float 7s ease-in-out infinite reverse;
}

.shape-5 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6ee7b7, #a7f3d0);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 20%;
    right: 30%;
    animation: float 9s ease-in-out infinite;
}

/* Placeholder Section */
.placeholder-section {
    padding: 6rem 2rem;
    background: var(--surface-container);
    text-align: center;
}

.placeholder-section h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.placeholder-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}


/* Demo Chat Widget - Floating Preview */
.demo-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.demo-chat-widget.active {
    transform: translateY(0);
}

.chat-widget-header {
    background: var(--gradient-primary);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-widget-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.widget-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.widget-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.chat-widget-body {
    height: calc(100% - 60px - 60px);
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    animation: messageSlide 0.3s ease;
}

.chat-message.bot {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.user {
    background: var(--gradient-primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-widget-input {
    padding: 15px 20px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-widget-input input {
    flex: 1;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.chat-widget-input input:focus {
    border-color: var(--border-green);
}

.chat-send-btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.chat-send-btn:hover {
    transform: scale(1.05);
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669, #047857);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--text-green);
    font-weight: bold;
}

/* Live Demo Section */
.demo-container {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 30px;
    padding: 50px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.demo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%2310b981" fill-opacity="0.05"><circle cx="30" cy="30" r="4"/></g></svg>') repeat;
    opacity: 0.3;
}

.demo-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.demo-preview {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.widget-preview {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.widget-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.widget-preview:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.widget-preview:hover::before {
    width: 300px;
    height: 300px;
}

/* Integration Section */
.integration-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-button {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-muted);
}

.tab-button.active,
.tab-button:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.tab-content {
    display: block;
    background: #1f2937;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.code-block {
    background: #111827;
    border-radius: 10px;
    padding: 20px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #e5e7eb;
    overflow: auto;
    max-height: 200px;
    border: 1px solid #374151;
}

.copy-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--border-green);
    color: var(--text-green);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-button:hover {
    background: var(--primary);
    color: white;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    margin: 50px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    max-width: 400px;
    justify-self: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.6s ease;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.2);
    border-color: var(--border-green);
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card.popular {
    border: 2px solid var(--border-green);
    transform: scale(1.05);
}

.popular-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-green);
    margin: 20px 0;
}

.price-period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 30px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--text-green);
    font-weight: bold;
    font-size: 16px;
}

.pricing-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.pricing-button:hover::before {
    left: 100%;
}

/* Contact Section */
.contact-container {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    border-radius: 30px;
    padding: 50px;
    margin: 50px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 50%;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.1);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.contact-cta {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
    text-align: center;
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom:4px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--border-green);
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Additional Sections Styling */
.features-section {
    padding: 3rem 0;
}

.demo-section,
.integration-section,
.pricing-section {
    padding: 1.5rem 0 3rem 0;
}

.contact-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Advanced Demo Section */
.demo-section {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #d1fae5 100%);
    overflow: hidden;
}

.demo-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.demo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, #10b981, #34d399);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.particle-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 30px;
    height: 30px;
    top: 60%;
    left: 80%;
    animation-delay: -2s;
}

.particle-3 {
    width: 15px;
    height: 15px;
    top: 30%;
    left: 70%;
    animation-delay: -4s;
}

.particle-4 {
    width: 25px;
    height: 25px;
    top: 80%;
    left: 20%;
    animation-delay: -1s;
}

.particle-5 {
    width: 18px;
    height: 18px;
    top: 10%;
    left: 50%;
    animation-delay: -3s;
}

.particle-6 {
    width: 22px;
    height: 22px;
    top: 70%;
    left: 50%;
    animation-delay: -5s;
}

.demo-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.03), transparent);
    border-radius: 50%;
    animation: wave 10s linear infinite;
}

.wave-1 {
    top: 10%;
    animation-delay: 0s;
}

.wave-2 {
    top: 50%;
    animation-delay: -3s;
}

.wave-3 {
    top: 80%;
    animation-delay: -6s;
}

@keyframes wave {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(50%);
    }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--text-green);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
}

.demo-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.demo-features-advanced {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    justify-content: space-between;
    padding: 1rem 0;
}

.demo-feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.15);
    transition: all 0.4s ease;
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-height: 160px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
}

.demo-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.18);
    border-color: rgba(16, 185, 129, 0.25);
    background: rgba(255, 255, 255, 1);
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
}

.demo-feature-card:hover .feature-glow {
    opacity: 1;
}

.demo-icon {
    position: relative;
    flex-shrink: 0;
}

.icon-background {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    position: relative;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    z-index: 2;
}

.icon-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.icon-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.7;
    animation: particle-float 3s ease-in-out infinite;
}

.icon-particle:nth-child(1) {
    top: 10px;
    left: 10px;
    animation-delay: 0s;
}

.icon-particle:nth-child(2) {
    top: 20px;
    right: 15px;
    animation-delay: -1s;
}

.icon-particle:nth-child(3) {
    bottom: 15px;
    left: 20px;
    animation-delay: -2s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.demo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.demo-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.demo-content p {
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

/* Feature Highlights - CLEAN VERSION */
.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.6rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.highlight-item i {
    color: var(--primary);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.highlight-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Feature Metrics */
.feature-metrics {
    margin-top: auto;
}

.metric-bar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(16, 185, 129, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}

.progress-bar {
    height: 8px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 3px;
    transition: width 2s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.speed-fill {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.escalation-fill {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.metric-value {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.feature-stats {
    display: none;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-green);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Interactive Demo Area */
.demo-interactive-area {
    position: relative;
}

.demo-widget-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
}

/* Remove hover animation from live demo widget */
.demo-widget-container:hover {
    transform: none;
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
}

.widget-screen {
    background: #1f2937;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.screen-header {
    background: #111827;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.screen-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-close {
    background: #ef4444;
}

.control-minimize {
    background: #f59e0b;
}

.control-maximize {
    background: var(--primary);
}

.screen-title {
    color: #e5e7eb;
    font-weight: 600;
    font-size: 0.9rem;
}

.demo-chat-interface {
    background: var(--bg-secondary);
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.chat-interface-header {
    background: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.agent-avatar {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.avatar-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--border-green);
    border-radius: 50%;
    border-top: 2px solid transparent;
    animation: spin 3s linear infinite;
}

.status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border: 2px solid white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.agent-info {
    flex: 1;
}

.agent-info h5 {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
}

.agent-status {
    font-size: 0.875rem;
    color: var(--text-green);
    font-weight: 500;
}

.chat-metrics {
    background: var(--bg-green);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    position: relative;
    z-index: 1;
}

.metric-value {
    display: block;
    font-weight: 700;
    color: var(--text-green);
    font-size: 1.1rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.demo-messages {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    scroll-behavior: smooth;
    min-height: 600px;
    max-height: 600px;
}

.demo-message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.demo-message.user {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    font-weight: 500;
}

.demo-message.bot .message-avatar {
    background: var(--gradient-primary);
    color: white;
}

.demo-message.bot .message-avatar::before {
    content: "AI";
    font-size: 0.7rem;
    font-weight: 600;
}

.demo-message.bot .message-avatar i {
    display: none;
}

.demo-message.user .message-avatar {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
}

.demo-message.user .message-avatar::before {
    content: "U";
    font-size: 0.8rem;
    font-weight: 600;
}

.message-bubble {
    background: white;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    max-width: 70%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
}

.message-bubble p {
    margin: 0 0 1rem 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

.message-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quick-action {
    background: var(--bg-green);
    color: var(--text-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-action:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
}

.typing-indicator-demo {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    opacity: 0.7;
}

.typing-indicator-demo.user {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.typing-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
}

.typing-avatar::before {
    content: "U";
}

.typing-bubble {
    background: white;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
}

.typing-dots {
    display: flex;
    gap: 0.25rem;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: typingDots 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.demo-input-area {
    padding: 1.25rem;
    background: white;
    border-top: 1px solid var(--border-light);
}

.input-container {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.demo-input {
    flex: 1;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.demo-input:focus {
    border-color: var(--border-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.send-button {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.send-button:hover {
    transform: scale(1.05);
}

.input-suggestions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.suggestion {
    background: var(--bg-green);
    color: var(--text-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggestion:hover {
    background: var(--primary);
    color: white;
}

/* CTA Area */
.demo-cta-area {
    text-align: center;
}

.demo-main-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.demo-main-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.demo-main-cta:hover::before {
    left: 100%;
}

.demo-main-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.cta-text {
    text-align: left;
}

.cta-title {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.cta-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
}

.cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.demo-main-cta:hover .cta-arrow {
    transform: translateX(5px);
}

.demo-stats-mini {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.mini-stat i {
    color: var(--text-green);
}

/* Integration Section */
.tab-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-muted);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Clean Light Integration Showcase */
.integration-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.integration-steps {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.3);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e2e8f0, #cbd5e1);
    transition: all 0.5s ease;
}

.step-card.active::before {
    background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.step-card.active .step-number {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.step-content p {
    color: #64748b;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.path-options {
    display: flex;
    gap: 1rem;
}

.path-option {
    flex: 1;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.8);
    border: 2px solid rgba(226, 232, 240, 0.5);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.path-option:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
    transform: translateY(-2px);
}

.path-option.active {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.path-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.path-option span {
    font-weight: 600;
    color: #374151;
}

.code-container {
    position: relative;
    margin-top: 1rem;
}

.code-quick, .code-enterprise {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.code-quick.active, .code-enterprise.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(30, 41, 59, 0.8);
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.code-type {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.copy-btn {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #10b981;
    color: white;
}

.code-container pre {
    margin: 0;
    padding: 1.25rem;
    background: #1e293b;
    color: #e2e8f0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    overflow: auto;
    max-height: 200px;
}

.success-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 8px;
    border-left: 3px solid #10b981;
}

.feature i {
    color: #10b981;
    font-size: 1rem;
}

.feature span {
    font-weight: 500;
    color: #374151;
}

/* Contact Form Styles */
.contact-form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    width: 100%;
    flex-shrink: 0;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.contact-form-container p {
    color: #64748b;
    text-align: center;
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.625rem 0.875rem;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit {
    margin-top: 0.5rem;
    width: 100%;
}

.form-status {
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    margin-top: 0.5rem;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid transparent;
}

.form-status.show {
    opacity: 1;
    visibility: visible;
}

.form-status.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Responsive form styles */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Section Separator */
.section-separator {
    padding: 1rem 0 3rem 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.5), rgba(241, 245, 249, 0.8));
    position: relative;
    overflow: hidden;
}

.section-separator::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 60 60"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(16,185,129,0.1)"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.separator-line {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator-line::before {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.6), rgba(16, 185, 129, 0.3), transparent);
    margin-right: 2rem;
}

.separator-line::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.6), rgba(16, 185, 129, 0.3), transparent);
    margin-left: 2rem;
}

.separator-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(16, 185, 129, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

.separator-icon i {
    font-size: 1.75rem;
    color: #10b981;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.5));
    }
}

/* Responsive Separator */
@media (max-width: 768px) {
    .section-separator {
        padding: 0.5rem 0 2rem 0;
    }
    
    .separator-icon {
        width: 60px;
        height: 60px;
    }
    
    .separator-icon i {
        font-size: 1.5rem;
    }
    
    .separator-line::before,
    .separator-line::after {
        margin: 0 1rem;
    }
}

/* Footer Styles */
.footer {
    background: #1e293b;
    color: white;
    position: relative;
}

.footer-content {
    padding: 2rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.footer-brand-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
}

.footer-brand-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #94a3b8;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social .social-link:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #10b981;
}

.newsletter-text {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: #64748b;
}

.newsletter-input:focus {
    outline: none;
    border-color: #10b981;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.newsletter-btn {
    padding: 0.75rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.8rem;
    color: #94a3b8;
    backdrop-filter: blur(10px);
}

.badge i {
    color: #10b981;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #10b981;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        padding: 3rem 0 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

.integration-content {
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.integration-panel {
    display: none;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.integration-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: floatIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9) rotateX(10deg);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px) scale(1.02) rotateX(-2deg);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0px);
    }
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    perspective: 1000px;
}

.feature-showcase {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25), 
        rgba(255, 255, 255, 0.1));
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(40px);
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.1),
        0 2px 8px rgba(31, 38, 135, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    height: fit-content;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(16, 185, 129, 0.6), 
        transparent);
    transition: all 0.4s ease;
}

.feature-showcase:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(31, 38, 135, 0.15),
        0 8px 16px rgba(31, 38, 135, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.feature-showcase:hover::before {
    background: linear-gradient(90deg, 
        transparent, 
        rgba(16, 185, 129, 0.8), 
        rgba(34, 197, 94, 0.6),
        transparent);
}

.showcase-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.showcase-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 14px;
    margin-bottom: 0.875rem;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
}

.showcase-icon i {
    font-size: 1.25rem;
    color: white;
}

.showcase-header h3 {
    margin: 0 0 0.375rem 0;
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 600;
}

.showcase-header p {
    margin: 0;
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #334155;
    font-size: 0.875rem;
}

.feature-item i {
    color: #10b981;
    font-size: 0.9rem;
}

.code-showcase {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25), 
        rgba(255, 255, 255, 0.1));
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.1),
        0 2px 8px rgba(31, 38, 135, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(40px);
    height: fit-content;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.code-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(16, 185, 129, 0.6), 
        transparent);
    transition: all 0.4s ease;
}

.code-showcase:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(31, 38, 135, 0.15),
        0 8px 16px rgba(31, 38, 135, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.code-showcase:hover::before {
    background: linear-gradient(90deg, 
        transparent, 
        rgba(16, 185, 129, 0.8), 
        rgba(34, 197, 94, 0.6),
        transparent);
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(248, 250, 252, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.code-badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.code-title {
    color: #1e293b;
    font-weight: 500;
    font-size: 0.875rem;
}

.copy-button {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.4375rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.copy-button:hover {
    background: #10b981;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.2);
}

.code-content {
    padding: 0;
}

.code-content pre {
    margin: 0;
    padding: 1.25rem;
    background: #f8fafc;
    color: #334155;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 12px;
    line-height: 1.6;
    overflow-x: auto;
    border: none;
}

.use-cases-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.use-case-card:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
}

.use-case-icon {
    font-size: 2.25rem;
    margin-bottom: 0.625rem;
    display: block;
}

.use-case-card h4 {
    margin: 0 0 0.375rem 0;
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
}

.use-case-card p {
    margin: 0 0 0.875rem 0;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.5;
}

.use-case-stats {
    padding: 0.3125rem 0.625rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    color: #10b981;
    font-size: 0.6875rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .integration-nav {
        flex-direction: column;
        gap: 0.375rem;
        padding: 0.75rem;
    }
    
    .integration-tab {
        justify-content: center;
        padding: 0.75rem 0.875rem;
    }
    
    .panel-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .use-cases-showcase {
        grid-template-columns: 1fr;
    }
    
    .feature-showcase,
    .code-showcase {
        padding: 1.25rem;
    }
}

.code-example {
    background: #1f2937;
    border-radius: 15px;
    overflow: hidden;
}

.code-header {
    background: #111827;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #374151;
}

.code-title {
    color: #e5e7eb;
    font-weight: 600;
}

.copy-btn {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--border-green);
    color: var(--text-green);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    background: var(--primary);
    color: white;
}

.code-example pre {
    margin: 0;
    padding: 1.5rem;
    background: #111827;
    color: #e5e7eb;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    overflow-x: auto;
}

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

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

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15);
}

.example-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.code-snippet {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

/* Pricing Section */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #10b981;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.discount {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.pricing-card.featured {
    border: 2px solid var(--border-green);
    transform: scale(1.05);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.features-list .fas {
    color: var(--text-green);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-features {
    margin: 2rem 0;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.contact-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.1);
}

.contact-feature i {
    color: var(--text-green);
    font-size: 1.2rem;
}

.form {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .8rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--border-green);
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile Responsive for Chat */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .chat-window {
        width: 350px;
        height: 500px;
        transform: none;
    }
    
    .chat-window:hover {
        transform: scale(1.02);
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .demo-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-features-advanced {
        order: 2;
    }
    
    .demo-interactive-area {
        order: 1;
    }
    
    .feature-stats {
        gap: 1rem;
    }
    
    .widget-screen {
        margin-bottom: 1.5rem;
    }
    
    .demo-chat-interface {
        min-height: 300px;
    }
    
    .demo-stats-mini {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-section {
        padding: 2rem 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tab-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .demo-container,
    .contact-container {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .demo-chat-widget {
        width: 300px;
        height: 450px;
        right: 10px;
        bottom: 10px;
    }
    
    .price {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .chat-window {
        width: 300px;
        height: 450px;
    }
    
    .feature-card,
    .pricing-card {
        padding: 25px 20px;
    }
    
    .contact-cta {
        padding: 25px 20px;
    }
    
    .demo-chat-widget {
        width: calc(100vw - 20px);
        height: 400px;
        right: 10px;
        left: 10px;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* === COPIED FROM PARENT CSS FOR HERO SECTION === */

.hero-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    animation: fadeInUp 0.8s ease 0s both;
}

.hero-badge i {
    color: #fbbf24 !important;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0s both;
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(45deg, #34d399, #fbbf24, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.2s both;
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0 3rem 0;
    animation: fadeInUp 1s ease 0.4s both;
    justify-content: flex-start;
    align-items: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === FIX DROPDOWN HOVER FUNCTIONALITY === */
.nav-dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* === MISSING HERO ACTIONS AND BUTTONS === */
.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* === MISSING LAYOUT CLASSES === */
body {
    padding-top: 80px !important; /* Account for fixed header */
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}


/* === FIX DROPDOWN HOVER FUNCTIONALITY === */
.nav-dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* === MISSING HERO ACTIONS AND BUTTONS === */
.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* === MISSING LAYOUT CLASSES === */
body {
    padding-top: 80px !important;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Override dropdown hover to ensure green gradient */
.dropdown-link:hover {
    background: var(--gradient-primary) !important;
    color: white !important;
    transform: translateX(5px);
}

/* Make sure icons have consistent styling */
.dropdown-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    color: var(--primary);
    transition: color 0.3s ease;
}

.dropdown-link:hover i {
    color: white !important;
}


/* Fix dropdown sub-label colors on hover */
.dropdown-link:hover small {
    color: white !important;
    opacity: 0.9;
}

.dropdown-link:hover div {
    color: white !important;
}

.dropdown-link:hover strong {
    color: white !important;
}


/* === DECORATIVE BACKGROUND CIRCLES === */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: floatSlow 15s infinite ease-in-out;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: -7s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 25%;
    animation-delay: -3s;
}

.circle-4 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    right: 40%;
    animation-delay: -10s;
}

@keyframes floatSlow {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-20px) scale(1.05); 
    }
}

/* Hero background container */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* === FIX CIRCLE POSITIONING === */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: floatSlow 15s infinite ease-in-out;
    z-index: 1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: -30px;
    animation-delay: -7s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
    animation-delay: -3s;
}

.circle-4 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 50%;
    animation-delay: -10s;
}

.circle-5 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 30%;
    animation-delay: -5s;
}

/* Make sure hero section has proper overflow */
.hero-section-modern {
    position: relative;
    overflow: hidden !important;
}

.hero-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 1 !important;
}
/* === FRESH HERO SECTION - REWRITTEN FROM SCRATCH === */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 50px 0 25px 0;
}

/* Animated Background Shapes */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatAnimation 20s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -100px;
    animation-delay: 0s;
    background: rgba(255, 255, 255, 0.08);
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -80px;
    animation-delay: -8s;
    background: rgba(255, 255, 255, 0.06);
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 15%;
    animation-delay: -4s;
    background: rgba(255, 255, 255, 0.07);
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 20%;
    animation-delay: -12s;
    background: rgba(255, 255, 255, 0.05);
}

.shape-5 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 40%;
    animation-delay: -6s;
    background: rgba(255, 255, 255, 0.06);
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.5;
    }
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.hero-left {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 0.8s ease 0.2s both;
}

.hero-badge i {
    color: #fbbf24;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: slideInUp 0.8s ease 0.4s both;
}

.gradient-text {
    color: #00ff88;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    animation: slideInUp 0.8s ease 0.6s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    animation: slideInUp 0.8s ease 0.8s both;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    animation: slideInUp 0.8s ease 1s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Right Demo */
.hero-right {
    position: relative;
    z-index: 2;
}

.chat-demo {
    animation: slideInRight 0.8s ease 0.6s both;
    transform-origin: bottom right;
    transition: transform 0.6s ease;
}

.chat-demo:hover {
    transform: perspective(1500px) rotateX(-3deg) rotateY(1deg) translateY(-2px);
}


.chat-window {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    transform-origin: bottom right;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.chat-window:hover {
    transform: perspective(1500px) rotateX(-3.5deg) rotateY(1.2deg) translateY(-3px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.chat-header {
    background: var(--gradient-primary);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.chat-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.user-info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
}

.user-info span {
    font-size: 12px;
    opacity: 0.8;
}

.chat-controls {
    display: flex;
    gap: 15px;
}

.chat-controls i {
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.chat-controls i:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    height: 300px;
    padding: 20px;
    background: #f8fafc;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Hero Chat message styles - matching Live Demo */
.message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 15px;
    animation: messageSlideIn 0.3s ease-out;
}

.message.bot-message {
    align-self: flex-start;
    flex-direction: row;
}

.message.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
}

.bot-message .message-avatar {
    background: var(--gradient-primary);
    color: white;
}

.bot-message .message-avatar::before {
    content: "AI";
    font-size: 0.7rem;
    font-weight: 600;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
}

.user-message .message-avatar::before {
    content: "U";
    font-size: 0.8rem;
    font-weight: 600;
}

.message-content {
    background: white;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    max-width: 70%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.bot-message .message-content {
    background: white;
    color: var(--text-secondary);
}

.user-message .message-content {
    background: var(--primary);
    color: white;
}

.message-content p {
    margin: 0 0 1rem 0;
    line-height: 1.5;
    font-size: 14px;
}

.bot-message .message-content p {
    color: var(--text-secondary);
}

.user-message .message-content p {
    color: white;
}

.message-time {
    font-size: 11px;
    opacity: 0.6;
    margin-top: 4px;
    display: block;
}

.bot-message .message-time {
    color: var(--text-secondary);
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.8);
}

/* Typing indicator - matching Live Demo */
.typing-indicator {
    display: flex;
    gap: 0.75rem;
    align-self: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.typing-indicator .message-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.typing-indicator .message-avatar::before {
    content: "AI";
    font-size: 0.7rem;
    font-weight: 600;
}

.typing-bubble {
    background: white;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 4px;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: #9ca3af;
    border-radius: 50%;
    animation: typingDots 1.5s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDots {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    30% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-quick-actions {
    padding: 15px 20px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.chat-input {
    padding: 20px;
    background: white;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    outline: none;
    font-size: 14px;
}

.chat-input button {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-input button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Integration Section Enhancements */
.integration-features {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
}

.feature-tag i {
    font-size: 0.9rem;
}

.config-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.highlight-section h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.highlight-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-section li {
    padding: 0.25rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1rem;
}

.highlight-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

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

.example-header i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: 6px;
    font-size: 0.9rem;
}

.example-header h4 {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.example-tag {
    padding: 0.25rem 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.integration-steps {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.integration-steps h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.integration-steps h4 i {
    color: var(--primary);
}

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

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.step h5 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive enhancements for integration section */
@media (max-width: 768px) {
    .integration-features {
        justify-content: center;
    }
    
    .config-highlights {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .floating-shape {
        opacity: 0.3;
    }
}

