/* Real Estate AI Landing Page - Blue Theme with Fixed Contrasts */
:root {
    /* Strict Black/Red/White Theme Only */
    --primary: #000000;
    --secondary: #FFFFFF;
    --accent: #DC2626;
    
    /* Text colors for maximum contrast */
    --text-dark: #000000;
    --text-light: #FFFFFF;
    --text-muted: #666666;
    --white: #FFFFFF;
    --black: #000000;
    --red: #DC2626;
    
    /* Background variants */
    --bg-black: #000000;
    --bg-white: #FFFFFF;
    --bg-red: #DC2626;
    
    /* Legacy compatibility - redirect to B/R/W */
    --color-bg: #FFFFFF;
    --color-surface: #FFFFFF;
    --color-text: #000000;
    --color-muted: #666666;
    --color-primary: #000000;
    --color-primary-contrast: #FFFFFF;
    --color-accent: #DC2626;
    --color-border: #000000;
    --color-danger: #DC2626;
    --primary-light: #333333;
    --primary-dark: #000000;
    --secondary-light: #F5F5F5;
    --secondary-dark: #E0E0E0;
    --accent-light: #EF4444;
    --text-on-dark: #FFFFFF;
    --text-on-light: #000000;
    
    /* Background colors */
    --bg-light: #ffffff;
    --bg-gray: #f8f8f8;
    --bg-section: #ffffff;
    --bg-dark: #1a1a1a;
    --bg-dark-light: #2a2a2a;
    
    /* Shadows and effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.4);
    --shadow-tech: 0 4px 24px rgba(220, 38, 38, 0.2);
    --shadow-neon: 0 0 15px rgba(220, 38, 38, 0.3), 0 0 30px rgba(220, 38, 38, 0.1);
    
    /* Border radius */
    --radius: 12px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #dc2626 0%, #000000 100%);
    --gradient-hero: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
    --gradient-tech: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    --gradient-ai: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
    --border-tech: 1px solid rgba(220, 38, 38, 0.2);
    --gradient-section: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, rgba(220, 38, 38, 0.01) 100%);
    --gradient-neon: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

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

html {
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.02) 0%, transparent 50%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: -0.005em;
}

/* Typography */
.font-heading {
    font-family: -apple-system, BlinkMacSystemFont, 'Space Grotesk', 'Inter', system-ui, sans-serif;
    font-weight: 600;
}

/* Text Color Standards - All White Text */
.card-body, .card-text, .feature-description, .lead, 
.text-muted, .subtitle, .description, .content p {
    color: var(--white) !important;
}

.card-title, .feature-title {
    color: var(--white) !important;
}

.text-muted {
    color: var(--white) !important;
}

/* Icons and UI elements - minimal white theme */
.feature-icon, .showcase-icon, .metric-icon, .process-icon {
    color: var(--white) !important;
    background: var(--gradient-tech) !important;
    border: var(--border-tech) !important;
    box-shadow: var(--shadow-sm);
}

/* Chat widget and interactive elements */
.chatbot-widget, .fake-chat-widget {
    background: var(--black) !important;
    border: 2px solid var(--red) !important;
    color: var(--white) !important;
    box-shadow: var(--shadow-lg) !important;
}

/* Logo and brand elements */
.logo, .brand-logo, .company-logo {
    filter: brightness(1.2) !important;
}

/* Section backgrounds - Coordinated theme */
.voice-ai-section, .features-section, .testimonials-section,
.pricing-section, .cta-section, .section-subtitle {
    background: var(--black);
    color: var(--white);
}

/* Black background sections - use light text */
.features, .testimonial-section, .packages, .about {
    background: var(--black);
    color: var(--white) !important;
}

.features h1, .features h2, .features h3, .features h4, .features h5, .features h6, .features p,
.testimonial-section h1, .testimonial-section h2, .testimonial-section h3, .testimonial-section h4, .testimonial-section h5, .testimonial-section h6, .testimonial-section p,
.packages h1, .packages h2, .packages h3, .packages h4, .packages h5, .packages h6, .packages p,
.about h1, .about h2, .about h3, .about h4, .about h5, .about h6, .about p {
    color: var(--white) !important;
}

