:root {
    /* Professional High-Tech Color System */
    --primary: #1e40af; /* Professional blue */
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #059669; /* Professional green */
    --accent: #0f172a; /* Dark professional */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Colorado Springs inspired neutrals */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Professional gradients */
    --gradient-1: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #059669 100%);
    --gradient-2: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-3: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);

    /* Semantic colors */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    --border: var(--gray-200);
    --border-hover: var(--gray-300);
    
    /* Typography scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Legacy gradients (keeping for compatibility) */
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
    font-size: var(--font-size-base);
}

/* Better heading hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 var(--space-4) 0;
    color: var(--text-primary);
}

h1 { font-size: var(--font-size-5xl); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: var(--font-size-4xl); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: var(--font-size-2xl); font-weight: 600; line-height: 1.3; }
h4 { font-size: var(--font-size-xl); font-weight: 600; line-height: 1.4; }
h5 { font-size: var(--font-size-lg); font-weight: 600; line-height: 1.4; }
h6 { font-size: var(--font-size-base); font-weight: 600; line-height: 1.4; }

/* Better paragraph and text styling */
p {
    margin: 0 0 var(--space-4) 0;
    line-height: 1.7;
    color: var(--text-secondary);
}

strong, b {
    font-weight: 600;
    color: var(--text-primary);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        filter: brightness(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
        filter: brightness(1.2);
    }
    50% {
        transform: rotate(0deg) scale(1);
        filter: brightness(1);
    }
    75% {
        transform: rotate(10deg) scale(1.1);
        filter: brightness(1.2);
    }
}

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

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

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

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

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

.cta-button {
    background: var(--gradient-1);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--gradient-1);
    color: white;
}

.mobile-nav-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-menu.active {
    left: 0;
}

.mobile-nav-menu .nav-links {
    flex-direction: column;
    padding: 2rem;
    gap: 0.5rem;
    height: calc(100% - 80px);
    display: flex !important;
    margin: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-menu .nav-links a {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
    min-height: 44px;
}

.mobile-nav-menu .nav-links a:hover {
    color: var(--primary);
    background: rgba(79, 70, 229, 0.05);
    padding-left: 1rem;
    border-radius: 8px;
    margin: 0 -1rem;
    width: calc(100% + 2rem);
}

.mobile-nav-menu .nav-links .cta-button {
    margin-top: 1rem;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: var(--space-3) var(--space-6);
    font-weight: 600;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.39);
    transition: all 0.3s ease;
}

.mobile-nav-menu .nav-links .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
}

.mobile-nav-menu .nav-links a:hover {
    color: var(--primary);
    padding-left: 1rem;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    isolation: isolate;
}

/* Professional geometric background */
.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(5, 150, 105, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(15, 23, 42, 0.03) 0%, transparent 50%);
    animation: gentle-float 25s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(30, 64, 175, 0.02) 0%, transparent 50%, rgba(5, 150, 105, 0.02) 100%); 
            transparent 0%, 
            rgba(99, 102, 241, 0.06) 30%, 
            rgba(139, 92, 246, 0.06) 45%,
            transparent 60%,
            rgba(236, 72, 153, 0.05) 75%,
            transparent 100%
        );
    animation: wave-flow-reverse 25s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes wave-flow {
    0%, 100% {
        transform: translateX(-10%) translateY(-10%) rotate(0deg);
    }
    50% {
        transform: translateX(10%) translateY(10%) rotate(5deg);
    }
}

@keyframes wave-flow-reverse {
    0%, 100% {
        transform: translateX(10%) translateY(10%) rotate(0deg);
    }
    50% {
        transform: translateX(-10%) translateY(-5%) rotate(-3deg);
    }
}

@keyframes mesh-movement {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(15%, -15%) rotate(5deg) scale(1.1);
    }
    66% {
        transform: translate(-15%, 15%) rotate(-5deg) scale(0.9);
    }
}

@keyframes grid-flow {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: float-orb-wave 35s ease-in-out infinite;
    mix-blend-mode: normal;
}

.orb-1 {
    width: 1200px;
    height: 600px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(99, 102, 241, 0.1) 50%, rgba(99, 102, 241, 0) 100%);
    top: -300px;
    right: -400px;
    animation-duration: 35s;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.orb-2 {
    width: 1100px;
    height: 550px;
    background: linear-gradient(225deg, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(139, 92, 246, 0) 100%);
    bottom: -300px;
    left: -400px;
    animation-delay: -12s;
    animation-duration: 40s;
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
}

.orb-3 {
    width: 1000px;
    height: 500px;
    background: linear-gradient(315deg, rgba(236, 72, 153, 0.25) 0%, rgba(236, 72, 153, 0.1) 50%, rgba(236, 72, 153, 0) 100%);
    top: 10%;
    left: 30%;
    animation-delay: -24s;
    animation-duration: 32s;
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
}

@keyframes float-orb-wave {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg);
        filter: blur(100px) brightness(1);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    33% { 
        transform: translate(80px, -60px) scale(1.1) rotate(5deg);
        filter: blur(120px) brightness(1.1);
        border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    }
    66% { 
        transform: translate(-60px, 80px) scale(0.95) rotate(-5deg);
        filter: blur(90px) brightness(1);
        border-radius: 50% 60% 40% 60% / 60% 50% 50% 40%;
    }
}

/* Floating wave lines for AWS-style background */
.floating-wave {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.4) 20%,
        rgba(139, 92, 246, 0.4) 40%,
        rgba(236, 72, 153, 0.3) 60%,
        rgba(59, 130, 246, 0.3) 80%,
        transparent 100%
    );
    border-radius: 50%;
    pointer-events: none;
    animation: wave-float linear infinite;
    z-index: 1;
    will-change: transform, opacity;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

@keyframes wave-float {
    0% {
        transform: translateX(-100%) translateY(0) scaleX(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(200vw) translateY(-100px) scaleX(1.2);
        opacity: 0;
    }
}

/* Generate random movement for waves - VARIED COLORS */
.floating-wave:nth-child(4n+1) {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.25) 30%,
        rgba(99, 102, 241, 0.15) 70%,
        transparent 100%
    );
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}

.floating-wave:nth-child(4n+2) {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.25) 30%,
        rgba(139, 92, 246, 0.15) 70%,
        transparent 100%
    );
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

.floating-wave:nth-child(4n+3) {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(236, 72, 153, 0.25) 30%,
        rgba(236, 72, 153, 0.15) 70%,
        transparent 100%
    );
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.15);
}

