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

:root {
    --primary-purple: #4A148C;
    --secondary-purple: #6A1B9A;
    --dark-purple: #2E003E;
    --accent-orange: #F39C12;
    --gradient-primary: linear-gradient(135deg, #4A148C 0%, #6A1B9A 100%);
    --gradient-secondary: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
    --bg-dark: #FFFFFF;
    --bg-card: rgba(255, 255, 255, 0.8);
    --border-color: rgba(74, 20, 140, 0.1);
    --text-primary: #1A1A1A;
    --text-secondary: rgba(26, 26, 26, 0.7);
    --text-muted: rgba(26, 26, 26, 0.5);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 25px 50px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
}

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

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFFFFF 0%, #FEFEFE 25%, #FDFDFD 50%, #FEFEFE 75%, #FFFFFF 100%);
    z-index: -1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 8px 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 6px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 20px;
    color: white !important;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    font-size: 13px;
}

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

.btn-nav::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(74, 20, 140, 0.05);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .menu-overlay.active {
        display: block;
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 80px;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}



.hero-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
    min-height: 80vh;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.specialty-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(5, 84, 45, 0.1);
    border: 1px solid rgba(5, 84, 45, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    color: #05542d;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    cursor: pointer;
}

.specialty-badge:hover {
    background: rgba(5, 84, 45, 0.15);
    border-color: #05542d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 84, 45, 0.2);
}

.specialty-badge i {
    color: #05542d;
    font-size: 16px;
}

.hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    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: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--primary-purple);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: flex-start;
}

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 6px;
    font-weight: 500;
}

/* Hero Visual - Tablet Grande */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    perspective: 1200px;
}

.hero-tablet {
    width: 750px;
    height: 540px;
    background: linear-gradient(145deg, #e8e8e8, #f5f5f5);
    border-radius: 50px;
    position: relative;
    z-index: 5;
    animation: floatTablet 6s ease-in-out infinite;
    box-shadow: 
        /* Marco exterior metálico */
        0 0 0 5px #c0c0c0,
        0 0 0 10px #a8a8a8,
        0 0 0 15px #909090,
        0 0 0 20px #787878,
        0 0 0 22px #606060,
        /* Sombras realistas */
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 12px 50px rgba(0, 0, 0, 0.25),
        0 6px 25px rgba(0, 0, 0, 0.15),
        /* Brillos interiores */
        inset 0 2px 6px rgba(255, 255, 255, 0.9),
        inset 0 -2px 6px rgba(0, 0, 0, 0.1);
    transform: rotateX(8deg) rotateY(-3deg);
    transition: transform 0.4s ease;
}

.hero-tablet:hover {
    transform: rotateX(2deg) rotateY(-1deg) scale(1.02);
}

/* Pantalla interior */
.hero-tablet::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 22px;
    right: 22px;
    bottom: 22px;
    background: url('attached_assets/tableta_1753417010160.jpg') center/cover no-repeat;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Elementos flotantes decorativos */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: var(--shadow-medium);
    animation: float 4s ease-in-out infinite;
    z-index: 10;
    min-width: 140px;
    text-align: center;
}

.floating-badge-1 {
    top: 10%;
    left: -15%;
    animation-delay: 0s;
}

.floating-badge-2 {
    top: 20%;
    right: -15%;
    animation-delay: 1s;
}

.floating-badge-3 {
    bottom: 15%;
    left: -12%;
    animation-delay: 2s;
}

.floating-badge i {
    color: var(--primary-purple);
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.floating-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

/* Interactive Demo Section */
.interactive-demo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.02) 0%, rgba(106, 27, 154, 0.03) 50%, rgba(243, 156, 18, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.interactive-demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(74, 20, 140, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(243, 156, 18, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.demo-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.demo-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.demo-header p {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.demo-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.demo-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
    overflow: hidden;
    height: 900px;
    display: flex;
    flex-direction: column;
}

.demo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-purple);
}

.demo-card-header {
    padding: 32px 32px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.03) 0%, rgba(106, 27, 154, 0.02) 100%);
}

.demo-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: var(--shadow-medium);
    flex-shrink: 0;
}

.demo-title h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.3;
}