/* Black background sections - use white text */
.hero, .work, .cta {
    background: var(--black);
    color: var(--white) !important;
}

.hero h1, .hero h2, .hero h3, .hero h4, .hero h5, .hero h6, .hero p, .hero span,
.work h1, .work h2, .work h3, .work h4, .work h5, .work h6, .work p,
.cta h1, .cta h2, .cta h3, .cta h4, .cta h5, .cta h6, .cta p {
    color: var(--white) !important;
}

/* Hero specific text colors */
.hero-title, .hero-subtitle, .hero-bottom-text, .hero-bottom-subtitle {
    color: var(--white) !important;
}

.stat-label-clean {
    color: rgba(255, 255, 255, 0.8) !important;
}

.text-muted {
    color: var(--white) !important;
}

/* Ensure buttons have proper contrast */
.btn-primary {
    background: var(--red);
    color: var(--white);
    border: none;
}

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

.btn-secondary {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--red);
}

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

/* Ensure all section badges and titles are visible */
.section-badge {
    color: inherit !important;
}

.section-title {
    color: inherit !important;
}

.section-subtitle {
    color: inherit !important;
}

/* Dark sections use dark background */
.hero, .ai-sales-agent {
    background: var(--black);
    color: var(--white);
}

/* Text visibility in all sections - Complete color coordination */
.voice-ai-section h1, .voice-ai-section h2, .voice-ai-section h3, .voice-ai-section h4, .voice-ai-section h5, .voice-ai-section h6,
.voice-ai-section p, .voice-ai-section span, .voice-ai-section div, .voice-ai-section li,
.voice-ai-section .lead, .voice-ai-section .section-title, .voice-ai-section .section-subtitle,
.voice-ai-section .benefit-item, .voice-ai-section .benefit-item span,
.voice-ai-section * {
    color: var(--white) !important;
}

.features h2, .features h3, .features p,
.testimonials h2, .testimonials p,
.pricing h2, .pricing p,
.section-subtitle, .metric-card h4, .metric-card p,
.showcase-content h5, .showcase-content p, .showcase-item p,
.voice-feature h4, .voice-feature p,
.benefit-title, .process-title, .section-description {
    color: var(--text-on-light) !important;
}

/* Dark sections use white text */
.hero h1, .hero h2, .hero p, .hero .lead,
.ai-sales-agent h2, .ai-sales-agent h3, .ai-sales-agent h4, .ai-sales-agent p {
    color: var(--white) !important;
}

/* Button consistency for coordinated theme */
.btn-secondary {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--red);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-2px);
}

/* Feature lists styling */
.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--black) !important;
}

/* Work section styling */
.work-card {
    background: var(--black);
    border: 2px solid var(--red);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.work-card:hover {
    transform: translateY(-5px);
    background: var(--red);
    color: var(--black);
}

.work-card:hover .work-content h5,
.work-card:hover .work-content p,
.work-card:hover .work-content small {
    color: var(--white) !important;
}

.work-image-placeholder {
    height: 200px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--red);
}

.work-content h5 {
    color: var(--white) !important;
    margin-bottom: 0.5rem;
}

.work-content p {
    color: var(--white) !important;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.work-content small {
    font-weight: 600;
    color: var(--white) !important;
}

/* Package FAQ styling */
.package-faq {
    background: var(--black);
    border: 2px solid var(--red);
    border-radius: var(--radius);
    padding: 2rem;
    color: var(--white);
}

.faq-item h6 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-muted);
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-on-dark);
}