.floating-wave:nth-child(4n) {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.25) 30%,
        rgba(59, 130, 246, 0.15) 70%,
        transparent 100%
    );
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 64, 175, 0.1);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.1);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 1.2rem;
}

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

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.hero-features-section,
.hero-stats-section,
.hero-cta-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(30, 64, 175, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-features-section:hover,
.hero-stats-section:hover,
.hero-cta-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.hero-features-section h3,
.hero-stats-section h3,
.hero-cta-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
}

.hero-features .feature-item {
    justify-content: flex-start;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(30, 64, 175, 0.05);
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0;
}

.hero-stats .stat {
    text-align: center;
    padding: 1rem;
    background: rgba(30, 64, 175, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

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

.hero-buttons .btn {
    width: 100%;
    text-align: center;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.btn {
    padding: var(--space-4) var(--space-8);
    border-radius: 12px;
    font-weight: 600;
    font-size: var(--font-size-base);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
}

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

.btn:hover::before {
    left: 100%;
}

.mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
}

.btn-secondary {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-tertiary {
    background: var(--gray-100);
    color: var(--text-primary);
    border-color: var(--border);
}

.btn-tertiary:hover {
    background: var(--gray-200);
    border-color: var(--border-hover);
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn-tertiary {
    background: linear-gradient(135deg, #4a68d6 0%, #5e3a8e 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(74, 104, 214, 0.2);
    opacity: 0.75;
}

.btn-tertiary:hover {
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(74, 104, 214, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-full {
    width: 100%;
}

/* Phone Mockup Animation */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--dark);
    border-radius: 40px;
    padding: 15px;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: phone-float 6s ease-in-out infinite;
    z-index: 20;
    will-change: transform;
}

.phone-mockup.speaking {
    animation: phone-speaking 0.8s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6), var(--shadow-xl);
}

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

@keyframes phone-speaking {
    0%, 100% { 
        transform: translateY(0) rotate(-2deg) scale(1); 
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.6), var(--shadow-xl);
    }
    50% { 
        transform: translateY(-15px) rotate(2deg) scale(1.02); 
        box-shadow: 0 0 50px rgba(59, 130, 246, 0.9), 0 0 80px rgba(59, 130, 246, 0.4), var(--shadow-xl);
    }
}

/* Hero phone-screen - moved to separate selector */
.hero-visual .phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.call-animation {
    text-align: center;
    color: var(--white);
}

.avatar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.avatar svg {
    width: 100%;
    height: 100%;
}

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

.call-info {
    margin-bottom: 2rem;
}

.caller-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.call-status {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sound-waves {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.sound-waves span {
    width: 4px;
    height: 20px;
    background: var(--white);
    border-radius: 2px;
    animation: sound-wave 1s ease-in-out infinite;
}

.sound-waves span:nth-child(1) { animation-delay: 0s; }
.sound-waves span:nth-child(2) { animation-delay: 0.1s; }
.sound-waves span:nth-child(3) { animation-delay: 0.2s; }
.sound-waves span:nth-child(4) { animation-delay: 0.3s; }
.sound-waves span:nth-child(5) { animation-delay: 0.4s; }

@keyframes sound-wave {
    0%, 100% { height: 10px; }
    50% { height: 30px; }
}

/* Live Call Video Styles */
.live-call-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-header h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
}

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

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

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

.features-category {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
}

.features-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.features-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
}

.category-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.category-features .feature-card {
    background: rgba(30, 64, 175, 0.05);
    border: 1px solid rgba(30, 64, 175, 0.1);
    padding: 1.5rem;
    margin: 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.category-features .feature-card:hover {
    background: rgba(30, 64, 175, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.15);
}

.category-features .feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    display: block;
}

.category-features .feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-align: center;
}

.category-features .feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    margin: 0;
    font-size: 0.9rem;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: var(--space-10);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transform: translateZ(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ROI Benefits Section */
.roi-benefits {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.roi-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.roi-overview-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.roi-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.roi-overview-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.roi-overview-content .roi-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.roi-text-content {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.roi-text-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.roi-text-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.roi-overview-content .roi-metric {
    margin-top: auto;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.roi-card {
    background: var(--white);
    border-radius: 16px;
    padding: var(--space-8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.roi-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(139, 92, 246, 0.05));
}

.roi-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.roi-badge {
    background: var(--gradient-1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.roi-card:hover::before {
    opacity: 1;
}

.roi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

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

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

.roi-metric {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.metric-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Professional Services Process Section */
.professional-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.professional-services::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23667eea" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23764ba2" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%234f46e5" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

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

.process-step {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-duration {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.process-cta {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
}

.checkmark {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Industries Section */
.industries {
    padding: 6rem 0;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe, #43e97b, #38f9d7);
    background-size: 300% 300%;
    position: relative;
    overflow: hidden;
    animation: gradientShift 8s ease infinite;
}

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

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.industry-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 320px;
    background: var(--white);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.industry-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.industry-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.1) 0%, rgba(30, 64, 175, 0.2) 100%);
}

.industry-content {
    padding: 1.5rem;
    background: var(--white);
    height: 140px;
    display: flex;
    flex-direction: column;
}

.industry-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.industry-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
}

.industry-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
    flex-grow: 1;
}

.industry-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    justify-content: center;
}

.industry-features span {
    background: var(--gradient-1);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.industries-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(15px)) {
    .industries-cta {
        background: linear-gradient(135deg, rgba(135, 207, 235, 0.8), rgba(255, 189, 189, 0.6));
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border: 2px solid rgba(255, 0, 255, 0.2);
    }
}

.industries-cta p {
    font-size: 1.125rem;
    color: var(--dark);
    margin: 0;
}

.industries-cta a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.industries-cta a:hover {
    text-decoration: underline;
}

/* Agents Section */
.agents-section {
    padding: 6rem 0;
}

.agent-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.agent-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 2rem 4rem 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.agent-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.agent-avatar {
    font-size: 4rem;
    display: block;
    animation: agent-bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1)) brightness(1.1) saturate(1.2);
    transition: all 0.3s ease;
}

.agent-avatar:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15)) brightness(1.2) saturate(1.3);
}

/* High-Tech Icon Styles */
.agent-avatar.icon-healthcare::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.agent-avatar.icon-healthcare::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.agent-avatar.icon-home-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.agent-avatar.icon-home-services::after {
    content: '⚙';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    filter: brightness(0) invert(1);
    animation: icon-spin 3s linear infinite;
}

.agent-avatar.icon-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.agent-avatar.icon-professional::after {
    content: '▲';
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.agent-avatar.icon-hospitality::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.agent-avatar.icon-hospitality::after {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: icon-pulse 2s ease-in-out infinite;
}

.agent-avatar.icon-automotive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(107, 114, 128, 0.3);
}

.agent-avatar.icon-automotive::after {
    content: '▭';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.agent-avatar.icon-wellness::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.agent-avatar.icon-wellness::after {
    content: '○';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: icon-rotate 4s linear infinite;
}

.agent-avatar.icon-default::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(107, 114, 128, 0.3);
}

.agent-avatar.icon-default::after {
    content: '●';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.phone-character {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

.phone-icon {
    font-size: 1.2rem;
    animation: phone-ring 3s ease-in-out infinite;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

.phone-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: phone-wave 2s ease-out infinite;
}

.wave-1 {
    width: 2rem;
    height: 2rem;
    animation-delay: 0s;
}

.wave-2 {
    width: 3rem;
    height: 3rem;
    animation-delay: 0.5s;
}

.wave-3 {
    width: 4rem;
    height: 4rem;
    animation-delay: 1s;
}

@keyframes phone-ring {
    0%, 90%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    95% {
        transform: rotate(-10deg) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes phone-wave {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.star-character {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    z-index: 15;
}

.star-icon {
    font-size: 1.5rem;
    animation: star-twinkle 3s ease-in-out infinite;
    color: white;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 6px rgba(255, 255, 255, 1)) brightness(1.5);
    position: relative;
}

.star-icon::before {
    content: '●';
    position: absolute;
    top: 35%;
    left: 25%;
    font-size: 0.5rem;
    color: #333;
    background: white;
    border-radius: 50%;
    width: 0.4rem;
    height: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
    transform: translate(-50%, -50%);
}

.star-icon::after {
    content: '●';
    position: absolute;
    top: 35%;
    right: 25%;
    font-size: 0.5rem;
    color: #333;
    background: white;
    border-radius: 50%;
    width: 0.4rem;
    height: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
    transform: translate(50%, -50%);
}

.star-sparkles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ffffff 0%, #e0f2fe 50%, rgba(255, 255, 255, 0.3) 100%);
    border-radius: 50%;
    animation: sparkle-float 3s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.sparkle-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 60%;
    left: 70%;
    animation-delay: 1s;
}

.sparkle-3 {
    top: 80%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes star-twinkle {
    0%, 90%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    95% {
        transform: rotate(-10deg) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes sparkle-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-8px) scale(1.5);
        opacity: 0.4;
    }
}

@keyframes agent-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.agent-card:hover .agent-avatar-wrapper {
    animation: agent-wiggle 0.5s ease-in-out;
}

.agent-card:hover .phone-character {
    opacity: 0.6;
    animation: phone-active 0.5s ease-in-out;
}

.agent-card:hover .star-character {
    opacity: 0.7;
    animation: star-active 0.5s ease-in-out;
}

.agent-card.coming-soon-card:hover {
    transform: none;
    box-shadow: var(--shadow);
}

.agent-card.coming-soon-card:hover::before {
    transform: none;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 10;
}

.coming-soon-overlay span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: coming-soon-pulse 2s ease-in-out infinite;
}

.coming-soon-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem;
    border-radius: 0 0 20px 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.coming-soon-banner span {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: coming-soon-glow 2s ease-in-out infinite;
}

.coming-soon-banner a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: coming-soon-glow 2s ease-in-out infinite;
    cursor: pointer;
}

.order-now-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 1rem;
    border-radius: 0 0 20px 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.order-now-banner a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-now-banner a:hover {
    color: #e0f2fe;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.agent-avatar-wrapper.coming-soon .phone-character {
    display: none;
}

/* Stars are visible for all agents, even coming soon ones */
.agent-avatar-wrapper.coming-soon .star-character {
    opacity: 0.5; /* Slightly dimmer for coming soon agents */
}

@keyframes coming-soon-glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.4);
    }
}

