/* ========================================
   TALKVIEW - MODERN PROFESSIONAL COLOR THEME
   Enterprise Call Center Management Software
   Optimized for South Asian Markets
   ======================================== */

/* ========================================
   CSS CUSTOM PROPERTIES (COLOR SYSTEM)
   ======================================== */

        :root {
    /* ========================================
       PRIMARY BRAND COLORS
       ======================================== */
    
    /* Deep Professional Navy - Primary Brand */
    --primary-navy: #0F172A;
    --primary-navy-light: #1E293B;
    --primary-navy-lighter: #334155;
    
    /* Electric Blue - Secondary Brand */
    --electric-blue: #3B82F6;
    --electric-blue-light: #60A5FA;
    --electric-blue-lighter: #93C5FD;
    --electric-blue-dark: #2563EB;
    --electric-blue-darker: #1D4ED8;
    
    /* Success Green - Positive Actions */
    --emerald-green: #10B981;
    --emerald-green-light: #34D399;
    --emerald-green-lighter: #6EE7B7;
    --emerald-green-dark: #059669;
    --emerald-green-darker: #047857;
    
    /* Warning Orange - Attention/Status */
    --amber-orange: #F59E0B;
    --amber-orange-light: #FBBF24;
    --amber-orange-lighter: #FCD34D;
    --amber-orange-dark: #D97706;
    --amber-orange-darker: #B45309;
    
    /* Additional Vibrant Colors */
    --purple-vibrant: #8B5CF6;
    --purple-light: #A78BFA;
    --pink-vibrant: #EC4899;
    --pink-light: #F472B6;
    --cyan-vibrant: #06B6D4;
    --cyan-light: #22D3EE;
    --lime-vibrant: #84CC16;
    --lime-light: #A3E635;
    
    /* ========================================
       NEUTRAL COLORS
       ======================================== */
    
    /* Pure White */
    --crisp-white: #FFFFFF;
    --pure-white: #FFFFFF;
    
    /* Light Grays */
    --light-gray: #F8FAFC;
    --light-gray-100: #F1F5F9;
    --light-gray-200: #E2E8F0;
    --light-gray-300: #CBD5E1;
    
    /* Medium Grays */
    --medium-gray: #94A3B8;
    --medium-gray-400: #9CA3AF;
    --medium-gray-500: #6B7280;
    
    /* Dark Grays */
    --dark-gray: #374151;
    --dark-gray-600: #4B5563;
    --dark-gray-700: #374151;
    --dark-gray-800: #1F2937;
    
    /* Text Colors */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-tertiary: #64748B;
    --text-muted: #94A3B8;
    --text-light: #CBD5E1;
    --text-white: #FFFFFF;
    
    /* ========================================
       SEMANTIC COLORS
       ======================================== */
    
    /* Status Colors */
    --status-online: #10B981;
    --status-busy: #F59E0B;
    --status-offline: #6B7280;
    --status-error: #EF4444;
    --status-warning: #F59E0B;
    --status-info: #3B82F6;
    --status-success: #10B981;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --bg-dark: #0F172A;
    --bg-overlay: rgba(15, 23, 42, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.1);
    
    /* Border Colors */
    --border-light: #E2E8F0;
    --border-medium: #CBD5E1;
    --border-dark: #94A3B8;
    --border-focus: #3B82F6;
    --border-error: #EF4444;
    --border-success: #10B981;
    
    /* ========================================
       GRADIENT SYSTEM
       ======================================== */
    
    /* Primary Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-navy) 0%, var(--electric-blue) 100%);
    --gradient-primary-reverse: linear-gradient(135deg, var(--electric-blue) 0%, var(--primary-navy) 100%);
    --gradient-primary-soft: linear-gradient(135deg, var(--primary-navy-light) 0%, var(--electric-blue-light) 100%);
    
    /* Success Gradients */
    --gradient-success: linear-gradient(135deg, var(--emerald-green) 0%, var(--emerald-green-dark) 100%);
    --gradient-success-soft: linear-gradient(135deg, var(--emerald-green-light) 0%, var(--emerald-green) 100%);
    
    /* Warning Gradients */
    --gradient-warning: linear-gradient(135deg, var(--amber-orange) 0%, var(--amber-orange-dark) 100%);
    --gradient-warning-soft: linear-gradient(135deg, var(--amber-orange-light) 0%, var(--amber-orange) 100%);
    
    /* Neutral Gradients */
    --gradient-neutral: linear-gradient(135deg, var(--light-gray) 0%, var(--light-gray-200) 100%);
    --gradient-dark: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-gray-800) 100%);
    
    /* Glass Gradients */
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-glass-dark: linear-gradient(135deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.05) 100%);
    
    /* Vibrant Gradients */
    --gradient-purple: linear-gradient(135deg, var(--purple-vibrant) 0%, var(--purple-light) 100%);
    --gradient-pink: linear-gradient(135deg, var(--pink-vibrant) 0%, var(--pink-light) 100%);
    --gradient-cyan: linear-gradient(135deg, var(--cyan-vibrant) 0%, var(--cyan-light) 100%);
    --gradient-lime: linear-gradient(135deg, var(--lime-vibrant) 0%, var(--lime-light) 100%);
    --gradient-rainbow: linear-gradient(135deg, var(--purple-vibrant) 0%, var(--pink-vibrant) 25%, var(--electric-blue) 50%, var(--emerald-green) 75%, var(--amber-orange) 100%);
    
    /* ========================================
       SHADOW SYSTEM
       ======================================== */
    
    /* Light Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Colored Shadows */
    --shadow-primary: 0 10px 15px -3px rgba(59, 130, 246, 0.1), 0 4px 6px -2px rgba(59, 130, 246, 0.05);
    --shadow-success: 0 10px 15px -3px rgba(16, 185, 129, 0.1), 0 4px 6px -2px rgba(16, 185, 129, 0.05);
    --shadow-warning: 0 10px 15px -3px rgba(245, 158, 11, 0.1), 0 4px 6px -2px rgba(245, 158, 11, 0.05);
    --shadow-error: 0 10px 15px -3px rgba(239, 68, 68, 0.1), 0 4px 6px -2px rgba(239, 68, 68, 0.05);
    
    /* Glow Effects */
    --glow-primary: 0 0 20px rgba(59, 130, 246, 0.3);
    --glow-success: 0 0 20px rgba(16, 185, 129, 0.3);
    --glow-warning: 0 0 20px rgba(245, 158, 11, 0.3);
    
    /* ========================================
       TYPOGRAPHY SYSTEM
       ======================================== */
    
    /* Font Families */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    
    /* Font Sizes */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */
    --text-7xl: 4.5rem;    /* 72px */
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* Letter Spacing */
    --tracking-tighter: -0.05em;
    --tracking-tight: -0.025em;
    --tracking-normal: 0em;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;
    
    /* ========================================
       SPACING SYSTEM
       ======================================== */
    
    /* Spacing Scale */
    --space-0: 0;
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 6rem;     /* 96px */
    --space-32: 8rem;     /* 128px */
    --space-40: 10rem;    /* 160px */
    --space-48: 12rem;    /* 192px */
    --space-56: 14rem;    /* 224px */
    --space-64: 16rem;    /* 256px */
    
    /* ========================================
       BORDER RADIUS SYSTEM
       ======================================== */
    
    --radius-none: 0;
    --radius-sm: 0.125rem;   /* 2px */
    --radius-base: 0.25rem;  /* 4px */
    --radius-md: 0.375rem;   /* 6px */
    --radius-lg: 0.5rem;     /* 8px */
    --radius-xl: 0.75rem;    /* 12px */
    --radius-2xl: 1rem;      /* 16px */
    --radius-3xl: 1.5rem;    /* 24px */
    --radius-full: 9999px;
    
    /* ========================================
       TRANSITION SYSTEM
       ======================================== */
    
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* ========================================
       Z-INDEX SYSTEM
       ======================================== */
    
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}