.demo-title p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* Chat Interface */
.chat-interface {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chat-header {
    padding: 20px 24px;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

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

.assistant-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.assistant-details {
    flex: 1;
}

.assistant-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 2px;
}

.assistant-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #fafbfc;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 380px;
    max-height: 450px;
}

.chat-message {
    display: flex;
    gap: 12px;
    animation: fadeInUp 0.4s ease;
}

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

.chat-message .message-content {
    background: rgba(74, 20, 140, 0.08);
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid rgba(74, 20, 140, 0.15);
    max-width: 320px;
    word-wrap: break-word;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
}

.chat-message.user-message .message-content {
    background: var(--gradient-primary);
    color: white;
    border: 1px solid rgba(74, 20, 140, 0.2);
}

.quick-questions {
    padding: 12px;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    min-height: 140px;
    flex-shrink: 0;
    max-height: 160px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.quick-questions::-webkit-scrollbar {
    width: 4px;
}

.quick-questions::-webkit-scrollbar-track {
    background: transparent;
}

.quick-questions::-webkit-scrollbar-thumb {
    background: rgba(74, 20, 140, 0.2);
    border-radius: 2px;
    transition: var(--transition);
}

.quick-questions::-webkit-scrollbar-thumb:hover {
    background: rgba(74, 20, 140, 0.3);
}

.quick-question {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.2;
}

.quick-question:hover {
    background: rgba(74, 20, 140, 0.05);
    border-color: var(--primary-purple);
    transform: translateY(-1px);
    box-shadow: var(--shadow-light);
}

.quick-question i {
    color: var(--primary-purple);
    font-size: 14px;
    width: 14px;
    flex-shrink: 0;
}

/* Automation Interface */
.automation-interface {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.automation-selector {
    padding: 20px 24px;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.automation-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    min-width: 120px;
}

.automation-option.active,
.automation-option:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-purple);
    transform: translateY(-1px);
    box-shadow: var(--shadow-light);
}

.automation-option i {
    font-size: 14px;
}

.automation-preview {
    flex: 1;
    padding: 20px;
    background: #fafbfc;
    position: relative;
    min-height: 620px;
}

.automation-scenario {
        margin-top: 20px;
        margin: 20px 0;
        min-height: 580px;
        display: flex;
        flex-direction: column;
    }

