/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(102, 126, 234, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(156, 124, 250, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(156, 124, 250, 0.1);
    color: var(--accent-purple);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(156, 124, 250, 0.2);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a5a5b5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.value-prop {
    background: var(--bg-glass);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

.value-prop:hover {
    transform: translateY(-5px);
    border-color: rgba(156, 124, 250, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.prop-icon {
    width: 50px;
    height: 50px;
    background: rgba(156, 124, 250, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-purple);
}

.prop-icon svg {
    width: 28px;
    height: 28px;
}

.prop-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.prop-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .value-props {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .value-props {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}