/* Enhanced Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    padding: 1.25rem 0;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-neon);
}

.navbar-brand {
    font-family: inherit;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(220, 38, 38, 0.4);
}

.navbar-brand .text-primary {
    color: var(--accent) !important;
    text-shadow: 0 0 8px rgba(220, 38, 38, 0.4);
}

.nav-link {
    font-weight: 500;
    color: var(--white) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 0.75rem !important;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent) !important;
    background: rgba(220, 38, 38, 0.1);
    text-shadow: 0 0 8px rgba(220, 38, 38, 0.6);
}

/* Enhanced Buttons */
.btn {
    font-weight: 600;
    border-radius: var(--radius-lg);
    padding: 1rem 2rem;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--black);
    color: var(--white) !important;
    border-color: var(--black);
    transform: translateY(-2px);
}


.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.hero-secondary-btn {
    background: rgba(220, 38, 38, 0.06);
    border: 2px solid rgba(220, 38, 38, 0.2);
    color: var(--secondary);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-secondary-btn:hover {
    background: rgba(220, 38, 38, 0.12);
    border-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Clean Hero Section */
.hero {
    background: var(--primary);
    padding: 0;
    position: relative;
    overflow: hidden;
    color: var(--text-on-dark);
    min-height: 90vh;
}

.hero-content {
    padding: 100px 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.text-highlight {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.4);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

.hero-cta .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius);
}

/* Live Stats */
.live-stats {
    margin-top: 3rem;
}

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

.stat-item-clean {
    display: flex;
    flex-direction: column;
}

.stat-number-clean {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label-clean {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

/* AI Assistant Display */
.hero-visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 50px 0;
}

.ai-assistant-display {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.phone-interface {
    background: rgba(220, 38, 38, 0.06);
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: var(--shadow-xl);
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(220, 38, 38, 0.12);
}

.call-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
}

.call-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.call-duration {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.ai-conversation {
    margin-bottom: 1.5rem;
}

.conversation-bubble {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    position: relative;
}

.ai-bubble {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-left: 0;
    font-style: italic;
}

.ai-response {
    background: var(--accent);
    color: var(--white);
    margin-right: 0;
}

.ai-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.action-item.active {
    background: rgba(220, 38, 38, 0.12);
    color: var(--white);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.action-item i {
    color: var(--white);
}

.action-item.active i {
    color: var(--accent);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: rgba(220, 38, 38, 0.1);
    color: var(--white);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 1rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-tech);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.2);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.floating-element i {
    font-size: 1.5rem;
    color: var(--accent);
}

.element-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

/* Hero Bottom */
.hero-bottom {
    padding: 3rem 0;
    background: rgba(220, 38, 38, 0.03);
    border-top: 1px solid rgba(220, 38, 38, 0.06);
}

.hero-bottom-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-bottom-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .phone-interface {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}



.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 165, 116, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(197, 48, 48, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-particle 8s infinite linear;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 11s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 60%;
    animation-delay: 3s;
    animation-duration: 13s;
}

@keyframes float-particle {
    0% {
        transform: translateY(0px) translateX(0px) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(20px) scale(0);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(220, 38, 38, 0.03);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.06);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
    border-color: rgba(220, 38, 38, 0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}





.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Interactive Dashboard */
.hero-image {
    position: relative;
    z-index: 2;
    max-width: 400px;
    margin: 0 auto;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-icon:nth-child(2) {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: -0.5s;
}

.floating-icon:nth-child(3) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -1s;
    background: linear-gradient(135deg, #10b981, #047857);
}

.floating-icon:nth-child(4) {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: -1.5s;
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.central-logo {
    width: 120px;
    height: 120px;
    background: var(--black);
    border: 2px solid var(--red);
    backdrop-filter: blur(25px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 32px;
    font-weight: 700;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(99, 102, 241, 0.2);
    z-index: 10;
}

.central-logo span {
    font-size: 12px;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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



/* Voice AI Section Styles */
.voice-ai-section {
    padding: 120px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
}

.voice-ai-section::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="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(99,102,241,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.voice-ai-features {
    margin: 2rem 0;
}

.voice-ai-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(26, 54, 93, 0.02);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

.voice-ai-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.voice-ai-feature-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.voice-ai-feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
}

.voice-ai-feature-content p {
    margin: 0;
    color: var(--white);
    line-height: 1.5;
}

.voice-ai-benefits {
    padding: 1.5rem;
    background: var(--black);
    border-radius: var(--radius);
    border: 2px solid var(--red);
}

.voice-ai-benefits .benefit-item,
.voice-ai-benefits .benefit-item span,
.voice-ai-benefits h4,
.voice-ai-benefits p,
.voice-ai-benefits * {
    color: var(--white) !important;
}

.voice-ai-visual {
    padding: 2rem;
}

.voice-ai-showcase {
    background: var(--black);
    border: 2px solid var(--red);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(26, 54, 93, 0.08);
    color: var(--text-dark);
}

.voice-ai-showcase h4,
.voice-ai-showcase h5,
.voice-ai-showcase p {
    color: var(--text-dark) !important;
}

.metric-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.8rem 0.4rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: visible; /* Allow overflow to show full numbers */
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.metric-card:nth-child(2) {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.metric-card:nth-child(2):hover {
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.metric-card:nth-child(3) {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.metric-card:nth-child(3):hover {
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.metric-card::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;
}

.metric-card:hover::before {
    left: 100%;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Make monthly commissions more visible with full number display */
.metric-card:first-child .metric-value {
    font-weight: 900;
    color: var(--white) !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 1.3rem;
    line-height: 1.2;
    padding: 0.2rem 0;
    white-space: nowrap;
    overflow: visible;
    width: auto;
    max-width: none;
    display: block;
}

.metric-label {
    font-size: 0.7rem;
    opacity: 0.95;
    margin-bottom: 0.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-change {
    font-size: 0.65rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.metric-change.positive {
    color: var(--white);
    background: rgba(16, 185, 129, 0.2);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
}

.live-status {
    background: var(--black);
    border: 2px solid var(--red);
    border-radius: 12px;
    padding: 1rem;
    color: var(--white);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0;
    transition: all 0.2s ease;
}

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

.mini-chart {
    background: var(--black);
    border: 2px solid var(--red);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    color: var(--white);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.chart-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.chart-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #10b981;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.25rem;
    height: 40px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px 2px 0 0;
    min-height: 8px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.chart-bar.active {
    opacity: 1;
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

.chart-bar:hover {
    opacity: 1;
    transform: scaleY(1.1);
}

.status-item:hover {
    transform: translateX(2px);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse-status 2s infinite;
    position: relative;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.status-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid currentColor;
    opacity: 0.3;
    animation: ripple-status 2s infinite;
}

.status-dot.cart {
    background: #10b981;
    color: var(--white);
}

.status-dot.dm {
    background: var(--primary);
    color: var(--primary);
}

.status-dot.sales {
    background: #f59e0b;
    color: var(--white);
}

.status-dot.follow-up {
    background: #8b5cf6;
    color: var(--white);
}

@keyframes pulse-status {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}

@keyframes ripple-status {
    0% {
        transform: scale(0);
        opacity: 0.6;
    }
    70% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.status-text {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* AI Sales Agent Section */
.ai-sales-agent {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.ai-sales-agent h2,
.ai-sales-agent h3,
.ai-sales-agent h4,
.ai-sales-agent p,
.ai-sales-agent .feature-highlight,
.ai-sales-agent .list-unstyled li,
.ai-sales-agent strong,
.ai-sales-agent .lead {
    color: var(--white) !important;
}

.ai-sales-agent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.ai-agent-content {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-sm);
}

.feature-highlight {
    background: var(--black);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--red);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-highlight * {
    color: var(--white) !important;
}

.feature-highlight:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    background: var(--red);
    color: var(--black);
}

.feature-highlight:hover * {
    color: var(--black) !important;
}

.feature-highlight strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
}

.why-it-works,
.ideal-for {
    background: var(--black);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 2px solid var(--red);
    color: var(--red);
}

.why-it-works *,
.ideal-for * {
    color: var(--white) !important;
}

.why-it-works h4,
.ideal-for h4 {
    color: var(--white) !important;
    font-size: 1.25rem;
}

.why-it-works:hover,
.ideal-for:hover {
    background: var(--red);
    color: var(--black);
}

.why-it-works:hover *,
.ideal-for:hover * {
    color: var(--black) !important;
}

.ai-agent-visual {
    position: relative;
    z-index: 2;
}

.ai-avatar-container {
    position: relative;
    display: inline-block;
}

.ai-avatar {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(99, 102, 241, 0.2));
}

.floating-stats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stat-bubble {
    position: absolute;
    background: var(--black);
    border: 2px solid var(--red);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-lg);
    color: var(--white);
    text-align: center;
    border: 2px solid rgba(99, 102, 241, 0.1);
    animation: float 6s ease-in-out infinite;
    color: var(--text-dark);
}

.stat-bubble * {
    color: var(--text-dark) !important;
}

.stat-bubble.stat-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.stat-bubble.stat-2 {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.stat-bubble.stat-3 {
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

.stat-bubble .stat-number {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 1;
}

.stat-bubble .stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

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

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--secondary);
    background-image: var(--gradient-section);
    border-top: 1px solid rgba(220, 38, 38, 0.15);
    color: var(--text-on-light);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.015) 0%, transparent 50%);
    pointer-events: none;
}

.feature-card {
    background: var(--black);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 2px solid rgba(220, 38, 38, 0.15);
    position: relative;
    overflow: hidden;
    color: var(--text-on-light);
}

.feature-card h3,
.feature-card p,
.feature-card li,
.feature-card span,
.feature-card strong {
    color: var(--white) !important;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-neon);
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.4);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(26, 54, 93, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.25), var(--shadow-xl);
    border-color: var(--accent);
}

.feature-card:hover::before {
    height: 6px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-neon);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-neon);
    transition: var(--transition);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-gold);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

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

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--white) !important;
}

.feature-card p {
    color: var(--black) !important;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--black);
    background-image: 
        linear-gradient(135deg, rgba(255, 255, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 0, 0.04) 0%, transparent 50%);
}

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

.process-number {
    width: 60px;
    height: 60px;
    background: var(--red);
    border: 2px solid gold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
}

.process-step h4 {
    margin-bottom: 1rem;
    color: var(--white) !important;
}

.process-step p {
    color: var(--white) !important;
    margin: 0;
    opacity: 0.9;
}

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

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

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Modal Styles */
.modal-content {
    border: 2px solid var(--red);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    background: var(--black);
    color: var(--white);
}

.modal-header {
    border-bottom: 2px solid var(--red);
    padding: 1.5rem;
    background: var(--black);
    color: var(--white);
}

.modal-title {
    font-weight: 600;
    color: var(--white);
}

.form-control {
    border: 2px solid var(--red);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(220, 38, 38, 0.1) !important;
    color: var(--white) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.form-control:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    outline: none;
}

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

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Progress Bar */
.progress {
    height: 8px;
    border-radius: 4px;
    background: #e5e7eb;
}

.progress-bar {
    background: var(--primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(220, 38, 38, 0.06);
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(220, 38, 38, 0.06);
    border-radius: 8px;
    margin-right: 0.5rem;
    transition: var(--transition);
    color: var(--white);
}

.social-links a:hover {
    background: var(--secondary);
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utilities */
.d-none {
    display: none !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-muted {
    color: var(--text-light) !important;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.125rem;
    }
    
    .ai-sales-agent,
    .features,
    .process,
    .cta {
        padding: 60px 0;
    }
    
    .ai-agent-content {
        margin-bottom: 3rem;
    }
    
    .feature-highlight {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .why-it-works,
    .ideal-for {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .ai-avatar {
        width: 300px;
        height: 300px;
    }
    
    .stat-bubble {
        padding: 0.75rem 1rem;
        transform: scale(0.8);
    }
    
    .stat-bubble .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-bubble .stat-label {
        font-size: 0.7rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.875rem 1.25rem;
    }
    
    .btn-lg {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
        background: var(--black);
        color: var(--white);
    }
    
    .feature-card,
    .process-step {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .d-flex.flex-column.flex-sm-row {
        flex-direction: column !important;
    }
    
    .gap-3 > * + * {
        margin-top: 1rem;
    }
}

/* Performance Optimizations */
.hero-svg {
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling for better UX */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus states for accessibility - WCAG AA Compliant */
.btn:focus,
.nav-link:focus,
.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Form Elements - WCAG AA Compliant */
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
    background: rgba(220, 38, 38, 0.1) !important;
    border: 2px solid var(--red) !important;
    color: var(--white) !important;
    padding: 12px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    font-size: 1rem;
    line-height: 1.5;
    min-height: 44px; /* WCAG touch target */
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.form-control:hover,
input:hover,
select:hover,
textarea:hover {
    border-color: var(--text-muted);
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

/* Placeholder text */
.form-control::placeholder,
input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

/* Form labels */
.form-label,
label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

/* Links - WCAG AA Compliant */
a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover,
a:focus {
    color: var(--accent);
    text-decoration: underline;
}

/* Specific link variants */
.text-primary a,
.link-primary {
    color: var(--accent);
}

.text-primary a:hover,
.link-primary:hover,
.text-primary a:focus,
.link-primary:focus {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Micro-interactions and polish */
.btn {
    position: relative;
    overflow: hidden;
}

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

.section-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

.ai-avatar {
    animation: breathe 4s ease-in-out infinite;
}

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

.feature-highlight {
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    transition: left 0.5s;
}

.feature-highlight:hover::before {
    left: 100%;
}

/* Enhanced scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading states */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid var(--white);
    }
    
    .feature-card {
        border: 2px solid var(--text-light);
    }
}

/* Print styles */
@media print {
    .navbar,
    .btn,
    .modal,
    .floating-stats {
        display: none !important;
    }
    
    .hero,
    .ai-sales-agent,
    .features {
        page-break-inside: avoid;
    }
}

/* Pricing Comparison Section */
.pricing-comparison {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
}

.comparison-table-wrapper {
    background: rgba(220, 38, 38, 0.03);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.06);
    box-shadow: var(--shadow-tech);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-table thead th {
    background: var(--gradient-tech);
    color: var(--white);
    padding: 20px 16px;
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
    border: none;
    position: relative;
}

.comparison-table .ai-column {
    background: var(--gradient-ai) !important;
    position: relative;
}

.comparison-table .ai-column::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.comparison-table tbody td {
    padding: 18px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(220, 38, 38, 0.06);
    color: var(--white);
    font-size: 1rem;
}

.comparison-table .feature-name {
    text-align: left !important;
    font-weight: 600;
    color: var(--white);
}

.comparison-table .available {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
}

.comparison-table .unavailable {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
}

.comparison-table .ai-feature {
    background: rgba(220, 38, 38, 0.06);
    position: relative;
}

.comparison-table .cost-row td {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 24px 16px;
    border-bottom: none;
}

.comparison-table .cost-high {
    color: var(--white);
}

.comparison-table .cost-medium {
    color: var(--white);
}

.comparison-table .cost-low {
    color: var(--white);
    background: rgba(16, 185, 129, 0.1);
}

/* Savings Statistics */
.savings-stat {
    padding: 2rem;
    text-align: center;
}

.savings-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.savings-description {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        padding: 1rem;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .savings-number {
        font-size: 2.5rem;
    }
    
    .comparison-table .ai-column::after {
        display: none;
    }
}

/* Navigation Enhancements */
.navbar-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

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

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-accent:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Improved Voice AI Showcase */
.voice-ai-showcase-improved {
    background: rgba(220, 38, 38, 0.06);
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    margin: 0 auto;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(220, 38, 38, 0.12);
}

.showcase-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-tech);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.ai-call-interface {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.call-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.caller-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.caller-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.caller-details h6 {
    margin: 0;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.caller-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.call-duration {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.conversation-flow {
    margin-bottom: 1.5rem;
}

.message {
    margin-bottom: 1rem;
}

.message-content {
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.caller-message .message-content {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-style: italic;
    margin-left: 0;
    margin-right: 2rem;
}

.ai-message .message-content {
    background: var(--gradient-tech);
    color: var(--white);
    margin-right: 0;
    margin-left: 2rem;
}

.message-timestamp {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
}

.caller-message .message-timestamp {
    text-align: left;
}

.ai-actions-display {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.9rem;
}

.action-indicator.active {
    background: rgba(220, 38, 38, 0.12);
    color: var(--white);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* Real Estate Professional Elements */
.property-badge {
    background: var(--gradient-tech);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-tech);
}

.real-estate-accent {
    border-left: 4px solid var(--secondary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.agent-testimonial {
    background: var(--black);
    border: 2px solid var(--red);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    color: var(--white);
    border-left: 4px solid var(--secondary);
    margin: 2rem 0;
    color: var(--text-dark);
}

.agent-testimonial * {
    color: var(--text-dark) !important;
}

.commission-highlight {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(212, 165, 116, 0.05));
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 165, 116, 0.2);
    margin: 1rem 0;
}

/* Button Styling - Clean Theme */

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
    color: var(--white) !important;
}

.btn-secondary:hover::after {
    transform: translateX(100%);
}

/* Trust Elements */
.trust-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(26, 54, 93, 0.12);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0.5rem;
    border: 1px solid rgba(26, 54, 93, 0.15);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.trust-badge:hover {
    background: rgba(26, 54, 93, 0.18);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trust-badge i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

/* Facebook Ads Section */
/* Facebook styles removed - replaced with Voice AI */

.showcase-header {
    background: var(--gradient-tech);
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.showcase-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.showcase-header h4 {
    margin: 0;
    font-weight: 600;
    font-size: 1.5rem;
}

.showcase-content {
    padding: 2rem;
}

.showcase-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(26, 54, 93, 0.02);
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary);
    transition: var(--transition);
}

.showcase-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.showcase-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-tech);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.showcase-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.showcase-text h5 {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.showcase-text p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
}

/* Facebook Benefits */
.facebook-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--black);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    border: 2px solid var(--red);
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--red);
    transform: translateY(-2px);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--red);
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.benefit-item span {
    color: var(--white);
    font-weight: 500;
    line-height: 1.4;
}

/* Alex Testimonial Section */
.testimonial-section {
    padding: 120px 0;
    background: var(--primary);
    background-image: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--white);
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author h5 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: var(--white);
    margin-bottom: 1rem;
    opacity: 0.9;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-item strong {
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 700;
}

.agent-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.agent-avatar {
    margin-bottom: 2rem;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.avatar-circle::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-gold);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.avatar-circle i {
    font-size: 3rem;
    color: var(--white);
}

.success-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.metric-card {
    background: var(--primary);
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    min-width: 120px;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Enhanced Section Elements */
.section-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-tech);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-tech);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: badge-shimmer 3s infinite;
}

@keyframes badge-shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.section-badge i {
    font-size: 1rem;
}

/* Enhanced Hero Typography */
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero .lead {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Process Section Enhancements */
.process {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-section);
    pointer-events: none;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.process-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-gold);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.process-step:hover .process-number::before {
    opacity: 0.3;
}

.process-step:hover .process-number {
    transform: scale(1.05);
}

/* CTA Section Enhancement */
.cta {
    background: var(--gradient-primary);
    padding: 120px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(26, 54, 93, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Responsive Design for Facebook Section */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .voice-ai-feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .voice-ai-feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .campaign-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    

    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}