.automation-scenario.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.scenario-description {
    text-align: center;
    margin-bottom: 32px;
    padding: 16px 24px;
    background: rgba(74, 20, 140, 0.08);
    border: 1px solid rgba(74, 20, 140, 0.15);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.flow-visualization {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    max-width: 120px;
}

.node-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.node-icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.node-icon.gmail {
    background: linear-gradient(135deg, #EA4335 0%, #FBBC05 100%);
}

.node-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.node-icon.sentral {
    background: var(--gradient-primary);
}

.node-icon.pos {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.node-icon.email {
    background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
}

.node-icon.database {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.flow-node span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.connector-line {
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.flow-connector i {
    color: var(--primary-purple);
    font-size: 16px;
    animation: bounceInfinite 2s ease-in-out infinite;
}

.demo-execute-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-light);
    margin-top: auto;
}

.demo-execute-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.demo-execute-btn.executing {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    animation: pulse 1s ease-in-out infinite;
}

.demo-execute-btn.executing i {
    animation: spin 1s linear infinite;
}

/* Automation Chat */
.automation-chat {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.automation-chat-header {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.05) 0%, rgba(106, 27, 154, 0.03) 100%);
    border-bottom: 1px solid var(--border-color);
}

.automation-chat-messages {
    max-height: 220px;
    min-height: 140px;
    overflow-y: auto;
    padding: 16px;
    background: #fafbfc;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.automation-message {
    display: flex;
    animation: fadeInUp 0.4s ease;
}

.automation-message.system-message .message-content {
    background: rgba(74, 20, 140, 0.08);
    border: 1px solid rgba(74, 20, 140, 0.15);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-primary);
    width: 100%;
}

.automation-message.agent-message .message-content {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
    color: #047857;
    width: 100%;
    margin-left: auto;
}

.automation-execute-btn {
    width: 100%;
    padding: 14px 20px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.automation-execute-btn:hover {
    background: linear-gradient(135deg, #6A1B9A 0%, #4A148C 100%);
}

.automation-execute-btn.executing {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    animation: pulse 1s ease-in-out infinite;
    cursor: not-allowed;
}

.automation-execute-btn.executing i {
    animation: spin 1s linear infinite;
}

.automation-execute-btn.completed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Status del demo durante ejecución */
.demo-status {
    text-align: center;
    margin: 16px 0;
    padding: 12px 20px;
    background: rgba(16, 185, 129, 0.1) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    border-radius: 8px;
    color: #047857 !important;
    font-size: 13px;
    font-weight: 500;
    animation: fadeInUp 0.3s ease;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

@keyframes bounceInfinite {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(4px);
    }
}

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

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

@keyframes workingPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-medium);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .demo-showcase {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .demo-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 700px;
    }

    .demo-card {
        height: 750px;
    }
}

@media (max-width: 768px) {
    .interactive-demo-section {
        padding: 80px 0;
    }

    .demo-header {
        margin-bottom: 60px;
    }

    .demo-header h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .demo-header p {
        font-size: 16px;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        line-height: 1.4;
        padding: 0 10px;
    }

    .section-header {
        margin-bottom: 60px;
        padding: 0 15px;
    }

    .demo-card {
        height: 800px;
    }

    .demo-card-header {
        padding: 24px 20px 20px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .demo-title h3 {
        font-size: 20px;
    }

    .chat-messages {
        min-height: 320px;
        max-height: 380px;
        padding: 16px;
    }

    .quick-questions {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 12px;
        min-height: 100px;
    }

    .automation-selector {
        flex-direction: column;
        gap: 8px;
        padding: 16px;
    }

    .automation-option {
        justify-content: flex-start;
        min-width: auto;
        padding: 14px 16px;
    }

    .automation-preview {
        min-height: 550px;
        padding: 16px;
    }

    .flow-visualization {
        flex-direction: column;
        gap: 16px;
        margin: 20px 0;
    }

    .flow-connector {
        transform: rotate(90deg);
    }

    .node-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .demo-status {
        font-size: 12px;
        padding: 10px 16px;
        margin: 12px 0;
    }
}

/* Clients Banner */
.clients-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.03) 0%, rgba(106, 27, 154, 0.03) 100%);
    overflow: hidden;
}

.clients-header {
    text-align: center;
    margin-bottom: 60px;
}

.clients-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.clients-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.clients-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.clients-track {
    display: flex;
    gap: 40px;
    animation: slideClients 30s linear infinite;
    width: fit-content;
}

.client-logo {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 160px;
    height: 120px;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    backdrop-filter: blur(10px);
}

.client-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-purple);
}

.client-logo img {
    width: 80px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    opacity: 0.8;
    transition: var(--transition);
}

.client-logo:hover img {
    opacity: 1;
}

.client-logo span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.2;
}

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

.clients-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .clients-banner {
        padding: 60px 0;
    }

    .clients-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .clients-header h3 {
        font-size: 24px;
    }

    .clients-header p {
        font-size: 14px;
    }

    .clients-track {
        gap: 20px;
        animation-duration: 25s;
    }

    .client-logo {
        width: 140px;
        height: 100px;
        padding: 16px;
    }

    .client-logo img {
        width: 70px;
        height: 35px;
    }

    .client-logo span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .clients-banner {
        padding: 40px 0;
    }

    .clients-header h3 {
        font-size: 20px;
    }

    .clients-track {
        gap: 16px;
        animation-duration: 20s;
    }

    .client-logo {
        width: 120px;
        height: 90px;
        padding: 12px;
    }

    .client-logo img {
        width: 60px;
        height: 30px;
    }

    .client-logo span {
        font-size: 12px;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 20, 140, 0.1);
    border: 1px solid rgba(74, 20, 140, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--primary-purple);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Smart Analytics Section */
.smart-analytics-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.02) 0%, rgba(106, 27, 154, 0.03) 50%, rgba(243, 156, 18, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.smart-analytics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 20, 140, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(243, 156, 18, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.analytics-showcase {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.analytics-interface {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    transition: var(--transition);
}

.analytics-interface:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-purple);
}

.analytics-header {
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.08) 0%, rgba(106, 27, 154, 0.05) 100%);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.interface-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.title-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-medium);
}

