.stats-section {
    padding: 5rem 0;
    background-color: #151c2c;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: rgba(24, 119, 242, 0.2);
    color: #fff;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.stats-badge i {
    color: #4f8cff;
    margin-right: 0.5rem;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    text-align: left;
}

.stats-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e6ed;
    max-width: 500px;
    text-align: left;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc 80%, #e0e7ef 100%);
    border: none;
    border-radius: 1rem;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.10), 0 1.5px 4px 0 rgba(30, 41, 59, 0.08);
    position: relative;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s cubic-bezier(.4,2,.6,1);
    align-items: flex-start;
    text-align: left;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4f8cff 0%, #1877f2 100%);
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(30, 41, 59, 0.16), 0 2px 8px 0 rgba(30, 41, 59, 0.10);
}

.stat-icon {
    width: 2.2rem;
    height: 2.2rem;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.08);
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

.stat-icon.down {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #151c2c;
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    text-align: left;
}

.stat-change {
    font-size: 0.95rem;
    color: #1877f2;
    font-weight: 600;
}

.stat-icon.down + .stat-value .stat-change {
    color: #ef4444;
}

.stat-label {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.5;
    font-weight: 500;
    text-align: left;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .stats-cards {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-value {
        font-size: 2rem;
    }
} 