.about-page .hero-about {
    background: linear-gradient(135deg, #fff8e1 0%, #f5f7fa 100%);
    padding: 80px 0 60px;
}

.about-page .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: center;
}

.about-page .about-photo {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-page .about-photo img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.about-page .badge-label {
    display: inline-block;
    background: var(--color-primary);
    color: #1f2937;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.about-page .about-intro {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-page .about-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.about-page .about-social a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.about-page .stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-page .stat-item {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.about-page .stat-num {
    font-family: var(--font-heading, "Space Grotesk", sans-serif);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: 1;
}

.about-page .stat-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 0.3rem;
}

.about-page .story-section {
    padding: 80px 0;
}

.about-page .story-block {
    max-width: 780px;
    margin: 0 auto;
}

.about-page .story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.about-page .highlight-box {
    background: linear-gradient(135deg, #fff8e1, #fef3c7);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 16px 16px 0;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-heading);
    line-height: 1.7;
}

.about-page .skills-section {
    background: var(--color-bg-alt);
    padding: 80px 0;
}

.about-page .skills-section .text-center {
    text-align: center;
}

.about-page .skills-subtitle {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0.75rem auto 0;
    font-size: 1.05rem;
    text-align: center;
}

.about-page .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-page .skill-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.about-page .skill-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(242, 192, 27, 0.15);
}

.about-page .skill-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.about-page .skill-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.about-page .skill-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.about-page .cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
}

.about-page .cta-section h2 {
    color: white;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.about-page .cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.about-page .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-page .btn-white {
    background: white;
    color: var(--color-heading);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.about-page .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-page .btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.about-page .btn-outline-white:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 850px) {
    .about-page .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-page .about-photo {
        max-width: 340px;
        margin: 0 auto;
    }

    .about-page .stat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 520px) {
    .about-page .stat-grid {
        grid-template-columns: 1fr;
    }
}

.about-page .lang-switcher {
    display: inline-flex;
    gap: 4px;
    margin-left: 12px;
    align-items: center;
}

.about-page .lang-switcher__btn {
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}

.about-page .lang-switcher__btn--active {
    background: #0f172a;
    border-color: #0f172a;
    color: #fff;
}

@media (max-width: 900px) {
    .about-page .lang-switcher {
        margin-left: 0;
        margin-top: 8px;
    }
}