@keyframes phone-active {
    0% { transform: translate(-50%, -50%) scale(0.8); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes star-active {
    0% { transform: translate(-50%, -50%) scale(0.7); }
    50% { transform: translate(-50%, -50%) scale(1.4); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.agent-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.agent-title {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.agent-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.agent-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.agent-tag {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.agent-tag.quotes {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent);
}

/* Voice Sample Player in Agent Cards */
.voice-sample-player {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.sample-icon {
    font-size: 1.2rem;
}

.sample-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
}

.voice-sample-player .audio-player {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(99, 102, 241, 0.05);
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.voice-sample-player .audio-player:hover {
    background: rgba(99, 102, 241, 0.1);
}

.voice-sample-player .play-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.voice-sample-player .play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.voice-sample-player .waveform {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 3px;
    height: 24px;
}

.voice-sample-player .waveform-bar {
    flex: 1;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0.4;
    transition: all 0.3s ease;
    animation: none;
}

.voice-sample-player .audio-player.playing .waveform-bar {
    animation: wave 1s ease-in-out infinite;
}

.voice-sample-player .audio-player.playing .waveform-bar:nth-child(1) {
    animation-delay: 0s;
}

.voice-sample-player .audio-player.playing .waveform-bar:nth-child(2) {
    animation-delay: 0.1s;
}

.voice-sample-player .audio-player.playing .waveform-bar:nth-child(3) {
    animation-delay: 0.2s;
}

.voice-sample-player .audio-player.playing .waveform-bar:nth-child(4) {
    animation-delay: 0.1s;
}

.voice-sample-player .audio-player.playing .waveform-bar:nth-child(5) {
    animation-delay: 0s;
}

@keyframes wave {
    0%, 100% {
        height: 4px;
        opacity: 0.4;
    }
    50% {
        height: 24px;
        opacity: 0.8;
    }
}

.voice-sample-player .duration {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 600;
    font-family: 'Courier New', monospace;
    flex-shrink: 0;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: var(--light);
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: step-float 3s ease-in-out infinite;
}

.step:nth-child(1) .step-icon { animation-delay: 0s; }
.step:nth-child(2) .step-icon { animation-delay: 0.5s; }
.step:nth-child(3) .step-icon { animation-delay: 1s; }
.step:nth-child(4) .step-icon { animation-delay: 1.5s; }

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

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step p {
    color: var(--gray);
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    background: var(--gradient-1);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.featured .features-list li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.engineering {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border: 2px solid #667eea;
}

.pricing-card.engineering .features-list li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.engineering .period {
    color: rgba(255, 255, 255, 0.8);
}

.plan-badge.engineering-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.plan-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.plan-badge.popular {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.4rem;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.plus {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0.4rem;
    margin-left: 0.2rem;
    opacity: 0.8;
}

.period {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 1.5rem;
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

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

.features-list li {
    padding: 0.5rem 0;
    color: var(--gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
}

.pricing-card.featured .features-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured .features-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/*
.price-breakdown {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.pricing-card.featured .price-breakdown {
    background: rgba(255, 255, 255, 0.1);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.breakdown-item:last-child {
    margin-bottom: 0;
}

.breakdown-label {
    color: var(--gray);
    font-weight: 500;
}

.pricing-card.featured .breakdown-label {
    color: rgba(255, 255, 255, 0.8);
}

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

.pricing-card.featured .breakdown-value {
    color: var(--white);
}
*/

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: var(--gray);
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: var(--light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.benefit-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.benefit-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.benefit-desc {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.4;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--white);
    color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

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

/* Footer */
/* Professional Footer Redesign */
.footer {
    background: var(--gray-900);
    color: var(--gray-100);
    padding: var(--space-20) 0 var(--space-8) 0;
    border-top: 1px solid var(--gray-800);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-section h3 {
    color: var(--white);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-6);
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 1px;
}

.footer-logo-section {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--white);
}

.footer-logo p {
    margin: 0;
    color: var(--gray-400);
    font-size: var(--font-size-base);
    line-height: 1.6;
    max-width: 400px;
}

.colorado-badge {
    margin-top: 1rem;
    display: inline-block;
}

.colorado-badge span {
    background: linear-gradient(135deg, #1e40af, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 12px;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: var(--font-size-lg);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: var(--font-size-base);
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--space-8);
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-copyright {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--gray-400);
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.email-button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Responsive footer adjustments */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        gap: 1.5rem;
    }

    /*
    .footer-social {
        justify-content: center;
    }
    */
}

/* Responsive Design */
/* Intermediate tablet/small desktop responsiveness */
@media (max-width: 1024px) {
    .hero-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        flex: 0 1 auto;
        min-width: 140px;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
        border-radius: 35px;
        padding: 12px;
    }
}

@media (max-width: 968px) {
    .nav-links {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
        border-radius: 25px;
        padding: 8px;
        margin: 2rem auto 0;
    }
    
    .phone-screen {
        border-radius: 18px;
    }
    
    .call-animation {
        padding: 1rem;
    }
    
    .hero-visual {
        margin-top: 2rem;
        display: flex;
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .agents-grid {
        grid-template-columns: 1fr;
    }
}

/* Live Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 20px !important;
    left: auto !important;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 500px;
    max-height: calc(100vh - 180px);
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    z-index: 999;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.chat-widget.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

.chat-header {
    background: var(--gradient-1);
    color: var(--white);
    padding: 1.25rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.chat-avatar svg {
    width: 100%;
    height: 100%;
}

.chat-title h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.chat-status {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #f8fafc;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    animation: slideIn 0.3s ease;
}

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

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

.message-avatar {
    width: 35px;
    height: 35px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 6px;
}

.message-avatar svg {
    width: 100%;
    height: 100%;
}

.chat-message.user .message-avatar {
    background: var(--gradient-2);
}

.message-content {
    flex: 1;
    max-width: 75%;
}

.message-content p {
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin: 0;
    box-shadow: var(--shadow-sm);
    line-height: 1.5;
}

.chat-message.user .message-content p {
    background: var(--gradient-1);
    color: var(--white);
    margin-left: auto;
}

.message-time {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.25rem;
    padding: 0 0.5rem;
}

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

.quick-reply {
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-weight: 500;
}

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

.chat-input-container {
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 0.75rem;
    border-radius: 0 0 20px 20px;
}

.chat-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.chat-input:focus {
    outline: none;
    border-color: var(--primary);
}

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

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

.chat-send:active {
    transform: scale(0.95);
}

.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px !important;
    left: auto !important;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    transition: all 0.3s ease;
    margin-bottom: 20px; /* Extra space from footer */
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-toggle.active .chat-icon {
    display: none;
}

.chat-toggle .chat-icon {
    color: var(--white);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-badge 2s ease-in-out infinite;
}

@keyframes bounce-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 12px;
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--gray);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

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

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

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

/* Voice Samples Section */
.voice-samples {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.sample-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

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

.agent-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.sample-info h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--dark);
}

.sample-industry {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0.25rem 0 0 0;
}

.sample-scenario {
    background: rgba(99, 102, 241, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.play-btn.playing {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.waveform {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 3px;
    height: 40px;
}

.waveform-bar {
    flex: 1;
    background: var(--primary);
    border-radius: 3px;
    height: 20%;
    transition: height 0.3s ease;
    opacity: 0.5;
}

.audio-player.playing .waveform-bar:nth-child(1) {
    animation: waveform 0.6s ease-in-out infinite;
    animation-delay: 0s;
}

.audio-player.playing .waveform-bar:nth-child(2) {
    animation: waveform 0.6s ease-in-out infinite;
    animation-delay: 0.1s;
}

.audio-player.playing .waveform-bar:nth-child(3) {
    animation: waveform 0.6s ease-in-out infinite;
    animation-delay: 0.2s;
}

.audio-player.playing .waveform-bar:nth-child(4) {
    animation: waveform 0.6s ease-in-out infinite;
    animation-delay: 0.3s;
}

.audio-player.playing .waveform-bar:nth-child(5) {
    animation: waveform 0.6s ease-in-out infinite;
    animation-delay: 0.4s;
}

@keyframes waveform {
    0%, 100% { height: 20%; }
    50% { height: 100%; opacity: 1; }
}

.duration {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
    min-width: 35px;
}

.transcript {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 3px solid var(--primary);
    border-radius: 5px;
}

.personality-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.personality-tags .tag {
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .chat-widget {
        width: 360px;
        height: 450px;
        max-height: calc(100vh - 160px);
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .hero-buttons::-webkit-scrollbar {
        display: none;
    }
    
    .hero-buttons .btn {
        flex: 0 0 auto;
        min-width: 120px;
        white-space: nowrap;
        text-align: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        border-radius: 30px;
        padding: 10px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 6px;
        padding: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin-left: auto;
    }
    
    .mobile-menu-toggle span {
        background: var(--dark);
        width: 24px;
        height: 3px;
    }
    
    .chat-widget {
        width: calc(100vw - 20px);
        height: calc(100vh - 200px);
        right: 10px;
        bottom: 80px;
        max-height: calc(100vh - 200px);
        border-radius: 15px;
    }
    
    .chat-toggle {
        right: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
    }
    
    .chat-header {
        padding: 1rem;
        border-radius: 15px 15px 0 0;
    }
    
    .chat-messages {
        padding: 1rem;
    }
    
    .chat-input-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .stat {
        text-align: center;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-info {
        order: 2;
        text-align: center;
    }
    
    .agents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .agent-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        padding: 0 1rem;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .agent-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .pricing-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .feature-card {
        text-align: center;
        padding: 1.5rem;
    }
}

/* Success Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease-out;
}

.modal-header {
    text-align: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.modal-subtitle {
    color: var(--gray);
    font-size: 16px;
    margin: 0;
}

.modal-body {
    padding: 30px;
}

.success-message {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.email-notification {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.email-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.email-content h3 {
    color: #1e40af;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.email-content p {
    color: #374151;
    margin: 0;
    line-height: 1.5;
}

.timeline-preview h4 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 4px;
}

.step-content span {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.4;
}

.modal-footer {
    padding: 25px 30px 30px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.modal-close-btn {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.modal-footer-text {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
        width: calc(100% - 40px);
    }

    .modal-header {
        padding: 25px 20px 15px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-footer {
        padding: 20px;
    }

    .timeline-step {
        padding: 12px;
    }

    .email-notification {
        padding: 15px;
    }
}

/* Animated Demo Section */
.animated-demo {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.animated-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Demo Background */
.demo-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.demo-orb-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation: float-orb 8s ease-in-out infinite;
}

.demo-orb-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 60%;
    right: 15%;
    animation: float-orb 6s ease-in-out infinite reverse;
}

.demo-orb-3 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation: float-orb 10s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.1;
    animation: float-icon 4s ease-in-out infinite;
    color: var(--primary);
}

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

.floating-icon-2 {
    top: 25%;
    right: 25%;
    animation-delay: 1s;
}

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

.floating-icon-4 {
    bottom: 15%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes float-icon {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.2;
    }
}

@keyframes float-orb {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    33% { 
        transform: translate(30px, -30px) scale(1.1);
    }
    66% { 
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Demo Phone Animation */
.demo-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 25%, #C084FC 75%, #DDD6FE 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.demo-call-animation {
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.demo-avatar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: demo-pulse-ring 2s ease-out infinite;
}

@keyframes demo-pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.demo-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    animation: demo-bounce 2s ease-in-out infinite;
}

.demo-avatar svg {
    width: 100%;
    height: 100%;
}

@keyframes demo-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.demo-call-info {
    margin-bottom: 2rem;
}

.demo-caller-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.demo-call-status {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.demo-sound-waves {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: end;
    height: 20px;
}

.demo-sound-waves span {
    width: 4px;
    background: var(--white);
    border-radius: 2px;
    animation: demo-sound-wave 1.5s ease-in-out infinite;
}

.demo-sound-waves span:nth-child(1) { animation-delay: 0s; height: 8px; }
.demo-sound-waves span:nth-child(2) { animation-delay: 0.2s; height: 12px; }
.demo-sound-waves span:nth-child(3) { animation-delay: 0.4s; height: 16px; }
.demo-sound-waves span:nth-child(4) { animation-delay: 0.6s; height: 12px; }
.demo-sound-waves span:nth-child(5) { animation-delay: 0.8s; height: 8px; }

@keyframes demo-sound-wave {
    0%, 100% { 
        transform: scaleY(0.5);
        opacity: 0.6;
    }
    50% { 
        transform: scaleY(1.5);
        opacity: 1;
    }
}

/* Demo Main Layout */
.demo-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.demo-video-section {
    display: flex;
    justify-content: center;
}

.demo-features-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.demo-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.demo-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: var(--gray-600);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.demo-features li:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.2rem;
    min-width: 1.5rem;
}

/* Voice Sample Section */
.voice-sample-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.voice-sample-player h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.audio-icon {
    font-size: 1.3rem;
}

.voice-sample-player audio {
    width: 100%;
    margin-bottom: 0.5rem;
    border-radius: 8px;
}

.audio-description {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
    text-align: center;
}

/* Demo CTA Section */
.demo-cta-section {
    text-align: center;
}

.demo-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    margin-bottom: 0.5rem;
}

.demo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.cta-subtext {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0.5rem 0 0 0;
}

.demo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.person-avatar {
    position: relative;
    width: 120px;
    height: 180px;
}

.person-head {
    width: 85px;
    height: 90px;
    background: #fdbcb4;
    border-radius: 50% 50% 48% 48%;
    position: relative;
    margin: 0 auto 10px;
    border: 3px solid #333;
    overflow: visible;
}

.person-head::before {
    content: '';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 50%;
    z-index: 1;
}

.person-head::after {
    content: '';
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 50px;
    background: #0a0a0a;
    border-radius: 50%;
    z-index: 2;
}

/* Triangular hair bangs */
.hair-bang {
    position: absolute;
    z-index: 3;
    background: #1a1a1a;
}

.hair-bang-1 {
    top: 10px;
    left: 18%;
    width: 24px;
    height: 26px;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.hair-bang-2 {
    top: 10px;
    left: 38%;
    width: 20px;
    height: 22px;
    background: #0a0a0a;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.hair-bang-3 {
    top: 10px;
    left: 56%;
    width: 22px;
    height: 24px;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

/* Anime-style side hair strands */
.person-head .side-hair-left,
.person-head .side-hair-right {
    position: absolute;
    top: 5px;
    width: 28px;
    height: 50px;
    background: #1a1a1a;
    border-radius: 50% 50% 60% 60%;
    z-index: 0;
}

.person-head .side-hair-left {
    left: -22px;
    transform: rotate(0deg);
}

.person-head .side-hair-right {
    right: -22px;
    transform: rotate(0deg);
}

.person-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 50px;
}

.person-eyes {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15px;
}

.eye {
    width: 20px;
    height: 22px;
    background: #fff;
    border-radius: 50% 50% 48% 48%;
    position: relative;
    border: 3px solid #000;
    overflow: visible;
}

.eye::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 30% 30%, #4a90e2, #2563eb);
    border-radius: 50%;
}

.eye::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 8px 2px 0 #fff;
}

.person-mouth {
    width: 4px;
    height: 2px;
    background: #c0392b;
    border-radius: 0 0 2px 2px;
    margin: 0 auto;
    position: relative;
    transition: all 0.08s ease;
}

.person-mouth::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 3px;
    background: #d4a574;
    border-radius: 50%;
}

.person-mouth.speaking {
    animation: mouth-talk 0.08s ease-in-out infinite alternate;
}

/* Anime eyebrows */
.person-eyebrows {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 6px;
}

.eyebrow {
    width: 14px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 40%;
    position: relative;
}

.eyebrow-left {
    transform: rotate(-8deg);
}

.eyebrow-right {
    transform: rotate(8deg);
}

@keyframes mouth-talk {
    0% {
        height: 2px;
        width: 4px;
    }
    100% {
        height: 4px;
        width: 6px;
    }
}

.person-body {
    width: 60px;
    height: 80px;
    background: #1e40af;
    border-radius: 30px 30px 15px 15px;
    position: relative;
    margin: 0 auto;
    border: 2px solid #1e3a8a;
}

.person-body::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 3px;
    background: #fbbf24;
    border-radius: 2px;
}

.person-arm {
    position: absolute;
    width: 18px;
    height: 40px;
    background: #fdbcb4;
    border-radius: 9px;
    top: 10px;
    border: 1px solid #d4a574;
}

.left-arm {
    left: -10px;
    transform: rotate(-12deg);
}

.right-arm {
    right: -10px;
    transform: rotate(12deg);
}

.phone-handset {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 45px;
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 8px;
    border: 2px solid #4b5563;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.phone-handset::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 30px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 4px;
    border: 1px solid #64748b;
}

.phone-handset::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 2px;
    background: #6b7280;
    border-radius: 1px;
}

.speech-bubble {

.speech-bubble.visible {
    opacity: 1;
    transform: translateY(0);
}

.speech-text {
    font-size: 12px;
    color: #333;
    font-weight: 500;
}

.speech-arrow {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #667eea;
}

.speech-arrow::after {
    content: '';
    position: absolute;
    top: 2px;
    left: -6px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
}

/* AI Speech Bubble */
.ai-speech-bubble {

.ai-speech-bubble.visible {
    opacity: 1;
    transform: translateX(0);
}

.ai-speech-text {
    font-size: 12px;
    color: #333;
    font-weight: 500;
}

.ai-speech-arrow {
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 12px solid #10b981;
}

.ai-speech-arrow::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 2px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid white;
}

.demo-container .phone-mockup {
    flex: 0 0 320px;
    height: 650px;
    position: relative;
    z-index: 1;
}

.demo-container .phone-mockup.speaking::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    animation: phone-sound-wave 1.5s ease-out infinite;
    pointer-events: none;
    z-index: -1;
}

.demo-container .phone-mockup.speaking::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border-radius: 44px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 80%);
    animation: phone-sound-wave 1.5s ease-out infinite 0.3s;
    pointer-events: none;
    z-index: -1;
}

@keyframes phone-sound-wave {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Phone Sound Wave Bars */
.phone-sound-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 4px;
    align-items: center;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phone-sound-waves .wave-bar {
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
    animation: phone-wave-bar 0.8s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.6);
}

.phone-sound-waves .wave-bar:nth-child(1) { animation-delay: 0s; }
.phone-sound-waves .wave-bar:nth-child(2) { animation-delay: 0.1s; }
.phone-sound-waves .wave-bar:nth-child(3) { animation-delay: 0.2s; }
.phone-sound-waves .wave-bar:nth-child(4) { animation-delay: 0.3s; }
.phone-sound-waves .wave-bar:nth-child(5) { animation-delay: 0.4s; }
.phone-sound-waves .wave-bar:nth-child(6) { animation-delay: 0.5s; }
.phone-sound-waves .wave-bar:nth-child(7) { animation-delay: 0.6s; }

@keyframes phone-wave-bar {
    0%, 100% {
        height: 20px;
        opacity: 0.7;
    }
    50% {
        height: 40px;
        opacity: 1;
    }
}

.demo-info {
    flex: 1;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

/* Phone frame for iPhone-like appearance */
.phone-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 16px solid #1a1a1a;
    border-radius: 40px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.phone-notch {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    z-index: 3;
}

.phone-speaker {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    z-index: 3;
}

.phone-camera {
    position: absolute;
    top: 8px;
    right: 32px;
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    z-index: 3;
}

.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    z-index: 3;
}

.demo-container .phone-screen {
    position: relative;
    width: 100%;
    height: 580px;
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
    border: 2px solid #333 !important;
}

.demo-container .call-animation {
    background: transparent !important;
    color: white;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

/* Demo Video Styles */
.demo-container .live-call-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(3px);
    -webkit-

.call-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    color: white;
    display: flex;
    flex-direction: column;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    font-weight: 500;
}

.signal-bars {
    display: flex;
    gap: 2px;
    align-items: flex-end;
}

.signal-bars .bar {
    width: 3px;
    height: 4px;
    background: #4ade80;
    border-radius: 1px;
}

.signal-bars .bar:nth-child(1) { height: 4px; }
.signal-bars .bar:nth-child(2) { height: 8px; }
.signal-bars .bar:nth-child(3) { height: 12px; }
.signal-bars .bar:nth-child(4) { height: 16px; }

.time {
    color: white;
    font-weight: 600;
}

.battery {
    width: 20px;
    height: 10px;
    border: 1px solid #4ade80;
    border-radius: 2px;
    position: relative;
}

.battery-level {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #4ade80;
    border-radius: 1px;
    width: 80%;
}

.call-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px;
    background: rgba(0, 0, 0, 0.9);
}

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

.caller-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

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

.caller-name {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.caller-business {
    font-size: 12px;
    color: #9ca3af;
    opacity: 0.8;
}

.call-timer {
    font-size: 14px;
    color: #4ade80;
    font-weight: 500;
}

.chat-container {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 420px; /* Increased for larger screen */
    min-height: 300px; /* Minimum height for visibility */
}

.message-bubble {
    max-width: 80%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    margin-bottom: 12px !important;
    /* visibility: hidden; */ /* Commented out to allow initial layout */
}

.message-bubble.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.message-bubble.ai-message {
    align-self: flex-start;
}

.message-bubble.customer-message {
    align-self: flex-end;
}

.message-content {
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.4;
    word-wrap: break-word;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
    position: relative;
}

/* Voice-like effects */
.typing-indicator {
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-bottom: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    align-self: flex-start;
    max-width: 60px;
}

.typing-indicator.active {
    opacity: 1;
    transform: translateY(0);
}

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: #6b7280;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

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

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.voice-waves {
    position: absolute;
    bottom: -8px;
    left: 12px;
    display: flex;
    gap: 2px;
    align-items: flex-end;
}

.wave-bar {
    width: 3px;
    height: 4px;
    background: rgba(59, 130, 246, 0.8);
    border-radius: 2px;
    animation: voice-wave 0.8s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes voice-wave {
    0%, 100% {
        height: 4px;
        opacity: 0.4;
    }
    50% {
        height: 12px;
        opacity: 1;
    }
}

/* Speaking avatar animation */
.caller-avatar.speaking {
    animation: speaking-pulse 1.5s ease-in-out infinite;
}

@keyframes speaking-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.2);
    }
}

.ai-message .message-content {
    background: #3b82f6 !important;
    color: white !important;
}

.customer-message .message-content {
    background: #374151 !important;
    color: white !important;
}

.call-controls {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 20px 16px;
    background: rgba(0, 0, 0, 0.9);
}

.control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

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

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

.demo-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

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

.demo-features li {
    margin-bottom: 0.5rem;
    color: var(--gray);
    font-size: 1rem;
}

.demo-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

/* Voice Sample Player */
.voice-sample-player {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.voice-sample-player h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.voice-sample-player audio {
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow-sm);
}

.voice-sample-player audio::-webkit-media-controls-panel {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
}

.voice-sample-player audio::-webkit-media-controls-current-time-display,
.voice-sample-player audio::-webkit-media-controls-time-remaining-display {
    color: white;
}

.voice-sample-player p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray);
}

