/* =========================================================
   WORLDISON ABOUT PAGE
========================================================= */

.about-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.about-page-hero {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
}

.about-page-hero-image {
    position: absolute;
    inset: 0;
    background:
        url('../img/about-hero.jpg')
        center center / cover no-repeat;
    transform: scale(1.02);
}

.about-page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.55) 48%,
            rgba(0,0,0,.20) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.85) 0%,
            transparent 60%
        );
}

.about-page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 90px 0 75px;
}

.about-hero-copy {
    max-width: 760px;
}

.about-eyebrow,
.about-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.about-eyebrow {
    margin-bottom: 18px;
    opacity: .85;
}

.about-hero-copy h1 {
    margin: 0 0 22px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -2px;
}

.about-hero-copy h1 span {
    display: block;
}

.about-hero-copy p {
    max-width: 650px;
    margin: 0 0 32px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,.88);
}

.about-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}


/* =========================================================
   BUTTONS
========================================================= */

.about-btn {
    min-height: 48px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 4px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    transition: .25s ease;
}

.about-btn svg {
    width: 17px;
    height: 17px;
}

.about-btn-primary {
    background: #198754;
    color: #fff !important;
}

.about-btn-primary:hover {
    background: #157347;
    transform: translateY(-2px);
}

.about-btn-outline {
    border: 1px solid rgba(255,255,255,.55);
    color: #fff !important;
    background: rgba(255,255,255,.05);
}

.about-btn-outline:hover {
    background: #fff;
    color: #111 !important;
}


/* =========================================================
   STORY
========================================================= */

.about-story {
    padding: 110px 0;
    background: #fff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-image {
    position: relative;
}

.about-story-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.about-experience-card {
    position: absolute;
    right: -25px;
    bottom: 35px;
    min-width: 180px;
    padding: 22px;
    background: #198754;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,.18);
}

.about-experience-card strong {
    font-size: 44px;
    line-height: 1;
}

.about-experience-card span {
    font-size: 13px;
    line-height: 1.4;
}

.about-section-label {
    color: #198754;
    margin-bottom: 12px;
}

.about-story-content h2,
.about-section-heading h2,
.about-why-intro h2,
.about-direction-heading h2 {
    margin: 0 0 20px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;
}

.about-accent-line {
    width: 55px;
    height: 3px;
    background: #198754;
    margin-bottom: 28px;
}

.about-story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.about-story-content .about-lead {
    font-size: 19px;
    line-height: 1.7;
    color: #222;
}

.about-text-link,
.about-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #198754;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    margin-top: 12px;
}

.about-text-link svg,
.about-card-link svg {
    width: 16px;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.about-capabilities {
    padding: 105px 0;
    background: #f5f7f6;
}

.about-section-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    margin-bottom: 55px;
}

.about-section-heading > p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin-top: 35px;
}

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

.about-service-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.about-service-image {
    position: relative;
}

.about-service-image img {
    width: 100%;
    height: 270px;
    display: block;
    object-fit: cover;
}

.about-service-icon {
    position: absolute;
    left: 22px;
    bottom: -25px;
    width: 52px;
    height: 52px;
    background: #198754;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-service-icon svg {
    width: 24px;
}

.about-service-body {
    position: relative;
    padding: 42px 28px 30px;
}

.about-service-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 12px;
    font-weight: 700;
    color: #aaa;
}

.about-service-body h3 {
    margin: 0 0 14px;
    font-size: 23px;
}

.about-service-body p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}


/* =========================================================
   WHY WORLDISON
========================================================= */

.about-why {
    padding: 110px 0;
    background: #101513;
    color: #fff;
}

.about-why-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
}

.about-why-intro h2 {
    color: #fff;
}

.about-why-intro h2 span {
    display: block;
    color: #8fcfb0;
}

.about-why-intro p {
    color: rgba(255,255,255,.68);
    line-height: 1.8;
}

.about-why-list {
    border-top: 1px solid rgba(255,255,255,.15);
}

.about-why-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 25px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.about-why-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-why-icon svg {
    width: 22px;
    color: #8fcfb0;
}

.about-why-number {
    font-size: 11px;
    color: #8fcfb0;
    letter-spacing: 1px;
}

.about-why-item h3 {
    margin: 5px 0 8px;
    font-size: 20px;
}

.about-why-item p {
    margin: 0;
    color: rgba(255,255,255,.62);
    line-height: 1.7;
}


/* =========================================================
   VISION & MISSION
========================================================= */

.about-direction {
    padding: 110px 0;
    background: #fff;
}

.about-direction-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.about-direction-heading p {
    color: #666;
    line-height: 1.8;
}

.about-direction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.about-direction-card {
    padding: 45px;
    border: 1px solid #e7e9e8;
}

.about-direction-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf5ef;
    color: #198754;
}

.about-direction-icon svg {
    width: 25px;
}

.about-direction-label {
    display: block;
    margin-bottom: 10px;
    color: #198754;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-direction-card h3 {
    margin: 0 0 18px;
    font-size: 27px;
}

.about-direction-card p {
    color: #666;
    line-height: 1.8;
}

.about-direction-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-direction-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.about-direction-card li svg {
    flex: 0 0 18px;
    width: 18px;
    margin-top: 4px;
    color: #198754;
}


/* =========================================================
   FINAL CTA
========================================================= */

.about-cta {
    position: relative;
    padding: 110px 0;
    background:
        url('../img/about-hero.jpg')
        center / cover no-repeat;
    color: #fff;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
}

.about-cta-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.about-cta-content h2 {
    margin: 10px 0 20px;
    font-size: clamp(34px, 5vw, 55px);
    line-height: 1.1;
}

.about-cta-content p {
    max-width: 650px;
    color: rgba(255,255,255,.75);
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 30px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .about-story-grid,
    .about-section-heading,
    .about-why-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

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

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

    .about-story-image img {
        height: 450px;
    }

}

@media (max-width: 767px) {

    .about-container {
        width: min(100% - 30px, 1180px);
    }

    .about-page-hero {
        min-height: 540px;
    }

    .about-page-hero-content {
        padding: 70px 0 55px;
    }

    .about-hero-copy h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .about-hero-copy p {
        font-size: 16px;
    }

    .about-story,
    .about-capabilities,
    .about-why,
    .about-direction,
    .about-cta {
        padding: 75px 0;
    }

    .about-story-image img {
        height: 380px;
    }

    .about-experience-card {
        right: 15px;
        bottom: 20px;
    }

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

    .about-direction-card {
        padding: 30px;
    }

    .about-why-grid {
        gap: 55px;
    }

}