
/* Modern Vitália Landing Page - Inspired by Modern Tech Sites */

:root {
    /* Brand Colors - Maintaining Vitália's blue identity */
    --primary-color: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #3B82F6;
    --accent-color: #06B6D4; /* Cyan accent - modern tech vibe */
    --accent-2-color: #10B981; /* Green accent - health/growth */
    
    /* Modern Dark Theme */
    --bg-primary: #0A0A0A; /* Very dark background */
    --bg-secondary: #111111; /* Card backgrounds */
    --bg-tertiary: #1A1A1A; /* Elevated elements */
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA; /* Zinc-400 */
    --text-muted: #71717A; /* Zinc-500 */
    
    /* Border & Effects */
    --border-color: #27272A; /* Zinc-800 */
    --border-light: #3F3F46; /* Zinc-700 */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
    
    /* Status Colors */
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
}

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-size: 16px;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.text-accent {
    color: var(--accent-color);
}

.text-accent-2 {
    color: var(--accent-2-color);
}

/* Section Badges */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand .logo {
    height: 80px; /* Increased from 40px to 80px (double size) */
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

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

.navbar-toggler {
    border: none;
    color: var(--text-primary);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 120px; /* Increased to accommodate larger logo */
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top left, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* iPhone Mockup Styles - Optimized for perfect image fit */
.iphone-mockup {
    position: relative;
    display: inline-block;
    max-width: 400px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.mockup-frame {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.hero-image {
    position: absolute;
    top: 2.8%;
    left: 6.8%;
    width: 86.4%;
    height: 94.4%;
    object-fit: cover;
    border-radius: 28px;
    z-index: 1;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.iphone-mockup-demo {
    position: relative;
    display: inline-block;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}

.iphone-mockup-demo .mockup-frame {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.iphone-mockup-demo .screen-image {
    position: absolute;
    top: 2.8%;
    left: 6.8%;
    width: 86.4%;
    height: 94.4%;
    object-fit: cover;
    border-radius: 22px;
    z-index: 1;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Doctor Illustrations */
.doctor-illustration {
    text-align: center;
    padding: 2rem;
}

.doctor-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

.medical-team-illustration {
    margin: 3rem 0;
    position: relative;
}

.team-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

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

/* Pricing Section */
.pricing-section {
    background: var(--bg-secondary);
}

.pricing-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.pricing-featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-2-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.price-custom {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.pricing-features li i {
    color: var(--accent-2-color);
    margin-right: 0.75rem;
    width: 16px;
}

.pricing-cta {
    margin-bottom: 1rem;
}

.pricing-trial {
    text-align: center;
}

.pricing-trial small {
    color: var(--text-muted);
}

/* Pricing Testimonial */
.pricing-testimonial {
    background: var(--bg-tertiary);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.testimonial-doctor-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.testimonial-quote-pricing {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.testimonial-author-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author-pricing strong {
    color: var(--text-primary);
}

.testimonial-author-pricing span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Buttons */
.btn-cta {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-cta {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.btn-outline-cta:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-color));
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    color: var(--accent-color);
    border-color: var(--accent-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-1px);
}

/* Social Proof */
.hero-social-proof {
    margin-top: 3rem;
}

.social-proof-avatars {
    display: flex;
    align-items: center;
    gap: -8px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    object-fit: cover;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.more-avatars {
    background: var(--bg-secondary);
    border: 3px solid var(--bg-primary);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-left: -8px;
}

.social-proof-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* Floating Elements */
.hero-visual {
    position: relative;
    text-align: center;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--accent-color);
}

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

.badge-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.badge-3 {
    top: 50%;
    right: -20%;
    animation-delay: 2s;
}

/* Companies Section */
.companies-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.companies-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.companies-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.company-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Challenge Section */
.challenge-section {
    background: var(--bg-primary);
}

.challenge-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

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

.challenge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--danger-color), #DC2626);
    border-radius: 20px;
    margin: 0 auto;
}

.challenge-icon i {
    font-size: 2rem;
    color: white;
}

.challenge-card h4 {
    color: var(--text-primary);
    font-weight: 700;
}

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

.challenge-stat {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 1rem;
    margin-top: auto;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--danger-color);
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Solution Section */
.solution-section {
    background: var(--bg-secondary);
}

.solution-visual {
    position: relative;
    text-align: center;
}

.solution-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.solution-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-2-color));
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-icon-small i {
    color: white;
    font-size: 1.25rem;
}

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

.feature-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Features Section */
.features-section {
    background: var(--bg-primary);
}

/* Enhanced Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card-enhanced {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.feature-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-2-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.feature-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 24px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.feature-icon-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-2-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-icon-large i {
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.feature-content-enhanced {
    flex: 1;
}

.feature-content-enhanced h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.feature-benefits i {
    color: var(--accent-2-color);
    font-size: 0.875rem;
    width: 16px;
    flex-shrink: 0;
}

.feature-stat {
    background: var(--bg-tertiary);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.stat-big {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Additional Features */
.additional-features {
    margin-top: 4rem;
}

/* Responsive Design for Enhanced Features */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card-enhanced {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .feature-icon-large {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
    }
    
    .feature-icon-large i {
        font-size: 2rem;
    }
    
    .feature-content-enhanced h3 {
        font-size: 1.25rem;
    }
    
    .feature-lead {
        font-size: 1rem;
    }
    
    .stat-big {
        font-size: 2rem;
    }
    
    .mini-feature {
        padding: 1.5rem 1rem;
    }
    
    .mini-icon {
        width: 56px;
        height: 56px;
    }
    
    .mini-icon i {
        font-size: 1.25rem;
    }
}

.mini-feature {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.mini-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-2-color));
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.mini-icon i {
    font-size: 1.5rem;
    color: white;
}

.mini-feature h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.mini-feature p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Legacy Feature Styles (keeping for compatibility) */
.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

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

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
}

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

.feature-header h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin: 0;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-benefit {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 1rem;
    color: var(--accent-2-color);
    font-size: 0.875rem;
}

.feature-benefit i {
    color: var(--accent-2-color);
}

/* Demo Section */
.demo-section {
    background: var(--bg-secondary);
}

/* Demo Feature Sections */
.demo-feature {
    background: var(--bg-tertiary);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.demo-feature:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.demo-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.demo-content-text {
    padding: 1rem 2rem;
}

.demo-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.demo-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.demo-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.demo-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.demo-features-list li i {
    color: var(--accent-2-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
    min-width: 20px;
}

/* Demo Process */
.demo-process {
    background: var(--bg-tertiary);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
}

.process-step {
    padding: 1rem;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-2-color));
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-secondary);
    margin: 0;
}

/* Statistics Section */
.statistics-section {
    background: var(--bg-primary);
}

.stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.stat-visual {
    margin-bottom: 1.5rem;
    display: inline-flex;
}

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

.stat-symbol {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-2-color);
}

.stat-card h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-secondary);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
}

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

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
}