/* Message Animation - Now handled by JavaScript */
/*
@keyframes messageAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
*/

/* Typing Animation */
@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* Signal Animation */
@keyframes signalPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.signal-bars .bar:nth-child(1) { animation: signalPulse 2s infinite; }
.signal-bars .bar:nth-child(2) { animation: signalPulse 2s infinite 0.2s; }
.signal-bars .bar:nth-child(3) { animation: signalPulse 2s infinite 0.4s; }
.signal-bars .bar:nth-child(4) { animation: signalPulse 2s infinite 0.6s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .demo-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .demo-features-section {
        order: -1;
    }
    
    .demo-orb-1, .demo-orb-2, .demo-orb-3 {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .animated-demo {
        padding: 4rem 0;
    }
    
    .demo-main {
        gap: 2rem;
    }
    
    .demo-info h3 {
        font-size: 1.5rem;
    }
    
    .demo-features li {
        font-size: 1rem;
    }
    
    .voice-sample-section {
        padding: 1rem;
    }
    
    .floating-icon {
        display: none;
    }
        flex: 0 0 200px;
        height: 400px;
    }

    .demo-container .phone-screen {
        height: 360px;
    }

    .demo-info {
        padding: 1rem;
        text-align: center;
    }

    .demo-info h3 {
        font-size: 1.5rem;
    }
}

