/* Clean Impact Stats */
.clean-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.clean-stat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(141, 180, 160, 0.1);
    border: 1px solid rgba(141, 180, 160, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.clean-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(141, 180, 160, 0.15);
}

.clean-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--sage-primary), var(--teal-primary));
}

.stat-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sage-primary), var(--teal-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sage-primary);
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.stat-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.stat-tags span {
    background: var(--sage-light);
    color: var(--sage-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Mobile Impact Grid */
.mobile-impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.mobile-impact-card {
    background: white;
    border-radius: 15px;
    padding: 1.2rem;
    box-shadow: 0 5px 15px rgba(141, 180, 160, 0.1);
    border-left: 4px solid var(--sage-primary);
    text-align: center;
}

.mobile-stat-icon {
    width: 50px;
    height: 50px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
}

.mobile-stat-icon i {
    font-size: 1.5rem;
    color: var(--sage-primary);
}

.mobile-stat-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--sage-primary);
    margin-bottom: 0.3rem;
}

.mobile-stat-content p {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.mobile-stat-content span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: var(--sage-light);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

/* Simple Success Stories */
.simple-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.story-card-simple {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(141, 180, 160, 0.1);
    border: 1px solid rgba(141, 180, 160, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card-simple:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(141, 180, 160, 0.15);
}

.story-card-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--sage-primary), var(--teal-primary));
}

.story-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sage-primary), var(--teal-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.story-avatar i {
    font-size: 2rem;
    color: white;
}

.story-card-simple h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.story-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sage-primary);
    margin-bottom: 1rem;
}

.story-brief {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Mobile Areas Grid */
.mobile-areas-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.mobile-area-item {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(141, 180, 160, 0.1);
    border-left: 4px solid var(--sage-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-area-item i {
    width: 40px;
    height: 40px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--sage-primary);
    flex-shrink: 0;
}

.mobile-area-item h5 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
}

.mobile-area-item p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .clean-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .clean-stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon-circle i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .simple-stories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .story-card-simple {
        padding: 1.5rem;
    }
    
    .story-avatar {
        width: 60px;
        height: 60px;
    }
    
    .story-avatar i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .mobile-impact-grid {
        grid-template-columns: 1fr;
    }
    
    .clean-stats-grid {
        grid-template-columns: 1fr;
    }
}