.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 100px;
    font-size: 13px;
    color: #dc2626;
    font-weight: 500;
    margin-bottom: 32px;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.about-hero-content > p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto;
}

.about-story {
    max-width: 660px;
    margin: 0 auto;
    padding: 0 40px 100px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.story-block h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.story-block p {
    font-size: 16px;
    color: #888;
    line-height: 1.8;
}

.about-values {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 20px;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.about-principles {
    padding: 40px 40px 100px;
    max-width: 760px;
    margin: 0 auto;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.principle {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.principle:last-child {
    border-bottom: none;
}

.principle-num {
    font-size: 48px;
    font-weight: 800;
    color: rgba(220, 38, 38, 0.2);
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
}

.principle-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.principle-content p {
    font-size: 15px;
    color: #888;
    line-height: 1.7;
}

.about-cta {
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

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

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 24px 60px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero-content > p {
        font-size: 16px;
    }

    .about-story {
        padding: 0 24px 60px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        padding: 60px 24px;
    }

    .about-principles {
        padding: 20px 24px 60px;
    }

    .principle {
        flex-direction: column;
        gap: 12px;
    }

    .principle-num {
        font-size: 36px;
    }

    .about-cta {
        padding: 60px 24px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-actions {
        flex-direction: column;
    }
}
