/* =========================================
   QLCP — About Page Styles
   Premium Industrial Redesign v2
   ========================================= */

/* ── About Hero ──────────────────────────── */
.about-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg);
    padding-top: 100px;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../../../pictures/hero-about.png');
    background-size: cover;
    background-position: center 35%;
    opacity: 0.40;
    filter: saturate(0.65) brightness(0.85);
    z-index: 0;
    transition: opacity 0.6s;
}

.light-mode .about-hero::before {
    opacity: 0.25;
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            var(--bg) 35%,
            rgba(11, 11, 11, 0.5) 65%,
            transparent 100%);
    z-index: 1;
}

.about-hero .section-container {
    position: relative;
    z-index: 2;
    padding: 5rem 3rem 6rem;
}

.about-hero__inner {
    max-width: 680px;
}

.about-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.about-hero__eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.about-hero__headline {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 900;
    color: var(--text-1);
    letter-spacing: -0.048em;
    line-height: 1.05;
    margin-bottom: 1.8rem;
}

.about-hero__sub {
    font-size: 1.1rem;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

/* ── Company Overview ────────────────────── */
.about-overview {
    padding: 8rem 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.about-overview__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-overview__text p {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-overview__text h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.8rem;
}

.about-overview__visual {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-overview__visual img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    border: 1px solid var(--border);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
    transition: box-shadow 0.4s;
}

.about-overview__visual img:hover {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(198, 255, 0, 0.1);
}

.about-overview__badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(198, 255, 0, 0.35);
    z-index: 2;
}

.about-overview__badge span {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    letter-spacing: -0.05em;
    line-height: 1;
}

.about-overview__badge small {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.65);
    text-align: center;
    margin-top: 0.2rem;
}

/* ── Vision & Mission ────────────────────── */
.about-vm {
    padding: 8rem 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.about-vm__header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-vm__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-vm__card {
    position: relative;
    padding: 3rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s var(--ease);
}

.about-vm__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    opacity: 0.3;
    transition: opacity 0.3s;
}

.about-vm__card:hover::before {
    opacity: 1;
}

.about-vm__card:hover {
    border-color: rgba(198, 255, 0, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.about-vm__card--accent {
    border-color: rgba(198, 255, 0, 0.18);
    background: linear-gradient(135deg, rgba(198, 255, 0, 0.04), rgba(255, 255, 255, 0.01));
}

.about-vm__card-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-dim);
    border: 1px solid rgba(198, 255, 0, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
}

.about-vm__card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.about-vm__card p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-2);
}

/* ── Why Choose QLCP ─────────────────────── */
.about-why {
    padding: 8rem 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.about-why__header {
    text-align: center;
    margin-bottom: 5rem;
}

/* New grid layout — replaces circular infographic */
.about-why__infographic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
}

/* Remove old circular center */
.about-why__center {
    display: none;
}

/* Re-style points as premium grid cards */
.about-why__point {
    position: static !important;
    transform: none !important;
}

.about-why__point-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent-dim);
    border: 1px solid rgba(198, 255, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s var(--ease);
    font-size: 0;
    /* override emoji sizing */
}

.about-why__point:hover .about-why__point-icon {
    background: rgba(198, 255, 0, 0.15);
    box-shadow: 0 0 20px rgba(198, 255, 0, 0.2);
    transform: scale(1.05);
}

.about-why__point {
    padding: 2.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.35s var(--ease);
    cursor: default;
}

.about-why__point:hover {
    border-color: rgba(198, 255, 0, 0.2);
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-why__point h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}

.about-why__point p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-2);
}

/* ── SVG icons inside point-icon ─────────── */
.about-why__point-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Team Section ────────────────────────── */
.about-team {
    padding: 8rem 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.about-team__header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.about-team__card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s var(--ease);
    cursor: default;
    text-align: center;
}

.about-team__card:hover {
    border-color: rgba(198, 255, 0, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.about-team__photo {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 square */
    overflow: hidden;
    background: var(--surface-2);
}

.about-team__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease), filter 0.4s;
    filter: saturate(0.85);
}

.about-team__card:hover .about-team__photo img {
    transform: scale(1.04);
    filter: saturate(1);
}

.about-team__info {
    padding: 1.8rem 1.5rem 2rem;
}

.about-team__name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -0.025em;
    margin-bottom: 0.4rem;
}

.about-team__role {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(198, 255, 0, 0.2);
    border-radius: 100px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 1rem;
}

.about-team__desc {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--text-2);
}

/* ── Gallery / Photo Strip ───────────────── */
.about-gallery {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.about-gallery__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.about-gallery__track {
    display: flex;
    gap: 1.5rem;
    padding: 0 3rem 1rem;
    animation: galleryScroll 32s linear infinite;
    width: max-content;
}

.about-gallery__track:hover {
    animation-play-state: paused;
}

@keyframes galleryScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.about-gallery__item {
    position: relative;
    flex-shrink: 0;
    width: 400px;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: default;
}

.about-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease), filter 0.4s;
    filter: saturate(0.8);
}

.about-gallery__item:hover img {
    transform: scale(1.05);
    filter: saturate(1);
}

.about-gallery__item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.2rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s, transform 0.35s;
}

.about-gallery__item:hover .about-gallery__item-label {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
    .about-team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-overview__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-overview__visual img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
        padding-top: 80px;
    }

    .about-hero .section-container {
        padding: 3rem 1.5rem 4rem;
    }

    .about-vm__grid {
        grid-template-columns: 1fr;
    }

    .about-why__infographic {
        grid-template-columns: 1fr;
    }

    .about-team__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .about-team__grid {
        grid-template-columns: 1fr;
    }

    .about-gallery__item {
        width: 280px;
        height: 180px;
    }
}