.title-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.2;
}

.title-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.interface-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
}

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

.status-text {
    font-size: 13px;
    font-weight: 600;
    color: #047857;
}

.analytics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.query-section {
    padding: 32px;
    background: #fafbfc;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.query-input-container {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 4px 4px 4px 20px;
    transition: var(--transition);
}

.query-input-container:focus-within {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(74, 20, 140, 0.1);
}

.query-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 8px;
    font-size: 15px;
    color: var(--text-primary);
    background: transparent;
    font-family: inherit;
}

.query-input::placeholder {
    color: var(--text-muted);
}

.query-submit {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.query-submit:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.suggested-queries {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    max-height: 480px;
}

.query-category h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.query-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.query-btn {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
}

.query-btn:hover {
    background: rgba(74, 20, 140, 0.05);
    border-color: var(--primary-purple);
    transform: translateX(4px);
    box-shadow: var(--shadow-light);
}

.query-btn i {
    color: var(--primary-purple);
    width: 16px;
    flex-shrink: 0;
    font-size: 14px;
}

.results-section {
    padding: 32px;
    background: white;
    display: flex;
    flex-direction: column;
}

.results-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.results-header i {
    color: var(--primary-purple);
    font-size: 20px;
}

.results-header span {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.results-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.welcome-message {
    max-width: 300px;
}

.welcome-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.1) 0%, rgba(106, 27, 154, 0.1) 100%);
    border: 2px solid rgba(74, 20, 140, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-purple);
}

.welcome-message h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.welcome-message p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}

.insight-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(74, 20, 140, 0.04);
    border: 1px solid rgba(74, 20, 140, 0.1);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
}

.preview-item i {
    color: var(--primary-purple);
    font-size: 14px;
    width: 14px;
}

.analytics-result {
    animation: fadeInUp 0.5s ease;
    text-align: left;
    width: 100%;
}

.result-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-title i {
    color: var(--primary-purple);
    font-size: 20px;
}

.result-content {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

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

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

.metric-card {
    background: rgba(74, 20, 140, 0.05);
    border: 1px solid rgba(74, 20, 140, 0.15);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.metric-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1.2;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.loading-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px;
    color: var(--text-secondary);
    font-size: 14px;
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .analytics-content {
        grid-template-columns: 1fr;
    }
    
    .query-section {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .suggested-queries {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .smart-analytics-section {
        padding: 80px 0;
    }
    
    .analytics-header {
        padding: 20px 24px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .interface-title {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .title-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .query-section,
    .results-section {
        padding: 24px 20px;
    }
    
    .suggested-queries {
        gap: 16px;
    }
    
    .query-category h4 {
        font-size: 15px;
    }
    
    .query-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .welcome-message {
        max-width: 100%;
    }
    
    .welcome-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .result-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .analytics-header {
        padding: 16px 20px;
    }
    
    .title-content h3 {
        font-size: 18px;
    }
    
    .title-content p {
        font-size: 13px;
    }
    
    .query-section,
    .results-section {
        padding: 20px 16px;
    }
    
    .query-input-container {
        padding: 3px 3px 3px 16px;
    }
    
    .query-input {
        padding: 12px 6px;
        font-size: 14px;
    }
    
    .query-submit {
        width: 40px;
        height: 40px;
    }
    
    .query-btn {
        padding: 8px 12px;
        font-size: 12px;
        gap: 10px;
    }
    
    .welcome-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .welcome-message h4 {
        font-size: 18px;
    }
    
    .welcome-message p {
        font-size: 13px;
    }
    
    .preview-item {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .result-metrics {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
.services-section {
    padding: 120px 0;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    transform: translateX(-100%);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-purple);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.1) 0%, rgba(106, 27, 154, 0.1) 100%);
    border: 1px solid var(--primary-purple);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 0 0 8px 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
    box-shadow: var(--shadow-medium);
}

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

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(74, 20, 140, 0.1);
    color: var(--primary-purple);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(74, 20, 140, 0.2);
}



/* Agents Section */
.agents-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.03) 0%, rgba(99, 102, 241, 0.03) 100%);
}

.agents-container {
    max-width: 1000px;
    margin: 0 auto;
}

.agents-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    background: var(--bg-card);
    padding: 8px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

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

.tab-btn i {
    font-size: 16px;
}

.agents-content {
        position: relative;
        min-height: 450px;
        margin-top: 20px;
    }

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
}

