/* ============================================
   Hero Improvements - Compact Stats & Features
   ============================================ */

/* Compact Animated Stats in Hero */
.hero-stats-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    transition: transform 0.3s ease;
}

.stat-item-compact:hover {
    transform: translateY(-5px);
}

.stat-item-compact i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.stat-number-animated {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-number-dynamic {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: block;
}

.stat-count {
    display: inline-block;
}

.stat-label-compact {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-align: center;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-primary {
    background: white;
    color: #3b82f6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(5px);
}

.cta-secondary:hover {
    background: white;
    color: #4ade80;
}

.cta-btn i {
    font-size: 1.2rem;
}

/* Quick Features Section */
.quick-features {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f9fafb, white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #4ade80 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.quick-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.quick-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #4ade80;
}

.quick-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4ade80 0%, #3b82f6 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
}

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

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

.quick-feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: #4ade80;
    gap: 0.75rem;
}

.feature-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.feature-link:hover i {
    transform: translateX(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats-compact {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem;
    }

    .stat-item-compact {
        flex: 1 1 calc(50% - 1rem);
        min-width: 120px;
    }

    .stat-number-animated {
        font-size: 2rem;
    }

    .stat-label-compact {
        font-size: 0.8rem;
    }

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

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .quick-feature-card {
        padding: 1.5rem;
    }

    .quick-feature-icon {
        width: 70px;
        height: 70px;
    }

    .quick-feature-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stat-item-compact {
        flex: 1 1 100%;
    }

    .hero-stats-compact {
        gap: 0.75rem;
    }
}

/* Animation for counter */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number-animated {
    animation: countUp 0.6s ease-out;
}
