

.hero-small {
    padding: 8rem 0 4rem;
    min-height: auto;
}

.story {
    padding: 6rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content {
    padding-right: 2rem;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.stats-highlight {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem;
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-num-large {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values {
    padding: 6rem 0;
    background: rgba(17, 24, 39, 0.3);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        padding-right: 0;
    }
    
    .stat-num-large {
        font-size: 3rem;
    }
}
