/* 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: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 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;
}

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

.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);
}

.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-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);
}

.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 */
.qualibot-demo {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

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

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

.demo-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

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

.gif-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 pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* 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-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;
}

[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(--text-secondary);
    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;
}

/* 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;
    }
    
    .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;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .demo-text h2 {
        font-size: 2rem;
    }
    
    .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;
    }
}