.testimonial-author h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.testimonial-rating {
    color: var(--warning-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-color);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    margin-bottom: 3rem;
}

.cta-features {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.cta-features .row > div {
    margin-bottom: 1rem;
}

.cta-features i {
    color: var(--accent-2-color);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-brand img {
    height: 80px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
}

.footer h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.footer-divider {
    border-color: var(--border-color);
}

.footer-copyright,
.footer-info {
    color: var(--text-muted);
    margin: 0;
}

.footer-info i {
    color: var(--accent-2-color);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .companies-logos {
        gap: 2rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-badge {
        position: static;
        display: inline-block;
        margin: 0.5rem;
    }
    
    .badge-1,
    .badge-2,
    .badge-3 {
        position: static;
        animation: none;
    }
    
    .pricing-featured {
        transform: none;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .companies-logos {
        gap: 1rem;
    }
    
    .company-logo {
        font-size: 1rem;
    }
    
    .feature-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .demo-process .col-md-4 {
        margin-bottom: 2rem;
    }
    
    .demo-feature {
        padding: 2rem 1.5rem;
    }
    
    .demo-content-text {
        padding: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .demo-title {
        font-size: 1.5rem;
    }
    
    .demo-description {
        font-size: 1rem;
    }
    
    .cta-features .col-md-3 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .navbar-brand .logo {
        height: 60px; /* Smaller on mobile but still larger than original */
    }
    
    .hero-section {
        padding-top: 100px; /* Adjust for smaller mobile logo */
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn-cta,
    .btn-outline-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .companies-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .demo-process {
        padding: 2rem 1rem;
    }
    
    .demo-feature {
        padding: 1.5rem 1rem;
    }
    
    .demo-content-text {
        padding: 0.5rem;
    }
    
    .demo-title {
        font-size: 1.25rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .challenge-card,
    .feature-card,
    .stat-card,
    .pricing-card {
        opacity: 1;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }
    
    .challenge-card.animate,
    .feature-card.animate,
    .stat-card.animate,
    .pricing-card.animate {
        opacity: 1;
        transform: translateY(0);
    }
}