/* ========================================
   UTILITY CLASSES FOR COLORS
   ======================================== */

/* Text Colors */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--text-white); }
.text-brand { color: var(--electric-blue); }
.text-success { color: var(--emerald-green); }
.text-warning { color: var(--amber-orange); }
.text-error { color: var(--status-error); }

/* Background Colors */
.bg-primary { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-tertiary { background-color: var(--bg-tertiary); }
.bg-dark { background-color: var(--bg-dark); }
.bg-brand { background-color: var(--electric-blue); }
.bg-success { background-color: var(--emerald-green); }
.bg-warning { background-color: var(--amber-orange); }
.bg-error { background-color: var(--status-error); }

/* Gradient Backgrounds */
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-success { background: var(--gradient-success); }
.bg-gradient-warning { background: var(--gradient-warning); }
.bg-gradient-glass { background: var(--gradient-glass); }

/* Border Colors */
.border-light { border-color: var(--border-light); }
.border-medium { border-color: var(--border-medium); }
.border-dark { border-color: var(--border-dark); }
.border-brand { border-color: var(--border-focus); }
.border-success { border-color: var(--border-success); }
.border-error { border-color: var(--border-error); }

/* Shadow Utilities */
.shadow-xs { box-shadow: var(--shadow-xs); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }
.shadow-primary { box-shadow: var(--shadow-primary); }
.shadow-success { box-shadow: var(--shadow-success); }
.shadow-warning { box-shadow: var(--shadow-warning); }
.shadow-error { box-shadow: var(--shadow-error); }

/* Glow Effects */
.glow-primary { box-shadow: var(--glow-primary); }
.glow-success { box-shadow: var(--glow-success); }
.glow-warning { box-shadow: var(--glow-warning); }

/* ========================================
   COMPONENT-SPECIFIC COLOR THEMES
   ======================================== */

/* Button Color Themes */
.btn-primary {
            background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.btn-success {
    background: var(--gradient-success);
    color: var(--text-white);
    border: none;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.btn-success:hover {
    background: var(--gradient-success-soft);
    box-shadow: var(--shadow-success);
    transform: translateY(-2px);
}

.btn-warning {
    background: var(--gradient-warning);
    color: var(--text-white);
    border: none;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.btn-warning:hover {
    background: var(--gradient-warning-soft);
    box-shadow: var(--shadow-warning);
    transform: translateY(-2px);
}

/* Card Color Themes */
.card-primary {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.card-primary:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-glass {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

/* Status Indicators */
.status-online {
    background: var(--status-online);
    color: var(--text-white);
}

.status-busy {
    background: var(--status-busy);
    color: var(--text-white);
}

.status-offline {
    background: var(--status-offline);
    color: var(--text-white);
}

.status-error {
    background: var(--status-error);
    color: var(--text-white);
}

/* ========================================
   ANIMATION KEYFRAMES
   ======================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

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

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0,-4px,0);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--electric-blue);
    }
    50% {
        box-shadow: 0 0 20px var(--electric-blue), 0 0 30px var(--electric-blue);
    }
}

/* ========================================
   RESPONSIVE DESIGN HELPERS
   ======================================== */

/* Mobile First Media Queries */
@media (max-width: 640px) {
        :root {
        --text-4xl: 2rem;
        --text-5xl: 2.5rem;
        --text-6xl: 3rem;
        --space-16: 3rem;
        --space-20: 4rem;
        --space-24: 5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --text-3xl: 1.5rem;
        --text-4xl: 1.75rem;
        --text-5xl: 2rem;
        --space-12: 2rem;
        --space-16: 2.5rem;
        --space-20: 3rem;
    }
}

/* ========================================
   ACCESSIBILITY ENHANCEMENTS
   ======================================== */

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #000000;
        --border-light: #000000;
        --border-medium: #000000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    :root {
        --text-primary: #000000;
        --text-secondary: #000000;
        --bg-primary: #ffffff;
        --bg-secondary: #ffffff;
        --border-light: #000000;
    }
    
    .shadow-xs, .shadow-sm, .shadow-md, .shadow-lg, .shadow-xl, .shadow-2xl {
        box-shadow: none !important;
    }
}

/* ========================================
   COMPONENT STYLES FOR HTML
   ======================================== */

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

body {
    font-family: var(--font-primary);
    line-height: var(--leading-normal);
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

    /* 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-light);
    padding: var(--space-4) 0;
    transition: all var(--transition-normal);
    z-index: var(--z-fixed);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-8);
}

        .nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-normal);
}

.nav-links a:hover {
    color: var(--electric-blue);
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-normal);
        }

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

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

.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 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="2.5" fill="rgba(255,255,255,0.08)"/><circle cx="10" cy="60" r="1.8" fill="rgba(255,255,255,0.12)"/><circle cx="70" cy="10" r="1.2" fill="rgba(255,255,255,0.09)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

        .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: var(--text-6xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--text-white);
    margin-bottom: var(--space-6);
    line-height: var(--leading-tight);
    animation: slideInLeft 1s ease-out;
}

.hero-content .hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    line-height: var(--leading-relaxed);
    animation: slideInLeft 1s ease-out 0.2s both;
}

        .hero-stats {
    display: flex;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
    animation: slideInLeft 1s ease-out 0.4s both;
}

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

.stat-number {
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--text-white);
    display: block;
}

.stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--space-1);
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
            flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.btn-primary, .btn-secondary {
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    position: relative;
    overflow: hidden;
            border: none;
    cursor: pointer;
    font-size: var(--text-base);
}

.btn-primary {
    background: var(--emerald-green);
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
}

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

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

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

/* Demo Interface */
.demo-interface {
    background: var(--text-white);
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    animation: slideInRight 1s ease-out 0.6s both, gentleFloat 8s ease-in-out 1.6s infinite alternate;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
}

.demo-interface:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.01);
}

.demo-header {
    background: var(--gradient-primary);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.demo-dots {
    display: flex;
    gap: var(--space-2);
}

.demo-dot {
    width: 12px;
            height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

        .demo-title {
    color: var(--text-white);
    font-weight: var(--font-weight-semibold);
    margin-left: var(--space-4);
    font-size: var(--text-lg);
}

.demo-content {
    padding: var(--space-8);
    min-height: 400px;
    position: relative;
}

@keyframes gentleFloat {
    0% { transform: perspective(1000px) translateY(0px) rotateY(-5deg) rotateX(5deg); }
    100% { transform: perspective(1000px) translateY(-8px) rotateY(-3deg) rotateX(3deg); }
}

.demo-tabs {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.demo-tab {
    padding: var(--space-3) var(--space-6);
            background: var(--light-gray);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: var(--font-weight-medium);
    font-size: var(--text-sm);
}

.demo-tab.active {
    background: var(--electric-blue);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.demo-scene {
    position: absolute;
    top: var(--space-8);
    left: var(--space-8);
    right: var(--space-8);
    bottom: var(--space-8);
            opacity: 0;
    transition: opacity var(--transition-slow);
}

.demo-scene.active {
    opacity: 1;
}

/* Mobile Demo */
.demo-phone {
    width: 280px;
    height: 500px;
    background: var(--primary-navy);
    border-radius: var(--radius-3xl);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .phone-screen {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 20px;
    background: var(--text-white);
    border-radius: 20px;
    padding: var(--space-6);
            display: flex;
    flex-direction: column;
        }

        .phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border-light);
}

        .phone-contact {
    background: var(--light-gray);
    padding: var(--space-4);
    border-radius: 15px;
    margin-bottom: var(--space-6);
    animation: slideInUp 0.5s ease;
}

.contact-name {
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.contact-number {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.call-button {
    background: var(--emerald-green);
    color: var(--text-white);
    border: none;
    padding: var(--space-4);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all var(--transition-normal);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-button:hover {
    background: var(--emerald-green-dark);
    transform: scale(1.05);
}

/* Agent List */
.agent-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.agent-item {
    display: flex;
    align-items: center;
    padding: var(--space-4);
    background: var(--light-gray);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.agent-item:hover {
    background: var(--light-gray-200);
    transform: translateX(5px);
}

.agent-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.agent-avatar.online {
    background: var(--emerald-green);
}

.agent-avatar.busy {
    background: var(--amber-orange);
}

.agent-avatar.offline {
    background: var(--text-muted);
}

.agent-avatar::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
}

.agent-avatar.online::after {
    background: var(--emerald-green);
}

.agent-avatar.busy::after {
    background: var(--amber-orange);
}

.agent-avatar.offline::after {
    background: var(--text-muted);
}

.agent-info {
    flex: 1;
    margin-left: var(--space-4);
}

.agent-name {
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.agent-status {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.agent-metrics {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    text-align: right;
}

.metric {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    background: var(--text-white);
    padding: var(--space-1) var(--space-2);
    border-radius: 6px;
}

/* Section Styles */
.section {
    padding: var(--space-20) var(--space-8);
}

.section-container {
    max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
    text-align: center;
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    position: relative;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-glow 2s ease-in-out infinite alternate;
}

@keyframes title-glow {
    0% { filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6)); }
}

.section-subtitle {
    text-align: center;
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-16);
    max-width: 600px;
            margin-left: auto;
    margin-right: auto;
    line-height: var(--leading-relaxed);
}

/* Features */
.features {
    background: var(--light-gray);
}

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

.feature-card {
    background: var(--text-white);
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-light);
}

        .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
            left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
            transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: var(--text-white);
    font-size: var(--text-3xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-rainbow);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.feature-card:nth-child(1) .feature-icon {
    background: var(--gradient-purple);
}

.feature-card:nth-child(2) .feature-icon {
    background: var(--gradient-cyan);
}

.feature-card:nth-child(3) .feature-icon {
    background: var(--gradient-pink);
}

.feature-card:nth-child(4) .feature-icon {
    background: var(--gradient-lime);
}

.feature-card:nth-child(5) .feature-icon {
    background: var(--gradient-success);
}

.feature-card:nth-child(6) .feature-icon {
    background: var(--gradient-warning);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.1;
}

.feature-title {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

        .feature-description {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    font-size: var(--text-base);
}

/* Monitoring Section */
.monitoring-section {
    background: var(--light-gray);
}

.monitoring-dashboard {
    background: var(--light-gray);
    padding: var(--space-20) var(--space-8);
}

.monitoring-container {
    max-width: 1200px;
    margin: 0 auto;
}

.insights-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--light-gray);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.insight-item:hover {
    background: var(--light-gray-200);
    transform: translateX(5px);
}

.insight-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insight-item:nth-child(1) .insight-icon {
    background: var(--gradient-lime);
    color: var(--text-white);
}

.insight-item:nth-child(2) .insight-icon {
    background: var(--gradient-warning);
    color: var(--text-white);
}

.insight-item:nth-child(3) .insight-icon {
    background: var(--gradient-success);
    color: var(--text-white);
}

.insight-content {
    flex: 1;
}

.insight-title {
    font-size: var(--text-base);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.insight-desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

.management-tools {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.tool-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--light-gray);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.tool-item:hover {
    background: var(--light-gray-200);
    transform: translateX(5px);
}

.tool-item .material-icons {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--text-white);
    flex-shrink: 0;
}

.tool-title {
    font-size: var(--text-base);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.tool-desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Workflow Section */
.workflow-section {
    background: var(--text-white);
}

.workflow-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-8);
    padding: var(--space-8);
    background: var(--light-gray);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.workflow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform var(--transition-normal);
}

.workflow-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.workflow-step:hover::before {
    transform: scaleY(1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
            display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-success);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    color: var(--text-white);
    font-size: var(--text-xl);
}

.step-content h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.step-content p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
    font-size: var(--text-base);
}

.step-features {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--electric-blue);
    color: var(--text-white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
}

.workflow-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: var(--space-8) 0;
    background: var(--light-gray);
    border-radius: var(--radius-2xl);
    margin-top: var(--space-8);
}

.workflow-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateY(-50%);
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--electric-blue);
    border-radius: 50%;
    border: 4px solid var(--text-white);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-3);
}

.timeline-content h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.timeline-content p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
    align-items: stretch;
}