/* Loading states & micro-interactions */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Button loading state */
.btn.loading {
    pointer-events: none;
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Subtle hover effects for better UX */
.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

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

/* Enhanced focus states */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: var(--primary-dark);
        border: 2px solid var(--primary);
    }
    
    .feature-card,
    .industry-card {
        border: 2px solid var(--border);
    }
}

/* Performance optimizations */
.hero-background::before,
.hero-background::after,
.floating-wave,
.gradient-orb {
    will-change: transform, opacity;
}

.feature-card,
.btn,
.industry-card {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ROI Calculator Styles */
.roi-calculator {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    margin-bottom: 2rem;
}

.roi-calculator h2 {
    text-align: center;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roi-subtitle {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-header {
    text-align: center;
    margin-bottom: 3rem;
}

.calculator-header h2 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.roi-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.cost-comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

/* Professional Card Styles */
.cost-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    min-height: 420px;
}

.cost-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.traditional-card {
    border-color: #ef4444;
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

.traditional-card:hover {
    border-color: #dc2626;
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
}

.ai-card {
    border-color: #10b981;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.ai-card:hover {
    border-color: #059669;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.savings-card {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
}

.savings-card:hover {
    border-color: #d97706;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

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

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

.card-content {
    color: var(--text-secondary);
}

/* Cost breakdown styling */
.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.cost-item:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.cost-label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.cost-total {
    background: #e2e8f0;
    border: 2px solid #cbd5e1;
    margin: 0.5rem 0;
    font-weight: 600;
}

.cost-monthly {
    background: #ddd6fe;
    border: 2px solid #c4b5fd;
    font-weight: 600;
}

.total-cost {
    color: #dc2626 !important;
    font-size: 1.1em !important;
    font-weight: 800 !important;
}

.total-savings {
    color: #059669 !important;
    font-size: 1.1em !important;
    font-weight: 800 !important;
}

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

.benefit-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-height: 200px;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

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

.benefit-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

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

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}
    background: linear-gradient(135deg, rgba(255, 251, 235, 0.95), rgba(255, 255, 255, 0.95));
    border: 2px solid rgba(245, 158, 11, 0.4);
    box-shadow:
        0 10px 40px rgba(245, 158, 11, 0.2),
        0 4px 12px rgba(245, 158, 11, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.savings-glass:hover {
    box-shadow:
        0 20px 60px rgba(245, 158, 11, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.5);
    background: rgba(245, 158, 11, 0.15);
}

.glass-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.5);
    margin: -2.5rem -2.5rem 2rem -2.5rem;
    padding: 1.5rem 2.5rem;
    border-radius: 16px 16px 0 0;
}

.glass-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
}

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

.glass-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.glass-content {
    color: var(--text-secondary);
}

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

.glass-content p {
    line-height: 1.6;
    margin: 0;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

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

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

.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.cost-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(4px);
}

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

.cost-amount {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(30, 64, 175, 0.2);
}

.cost-total {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 64, 175, 0.1)) !important;
    border: 2px solid rgba(59, 130, 246, 0.3) !important;
    margin: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cost-monthly {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1)) !important;
    border: 2px solid rgba(16, 185, 129, 0.4) !important;
    font-size: 1.1rem;
    font-weight: 600;
}

