/* About Page Styles - Light Theme */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: var(--bg-page);
    overflow: hidden;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(10, 22, 40, 0.75), rgba(10, 22, 40, 0.9)),
        url('../../images/banner.png') center center / cover no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-label {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 2px;
    margin-bottom: 32px;
    font-weight: 600;
    border-left: 3px solid var(--primary);
    color: var(--primary-light);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -1px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.page-hero h1 span:last-child {
    display: block;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
}

/* Revealed State for Hero */
.hero-label.revealed,
.page-hero h1.revealed,
.hero-subtitle.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Company Intro Section */
.company-intro {
    background: var(--bg-surface);
    padding: 100px 0;
    position: relative;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.intro-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.intro-content .section-tag {
    margin: inherit !important;
    margin-bottom: 16px !important;
}

.intro-text.revealed {
    opacity: 1;
    transform: translateX(0);
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-title);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.intro-text p {
    color: var(--text-body);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.intro-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-visual {
    flex: 1;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.2s;
}

.intro-visual.revealed {
    opacity: 1;
    transform: translateX(0);
}

.visual-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.visual-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.visual-wrapper:hover img {
    transform: scale(1.05);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.1));
    pointer-events: none;
}

/* Core Values Section */
.core-values {
    background: #f0f4f8;
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin: 0 auto 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.section-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-header .section-tag {
    justify-content: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    border-radius: 4px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.value-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    background: rgba(59, 130, 246, 0.03);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.value-card h3 {
    color: var(--text-title);
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.value-card p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.cta-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.cta-content h2 {
    color: var(--text-title);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    color: var(--text-body);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .intro-content {
        flex-direction: column;
        gap: 50px;
    }

    .intro-visual {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 20px 70px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-background {
        background:
            linear-gradient(to bottom, rgba(10, 22, 40, 0.75), rgba(10, 22, 40, 0.9)),
            url('../../images/banner-mobile.png') center center / cover no-repeat;
    }

    .company-intro {
        padding: 60px 20px;
    }

    .intro-text {
        width: 100%;
    }

    .intro-visual {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .intro-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .core-values {
        padding: 60px 20px;
    }

    .value-card {
        padding: 28px 20px;
        text-align: center;
    }

    .value-icon {
        margin: 0 auto 24px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}