.dashboard-card {
    background: var(--text-white);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.card-header {
            display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--light-gray);
}

.card-header .material-icons {
    font-size: var(--text-4xl);
    color: var(--electric-blue);
}

.card-header h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin: 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.metric-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
    background: var(--light-gray);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.metric-card:hover {
    background: var(--light-gray-200);
    transform: scale(1.02);
}

.metric-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.metric-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-rainbow);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.metric-card:nth-child(1) .metric-icon {
    background: var(--gradient-purple);
}

.metric-card:nth-child(2) .metric-icon {
    background: var(--gradient-success);
}

.metric-card:nth-child(3) .metric-icon {
    background: var(--gradient-cyan);
}

.metric-card:nth-child(4) .metric-icon {
    background: var(--gradient-warning);
}

.metric-card:hover .metric-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.metric-card:hover .metric-icon::before {
    opacity: 0.1;
}

.metric-icon .material-icons {
    font-size: var(--text-2xl);
        }

.metric-content {
            flex: 1;
        }

.metric-value {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.metric-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    margin-top: var(--space-12);
}

.contact-form {
    background: var(--text-white);
    padding: var(--space-12);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-8);
    color: var(--text-primary);
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: var(--text-base);
    transition: all var(--transition-normal);
    background: var(--text-white);
    font-family: inherit;
}

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

