.about-hero-light {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 25%, #f5f3ff 50%, #fff7ed 75%, #f0fdf4 100%);
    overflow: hidden;
}

.about-hero-light .about-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-hero-light .about-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
}

.about-hero-light .about-hero-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.2));
    top: -100px;
    right: 10%;
    animation: aboutFloatShape 8s ease-in-out infinite;
}

.about-hero-light .about-hero-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(251, 191, 36, 0.15));
    bottom: -50px;
    left: 5%;
    animation: aboutFloatShape 10s ease-in-out infinite reverse;
}

.about-hero-light .about-hero-shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.15));
    top: 50%;
    left: 30%;
    animation: aboutFloatShape 12s ease-in-out infinite;
}

@keyframes aboutFloatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.about-hero-light .about-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.8;
}

.about-hero-light .about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

.about-hero-light .about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--home-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.about-hero-light .about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-light .about-hero-title span {
    background: linear-gradient(135deg, var(--home-primary), #8b5cf6, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-light .about-hero-desc {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-section-alt {
    background: #f8fafc;
}

.about-intro {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.about-intro h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.about-intro p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 2;
    margin-bottom: 25px;
    text-align: justify;
}

.about-intro .highlight {
    color: var(--home-primary);
    font-weight: 600;
}

.about-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-images img {
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 45%;
}

.about-images img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.15);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.about-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--home-primary), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.about-stat-card .stat-label {
    font-size: 0.9375rem;
    color: #64748b;
}

.about-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--home-primary), rgba(99, 102, 241, 0.1));
}

.about-timeline-item {
    position: relative;
    padding: 30px 0;
    display: flex;
    align-items: center;
}

.about-timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.about-timeline-content {
    width: 45%;
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.about-timeline-content:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about-timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--home-primary);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.about-timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--home-primary);
    margin-bottom: 10px;
}

.about-timeline-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

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

.about-value-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.about-value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-value-icon i {
    font-size: 28px;
    color: var(--home-primary);
}

.about-value-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.about-value-content p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.about-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.about-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-icon i {
    font-size: 28px;
    color: var(--home-primary);
}

.about-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

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

.about-team-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.about-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.about-team-card .team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--home-primary), #8b5cf6);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.about-team-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.about-team-card .role {
    font-size: 0.875rem;
    color: var(--home-primary);
    margin-bottom: 15px;
}

.about-team-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.about-honor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-honor-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.about-honor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.about-honor-card .honor-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.about-honor-card .honor-icon i {
    font-size: 28px;
    color: #f59e0b;
}

.about-honor-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.about-honor-card p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.about-tech-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.about-tech-item:hover {
    background: rgba(99, 102, 241, 0.04);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateX(4px);
}

.about-tech-item i {
    font-size: 22px;
    color: var(--home-primary);
}

.about-tech-item span {
    font-size: 0.9375rem;
    color: #475569;
}

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

.about-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.about-contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
    border-color: transparent;
}

.about-contact-item .contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-contact-item .contact-icon i {
    font-size: 20px;
    color: var(--home-primary);
}

.about-contact-item h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.about-contact-item p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.about-partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-partner-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.about-partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.about-partner-card i {
    font-size: 40px;
    color: var(--home-primary);
    margin-bottom: 8px;
}

.about-partner-card p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

@media (max-width: 991.98px) {
    .about-hero-light .about-hero-title {
        font-size: 2.5rem;
    }

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

    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-honor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .about-hero-light {
        min-height: 350px;
    }

    .about-hero-light .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-light .about-hero-desc {
        font-size: 1rem;
    }

    .about-intro {
        padding: 32px 24px;
    }

    .about-intro h2 {
        font-size: 1.5rem;
    }

    .about-timeline::before {
        left: 20px;
    }

    .about-timeline-item,
    .about-timeline-item:nth-child(odd) {
        flex-direction: row;
        padding-left: 50px;
    }

    .about-timeline-content {
        width: 100%;
    }

    .about-timeline-dot {
        left: 20px;
    }

    .about-section {
        padding: 60px 0;
    }
}

@media (max-width: 575.98px) {
    .about-hero-light .about-hero-title {
        font-size: 1.75rem;
    }

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

    .about-stat-card .stat-number {
        font-size: 1.75rem;
    }

    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .about-honor-grid {
        grid-template-columns: 1fr;
    }

    .about-contact-grid {
        grid-template-columns: 1fr;
    }

    .about-partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-images {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .about-images img {
        max-width: 90%;
    }

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