.agent-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.agent-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.agent-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.feature-list i {
    color: var(--primary-purple);
    font-size: 16px;
    width: 16px;
}

.btn-learn-more {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.agent-demo {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-heavy);
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
}

.demo-screen {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 24px;
    border: 2px solid #e2e8f0;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.04);
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e2e8f0;
}

.demo-title {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 16px;
    letter-spacing: -0.01em;
}

.demo-status {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(74, 20, 140, 0.3);
}

.demo-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.demo-stat {
    text-align: center;
    padding: 20px 16px;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.08) 0%, rgba(106, 27, 154, 0.06) 100%);
    border-radius: 12px;
    border: 2px solid rgba(74, 20, 140, 0.15);
    transition: var(--transition);
}

.demo-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(74, 20, 140, 0.2);
    border-color: var(--primary-purple);
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
}

.pricing-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.country-dropdown {
    position: relative;
    display: inline-block;
}

.country-button {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 14px;
    backdrop-filter: blur(20px);
    cursor: pointer;
    min-width: 180px;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.country-button:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(74, 20, 140, 0.1);
}

.country-button .flag {
    font-size: 16px;
    line-height: 1;
}

.country-button .country-name {
    flex: 1;
    text-align: left;
}

.country-button i {
    font-size: 12px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.country-button.open i {
    transform: rotate(180deg);
}

.country-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(20px);
    z-index: 1000;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

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

.country-option {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.country-option:hover {
    background: rgba(74, 20, 140, 0.08);
}

.country-option:first-child {
    border-radius: 8px 8px 0 0;
}

.country-option:last-child {
    border-radius: 0 0 8px 8px;
}

.country-option .flag {
    font-size: 16px;
    line-height: 1;
}

.country-option .country-name {
    flex: 1;
}

.billing-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
}

.toggle-label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.toggle-switch {
    position: relative;
    display: flex;
    align-items: center;
}

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

.toggle-switch label {
    display: block;
    width: 48px;
    height: 24px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.toggle-switch label:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch input:checked + label {
    background: rgba(74, 20, 140, 0.1);
    border-color: var(--primary-purple);
}

.toggle-switch input:checked + label:after {
    transform: translateX(24px);
}

.discount {
    color: var(--primary-purple);
    font-weight: 600;
    margin-left: 2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-blue);
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.plan-header p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 32px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.amount {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 4px;
}

.period {
    font-size: 16px;
    color: var(--text-secondary);
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.plan-features i {
    color: var(--primary-purple);
    font-size: 14px;
    width: 14px;
}

.plan-button {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: transparent;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.plan-button.primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-blue);
}

.plan-button.primary:hover {
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.03) 0%, rgba(99, 102, 241, 0.03) 100%);
}

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

.contact-benefits {
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-item i {
    color: var(--primary-purple);
    font-size: 20px;
    margin-top: 4px;
    width: 20px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.contact-form-container {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-heavy);
}

.contact-form h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
    font-family: inherit;
}

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

.form-group label {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--text-muted);
    transition: var(--transition);
    pointer-events: none;
    font-size: 14px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -8px;
    left: 12px;
    background: #FFFFFF;
    padding: 0 8px;
    font-size: 12px;
    color: var(--primary-purple);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    padding: 60px 0 30px;
    margin-top: 120px;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

@keyframes floatTablet {
    0%, 100% {
        transform: rotateX(8deg) rotateY(-3deg) translateY(0px);
    }
    50% {
        transform: rotateX(8deg) rotateY(-3deg) translateY(-20px);
    }
}

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

