﻿/* =====================================
   ABOUT US PAGE
===================================== */

:root {
    --primary: #2453ff;
    --primary-dark: #0d36d8;
    --secondary: #072b79;
    --text: #23395d;
    --muted: #6b7b9c;
    --border: #e8eefb;
    --bg: #f8fbff;
}

/* =====================================
   COMMON
===================================== */

.section-title {
    text-align: center;
    margin-bottom: 36px;
}

    .section-title span {
        color: var(--primary);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .section-title h2 {
        font-size: 34px;
        font-weight: 800;
        color: var(--secondary);
        margin-top: 10px;
    }

.container {
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
}

/* =====================================
   HERO
===================================== */

.about-hero {
    padding: 32px 0;
}

.hero-grid {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 460px;
    padding: 56px;
    border-radius: 24px;
    overflow: hidden;
    background-image: linear-gradient(90deg, rgba(248,251,255,.97) 0%, rgba(248,251,255,.88) 38%, rgba(248,251,255,.4) 68%, rgba(248,251,255,.08) 100%), url('/images/about-hero.jpg');
    background-size: cover;
    background-position: center right;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.15;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 18px;
}

    .hero-content h1 span {
        color: var(--primary);
    }

.hero-content p {
    font-size: 16.5px;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 500px;
}

.section-tag {
    display: inline-block;
    background: #eef4ff;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* =====================================
   BUTTONS
===================================== */

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .btn-primary:hover {
        background: var(--primary-dark);
        color: #fff;
    }

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

    .btn-outline:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }

.about-hero .btn-primary-custom {
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

    .about-hero .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 26px rgba(36,83,255,.30);
    }

.btn-outline-light {
    border: 2px solid rgba(255,255,255,.4);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
}

/* =====================================
   WHO WE ARE
===================================== */

.who-we-are-section {
    padding: 60px 0;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.who-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.who-content h2 {
    font-size: 34px;
    color: var(--secondary);
    margin-bottom: 18px;
}

.who-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.who-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

    .feature-card i {
        color: var(--primary);
        font-size: 30px;
        margin-bottom: 12px;
    }

    .feature-card h5 {
        color: var(--secondary);
        font-weight: 700;
        margin: 0;
    }

/* =====================================
   STORY
===================================== */

.story-section {
    padding: 60px 0;
    background: var(--bg);
}

.story-section .story-content {
    max-width: 950px;
    margin: auto;
    text-align: center;
}

    .story-section .story-content p {
        font-size: 18px;
        color: var(--text);
        line-height: 1.9;
        margin-bottom: 20px;
    }

/* =====================================
   STATS
===================================== */

.stats-section {
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
    padding: 28px 20px;
    transition: .3s;
}

    .stat-card:hover {
        transform: translateY(-5px);
    }

    .stat-card h3 {
        color: var(--primary);
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .stat-card p {
        color: var(--text);
        margin: 0;
    }

/* =====================================
   TRACKING
===================================== */

.tracking-section {
    padding: 90px 0;
    background: var(--bg);
}

.tracking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tracking-image img {
    width: 100%;
    border-radius: 24px;
}

.tracking-content h2 {
    color: var(--secondary);
    font-size: 34px;
    margin: 15px 0;
}

.tracking-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.tracking-content ul {
    padding-left: 20px;
}

.tracking-content li {
    margin-bottom: 12px;
    color: var(--text);
}

/* =====================================
   QUALITY
===================================== */

.quality-section {
    padding: 35px 0 60px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.quality-card {
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 18px;
}

    .quality-card i {
        color: var(--primary);
        font-size: 38px;
        margin-bottom: 15px;
    }

    .quality-card h4 {
        color: var(--secondary);
        font-size: 18px;
        margin: 0;
    }

/* =====================================
   CTA
===================================== */

.about-cta {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient( 135deg, #0d36d8, #2453ff );
    border-radius: 28px;
    padding: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

    .cta-box h2 {
        color: #fff;
        font-size: 32px;
        margin-bottom: 14px;
    }

    .cta-box p {
        color: rgba(255,255,255,.9);
        margin: 0;
    }

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* =====================================
   WHO WE ARE (pillars)
===================================== */

/* shared section eyebrow */
.section-eyebrow {
    display: inline-block;
    background: #eef4ff;
    color: var(--primary);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.who-we-are {
    padding: 70px 0;
    text-align: center;
}

    .who-we-are > .container > h2 {
        font-size: 36px;
        font-weight: 800;
        color: var(--secondary);
        margin-bottom: 18px;
        letter-spacing: -0.5px;
    }

.section-intro {
    max-width: 760px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.pillar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 22px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .pillar-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(7,43,121,.10);
        border-color: #d4e1fb;
    }

.pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eaf1ff, #dbe7ff);
    color: var(--primary);
    margin-bottom: 18px;
}

    .pillar-icon svg {
        width: 28px;
        height: 28px;
    }

.pillar-card h4 {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pillar-card p {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

/* =====================================
   OUR STORY (grid + image)
===================================== */

.our-story {
    padding: 70px 0 35px;
}

    .our-story > .container {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 28px;
        padding: 56px;
    }

.story-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: center;
}

.our-story .story-content {
    text-align: left;
}

.story-content h2 {
    position: relative;
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 28px;
    padding-bottom: 16px;
}

    .story-content h2::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 64px;
        height: 4px;
        border-radius: 4px;
        background: var(--primary);
    }

.our-story .story-content p {
    text-align: left;
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 16px;
}

    .our-story .story-content p:first-of-type {
        font-size: 17px;
        color: var(--secondary);
        font-weight: 500;
    }

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(7,43,121,.14);
    transition: transform .35s ease, box-shadow .35s ease;
}

    .story-image img:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 60px rgba(7,43,121,.20);
    }

/* =====================================
   BUILT TO DELIVER (stats band)
===================================== */

.built-deliver {
    padding: 35px 0 30px;
}

    .built-deliver > .container {
        background: linear-gradient(180deg, #f4f8ff, #eef4ff);
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 48px 40px;
        text-align: center;
    }

    .built-deliver h2 {
        text-align: center;
        font-size: 30px;
        font-weight: 800;
        color: var(--secondary);
        margin-bottom: 36px;
        letter-spacing: -0.5px;
    }

    .built-deliver .stat-card h3 {
        font-size: 34px;
        background: linear-gradient(135deg, var(--primary), #4f7bff);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .built-deliver .stats-grid {
        gap: 0;
        align-items: center;
    }

    .built-deliver .stat-card {
        position: relative;
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 8px 25px;
    }

        .built-deliver .stat-card:not(:first-child)::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 52px;
            background: var(--border);
        }

        .built-deliver .stat-card:hover {
            transform: none;
        }

/* =====================================
   QUALITY (badges)
===================================== */

.quality-section {
    text-align: center;
}

    .quality-section > .container > h2 {
        font-size: 30px;
        font-weight: 800;
        color: var(--secondary);
        margin-bottom: 12px;
    }

    .quality-section > .container > p {
        color: var(--text);
        font-size: 16px;
        margin-bottom: 40px;
    }

.badge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.badge-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 22px;
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary);
    text-align: left;
    box-shadow: 0 6px 18px rgba(7,43,121,.04);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .badge-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(7,43,121,.10);
        border-color: #d4e1fb;
    }

.badge-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eaf1ff, #dbe7ff);
    color: var(--primary);
}

    .badge-icon svg {
        width: 22px;
        height: 22px;
    }

/* =====================================
   CTA BAND
===================================== */

.cta-band {
    padding: 0 0 60px;
}

.cta-wrapper {
    background: #071a52;
    border-radius: 28px;
    padding: 50px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cta-left h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-left p {
    color: rgba(255,255,255,.9);
    margin-bottom: 26px;
}

.cta-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.trust-item {
    text-align: center;
    padding: 0 18px;
    border-left: 1px solid rgba(255,255,255,.15);
}

    .trust-item:first-child {
        border-left: none;
    }

.trust-icon {
    display: inline-flex;
    margin-bottom: 16px;
    color: #fff;
}

    .trust-icon svg {
        width: 36px;
        height: 36px;
        color: white;
    }

.trust-item h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.trust-item p {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    margin: 0;
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:991px) {

    .who-grid,
    .story-grid,
    .tracking-wrapper,
    .cta-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding: 40px 28px;
        min-height: 400px;
        background-image: linear-gradient(90deg, rgba(248,251,255,.97) 0%, rgba(248,251,255,.92) 55%, rgba(248,251,255,.6) 100%), url('/images/about-hero.jpg');
    }

    .our-story > .container {
        padding: 36px 24px;
    }

    .story-image {
        order: -1;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .who-content h2,
    .tracking-content h2,
    .section-title h2 {
        font-size: 34px;
    }

    .stats-grid,
    .quality-grid,
    .badge-grid,
    .pillar-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .built-deliver .stat-card,
    .pillar-card {
        border-left: none;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:768px) {

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .stats-grid,
    .quality-grid,
    .badge-grid,
    .pillar-grid,
    .cta-right,
    .who-features {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .cta-box {
        padding: 35px 25px;
    }

        .cta-box h2 {
            font-size: 30px;
        }
}
