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

/* Light mode variables */
:root {
    --primary-color: #3B82F6;
    --primary-dark: #2563EB;
    --primary-light: #60A5FA;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #075E54;
    --secondary-color: #10B981;
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-light: #9ca3af;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-dark: #111827;
    --border-color: #334155;
    --success-color: #10b981;
    --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    --gradient-whatsapp: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    --gradient-secondary: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.4);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6), 0 8px 10px -6px rgb(0 0 0 / 0.5);
}

/* Light mode */
[data-theme="light"] {
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Dark mode (default) */
[data-theme="dark"], :root {
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-light: #9ca3af;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --border-color: #334155;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.4);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6), 0 8px 10px -6px rgb(0 0 0 / 0.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.95);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-subtitle {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-btn {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.nav-btn:hover {
    background: var(--bg-primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Floating Mobile App Install Button */
.floating-install-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.install-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.install-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.fab-text {
    color: white;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* Mobile Navigation Menu */
.nav-menu.mobile-active {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 80px 20px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.nav-menu.mobile-active.show {
    transform: translateX(0);
}

/* Mobile Menu Items */
.nav-menu.mobile-active .nav-link,
.nav-menu.mobile-active .nav-btn,
.nav-menu.mobile-active .nav-cta {
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    margin: 0;
    font-size: 1rem;
}

.nav-menu.mobile-active .nav-dropdown {
    width: 100%;
}

.nav-menu.mobile-active .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-menu.mobile-active .dropdown-menu {
    position: static;
    display: none;
    background: var(--bg-secondary);
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-menu.mobile-active .dropdown-menu.show {
    display: block;
}

.nav-menu.mobile-active .dropdown-item {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    display: block;
    width: 100%;
}

.nav-menu.mobile-active .theme-toggle {
    margin: 20px 0;
    align-self: flex-start;
}

.nav-menu.mobile-active .nav-cta {
    margin-top: 20px;
    text-align: center;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .floating-install-btn {
        bottom: 15px;
        right: 15px;
    }
    
    .install-fab {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

.login-btn:hover {
    border-color: var(--primary-color);
}

.mobile-btn:hover {
    border-color: #10B981;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

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

[data-theme="light"] .dropdown-menu {
    background: white;
}

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

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="light"] .dropdown-item:hover {
    background: var(--bg-light);
}

.dropdown-item.current-page {
    background: var(--primary-color);
    color: white;
    font-weight: 500;
}

.dropdown-item.current-page:hover {
    background: var(--primary-dark);
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.theme-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Animated 3D Gradient Background */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(37, 211, 102, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}

/* Floating Orbs / 3D Spheres */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.05));
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

[data-theme="light"] .hero {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

[data-theme="light"] .hero::before {
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(37, 211, 102, 0.05) 0%, transparent 50%);
}

/* Grid Overlay for Futuristic Look */
.hero .hero-container::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 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%236366f1;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%236366f1;stop-opacity:0" /></radialGradient></defs><circle cx="500" cy="500" r="500" fill="url(%23b)" /></svg>');
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

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

/* Gradient Shift Animation for Hero Background */
@keyframes gradientShift {
    0%, 100% {
        transform: translate(0%, 0%) rotate(0deg);
    }
    33% {
        transform: translate(5%, -5%) rotate(2deg);
    }
    66% {
        transform: translate(-5%, 5%) rotate(-2deg);
    }
}

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

/* Particles Canvas */
.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

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

/* Homepage specific centered hero */
.hero-container.homepage-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    grid-template-columns: none;
    gap: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1ebe5d 0%, #0e7a6e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}
.btn-whatsapp.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ── Meta Business Partner Hero Badge ── */
[data-theme="dark"]  .meta-badge-light { display: none; }
[data-theme="light"] .meta-badge-dark  { display: none; }

.meta-partner-hero {
    display: flex;
    margin-bottom: 2rem;
}

.meta-partner-hero-inner {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.1rem 2rem 1.1rem 1.75rem;
    border-radius: 20px;
    background: var(--card-bg);
    animation: meta-glow 3.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

/* Subtle shimmer overlay */
.meta-partner-hero-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(24, 119, 242, 0.06) 0%,
        rgba(168, 85, 247, 0.04) 100%);
    border-radius: inherit;
    pointer-events: none;
}

@keyframes meta-glow {
    0%, 100% {
        box-shadow:
            0 0 0 1.5px rgba(24, 119, 242, 0.55),
            0 0 20px rgba(24, 119, 242, 0.12),
            0 6px 24px rgba(0, 0, 0, 0.18);
    }
    50% {
        box-shadow:
            0 0 0 2px rgba(168, 85, 247, 0.7),
            0 0 36px rgba(24, 119, 242, 0.22),
            0 0 72px rgba(168, 85, 247, 0.12),
            0 6px 24px rgba(0, 0, 0, 0.18);
    }
}

.meta-hero-logo {
    height: 88px;
    width: auto;
    object-fit: contain;
    display: block;
    position: relative;
}

.meta-partner-sep {
    width: 1px;
    height: 52px;
    background: var(--border-color);
    opacity: 0.45;
    flex-shrink: 0;
}

.meta-partner-id-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
}

.meta-partner-id-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1877F2;
}

.meta-partner-id {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, #1877F2 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Phone Mockup */
.phone-mockup {
    width: 380px;
    height: 650px;
    background: #1f2937;
    border-radius: 30px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

/* Stop phone animation on homepage only */
body[data-page="homepage"] .phone-mockup {
    animation: none;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #374151;
    border-radius: 3px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ECE5DD;
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.whatsapp-header {
    background: #128C7E;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    border-radius: 20px 20px 0 0;
}

.contact-avatar {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.contact-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.contact-info p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
    color: white;
}

.chat-title {
    background: rgba(255, 255, 255, 0.15);
    color: black;
    text-align: center;
    padding: 8px;
    font-size: 11px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-container {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    animation: slideIn 0.5s ease-out;
    position: relative;
    margin-bottom: 5px;
}

.chat-bubble::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 2px;
    color: #666;
}

.chat-bubble.bot {
    background: white;
    color: #333;
    align-self: flex-start;
    border-radius: 18px 18px 18px 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.chat-bubble.bot::before {
    bottom: 0;
    left: -8px;
    border-style: solid;
    border-width: 0 8px 10px 0;
    border-color: transparent white transparent transparent;
}

.chat-bubble.user {
    background: #DCF8C6;
    color: #333;
    align-self: flex-end;
    border-radius: 18px 18px 4px 18px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.chat-bubble.user::before {
    bottom: 0;
    right: -8px;
    border-style: solid;
    border-width: 0 0 10px 8px;
    border-color: transparent transparent #DCF8C6 transparent;
}

/* Quali-Bot Demo Section - 2026 Futuristic AI Design */
.qualibot-demo {
    padding: 60px 0;
    background: linear-gradient(135deg,
        rgba(37, 211, 102, 0.03) 0%,
        var(--bg-secondary) 50%,
        rgba(99, 102, 241, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.qualibot-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(37, 211, 102, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

[data-theme="light"] .qualibot-demo {
    background: linear-gradient(135deg,
        rgba(37, 211, 102, 0.05) 0%,
        #fafafa 50%,
        rgba(99, 102, 241, 0.05) 100%);
}

.qualibot-header-modern {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.ai-badge {
    display: inline-block;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    }
}

.qualibot-header-modern h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qualibot-header-modern p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 0 0;
}

.qualibot-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qualibot-main-avatar {
    width: 322px;
    height: 322px;
    border-radius: 50%;
    box-shadow: 0 0 100px 30px rgba(37, 211, 102, 0.3),
                0 0 200px 60px rgba(37, 211, 102, 0.15);
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    margin-bottom: -80px;
}

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

.qualibot-capabilities {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 2;
    perspective: 1000px;
    min-height: 350px;
    margin-top: 0;
}

.capability-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    width: 280px;
    min-height: 300px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.capability-card {
    opacity: 0;
    pointer-events: none;
}

.capability-card.active {
    z-index: 5;
    transform: translateX(0) rotate(0deg) scale(1.05);
    opacity: 1;
    pointer-events: auto;
    border-color: #25D366;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.capability-card.prev {
    z-index: 3;
    transform: translateX(-250px) rotate(-10deg) scale(0.9);
    opacity: 0.4;
}

.capability-card.next {
    z-index: 3;
    transform: translateX(250px) rotate(10deg) scale(0.9);
    opacity: 0.4;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.capability-card.active .card-glow {
    opacity: 0.8;
}

.card-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #25D366;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
    transform: scale(1.3);
}

.indicator:hover {
    background: #25D366;
    opacity: 0.7;
}

[data-theme="light"] .capability-card {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .capability-card:hover {
    box-shadow: 0 30px 60px rgba(37, 211, 102, 0.2);
}

.capability-icon-wrapper {
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bot-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
    transition: all 0.4s ease;
}

.capability-card:hover .bot-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.6);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(99, 102, 241, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
}

.capability-card:hover .icon-circle {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(99, 102, 241, 0.2));
    border-color: #25D366;
    transform: rotate(10deg) scale(1.1);
}

.capability-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.capability-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #25D366, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.capability-card:hover .card-accent {
    opacity: 1;
}

/* AI Analyzer Window */
.ai-analyzer-window {
    background: var(--bg-secondary);
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    max-width: 500px;
    overflow: hidden;
}

[data-theme="light"] .ai-analyzer-window {
    background: white;
}

.window-header {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

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

.window-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.window-btn.close {
    background: #ff5f56;
}

.window-btn.minimize {
    background: #ffbd2e;
}

.window-btn.maximize {
    background: #27ca3f;
}

.window-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    flex: 1;
    text-align: center;
    margin: 0 1rem;
}

.loading-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.loading-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #60A5FA;
    animation: loadingPulse 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes loadingPulse {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.loading-text {
    color: #d1d5db;
    font-size: 0.75rem;
}

.analyzer-content {
    padding: 1.5rem;
    display: grid;
    gap: 1.5rem;
}

.processing-queue h4 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.call-queue {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.call-item {
    background: var(--bg-primary);
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

[data-theme="light"] .call-item {
    background: #f8faff;
}

.call-item.processing {
    border-color: #10B981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.call-name {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
    display: block;
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #10B981, #60A5FA);
    border-radius: 2px;
    transition: width 0.5s ease;
    animation: progressShimmer 2s infinite;
}

@keyframes progressShimmer {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

.result-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric-card {
    background: var(--bg-primary);
    padding: 0.8rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .metric-card {
    background: #f8faff;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.metric-value {
    font-weight: 700;
    font-size: 1.2rem;
}

.metric-value.positive {
    color: #10B981;
}

.metric-value.excellent {
    color: #3B82F6;
}

.ai-insights {
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .ai-insights {
    background: #f8faff;
}

.ai-insights h4 {
    margin: 0 0 0.8rem 0;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.ai-insights ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ai-insights li {
    padding: 0.3rem 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.pbx-integration {
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    text-align: center;
}

[data-theme="light"] .pbx-integration {
    background: #f8faff;
}

.pbx-integration h4 {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.pbx-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.pbx-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.pbx-logo:hover {
    opacity: 1;
}

/* Video Demo Section */
.video-demo {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

[data-theme="light"] .video-demo {
    background: linear-gradient(135deg, #f9fafb 0%, #f0f9ff 100%);
}

.video-container {
    position: relative;
    text-align: center;
}

.demo-video {
    width: 100%;
    max-width: 500px;
    height: 280px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--primary-color);
}

.video-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

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

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

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

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

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

.feature-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .feature-card {
    background: white;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

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

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

/* Featured Feature Cards */
.feature-card.featured-card {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    transform: scale(1.02);
}

[data-theme="light"] .feature-card.featured-card {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--bg-secondary);
}

/* Pricing Toggle Styles */
.pricing-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
}

.pricing-toggle-wrapper {
    position: relative;
    display: inline-flex;
    background: rgba(71, 85, 105, 0.3);
    border-radius: 50px;
    padding: 4px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .pricing-toggle-wrapper {
    background: #e5e7eb;
}

.pricing-toggle-wrapper input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-option {
    position: relative;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    border-radius: 50px;
    white-space: nowrap;
}

.toggle-option:hover {
    color: var(--text-primary);
}

.pricing-toggle-wrapper input[type="radio"]:checked + .toggle-option {
    color: white;
}

.save-badge-external {
    display: inline-block;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

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

.toggle-slider-bg {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    background: var(--gradient-primary);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

/* Calculate width and position based on checked state */
.pricing-toggle-wrapper input[name="pricing"]:nth-of-type(1):checked ~ .toggle-slider-bg {
    width: calc(50% - 4px);
    transform: translateX(0);
}

.pricing-toggle-wrapper input[name="pricing"]:nth-of-type(2):checked ~ .toggle-slider-bg {
    width: calc(50% - 4px);
    transform: translateX(100%);
}

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

.pricing-card {
    background: rgba(51, 65, 85, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.unavailable-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
    border-radius: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.unavailable-message {
    text-align: center;
    padding: 2rem;
}

.unavailable-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.unavailable-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.4;
}

[data-theme="light"] .pricing-card {
    background: white;
    border: 1px solid var(--border-color);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.enterprise {
    border-color: var(--success-color);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

[data-theme="light"] .pricing-card.enterprise {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

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

.enterprise-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--primary-color);
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.5rem;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

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

.pricing-cta {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-note {
    text-align: center;
    color: var(--text-secondary);
}

.pricing-note a {
    color: var(--primary-color);
    text-decoration: none;
}

.payment-methods {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .payment-methods {
    background: white;
    border: none;
}

.payment-methods p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.payment-method {
    background: var(--bg-secondary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-logo {
    height: 25px;
    width: auto;
    object-fit: contain;
}

.payment-logo-direct {
    height: 38px;
    width: auto;
    object-fit: contain;
    margin: 0 0.5rem;
}

/* Credit Info Button */
.credit-info-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.credit-info-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-secondary);
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease-out;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .modal-content {
    background-color: white;
    border: none;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 2rem;
}

.credit-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.credit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.credit-item:hover {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
}

[data-theme="light"] .credit-item:hover {
    background: white;
}

.credit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.credit-details strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.credit-details p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.credit-example {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.credit-example h4 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.credit-example p {
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta .btn-secondary {
    border-color: white;
    color: white;
}

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

/* Captcha Styling */
.captcha-group {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.captcha-group label {
    color: var(--primary-color);
    font-weight: 600;
}

#mathQuestion {
    font-weight: bold;
    color: var(--primary-color);
}

/* Honeypot - completely hidden */
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Contact Form Modals */
.success-modal .modal-content {
    border-left: 4px solid var(--success-color);
}

.error-modal .modal-content {
    border-left: 4px solid #ef4444;
}

.success-content, .error-content {
    text-align: center;
    padding: 1rem 0;
}

.success-icon, .error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-actions, .error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.success-actions button,
.success-actions a,
.error-actions button,
.error-actions a {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.success-actions .btn-primary,
.error-actions .btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.success-actions .btn-secondary,
.error-actions .btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.success-actions button:hover,
.success-actions a:hover,
.error-actions button:hover,
.error-actions a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: var(--text-light);
}

.footer-ownership {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.8;
}

.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.social-media-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-light);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-media-icons a:hover {
    color: white;
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }

    .meta-partner-hero {
        justify-content: center;
    }

    .meta-partner-hero-inner {
        flex-direction: row;
        align-items: center;
        padding: 0.6rem 1rem;
        gap: 0.75rem;
        max-width: calc(100vw - 3rem);
        box-sizing: border-box;
    }

    .meta-hero-logo {
        height: 38px;
        max-width: 150px;
        flex-shrink: 0;
    }

    .meta-partner-sep {
        display: none;
    }

    .meta-partner-id-label {
        font-size: 0.55rem;
    }

    .meta-partner-id {
        font-size: 0.8rem;
    }
    
    .phone-mockup {
        width: 320px;
        height: 550px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .qualibot-stage {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .qualibot-capabilities {
        min-height: 400px;
        position: relative;
        margin-top: 2rem;
    }

    .capability-card {
        width: 85% !important;
        max-width: 320px;
        min-height: 320px;
        padding: 2rem 1.5rem !important;
        left: 50%;
        margin-left: -42.5%;
    }

    .capability-card.active {
        transform: translateX(0) scale(1) !important;
        position: relative;
        left: 0;
        margin-left: 0;
    }

    .capability-card.prev,
    .capability-card.next {
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateX(0) scale(0.9) !important;
    }

    .qualibot-header-modern h2 {
        font-size: 1.5rem;
    }

    .qualibot-main-avatar {
        width: 200px;
        height: 200px;
        margin-bottom: 0;
        box-shadow: 0 0 60px 20px rgba(37, 211, 102, 0.3),
                    0 0 120px 40px rgba(37, 211, 102, 0.15);
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 280px;
        height: 480px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* PBX Systems Section - Compact */
.pbx-systems-compact {
    padding: 30px 0 3px 0;
    background: var(--bg-primary);
}

.pbx-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

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

.pbx-logo-tiny {
    width: 50px;
    height: 50px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.pbx-logo-tiny:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .pbx-compact {
        gap: 15px;
    }
    
    .pbx-logo-tiny {
        width: 40px;
        height: 40px;
    }
    
    .pbx-text {
        font-size: 0.8rem;
    }
}

/* About Us Page Styles */
.about-hero {
    padding: 120px 0 80px 0;
    background: var(--bg-primary);
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.about-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-content {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.highlight-box {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.highlight-box h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.cta-box {
    background: var(--gradient-primary);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 3rem 0;
    color: white;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-box p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-buttons .btn-primary,
.about-buttons .btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.about-buttons .btn-primary:hover,
.about-buttons .btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-card,
.services-card,
.values-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.company-card h3,
.services-card h3,
.values-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.info-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.info-value {
    color: var(--text-primary);
    font-weight: 600;
}

.services-list,
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li,
.values-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.services-list li:last-child,
.values-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-buttons {
        flex-direction: column;
    }
    
    .highlight-box,
    .cta-box {
        padding: 1.5rem;
    }
    
    .company-card,
    .services-card,
    .values-card {
        padding: 1.5rem;
    }
}

/* Policy Pages Styles */
.policy-hero {
    padding: 120px 0 80px 0;
    background: var(--bg-primary);
    text-align: center;
}

.policy-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.policy-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.policy-meta {
    display: inline-block;
    background: var(--bg-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.policy-content {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
}

.policy-intro p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.policy-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

.policy-sections {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.policy-section {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.policy-section.highlight {
    border-color: #f59e0b;
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.policy-section h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.policy-section.highlight h2 {
    border-bottom-color: #f59e0b;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.email-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-section {
    border: 2px solid var(--primary-color);
}

.contact-box {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    color: white;
}

.contact-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-box p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-buttons .btn-primary,
.contact-buttons .btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-buttons .btn-primary:hover,
.contact-buttons .btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.policy-footer {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.policy-notice,
.policy-navigation {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.policy-notice h3,
.policy-navigation h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.policy-notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-notice li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-notice li:last-child {
    border-bottom: none;
}

.policy-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.policy-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.policy-link:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .policy-title {
        font-size: 2.5rem;
    }
    
    .policy-subtitle {
        font-size: 1.1rem;
    }
    
    .policy-section {
        padding: 2rem;
    }
    
    .policy-intro {
        padding: 1.5rem;
    }
    
    .contact-box {
        padding: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .policy-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .policy-notice,
    .policy-navigation {
        padding: 1.5rem;
    }
}

/* Additional Terms & Conditions Styles */
.terms-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.terms-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.terms-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.terms-list li:last-child {
    border-bottom: none;
}

.policy-section.warning {
    border-color: #ef4444;
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(239, 68, 68, 0.05) 100%);
}

.policy-section.warning h2 {
    border-bottom-color: #ef4444;
    color: #ef4444;
}

.disclaimer-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.disclaimer-box p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.contact-info-box {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.contact-details h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-details p {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.phone-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .terms-list li {
        padding-left: 1.2rem;
        font-size: 0.9rem;
    }
    
    .disclaimer-box {
        padding: 1rem;
    }
    
    .contact-info-box {
        padding: 1.5rem;
    }
}

/* Additional Privacy Policy Styles */
.policy-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.policy-section h3:first-child {
    border-top: none;
    padding-top: 0;
}

.highlight-text {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.security-features {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
}

.security-features h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.security-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.security-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.right-item {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.right-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.right-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.right-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.right-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.transfer-info,
.update-notice {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
}

.transfer-info h3,
.update-notice h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

@media (max-width: 768px) {
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .right-item {
        padding: 1rem;
    }
    
    .security-list {
        grid-template-columns: 1fr;
    }
    
    .security-features,
    .transfer-info,
    .update-notice {
        padding: 1rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px 0;
    background: var(--bg-primary);
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-content {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

/* Contact Form */
.contact-form-section {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-submit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Contact Information */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-methods {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.contact-methods h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-methods > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-child {
    border-bottom: none;
}

.method-icon {
    font-size: 2rem;
    min-width: 3rem;
    text-align: center;
}

.method-details h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.method-details p {
    margin-bottom: 0.25rem;
}

.contact-link,
.whatsapp-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover,
.whatsapp-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.response-time {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Quick Actions */
.quick-actions {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.quick-actions h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.action-btn.primary {
    background: var(--gradient-primary);
    color: white;
}

.action-btn.secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.faq-section h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.faq-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.faq-link:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    transform: translateX(5px);
}

/* Support Hours */
.support-hours {
    margin-top: 4rem;
}

.hours-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
}

.hours-card h3 {
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.hours-grid {
    display: grid;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.hours-item .day {
    color: var(--text-primary);
    font-weight: 500;
}

.hours-item .time {
    color: var(--text-secondary);
    font-weight: 500;
}

.hours-note {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    text-align: center;
}

.hours-note p {
    color: white;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-section,
    .contact-methods {
        padding: 2rem;
    }
    
    .quick-actions,
    .faq-section {
        padding: 1.5rem;
    }
    
    .hours-card {
        padding: 2rem;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Homepage Styles */
.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
}

.service-preview {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-preview:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.service-icon {
    font-size: 1.5rem;
}

.preview-header h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.chat-demo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chat-bubble.bot-mini,
.chat-bubble.user-mini {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    max-width: 70%;
}

.chat-bubble.bot-mini {
    background: #e5e7eb;
    color: #374151;
    align-self: flex-start;
}

.chat-bubble.user-mini {
    background: var(--primary-color);
    color: white;
    align-self: flex-end;
}

.analysis-demo {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metric-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.metric-label {
    color: var(--text-secondary);
    min-width: 60px;
}

.progress-bar-mini {
    flex: 1;
    height: 6px;
    background: var(--bg-primary);
    border-radius: 3px;
    overflow: hidden;
}

.progress-mini {
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    transition: width 2s ease;
}

.metric-value {
    color: var(--text-primary);
    font-weight: 500;
    min-width: 40px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.price-from {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.price-amount {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.price-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-btn {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.service-btn.primary {
    background: var(--gradient-primary);
    color: white;
}

.service-btn.secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.service-btn.whatsapp-btn {
    background: var(--gradient-whatsapp);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.service-btn.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.service-btn.analysis-btn {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.service-btn.analysis-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Platform Availability Section - Compact */
.platform-availability {
    padding: 40px 0;
    background: transparent;
}

.availability-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    max-width: 700px;
    margin: 0 auto;
}

.availability-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.availability-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.availability-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.availability-content {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.platform-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.platform-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
}

.platform-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.platform-details h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.platform-details p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.mobile-apps-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-stores {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.stores-image {
    max-width: 120px;
    height: auto;
    border-radius: 6px;
}

.platform-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.web-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.web-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.mobile-btn {
    background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.mobile-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .availability-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .platform-item {
        width: 100%;
    }
    
    .availability-card {
        padding: 1rem;
    }
    
    .stores-image {
        max-width: 100px;
    }
}

/* Demo Animations Section */
.demo-animations {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.animation-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.animation-title {
    text-align: center;
}

.animation-title h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .animations-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .animation-item {
        text-align: center;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Pricing Comparison */
.pricing-comparison {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 0.5rem;
    max-width: 400px;
    margin: 2rem auto;
    border: 1px solid var(--border-color);
}

.toggle-option {
    flex: 1;
    padding: 0.75rem 1rem;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.toggle-option.active {
    background: var(--primary-color);
    color: white;
}

.pricing-content {
    margin-top: 3rem;
}

.pricing-service {
    display: none;
}

.pricing-service.active {
    display: block;
}

.pricing-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card-mini {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.pricing-card-mini:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pricing-card-mini.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card-mini h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-mini {
    margin-bottom: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.current-price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-card-mini p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.pricing-actions {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .services-showcase {
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .pricing-grid-mini {
        grid-template-columns: 1fr;
    }
    
    .pricing-toggle {
        max-width: 100%;
    }
    
    .toggle-option {
        font-size: 0.85rem;
        padding: 0.625rem 0.75rem;
    }
}

/* Language Switcher Dropdown */
.language-switcher {
    position: relative;
    display: inline-block;
    margin: 0 0.5rem;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 0.875rem;
    min-width: 110px;
    justify-content: space-between;
}

.lang-dropdown-toggle:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.lang-flag {
    width: 20px;
    height: 20px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
    opacity: 0.7;
}

.language-switcher:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    min-width: 140px;
}

.language-switcher:hover .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.875rem;
}

.lang-option:last-child {
    border-bottom: none;
}

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

.lang-option.active {
    background: var(--primary-color);
    color: white;
    font-weight: 500;
}

.lang-option.active::after {
    content: "✓";
    margin-left: auto;
    font-size: 0.75rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .language-switcher {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .lang-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
    
    .lang-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
}

/* AI Softphone Rounded Gradient Border */
.softphone-featured {
    position: relative;
    border: 4px solid transparent;
    border-radius: 20px;
    background: var(--bg-primary);
    background-clip: padding-box;
}

.softphone-featured::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffcf00);
    border-radius: 24px;
    z-index: -2;
}

.softphone-featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    border-radius: 16px;
    z-index: -1;
}

/* AI Softphone Button Style */
.softphone-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcf00 100%);
    color: #1a1a1a;
    font-weight: 600;
    text-shadow: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.softphone-btn:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e6821a 50%, #e6bb00 100%);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* AI Softphone Dashboard Improvements */
.dashboard-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 15px 15px 0 0;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-title-section h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

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

.control-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid #334155;
    color: var(--text-secondary);
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* KPI Dashboard Styles */
.kpi-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.kpi-category-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kpi-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.category-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.category-icon {
    font-size: 1.5rem;
}

.category-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.kpi-grid {
    display: grid;
    gap: 0.75rem;
}

.kpi-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-primary);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.kpi-item:hover {
    border-color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
}

.kpi-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.kpi-name {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Category specific colors */
.kpi-category-card.customer-experience .category-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.kpi-category-card.agent-performance .category-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.kpi-category-card.operational .category-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Windows Application Styling - Dark Mode */
.windows-app {
    background: #1e1e1e;
    border: 1px solid #3c3c3c;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

/* Windows Title Bar - Dark Mode */
.windows-title-bar {
    background: linear-gradient(to bottom, #2d2d30 0%, #1e1e1e 100%);
    border-bottom: 1px solid #3c3c3c;
    height: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
    font-size: 12px;
}

.title-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-icon {
    width: 16px;
    height: 16px;
    filter: invert(1);
}

.app-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
}

.title-bar-controls {
    display: flex;
}

.title-btn {
    width: 32px;
    height: 24px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.title-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.close-btn:hover {
    background: #e81123;
    color: white;
}

/* Windows Menu Bar - Dark Mode */
.windows-menu-bar {
    background: #2d2d30;
    border-bottom: 1px solid #3c3c3c;
    height: 24px;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.menu-item {
    padding: 4px 8px;
    font-size: 11px;
    color: #cccccc;
    cursor: pointer;
    border-radius: 2px;
}

.menu-item:hover {
    background: rgba(0, 120, 215, 0.3);
}

/* Windows Toolbar - Dark Mode */
.windows-toolbar {
    background: linear-gradient(to bottom, #383838 0%, #2d2d30 100%);
    border-bottom: 1px solid #3c3c3c;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.status-indicator.live {
    background: #00ff00;
    border-color: #00aa00;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.status-text {
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
}

.toolbar-buttons {
    display: flex;
    gap: 4px;
}

.toolbar-btn {
    padding: 4px 12px;
    background: linear-gradient(to bottom, #4a4a4a 0%, #383838 100%);
    border: 1px solid #5a5a5a;
    border-radius: 3px;
    color: #ffffff;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

.toolbar-btn:hover {
    background: linear-gradient(to bottom, #0078d4 0%, #106ebe 100%);
    border-color: #0078d4;
}

.toolbar-btn.active {
    background: linear-gradient(to bottom, #0078d4 0%, #004b87 100%);
    border-color: #0078d4;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Main Content Area - Dark Mode */
.windows-content {
    background: #252526;
    display: flex;
    min-height: 400px;
    border-top: 1px solid #3c3c3c;
}

/* Left Panel - Active Calls - Dark Mode */
.left-panel {
    width: 350px;
    background: #1e1e1e;
    border-right: 1px solid #3c3c3c;
    display: flex;
    flex-direction: column;
}

.panel-header {
    background: linear-gradient(to bottom, #2d2d30 0%, #252526 100%);
    border-bottom: 1px solid #3c3c3c;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.calls-list {
    flex: 1;
    overflow-y: auto;
}

.call-row {
    padding: 12px;
    border-bottom: 1px solid #3c3c3c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.call-row:hover {
    background: #2d2d30;
}

.call-row.escalation {
    background: #3d1a1a;
    border-left: 4px solid #dc3545;
}

.call-agent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agent-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0078d4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.agent-avatar.warning {
    background: #dc3545;
}

.agent-details {
    display: flex;
    flex-direction: column;
}

.agent-name {
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
}

.call-time {
    font-size: 11px;
    color: #cccccc;
}

.call-status {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}

.sentiment-badge, .risk-badge {
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
}

.sentiment-badge.positive {
    background: #d4edda;
    color: #155724;
}

.sentiment-badge.negative {
    background: #f8d7da;
    color: #721c24;
}

.sentiment-badge.neutral {
    background: #fff3cd;
    color: #856404;
}

.risk-badge.low {
    background: #d4edda;
    color: #155724;
}

.risk-badge.medium {
    background: #fff3cd;
    color: #856404;
}

.risk-badge.high {
    background: #f8d7da;
    color: #721c24;
    animation: blink-warning 1s infinite;
}

@keyframes blink-warning {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

/* Right Panel - Metrics & Insights - Dark Mode */
.right-panel {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* KPI Section - Dark Mode */
.kpi-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kpi-card {
    background: linear-gradient(to bottom, #2d2d30 0%, #252526 100%);
    border: 1px solid #3c3c3c;
    border-radius: 4px;
    padding: 12px;
    text-align: center;
}

.kpi-label {
    font-size: 11px;
    color: #cccccc;
    margin-bottom: 4px;
}

.kpi-value {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.kpi-value.high, .kpi-value.excellent {
    color: #00d2aa;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background-color: #3a3a3a;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 6px;
}

.progress-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    position: absolute;
    white-space: nowrap;
}

.progress-fill.satisfaction {
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.progress-fill.response-time {
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
}

.progress-fill.resolution {
    background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 100%);
}

.progress-fill.performance {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}


/* AI Insights Panel - Dark Mode */
.insights-panel {
    background: #2d2d30;
    border: 1px solid #3c3c3c;
    border-radius: 4px;
    flex: 1;
}

.insights-panel .panel-header {
    background: linear-gradient(to bottom, #383838 0%, #2d2d30 100%);
    margin: 0;
    border-radius: 4px 4px 0 0;
}

.insights-list {
    padding: 12px;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 11px;
    color: #ffffff;
}

.insight-item.alert {
    color: #ff6b6b;
    background: rgba(220, 53, 69, 0.2);
    padding: 6px 8px;
    border-radius: 3px;
    margin: 2px 0;
}

.insight-icon {
    width: 16px;
    text-align: center;
}

/* AI Softphone Dialer Styles */
.ai-monitor-status {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 10px 15px;
    margin: 10px;
    border-radius: 8px;
    text-align: center;
}

.monitor-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ai-pulse {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.monitor-text {
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
}

.active-call-display {
    background: #2d2d30;
    margin: 10px;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #3c3c3c;
}

.call-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #3c3c3c;
    padding-bottom: 10px;
}

.call-header h4 {
    color: #ffffff;
    margin: 0;
    font-size: 14px;
}

.call-status-indicator.live {
    background: #dc2626;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: bold;
}

.caller-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.caller-avatar {
    width: 40px;
    height: 40px;
    background: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.caller-details {
    flex: 1;
}

.caller-name {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
}

.caller-number {
    color: #cccccc;
    font-size: 11px;
}

.call-timer {
    text-align: center;
    margin-bottom: 15px;
}

.timer-display {
    color: #ffffff;
    background-color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    border: 1px solid #333;
    display: inline-block;
}

.timer-label {
    color: #cccccc;
    font-size: 10px;
}

.call-controls {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.call-controls .control-btn {
    background: #4a5568;
    border: 1px solid #6a7280;
    color: #ffffff;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.call-controls .control-btn:hover {
    background: #6a7280;
}

.end-btn {
    background: #dc2626 !important;
}

.end-btn:hover {
    background: #b91c1c !important;
}

.quick-dialer {
    background: #252526;
    margin: 10px;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #3c3c3c;
}

.dialer-header h5 {
    color: #ffffff;
    margin: 0 0 10px 0;
    font-size: 12px;
    text-align: center;
}

.number-display {
    background: #1e1e1e;
    color: #ffffff;
    padding: 8px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.dialer-pad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.dial-btn {
    background: #4a5568;
    border: 1px solid #6a7280;
    color: #ffffff;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s;
}

.dial-btn:hover {
    background: #6a7280;
}

.dial-call-btn {
    width: 100%;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border: none;
    color: #ffffff;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    transition: all 0.2s;
}

.dial-call-btn:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
}

/* Responsive adjustments for Windows app */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-visual {
        overflow: visible;
        padding: 0;
        display: flex;
        justify-content: center;
    }
    
    .windows-app {
        transform: scale(0.9);
        transform-origin: center center;
        margin: 0 auto;
        width: 900px;
        max-width: 95vw;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 0.5rem;
    }
    
    .windows-app {
        transform: scale(0.8);
        transform-origin: center center;
        margin: 0 auto;
        width: 900px;
        max-width: 98vw;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

.compatibility {
    padding: 2rem 0;
    margin: 1rem auto;
    max-width: 1200px;
}

.compact-header {
    margin-bottom: 1rem;
}

.compact-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.compact-header p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.compatibility-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    justify-items: center;
    align-items: center;
}

.pbx-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.pbx-logo:hover {
    transform: scale(1.05);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .compatibility {
        padding: 1.5rem 0;
    }
    
    .compatibility-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pbx-logo {
        width: 60px;
        height: 60px;
    }
    
    .compact-header h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .compatibility-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .pbx-logo {
        width: 50px;
        height: 50px;
        padding: 0.4rem;
    }
    
    .compact-header h2 {
        font-size: 1.2rem;
    }
    
    .compact-header p {
        font-size: 0.8rem;
    }
}

.compatibility {
    padding: 4rem 0;
    background: var(--card-bg);
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 1200px;
}

.compatibility-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
    margin-top: 2rem;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pbx-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pbx-logo:hover {
    transform: scale(1.05);
}

.logo-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .compatibility-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pbx-logo {
        width: 80px;
        height: 80px;
    }
    
    .logo-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .compatibility-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pbx-logo {
        width: 70px;
        height: 70px;
    }
}

.compatibility {
    padding: 4rem 0;
    background: var(--card-bg);
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 1200px;
}

.compatibility-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
    margin-top: 2rem;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pbx-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pbx-logo:hover {
    transform: scale(1.05);
}

.logo-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .compatibility-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pbx-logo {
        width: 80px;
        height: 80px;
    }
    
    .logo-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .compatibility-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pbx-logo {
        width: 70px;
        height: 70px;
    }
}

.compatibility {
    padding: 4rem 0;
    background: var(--card-bg);
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 1200px;
}

.compatibility-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
    margin-top: 2rem;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pbx-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pbx-logo:hover {
    transform: scale(1.05);
}

.logo-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .compatibility-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pbx-logo {
        width: 80px;
        height: 80px;
    }
    
    .logo-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .compatibility-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pbx-logo {
        width: 70px;
        height: 70px;
    }
}

.compatibility {
    padding: 4rem 0;
    background: var(--card-bg);
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 1200px;
}

.compatibility-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
    margin-top: 2rem;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pbx-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pbx-logo:hover {
    transform: scale(1.05);
}

.logo-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .compatibility-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pbx-logo {
        width: 80px;
        height: 80px;
    }
    
    .logo-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .compatibility-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pbx-logo {
        width: 70px;
        height: 70px;
    }
}

/* Zoho Integration Section */
.zoho-integration {
    padding: 6rem 0;
    background:
        linear-gradient(45deg,
            rgba(147, 51, 234, 0.04),
            rgba(236, 72, 153, 0.03),
            rgba(255, 107, 53, 0.04),
            rgba(147, 51, 234, 0.03)
        ),
        var(--bg-primary);
    background-size: 200% 200%, auto;
    animation: integration-gradient 3s ease-in-out infinite;
    border-top: 3px solid;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg,
        rgba(147, 51, 234, 0.6),
        rgba(236, 72, 153, 0.6),
        rgba(255, 107, 53, 0.6),
        rgba(147, 51, 234, 0.6)) 1;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 -8px 25px rgba(147, 51, 234, 0.1),
        0 8px 25px rgba(255, 107, 53, 0.1);
}

.zoho-content {
    position: relative;
    z-index: 10;
}

.zoho-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.logo-integration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.4s ease;
    position: relative;
    min-width: 140px;
}

.logo-container:hover {
    transform: translateY(-5px) scale(1.08);
}

.partner-logo {
    height: 85px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

/* Theme-specific Zoho logos */
[data-theme="dark"] .zoho-logo-light {
    display: none;
}

[data-theme="dark"] .zoho-logo-dark {
    display: block;
}

[data-theme="light"] .zoho-logo-dark {
    display: none;
}

[data-theme="light"] .zoho-logo-light {
    display: block;
}

/* Default (dark theme) */
.zoho-logo-light {
    display: none;
}

.zoho-logo-dark {
    display: block;
}

.integration-x {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.x-symbol {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #9333ea, #ec4899, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 10px rgba(147, 51, 234, 0.5),
        0 0 20px rgba(236, 72, 153, 0.3);
    animation: pulse-energy 2s ease-in-out infinite;
    margin-bottom: 0.5rem;
}


.integration-badge {
    background: linear-gradient(45deg, #9333ea, #ec4899, #ff6b35, #9333ea);
    background-size: 200% 200%;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow:
        var(--shadow-lg),
        0 0 25px rgba(147, 51, 234, 0.4);
    animation: integration-gradient 3s ease-in-out infinite, pulse-bright 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes pulse-bright {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            var(--shadow-lg),
            0 0 20px rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow:
            var(--shadow-xl),
            0 0 30px rgba(59, 130, 246, 0.6);
    }
}

.zoho-hero {
    margin-bottom: 4rem;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.hero-right {
    text-align: left;
}

.power-indicator {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.tagline-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.75rem 0;
}

.accent-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ec4899, transparent);
    border-radius: 1px;
}

.description-container {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(147, 51, 234, 0.2);
    backdrop-filter: blur(10px);
}

.description-header {
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #9333ea, #ec4899, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-highlights {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.highlight-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #9333ea, #ec4899, #ff6b35);
    border-radius: 50%;
    flex-shrink: 0;
}

.zoho-tagline {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.tagline-main {
    display: block;
    margin-bottom: 0.5rem;
}

.tagline-sub {
    display: block;
    font-size: 0.85em;
}

.highlight-text {
    background: linear-gradient(45deg, #ec4899, #ff6b35, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.qualid-brand {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    color: #ffffff;
}

[data-theme="light"] .qualid-brand {
    color: #000000;
}


.no-lost-leads {
    color: var(--whatsapp-green);
    font-weight: 800;
    text-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.whatsapp-logo {
    height: 1.0em;
    width: auto;
    margin-left: 0.75rem;
    display: inline-block;
    vertical-align: middle;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(37, 211, 102, 0.3); }
    to { text-shadow: 0 0 30px rgba(37, 211, 102, 0.6); }
}

@keyframes pulse-energy {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        text-shadow:
            0 0 10px rgba(59, 130, 246, 0.5),
            0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        transform: scale(1.2) rotate(90deg);
        text-shadow:
            0 0 20px rgba(59, 130, 246, 0.8),
            0 0 40px rgba(59, 130, 246, 0.5);
    }
}


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

@keyframes flowing-gradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 0%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 100%;
    }
}

@keyframes whatsapp-bounce {
    0%, 100% {
        transform: translateY(0px) scale(1);
        text-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: translateY(-3px) scale(1.1);
        text-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
    }
}


.zoho-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.zoho-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.zoho-feature {
    background: var(--bg-secondary);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.zoho-feature::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #9333ea, #ec4899, #ff6b35, #9333ea);
    border-radius: 20px;
    z-index: -1;
}

.zoho-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoho-feature:hover {
    transform: translateY(-8px);
    box-shadow:
        var(--shadow-xl),
        0 0 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

.zoho-feature:hover::before {
    opacity: 1;
}

.zoho-feature-icon {
    background: linear-gradient(45deg, #9333ea, #ec4899, #ff6b35);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.zoho-feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.zoho-feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}


/* Mobile Responsiveness for Zoho Section */
@media (max-width: 768px) {
    .zoho-integration {
        padding: 4rem 0;
    }

    .zoho-header {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .logo-integration {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-container {
        padding: 0.75rem;
        min-width: 120px;
    }

    .partner-logo {
        height: 65px;
    }

    .x-symbol {
        font-size: 1.8rem;
    }

    .integration-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-left,
    .hero-right {
        text-align: center;
    }

    .description-container {
        padding: 1.5rem;
    }

    .feature-highlights {
        justify-content: center;
        gap: 1rem;
    }

    .zoho-tagline {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .zoho-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

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

    .zoho-feature {
        padding: 2rem;
        gap: 1.25rem;
    }

    .zoho-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .zoho-feature-content h3 {
        font-size: 1.2rem;
    }

    .zoho-feature-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .zoho-integration {
        padding: 3rem 0 !important;
    }

    .zoho-integration .zoho-header {
        gap: 0.5rem !important;
    }

    .zoho-integration .logo-integration.partners-row {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .zoho-integration .integration-x.main-separator {
        transform: rotate(90deg);
        margin: 0.5rem 0 !important;
    }

    .zoho-integration .partners-row .logo-container:first-child {
        order: 1;
    }

    .zoho-integration .partners-row .logo-container:last-child {
        order: 3;
    }

    .zoho-integration .logo-container {
        padding: 0.5rem;
        min-width: 100px;
    }

    .zoho-integration .partner-logo {
        height: 70px;
    }

    .zoho-integration .zoho-logo {
        height: 75px;
    }

    .zoho-integration .x-symbol {
        font-size: 1.5rem;
    }

    .zoho-integration .integration-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .zoho-integration .hero-content-grid {
        gap: 1.5rem;
    }

    .zoho-integration .zoho-tagline {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }

    .zoho-integration .zoho-description {
        font-size: 1rem;
        padding: 0 1.5rem;
    }

    .zoho-integration .zoho-features {
        gap: 1rem;
    }

    .zoho-integration .zoho-feature {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .zoho-integration .zoho-feature-content h3 {
        font-size: 1.1rem;
    }

    .zoho-integration .zoho-feature-content p {
        font-size: 0.95rem;
    }
}

/* WhatsApp Marketing Campaigns Section */
.marketing-campaigns {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: visible;
}

.marketing-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.marketing-image-side {
    position: relative;
}

.marketing-hero-image {
    width: 100%;
    height: auto;
}

.marketing-content-side {
    padding: 0;
}

.marketing-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.marketing-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 50%, #25D366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.marketing-title .target-emoji {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
    filter: none !important;
    display: inline-block;
}

[data-theme="light"] .marketing-title .target-emoji {
    -webkit-text-fill-color: #111827 !important;
}

.marketing-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.marketing-slider {
    position: relative;
    min-height: 320px;
    margin-bottom: 2rem;
}

.marketing-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease-in-out;
    pointer-events: none;
}

.marketing-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

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

.slide-emoji {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.3));
}

.slide-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.marketing-slide p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.mini-feature {
    padding: 0.5rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.mini-feature:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.marketing-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

/* Marketing tools row: pricing checker + estimator side by side */
.marketing-tools-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: start;
}

@media (max-width: 900px) {
    .marketing-tools-row {
        grid-template-columns: 1fr;
    }
}

/* Pricing Calculator */
.pricing-calculator {
    margin-top: 0;
    padding: 2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

/* WC Estimator sliders */
.wc-slider-group {
    margin-bottom: 1.25rem;
}

.wc-slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.wc-slider-input {
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 3px 8px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    width: 100px;
    text-align: center;
    outline: none;
    transition: border-color 0.2s;
    -moz-appearance: textfield;
    appearance: textfield;
}

.wc-slider-input::-webkit-outer-spin-button,
.wc-slider-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.wc-slider-marketing .wc-slider-input:focus { border-color: #F59E0B; }
.wc-slider-utility  .wc-slider-input:focus  { border-color: #3B82F6; }

.wc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
    cursor: pointer;
}

.wc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #25D366;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(37,211,102,0.4);
    transition: transform 0.15s;
}

.wc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.wc-slider::-moz-range-thumb {
    width: 20px; height: 20px; border-radius: 50%;
    background: #25D366; border: none;
    box-shadow: 0 2px 5px rgba(37,211,102,0.4);
}

.wc-slider-marketing .wc-slider::-webkit-slider-thumb { background: #F59E0B; box-shadow: 0 2px 5px rgba(245,158,11,0.4); }
.wc-slider-marketing .wc-slider::-moz-range-thumb      { background: #F59E0B; }
.wc-slider-utility   .wc-slider::-webkit-slider-thumb  { background: #3B82F6; box-shadow: 0 2px 5px rgba(59,130,246,0.4); }
.wc-slider-utility   .wc-slider::-moz-range-thumb       { background: #3B82F6; }

.calculator-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.calculator-controls {
    margin-bottom: 1.5rem;
}

.country-select-wrapper label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.country-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.country-select option {
    padding: 0.5rem;
}

.pricing-results {
    animation: slideDown 0.3s ease-out;
}

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

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

.pricing-item {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.pricing-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.pricing-dual {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-value-usd {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-value-local {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--whatsapp-green);
}

.slide-nav-btn-absolute {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
}

.prev-btn-absolute {
    left: 0;
}

.next-btn-absolute {
    right: 0;
}

.slide-nav-btn-absolute:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slide-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-color);
    width: 28px;
    border-radius: 5px;
}

.marketing-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.marketing-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .marketing-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .marketing-image-side {
        max-width: 500px;
        margin: 0 auto;
    }

    .slide-nav-btn-absolute {
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
    }

    .prev-btn-absolute {
        left: -10px;
    }

    .next-btn-absolute {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .marketing-campaigns {
        padding: 2rem 0;
        overflow: hidden;
    }

    .marketing-title {
        font-size: 2rem;
    }

    .marketing-intro {
        font-size: 1rem;
    }

    .marketing-slider {
        min-height: 420px;
    }

    .slide-header h3 {
        font-size: 1.4rem;
    }

    .marketing-slide p {
        font-size: 0.95rem;
    }

    .slide-features {
        gap: 0.5rem;
    }

    .mini-feature {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .slide-nav-btn-absolute {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .prev-btn-absolute {
        left: 5px;
    }

    .next-btn-absolute {
        right: 5px;
    }

    .marketing-wrapper {
        gap: 1.5rem;
    }

    .pricing-calculator {
        padding: 1.5rem;
    }

    .calculator-title {
        font-size: 1.2rem;
    }

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

    .pricing-value-usd {
        font-size: 1.2rem;
    }

    .pricing-value-local {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .marketing-campaigns {
        padding: 1.5rem 0;
    }

    .marketing-title {
        font-size: 1.75rem;
    }

    .marketing-slider {
        min-height: 520px;
    }

    .slide-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .slide-emoji {
        font-size: 2rem;
    }

    .slide-header h3 {
        font-size: 1.3rem;
    }

    .marketing-slide p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .slide-features {
        gap: 0.4rem;
    }

    .mini-feature {
        padding: 0.35rem 0.65rem;
        font-size: 0.75rem;
        flex: 0 0 auto;
    }

    .slide-nav-btn-absolute {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .prev-btn-absolute {
        left: 10px;
    }

    .next-btn-absolute {
        right: 10px;
    }

    .marketing-wrapper {
        gap: 1rem;
    }
}

/* Old styles to remove - keeping for compatibility */
.floating-badge {
    position: absolute;
    padding: 0.5rem 1rem;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: badge-float 3s ease-in-out infinite;
}

[data-theme="light"] .floating-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #111827;
}

.floating-badge.badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    bottom: 30%;
    left: -10%;
    animation-delay: 1s;
}

.floating-badge.badge-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

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

/* Feature Slider */
.marketing-features {
    position: relative;
}

.feature-slider {
    position: relative;
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.slider-track {
    position: relative;
    min-height: 400px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    animation: icon-glow 2s ease-in-out infinite;
}

@keyframes icon-glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5); }
}

.slide h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.slide p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.slide-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slide-benefits li {
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    font-size: 0.95rem;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.slide-benefits li:hover {
    transform: translateX(5px);
    border-left-color: var(--whatsapp-green);
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot:hover {
    transform: scale(1.2);
}

.nav-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.slider-arrow:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: -25px;
}

.slider-arrow.next {
    right: -25px;
}

/* Marketing CTA */
.marketing-cta {
    margin-top: 2rem;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

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

    .marketing-visual {
        order: 2;
    }

    .marketing-features {
        order: 1;
    }

    .floating-badge.badge-1 {
        right: 5%;
    }

    .floating-badge.badge-2 {
        left: 5%;
    }
}

@media (max-width: 768px) {
    .marketing-campaigns {
        padding: 3rem 0;
    }

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

    .marketing-header .section-subtitle {
        font-size: 1rem;
    }

    .feature-slider {
        padding: 2rem 1.5rem;
    }

    .slider-track {
        min-height: 450px;
    }

    .slide h3 {
        font-size: 1.5rem;
    }

    .slide p {
        font-size: 1rem;
    }

    .slide-benefits {
        grid-template-columns: 1fr;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .slider-arrow.prev {
        left: -20px;
    }

    .slider-arrow.next {
        right: -20px;
    }

    .floating-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    /* Instabooking Section Mobile Responsive */
    .instabooking-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    .instabooking-feature .section-header h2 {
        font-size: 1.75rem !important;
    }

    .instabooking-feature .section-header p {
        font-size: 1.05rem !important;
    }
}

@media (max-width: 480px) {
    .marketing-header {
        margin-bottom: 2rem;
    }

    .marketing-header .section-title {
        font-size: 1.5rem;
    }

    .marketing-content {
        gap: 2rem;
    }

    .feature-slider {
        padding: 1.5rem 1rem;
    }

    .slide-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .slide h3 {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .floating-badge.badge-1,
    .floating-badge.badge-2,
    .floating-badge.badge-3 {
        position: static;
        display: inline-block;
        margin: 0.25rem;
    }

    .image-wrapper {
        text-align: center;
    }

    /* Instabooking Section Mobile Responsive */
    .instabooking-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    .instabooking-feature .section-header h2 {
        font-size: 1.5rem !important;
    }

    .instabooking-feature .section-header p {
        font-size: 1rem !important;
    }
}


/* ── COMPACT QUALIBOT & ZOHO STRIPS ───────────────────── */
.qb-compact-row {
    display: flex;
    align-items: center;
    gap: 24px;
}
.qb-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(37,211,102,0.35);
    flex-shrink: 0;
}
.qb-info { flex: 1; min-width: 0; }
.qb-info h2 { margin: 0 0 2px; font-size: 1.2rem; }
.qb-info p  { margin: 0; color: var(--text-secondary); font-size: 0.875rem; }
.qb-info .ai-badge { margin-bottom: 6px; padding: 0.2rem 0.7rem; font-size: 0.6rem; }
.qb-features-row {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.qb-feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.qb-feature-card span.icon { font-size: 1.2rem; }
.qb-feature-card .fc-title { font-weight: 600; font-size: 0.8rem; }
.qb-feature-card .fc-sub   { color: var(--text-secondary); font-size: 0.72rem; }

.zoho-compact-row {
    display: flex;
    align-items: center;
    gap: 20px;
}
.zoho-logos-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.zoho-logos-row img { height: 26px; width: auto; }
.zoho-logos-row .sep { color: rgba(150,150,170,0.5); font-size: 1.1rem; }
.zoho-compact-tagline {
    flex: 1;
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}
.zoho-chips-row {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.zoho-chip {
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}
.zoho-chip-purple { background:rgba(147,51,234,0.12); border:1px solid rgba(147,51,234,0.3); color:#a855f7; }
.zoho-chip-pink   { background:rgba(236,72,153,0.12); border:1px solid rgba(236,72,153,0.3); color:#ec4899; }
.zoho-chip-orange { background:rgba(255,107,53,0.12); border:1px solid rgba(255,107,53,0.3); color:#ff6b35; }

@media (max-width: 768px) {
    /* QB: avatar+info stay in one row, features wrap below */
    .qb-compact-row {
        flex-wrap: wrap;
        gap: 14px;
    }
    .qb-features-row {
        flex-basis: 100%;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    /* Zoho: stack vertically, centered */
    .zoho-compact-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }
    .zoho-compact-tagline { font-size: 0.88rem; text-align: center; }
    .zoho-chips-row { justify-content: center; }
    .zoho-logos-row { justify-content: center; }
}

@media (max-width: 480px) {
    .qb-avatar { width: 56px; height: 56px; }
    .qb-features-row { grid-template-columns: 1fr; gap: 8px; }
    /* Override old !important padding from the original zoho section CSS */
    .zoho-integration { padding: 24px 0 !important; }
    .zoho-logos-row { flex-wrap: wrap; gap: 8px; }
    .zoho-chips-row { gap: 6px; }
    .zoho-chip { font-size: 0.7rem; padding: 3px 9px; }
}

