.about-wrapper {
    padding: 160px 0 100px;
    background: #ffffff;
}

.about-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: #1e293b;
    margin: 20px 0;
}

.text-red {
    background: linear-gradient(90deg, #ff3b30, #34c759, #007aff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 120px;
}

.value-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 32px;
    text-align: center;
    transition: 0.4s;
    border-bottom: 6px solid transparent;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.bg-blue {
    background: #007aff;
}

.bg-red {
    background: #ff3b30;
}

.bg-green {
    background: #34c759;
}

.border-blue:hover {
    border-color: #007aff;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.border-red:hover {
    border-color: #ff3b30;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.border-green:hover {
    border-color: #34c759;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.story-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: #0f172a;
    color: white;
    padding: 60px;
    border-radius: 40px;
    align-items: center;
}

.small-title {
    color: #007aff;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
}

.stat strong {
    display: block;
    font-size: 2rem;
    color: #007aff;
}

.stat span {
    font-size: 11px;
    opacity: 0.6;
    text-transform: uppercase;
}

.glass-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 30px;
    text-align: center;
}

@media (max-width: 992px) {
    .values-grid,
    .story-bento {
        grid-template-columns: 1fr;
    }
}











