/* ============================================================
   ABOUT PAGE STYLES — about.css
   ============================================================ */

/* Hero stat strip */
.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 0.8s 0.45s ease both;
}

.hero-stat {
    flex: 1;
    padding: 24px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    transition: background 0.3s;
    text-align: center;
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.09);
}

.hs-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.hs-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Intro */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.intro-visual {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12);
    background: var(--surface);
    min-height: 100%;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.intro-visual:hover img {
    transform: scale(1.04);
}

.about-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin: 16px 0 28px;
}

.intro-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.intro-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.intro-point-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.intro-point-icon svg {
    width: 18px;
    height: 18px;
}

.intro-point-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.intro-point-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* Strengths */
.str-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.str-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px 22px;
    transition: background 0.3s, transform 0.3s;
}

.str-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-5px);
}

.str-img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 16px;
    display: block;
    background: rgba(255, 255, 255, 0.03);
}

.str-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.str-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

/* Overview */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin: 16px 0 0;
}

.overview-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.1);
}

.overview-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.overview-img:hover img {
    transform: scale(1.03);
}

/* Product list */
.prod-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.prod-item {
    background: var(--card);
    border-radius: 12px;
    padding: 28px 24px;
    border-left: 4px solid var(--blue);
    transition: transform 0.3s, box-shadow 0.3s;
}

.prod-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(26, 86, 219, 0.1);
}

.prod-item-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: rgba(26, 86, 219, 0.12);
    line-height: 1;
    margin-bottom: 10px;
}

.prod-item-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.prod-item-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* Timeline */
.tl-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.tl-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.tl-items {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
}

.tl-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: start;
}

.tl-content {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 22px;
}

.tl-dot-col {
    grid-column: 2;
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.tl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--blue2);
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.tl-year {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
}

.tl-event-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.tl-event-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

/* Testimonials about page */
.testi-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.testi-card-about {
    background: var(--card);
    border-radius: 14px;
    padding: 30px 28px;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testi-card-about:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(26, 86, 219, 0.1);
}

.testi-quote {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.testi-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
}

.testi-role {
    font-size: 12px;
    color: var(--muted);
}

@media(max-width:768px) {

    .intro-grid,
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .tl-item {
        grid-template-columns: 40px 1fr;
    }

    .tl-item>div:last-child:not(.tl-dot-col):not(.tl-content) {
        display: none;
    }

    .tl-content {
        grid-column: 2;
    }

    .tl-dot-col {
        grid-column: 1;
    }

    .tl-line {
        left: 19px;
    }

    .about-hero-stats {
        flex-direction: column;
    }

    .hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-stat:last-child {
        border-bottom: none;
    }
}

@media(max-width:600px) {
    .testi-grid-about {
        grid-template-columns: 1fr;
    }
}
