.hero-about {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5f8a 40%, #3b82b6 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.hero-about::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.hero-about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
}
.hero-about h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}
.hero-about p {
    font-size: 1.12rem;
    color: rgba(255,255,255,.8);
    max-width: 540px;
    line-height: 1.7;
}
.hero-about .badge-row {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}
.hero-about .badge-row span {
    background: rgba(255,255,255,.15);
    color: #fff;
    padding: .3rem .9rem;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 500;
}
.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: transform .25s, box-shadow .25s;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
}
.stat-card .stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #1d4ed8;
    line-height: 1.2;
}
.stat-card .stat-label {
    font-size: .85rem;
    color: #888;
    margin-top: .3rem;
}
.value-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.8rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: transform .25s, box-shadow .25s;
    height: 100%;
    text-align: center;
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.value-card .icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}
.value-card h4 {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: .6rem;
}
.value-card p {
    color: #777;
    font-size: .9rem;
    line-height: 1.6;
    margin: 0;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: .5rem;
}
.section-title .line {
    width: 50px;
    height: 3px;
    background: #1d4ed8;
    margin: 0 auto;
    border-radius: 2px;
}
.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.timeline-dot {
    width: 14px;
    height: 14px;
    min-width: 14px;
    border-radius: 50%;
    background: #1d4ed8;
    margin-top: 6px;
    box-shadow: 0 0 0 4px rgba(29,78,216,.15);
}
.timeline-content h5 {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: .2rem;
}
.timeline-content p {
    color: #777;
    font-size: .92rem;
    line-height: 1.5;
    margin: 0;
}
.company-intro {
    font-size: 1rem;
    line-height: 1.85;
    color: #374151;
    max-width: 900px;
    margin: 0 auto;
}
.company-intro p {
    margin-bottom: 1rem;
    text-indent: 2em;
}
.company-intro p:last-child {
    margin-bottom: 0;
}
