.hero-about {
    background: var(--bg);
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: none;
    pointer-events: none;
    z-index: 1;
}

.hero-about .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    color: var(--border);
}

.breadcrumb-current {
    color: var(--text-main);
    font-weight: 600;
}

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

.hero-about h1 span.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-about-subheadline {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-about-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Custom style to override active page link in navbar */
.nav-links a[href="about.html"] {
    color: var(--primary);
    font-weight: 600;
}

.nav-links a[href="about.html"]::after {
    width: 100%;
}

/* --- Our Story Section --- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.story-content h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.story-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.story-illustration {
    width: 100%;
    max-width: 480px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(36, 71, 213, 0.08));
}

/* --- Mission & Vision Section --- */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mv-card {
    background-color: var(--bg);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 71, 213, 0.1);
}

.mv-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.mv-card:nth-child(2) .mv-icon {
    background-color: var(--secondary-light);
    color: var(--secondary);
}

.mv-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.mv-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Why PixWorkX Section --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-card {
    background-color: var(--bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 71, 213, 0.12);
}

.why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-light);
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    background-color: var(--primary);
    color: var(--bg);
    transform: scale(1.05);
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Trust Statistics Section --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    background-color: var(--bg);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(20px);
}

.stat-card.animate-reveal {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-card:nth-child(2) .stat-number {
    color: var(--secondary);
}

.stat-card:nth-child(3) .stat-number {
    color: var(--accent);
}

.stat-card:nth-child(4) .stat-number {
    color: #EC4899;
}

.stat-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* --- Our Values Section --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background-color: var(--bg);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(122, 90, 248, 0.15);
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background-color: var(--accent);
    color: #FFFFFF;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Powered by VisionPix Section --- */
.visionpix-box {
    background: linear-gradient(135deg, rgba(122, 90, 248, 0.03) 0%, rgba(24, 198, 183, 0.03) 100%);
    border: 1px solid rgba(122, 90, 248, 0.1);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.visionpix-content {
    flex: 1.2;
}

.visionpix-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-top: 16px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.visionpix-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.visionpix-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visionpix-logo-container {
    padding: 24px;
    background-color: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.visionpix-large-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

/* --- Final CTA Section --- */
.cta-box-about {
    background: linear-gradient(135deg, rgba(36, 71, 213, 0.05) 0%, rgba(122, 90, 248, 0.05) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(36, 71, 213, 0.1);
    padding: 80px 48px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-box-about::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(24, 198, 183, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-box-about h2 {
    font-size: 40px;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-box-about p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .story-visual {
        order: -1;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .visionpix-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero-about {
        padding-top: 112px;
        padding-bottom: 60px;
    }

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

    .hero-about-subheadline {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-about-buttons {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-about-buttons .btn {
        width: 100%;
    }

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

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

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

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

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

    .cta-box-about h2 {
        font-size: 30px;
    }
}