.about-section-wrap {
    font-family: 'Barlow', sans-serif;
    color: #E6E6E6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-border-box {
    border: 1px solid rgba(0,255,132,0.12);
    padding: 48px;
    position: relative;
}

.about-border-box::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 40px; height: 40px;
    border-top: 2px solid #00FF84;
    border-left: 2px solid #00FF84;
}

.about-border-box::after {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    width: 40px; height: 40px;
    border-bottom: 2px solid #A74FFF;
    border-right: 2px solid #A74FFF;
}

.about-stat {
    margin-bottom: 32px;
}
.about-stat.last-stat {
    margin-bottom: 0;
}

.stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px #00FF84;
}

.stat-label {
    font-size: 14px;
    color: #888;
    letter-spacing: 0.06em;
    margin-top: 4px;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
}

.section-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #00FF84;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    color: #E6E6E6;
}

.section-divider {
    width: 48px;
    height: 2px;
    background: #00FF84;
    margin: 20px 0 48px;
}

.about-desc p {
    color: #888;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-desc p strong {
    color: #E6E6E6;
    font-weight: 600;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    border: 1px solid #222;
    padding: 6px 14px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}