@keyframes floatingParticles {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-10px) translateX(5px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-5px) translateX(-3px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-15px) translateX(8px);
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-container {
        max-width: 1200px;
        gap: 80px;
    }

    .hero-tablet {
        width: 650px;
        height: 470px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        padding: 0 30px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-tablet {
        width: 580px;
        height: 420px;
        transform: rotateX(5deg) rotateY(0deg);
    }

    .hero-tablet:hover {
        transform: rotateX(2deg) rotateY(0deg) scale(1.01);
    }

    .hero-floating-elements {
        display: none;
    }
}

    .agent-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .navbar,
    .navbar.scrolled,
    .nav-container,
    .nav-menu,
    .nav-logo,
    .hamburger {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        max-height: 0 !important;
        min-height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
        position: absolute !important;
        top: -9999px !important;
        left: -9999px !important;
        z-index: -9999 !important;
    }

    .nav-container {
        padding: 0 16px;
        position: relative;
    }

    .nav-logo .logo {
        height: 28px;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100vw;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 20px;
        transform: translateX(-100%);
        transition: transform 0.4s ease, opacity 0.4s ease;
        border-bottom: 1px solid var(--border-color);
        gap: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        z-index: 10000;
        opacity: 0;
        pointer-events: none;
        height: calc(100vh - 60px);
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        padding: 14px 20px;
        font-size: 16px;
        border-bottom: 1px solid rgba(74, 20, 140, 0.1);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        border-radius: 8px;
        margin-bottom: 4px;
    }

    .nav-link:last-child:not(.btn-nav) {
        border-bottom: 1px solid rgba(74, 20, 140, 0.1);
    }

    .nav-link:hover {
        background: rgba(74, 20, 140, 0.08);
        color: var(--primary-purple);
        border-bottom-color: rgba(74, 20, 140, 0.2);
    }

    .nav-link::after {
        display: none;
    }

    .btn-nav {
        margin-top: 12px;
        padding: 14px 28px;
        border-radius: 25px;
        font-size: 15px;
        border: none;
        border-bottom: none !important;
        background: var(--gradient-primary) !important;
        color: white !important;
    }

    .btn-nav:hover {
        background: linear-gradient(135deg, #6A1B9A 0%, #4A148C 100%) !important;
        transform: translateY(-1px);
    }

    .hamburger {
        display: flex;
        z-index: 10001;
        position: relative;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: #4A148C;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: #4A148C;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        gap: 32px;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        transform: none;
    }

    .agents-tabs {
        flex-direction: column;
        gap: 8px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .services-section,
    .agents-section,
    .pricing-section,
    .contact-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 20px 0 50px;
        min-height: auto;
    }

    .hero-container {
        padding: 0 16px;
        gap: 30px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
        max-width: 100%;
    }

    .hero-visual {
        order: 1;
        margin-bottom: 20px;
    }

    .hero-tablet {
        width: min(420px, 90vw);
        height: min(320px, 68vw);
        border-radius: 40px;
        transform: rotateX(2deg) rotateY(0deg);
        box-shadow: 
            0 0 0 3px #c0c0c0,
            0 0 0 6px #a8a8a8,
            0 0 0 9px #909090,
            0 15px 40px rgba(0, 0, 0, 0.35),
            0 8px 20px rgba(0, 0, 0, 0.2),
            inset 0 1px 4px rgba(255, 255, 255, 0.8);
    }

    .hero-tablet::before {
        top: 16px;
        left: 16px;
        right: 16px;
        bottom: 16px;
        border-radius: 28px;
    }

    .specialty-badge {
        margin-bottom: 16px;
        padding: 6px 16px;
        font-size: 12px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 40px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 15px;
        min-width: auto;
    }

    .hero-stats {
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 80px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Navigation improvements */
    .nav-container {
        padding: 0 16px;
    }

    .nav-logo .logo {
        height: 35px;
    }

    /* Demo section improvements */
    .interactive-demo-section {
        padding: 60px 0;
    }

    .demo-header h2 {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 16px;
    }

    .demo-header p {
        font-size: 15px;
        padding: 0 10px;
    }

    .demo-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .demo-card {
        height: auto;
        min-height: 600px;
        margin: 0 auto;
        max-width: 100%;
    }

    .demo-card-header {
        padding: 20px 16px 16px;
        gap: 12px;
    }

    .demo-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .demo-title h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .demo-title p {
        font-size: 14px;
    }

    /* Chat interface mobile */
    .chat-messages {
        min-height: 280px;
        max-height: 320px;
        padding: 12px;
        gap: 10px;
    }

    .chat-message .message-content {
        font-size: 13px;
        padding: 12px 14px;
        max-width: 85%;
        border-radius: 12px;
    }

    .quick-questions {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 10px;
        min-height: 120px;
        max-height: 140px;
    }

    .quick-question {
        padding: 10px 12px;
        font-size: 11px;
        border-radius: 6px;
    }

    .quick-question i {
        font-size: 12px;
        width: 12px;
    }

    /* Automation interface mobile */
    .automation-selector {
        flex-direction: column;
        gap: 6px;
        padding: 12px;
    }

    .automation-option {
        min-width: auto;
        padding: 12px 14px;
        font-size: 12px;
        justify-content: center;
    }

    .automation-preview {
        min-height: 500px;
        padding: 12px;
    }

    .scenario-description {
        padding: 12px 16px;
        font-size: 13px;
        margin-bottom: 20px;
    }

    .flow-visualization {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin: 16px 0;
    }

    .flow-node {
        max-width: 100px;
    }

    .flow-node span {
        font-size: 11px;
    }

    .node-icon {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .flow-connector {
        transform: rotate(90deg);
        margin: 5px 0;
    }

    .automation-chat-messages {
        min-height: 120px;
        max-height: 160px;
        padding: 12px;
        gap: 8px;
    }

    .automation-message .message-content {
        font-size: 12px;
        padding: 10px 12px;
    }

    .automation-execute-btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    /* Services section mobile */
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .service-card {
        padding: 24px 20px;
        margin: 0 auto;
        max-width: 100%;
    }

    .service-card.featured {
        transform: none;
        margin-top: 0;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 0 auto 20px;
    }

    .service-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .service-features {
        gap: 6px;
    }

    .feature-tag {
        font-size: 11px;
        padding: 3px 10px;
    }

    /* Agents section mobile */
    .agents-section {
        padding: 60px 0;
    }

    .agents-tabs {
        flex-direction: column;
        gap: 6px;
        padding: 6px;
        margin-bottom: 40px;
    }

    .tab-btn {
        padding: 12px 16px;
        font-size: 13px;
        justify-content: center;
        width: 100%;
    }

    .agent-info {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .agent-text h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .agent-text p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .feature-list {
        text-align: left;
        max-width: 350px;
        margin: 0 auto 24px;
    }

    .feature-list li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .agent-demo {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 20px;
    }

    .demo-screen {
        padding: 20px;
    }

    .demo-stats {
        gap: 16px;
    }

    .demo-stat {
        padding: 16px 12px;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Pricing section mobile */
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-controls {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
        align-items: center;
    }

    .country-button {
        min-width: 200px;
        padding: 12px 16px;
        font-size: 13px;
    }

    .billing-toggle {
        gap: 12px;
    }

    .toggle-label {
        font-size: 13px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
        margin: 0 auto;
    }

    .pricing-card {
        padding: 24px 20px;
        margin: 0 auto;
        width: 100%;
    }

    .pricing-card.featured {
        transform: none;
        margin-top: 0;
    }

    .plan-header h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .plan-header p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .plan-price {
        margin-bottom: 20px;
    }

    .currency {
        font-size: 16px;
    }

    .amount {
        font-size: 36px;
    }

    .period {
        font-size: 14px;
    }

    .plan-features li {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .plan-button {
        padding: 12px;
        font-size: 14px;
    }

    /* Contact section mobile */
    .contact-section {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container {
        padding: 24px 20px;
    }

    .contact-form h3 {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 15px;
    }

    .form-group label {
        font-size: 13px;
        top: 14px;
        left: 14px;
    }

    .submit-button {
        padding: 14px;
        font-size: 15px;
    }

    .benefit-item h4 {
        font-size: 16px;
    }

    .benefit-item p {
        font-size: 13px;
    }

    /* Footer mobile */
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap:24px;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .footer-links {
        gap: 16px;
    }

    .footer-links a {
        font-size: 13px;
    }

    /* Clients banner mobile */
    .clients-banner {
        padding: 40px 0;
    }

    .clients-header {
        margin-bottom: 30px;
        padding: 0 16px;
    }

    .clients-header h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .clients-header p {
        font-size: 13px;
    }

    .clients-track {
        gap: 16px;
        animation-duration: 20s;
    }

    .client-logo {
        width: 120px;
        height: 90px;
        padding: 12px;
    }

    .client-logo img {
        width: 60px;
        height: 30px;
    }

    .client-logo span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .navbar {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }

    .nav-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }

    .nav-logo .logo {
        height: 24px;
    }

    .nav-menu {
        top: 42px;
        max-height: calc(100vh - 42px);
        padding: 20px 16px;
    }

    .hero {
        padding: 70px 0 40px;
    }

    .hero-container {
        padding: 0 12px;
        gap: 25px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .hero-tablet {
        width: min(340px, 85vw);
        height: min(260px, 64vw);
        border-radius: 32px;
        transform: rotateX(1deg) rotateY(0deg);
        box-shadow: 
            0 0 0 2px #c0c0c0,
            0 0 0 4px #a8a8a8,
            0 0 0 6px #909090,
            0 12px 30px rgba(0, 0, 0, 0.3),
            0 6px 15px rgba(0, 0, 0, 0.15),
            inset 0 1px 2px rgba(255, 255, 255, 0.8);
    }

    .hero-tablet::before {
        top: 12px;
        left: 12px;
        right: 12px;
        bottom: 12px;
        border-radius: 22px;
    }

    .specialty-badge {
        padding: 5px 12px;
        font-size: 11px;
        margin-bottom: 12px;
    }

    .hero-buttons {
        gap: 10px;
        margin-bottom: 35px;
    }

    .btn-primary, .btn-secondary {
        max-width: 260px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-stats {
        gap: 25px;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: 70px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
        line-height: 1.3;
    }

    /* Navigation for very small screens */
    .nav-container {
        padding: 0 12px;
    }

    .nav-logo .logo {
        height: 32px;
    }

    /* Demo sections very small screens */
    .demo-header {
        padding: 0 5px;
        margin-bottom: 30px;
    }

    .demo-header h2 {
        font-size: clamp(20px, 7vw, 28px);
    }

    .demo-header p {
        font-size: 14px;
    }

    .demo-showcase {
        padding: 0 5px;
    }

    .demo-card {
        min-height: 550px;
    }

    .demo-card-header {
        padding: 16px 12px 12px;
    }

    .demo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .demo-title h3 {
        font-size: 16px;
    }

    .demo-title p {
        font-size: 13px;
    }

    .chat-messages {
        min-height: 250px;
        max-height: 280px;
        padding: 10px;
    }

    .quick-questions {
        padding: 8px;
        min-height: 100px;
        max-height: 120px;
    }

    .quick-question {
        padding: 8px 10px;
        font-size: 10px;
    }

    .automation-selector {
        padding: 10px;
    }

    .automation-option {
        padding: 10px 12px;
        font-size: 11px;
    }

    .automation-preview {
        padding: 10px;
        min-height: 450px;
    }

    .scenario-description {
        padding: 10px 12px;
        font-size: 12px;
    }

    .node-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .flow-node span {
        font-size: 10px;
    }

    .automation-chat-messages {
        min-height: 100px;
        max-height: 130px;
    }

    /* Services very small screens */
    .services-grid {
        padding: 0 5px;
    }

    .service-card {
        padding: 20px 16px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 16px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 13px;
    }

    /* Pricing very small screens */
    .pricing-grid {
        max-width: 300px;
    }

    .pricing-card {
        padding: 20px 16px;
    }

    .plan-header h3 {
        font-size: 16px;
    }

    .plan-header p {
        font-size: 12px;
    }

    .amount {
        font-size: 32px;
    }

    /* Contact very small screens */
    .contact-form-container {
        padding: 20px 16px;
    }

    .contact-form h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    /* Clients banner very small screens */
    .clients-header {
        padding: 0 12px;
    }

    .clients-header h3 {
        font-size: 18px;
    }

    .client-logo {
        width: 100px;
        height: 80px;
        padding: 8px;
    }

    .client-logo img {
        width: 50px;
        height: 25px;
    }

    .client-logo span {
        font-size: 11px;
    }

    /* Footer very small screens */
    .footer-section p,
    .footer-section a {
        font-size: 12px;
    }

    .footer-bottom p,
    .footer-links a {
        font-size: 12px;
    }
}