.impact-stats-section {
    margin: 48px 0;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.impact-stat-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--border-gray);
    text-align: center;
    transition: all 0.3s ease;
}

.impact-stat-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(109, 184, 114, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #10B981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--body-text);
    margin-bottom: 8px;
}

.stat-growth {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 600;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.number-item {
    text-align: center;
    padding: 24px;
}

.number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.number-item p {
    color: var(--body-text);
    line-height: 1.5;
}

.breakdown-section {
    background: var(--background);
    padding: 64px 48px;
    border-radius: 24px;
}

.field-breakdown {
    max-width: 800px;
    margin: 0 auto;
}

.field-bar {
    margin-bottom: 24px;
}

.field-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.field-name {
    font-size: 15px;
    color: var(--dark-text);
    font-weight: 500;
}

.field-percentage {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-green);
}

.bar-container {
    height: 12px;
    background: #E5E7EB;
    border-radius: 999px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green) 0%, #10B981 100%);
    border-radius: 999px;
    transition: width 1s ease;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--border-gray);
    position: relative;
}

.quote-icon {
    font-size: 80px;
    color: rgba(109, 184, 114, 0.15);
    line-height: 1;
    margin-bottom: -20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body-text);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--dark-text);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--body-text);
    font-size: 14px;
}

.longterm-impact-section {
    background: linear-gradient(135deg, rgba(109, 184, 114, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    padding: 64px 48px;
    border-radius: 24px;
}

.longterm-impact-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
}

.impact-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.impact-point {
    display: flex;
    gap: 20px;
}

.point-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.impact-point h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.impact-point p {
    color: var(--body-text);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .breakdown-section,
    .longterm-impact-section {
        padding: 40px 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .number {
        font-size: 32px;
    }
}