.submit-btn {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: var(--space-4) var(--space-8);
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
            cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
            align-items: center;
    justify-content: center;
    gap: var(--space-2);
    width: 100%;
}

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

.submit-btn:disabled {
    opacity: 0.7;
    transform: none;
    cursor: not-allowed;
}

.contact-info {
    padding: var(--space-8) 0;
}

.contact-item {
            display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    padding: var(--space-6);
    background: var(--text-white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 55px;
            height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
            display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-1);
    color: var(--text-primary);
        }

        .contact-item p {
    color: var(--text-secondary);
    margin: 0;
        }

/* CTA Section */
        .cta-section {
    background: var(--gradient-primary);
    color: var(--text-white);
            text-align: center;
    padding: var(--space-20) var(--space-8);
}

.cta-content h2 {
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-4);
}

.cta-content p {
    font-size: var(--text-xl);
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
            flex-wrap: wrap;
        }

/* Footer */
.footer {
    background: var(--primary-navy);
    color: var(--text-white);
    padding: var(--space-16) var(--space-8) var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-section h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-4);
    color: var(--text-white);
}

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

.footer-section ul li {
    margin-bottom: var(--space-2);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-section ul li a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-8);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
                display: none;
            }
    
            .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: var(--text-4xl);
    }
    
    .hero-content .hero-subtitle {
        font-size: var(--text-lg);
    }

            .hero-buttons {
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }
    
    .section-title {
        font-size: var(--text-4xl);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-step {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .workflow-timeline {
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .workflow-timeline::before {
        display: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
            .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: var(--space-4);
    }
    
    .hero-content h1 {
        font-size: var(--text-3xl);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .section {
        padding: var(--space-12) var(--space-4);
    }
    
    .feature-card {
        padding: var(--space-6);
    }
    
    .contact-form {
        padding: var(--space-8);
    }
    
    .demo-phone {
        width: 200px;
        height: 360px;
    }
    
    .demo-tabs {
        gap: var(--space-1);
    }
    
    .demo-tab {
        padding: var(--space-2) var(--space-4);
        font-size: var(--text-xs);
    }
}

/* ========================================
   END OF COLOR THEME SYSTEM
   ======================================== */