.savings-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.savings-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.savings-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
    background: rgba(255, 255, 255, 1);
}

.savings-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #d97706;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.savings-label {
    font-size: 0.9rem;
    color: #92400e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roi-highlight {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    border-radius: 12px;
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.roi-highlight p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #92400e;
}

.roi-note {
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    color: #a16207 !important;
}

.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cost-label {
    font-weight: 500;
    color: var(--text-primary);
}

.cost-amount {
    font-weight: 700;
    font-size: var(--font-size-lg);
}

.traditional-costs .cost-amount {
    color: #dc2626;
}

.ai-costs .cost-amount {
    color: #059669;
}

.cost-total {
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid;
    margin-top: 1rem;
    padding: 1rem;
}

.traditional-costs .cost-total {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

.ai-costs .cost-total {
    border-color: #059669;
    background: rgba(5, 150, 105, 0.1);
}

.total-cost {
    font-size: var(--font-size-2xl) !important;
    font-weight: 800 !important;
}

.total-savings {
    color: #059669 !important;
}

.cost-monthly {
    background: rgba(0, 0, 0, 0.08);
    border: 2px solid #666;
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.savings-summary {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    border-radius: 16px;
    padding: 2rem;
    grid-column: 1 / -1;
    text-align: center;
}

.savings-summary h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: 2rem;
    color: white;
}

.savings-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.savings-stat {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.savings-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: #10b981;
    display: block;
    margin-bottom: 0.5rem;
}

.savings-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roi-highlight {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.roi-highlight p {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: white;
}

.roi-note {
    font-size: var(--font-size-base) !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-top: 0.5rem !important;
}

/* Additional Benefits */
.additional-benefits {
    margin-top: 3rem;
}

.additional-benefits h3 {
    text-align: center;
    font-size: var(--font-size-2xl);
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-header h3 {
    font-size: var(--font-size-2xl);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

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

/* Benefit glass containers inherit from base glass-container styles */
.benefit-glass {
    min-height: 200px;
}

.availability-glass {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(255, 255, 255, 0.95));
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow:
        0 10px 40px rgba(59, 130, 246, 0.15),
        0 4px 12px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.availability-glass:hover {
    box-shadow:
        0 20px 60px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.15);
}

.instant-glass {
    background: linear-gradient(135deg, rgba(250, 245, 255, 0.95), rgba(255, 255, 255, 0.95));
    border: 2px solid rgba(168, 85, 247, 0.3);
    box-shadow:
        0 10px 40px rgba(168, 85, 247, 0.15),
        0 4px 12px rgba(168, 85, 247, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.instant-glass:hover {
    box-shadow:
        0 20px 60px rgba(168, 85, 247, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.15);
}

.revenue-glass {
    background: linear-gradient(135deg, rgba(240, 253, 244, 0.95), rgba(255, 255, 255, 0.95));
    border: 2px solid rgba(34, 197, 94, 0.3);
    box-shadow:
        0 10px 40px rgba(34, 197, 94, 0.15),
        0 4px 12px rgba(34, 197, 94, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.revenue-glass:hover {
    box-shadow:
        0 20px 60px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.15);
}

.productivity-glass {
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.95), rgba(255, 255, 255, 0.95));
    border: 2px solid rgba(251, 146, 60, 0.3);
    box-shadow:
        0 10px 40px rgba(251, 146, 60, 0.15),
        0 4px 12px rgba(251, 146, 60, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.productivity-glass:hover {
    box-shadow:
        0 20px 60px rgba(251, 146, 60, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(251, 146, 60, 0.2);
    border-color: rgba(251, 146, 60, 0.5);
    background: rgba(251, 146, 60, 0.15);
}

.benefit-card:hover::before {
    opacity: 1;
}

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

.benefit-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-category {
    background: var(--gradient-1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .roi-calculator h2 {
        font-size: var(--font-size-3xl);
    }

    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .savings-summary {
        grid-column: 1;
    }

    .savings-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .savings-number {
        font-size: var(--font-size-3xl);
    }

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

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .roi-calculator {
        margin-top: 2rem;
        padding: 2rem 1rem;
    }

    .savings-stats {
        grid-template-columns: 1fr;
    }

    .cost-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .cost-amount {
        font-size: var(--font-size-base);
    }
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Footer logo animation */
.footer-logo svg {
    transition: transform 0.3s ease;
}

.footer-logo:hover svg {
    transform: scale(1.05) rotate(5deg);
}

/* Professional Section Dividers */
.roi-benefits {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.roi-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.3), transparent);
}

.roi-benefits::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.3), transparent);
}
@media (max-width: 1024px) {
    .calculator-glass-containers {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .hero-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .roi-overview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .features-organized-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .benefits-glass-containers {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .glass-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .calculator-glass-containers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .hero-features-section,
    .hero-stats-section,
    .hero-cta-section {
        padding: 1.5rem;
    }

    .roi-overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .roi-overview-content {
        padding: 1.5rem;
    }

    .features-organized-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-category {
        padding: 1.5rem;
    }

    .category-features {
        gap: 1rem;
    }

    .category-features .feature-card {
        padding: 1.25rem;
    }

    .benefits-glass-containers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .glass-container {
        padding: 1.5rem;
    }

    .glass-header {
        margin: -1.5rem -1.5rem 1.5rem -1.5rem;
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content-grid {
        margin-top: 1.5rem;
    }

    .hero-features-section h3,
    .hero-stats-section h3,
    .hero-cta-section h3 {
        font-size: 1.1rem;
    }

    .features-category h3 {
        font-size: 1.25rem;
    }

    .category-features .feature-card h4 {
        font-size: 1.1rem;
    }
}

/* Glass Container Responsive Design */
@media (max-width: 1024px) {
    .calculator-glass-containers,
    .benefits-glass-containers {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .glass-container {
        padding: 1.5rem;
    }

    .glass-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .glass-icon {
        font-size: 1.75rem;
    }

    .glass-header h3 {
        font-size: 1.25rem;
    }

    .glass-header h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .calculator-glass-containers,
    .benefits-glass-containers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .glass-container {
        padding: 1.25rem;
    }

    .glass-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }

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

    .glass-header h3 {
        font-size: 1.1rem;
    }

    .glass-header h4 {
        font-size: 1rem;
    }

    .glass-content h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .benefit-glass {
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .glass-container {
        padding: 1rem;
        border-radius: 16px;
    }

    .glass-header {
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .glass-icon {
        font-size: 1.25rem;
    }

    .glass-header h3 {
        font-size: 1rem;
    }

    .glass-header h4 {
        font-size: 0.9rem;
    }

    .glass-content h5 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .glass-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .benefit-glass {
        min-height: 160px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .footer-logo-section {
        grid-column: span 1;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .mobile-nav-menu {
        width: 100vw;
    }
    
    .mobile-nav-header {
        padding: 1rem 1.5rem;
    }
    
    .mobile-nav-menu .nav-links {
        padding: 1.5rem;
    }
}
}
