/* =========================================================
   About Us Page
   Future Power Theme
========================================================= */

.future-about-page {
    width: 100%;
    background: #f7fbf8;
    overflow: hidden;
}

/* ==============================
   Common
============================== */

.future-about-page section {
    position: relative;
}

.future-about-label,
.future-section-head span,
.future-about-global-text span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #168a3a;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.future-section-head {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.future-section-head h2 {
    margin: 0 0 14px;
    color: #14284b;
    font-size: 36px;
    line-height: 1.28;
    font-weight: 800;
}

.future-section-head p {
    margin: 0;
    color: #5b6472;
    font-size: 16px;
    line-height: 1.8;
}

/* ==============================
   Company Introduction
============================== */

.future-about-intro {
    padding: 72px 0 76px;
    background: #fff;
}

.future-about-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 56px;
    align-items: center;
}

.future-about-intro-text h2 {
    margin: 0 0 12px;
    color: #14284b;
    font-size: 42px;
    line-height: 1.22;
    font-weight: 800;
}

.future-about-intro-text h3 {
    margin: 0 0 22px;
    color: #168a3a;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 800;
}

.future-about-intro-text p {
    margin: 0 0 18px;
    color: #5b6472;
    font-size: 16px;
    line-height: 1.85;
}

.future-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.future-about-stats div {
    padding: 22px 18px;
    background: linear-gradient(135deg, rgba(55,179,74,.08), rgba(16,155,215,.08));
    border: 1px solid #e7f2ee;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(16,36,58,.05);
}

.future-about-stats strong {
    display: block;
    color: #14284b;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
}

.future-about-stats span {
    display: block;
    margin-top: 7px;
    color: #5b6472;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
}

.future-about-intro-img {
    position: relative;
    height: 520px;
    border-radius: 28px;
    overflow: hidden;
    background: #eaf6ef;
    box-shadow: 0 18px 44px rgba(16,36,58,.12);
}

.future-about-intro-img::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 22px;
    z-index: 2;
    pointer-events: none;
}

.future-about-intro-img::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg, #37b34a 0%, #109bd7 72%, #f6bd16 100%);
    z-index: 3;
}

.future-about-intro-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ==============================
   Company Video
============================== */

.future-about-video {
    padding: 76px 0;
    background: #f7fbf8;
}

.future-about-video-box {
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 12px;
    background: #fff;
    border: 1px solid #e7f2ee;
    border-radius: 28px;
    box-shadow: 0 18px 44px rgba(16, 36, 58, .12);
    overflow: hidden;
}

.future-about-video-box::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    height: 6px;
    background: linear-gradient(
        90deg,
        #37b34a 0%,
        #109bd7 72%,
        #f6bd16 100%
    );
    border-radius: 0 0 16px 16px;
    pointer-events: none;
    z-index: 2;
}

.future-about-video-box video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 620px;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #000;
    border-radius: 18px;
    outline: none;
}

/* ==============================
   Closed-loop Industrial Chain
============================== */

.future-about-chain {
    padding: 76px 0;
    background: linear-gradient(135deg, rgba(55,179,74,.08), rgba(16,155,215,.08));
}

.future-chain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.future-chain-card {
    min-height: 280px;
    padding: 34px 30px;
    background: #fff;
    border: 1px solid #e7f2ee;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(16,36,58,.06);
    transition: all .35s ease;
}

.future-chain-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16,155,215,.36);
    box-shadow: 0 18px 42px rgba(16,155,215,.14);
}

.future-chain-card i {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    color: #fff;
    font-size: 25px;
    box-shadow: 0 10px 24px rgba(55,179,74,.22);
}

.future-chain-card h3 {
    margin: 0 0 14px;
    color: #14284b;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 800;
}

.future-chain-card p {
    margin: 0;
    color: #5b6472;
    font-size: 15px;
    line-height: 1.8;
}

/* ==============================
   Manufacturing Strength
============================== */

.future-about-manufacturing {
    padding: 78px 0;
    background: #fff;
}

.future-about-split {
    display: grid;
    grid-template-columns: 520px minmax(0, 1fr);
    gap: 58px;
    align-items: center;
}

.future-about-split-img {
    position: relative;
    height: 500px;
    border-radius: 28px;
    overflow: hidden;
    background: #eaf6ef;
    box-shadow: 0 18px 44px rgba(16,36,58,.12);
}

.future-about-split-img::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 7px;
    height: 100%;
    background: linear-gradient(180deg, #37b34a 0%, #109bd7 72%, #f6bd16 100%);
    z-index: 2;
}

.future-about-split-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.future-about-split-text h2 {
    margin: 0 0 18px;
    color: #14284b;
    font-size: 38px;
    line-height: 1.28;
    font-weight: 800;
}

.future-about-split-text p {
    margin: 0 0 18px;
    color: #5b6472;
    font-size: 16px;
    line-height: 1.85;
}

.future-about-split-text ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.future-about-split-text li {
    position: relative;
    padding: 14px 16px 14px 42px;
    background: linear-gradient(135deg, rgba(55,179,74,.08), rgba(16,155,215,.08));
    border: 1px solid #e7f2ee;
    border-radius: 14px;
    color: #14284b;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 800;
}

.future-about-split-text li::before {
    content: "\f00c";
    position: absolute;
    left: 16px;
    top: 14px;
    font-family: FontAwesome;
    color: #37b34a;
}

/* ==============================
   Technology Advantages
============================== */

.future-about-tech {
    padding: 76px 0;
    background: #f7fbf8;
}

.future-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.future-tech-card {
    position: relative;
    padding: 36px 30px 34px;
    background: #fff;
    border: 1px solid #e7f2ee;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(16,36,58,.06);
    overflow: hidden;
    transition: all .35s ease;
}

.future-tech-card::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, #37b34a 0%, #109bd7 72%, #f6bd16 100%);
    border-radius: 6px 6px 0 0;
}

.future-tech-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16,155,215,.36);
    box-shadow: 0 18px 42px rgba(16,155,215,.14);
}

.future-tech-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(55,179,74,.12), rgba(16,155,215,.12));
    display: flex;
    align-items: center;
    justify-content: center;
}

.future-tech-icon i {
    color: #168a3a;
    font-size: 28px;
}

.future-tech-card h3 {
    margin: 0 0 14px;
    color: #14284b;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 800;
}

.future-tech-card p {
    margin: 0;
    color: #5b6472;
    font-size: 15px;
    line-height: 1.8;
}

/* ==============================
   Quality System
============================== */

.future-about-quality {
    padding: 78px 0;
    background: #fff;
}

.future-about-quality-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 500px;
    gap: 54px;
    align-items: center;
    padding: 38px;
    background: linear-gradient(135deg, rgba(55,179,74,.08), rgba(16,155,215,.08));
    border: 1px solid #e7f2ee;
    border-radius: 30px;
}

.future-about-quality-text h2 {
    margin: 0 0 18px;
    color: #14284b;
    font-size: 38px;
    line-height: 1.28;
    font-weight: 800;
}

.future-about-quality-text p {
    margin: 0;
    color: #5b6472;
    font-size: 16px;
    line-height: 1.85;
}

.future-quality-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.future-quality-list span {
    min-height: 38px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(55,179,74,.18);
    border-radius: 22px;
    color: #14284b;
    font-size: 13px;
    line-height: 38px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(16,36,58,.04);
}

.future-about-quality-img {
    height: 430px;
    border-radius: 26px;
    overflow: hidden;
    background: #eaf6ef;
    box-shadow: 0 14px 34px rgba(16,36,58,.10);
}

.future-about-quality-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==============================
   Environment
============================== */

.future-about-environment {
    padding: 76px 0;
}

.future-factory-environment {
    background: #f7fbf8;
}

.future-office-environment {
    background: #fff;
}

.future-env-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.future-env-item {
    position: relative;
    background: #fff;
    border: 1px solid #e7f2ee;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(16,36,58,.06);
    transition: all .35s ease;
}

.future-office-environment .future-env-item {
    background: #f7fbf8;
}

.future-env-item:hover {
    transform: translateY(-6px);
    border-color: rgba(16,155,215,.36);
    box-shadow: 0 18px 42px rgba(16,155,215,.14);
}

.future-env-item img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all .45s ease;
}

.future-env-item:hover img {
    transform: scale(1.06);
}

.future-env-item h3 {
    margin: 0;
    padding: 18px 18px 20px;
    color: #14284b;
    font-size: 18px; text-align:center;
    line-height: 1.35;
    font-weight: 800;
}

.future-env-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 250px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #37b34a 0%, #109bd7 72%, #f6bd16 100%);
}

/* ==============================
   Certification
============================== */

.future-about-certification {
    padding: 76px 0;
    background: linear-gradient(135deg, rgba(55,179,74,.08), rgba(16,155,215,.08));
}

.future-cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.future-cert-item {
    background: #fff;
    border: 1px solid #e7f2ee;
    border-radius: 22px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(16,36,58,.06);
    transition: all .35s ease;
}

.future-cert-item:hover {
    transform: translateY(-6px);
    border-color: rgba(16,155,215,.36);
    box-shadow: 0 18px 42px rgba(16,155,215,.14);
}

.future-cert-item img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: contain;
    padding: 18px;
    border: 1px solid #e7f2ee;
    border-radius: 18px;
    box-sizing: border-box;
}

.future-cert-item h3 {
    margin: 16px 0 2px;
    color: #14284b;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
}

/* ==============================
   Global Service
============================== */

.future-about-global {
    padding: 78px 0 88px;
    background: #fff;
}

.future-about-global-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 52px;
    align-items: center;
    padding: 46px;
    background:
        linear-gradient(135deg, rgba(16,36,58,.92), rgba(20,40,75,.88)),
        linear-gradient(135deg, #37b34a, #109bd7);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.future-about-global-box::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(55,179,74,.18);
}

.future-about-global-box::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(16,155,215,.18);
}

.future-about-global-text,
.future-about-global-data {
    position: relative;
    z-index: 2;
}

.future-about-global-text span {
    color: #f6bd16;
}

.future-about-global-text h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 38px;
    line-height: 1.3;
    font-weight: 800;
}

.future-about-global-text p {
    margin: 0 0 16px;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.85;
}

.future-about-global-data {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.future-about-global-data div {
    min-height: 128px;
    padding: 22px 18px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.future-about-global-data strong {
    display: block;
    color: #fff;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
}

.future-about-global-data span {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.74);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
}

/* ==============================
   Responsive
============================== */

@media (max-width: 1200px) {
    .future-about-intro-layout,
    .future-about-split,
    .future-about-quality-box,
    .future-about-global-box {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .future-about-intro-img,
    .future-about-split-img,
    .future-about-quality-img {
        height: 420px;
    }

    .future-chain-grid,
    .future-tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .future-env-grid,
    .future-cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .future-chain-grid,
    .future-tech-grid {
        grid-template-columns: 1fr;
    }

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

    .future-about-split-text ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .future-about-intro,
	 .future-about-video,
    .future-about-chain,
    .future-about-manufacturing,
    .future-about-tech,
    .future-about-quality,
    .future-about-environment,
    .future-about-certification,
    .future-about-global {
        padding: 46px 0;
    }

    .future-section-head {
        margin-bottom: 24px;
        text-align: left;
    }

    .future-section-head h2,
    .future-about-intro-text h2,
    .future-about-split-text h2,
    .future-about-quality-text h2,
    .future-about-global-text h2 {
        font-size: 28px;
        line-height: 1.32;
    }

    .future-about-intro-text h3 {
        font-size: 19px;
    }

    .future-section-head p,
    .future-about-intro-text p,
    .future-about-split-text p,
    .future-about-quality-text p,
    .future-about-global-text p {
        font-size: 15px;
        line-height: 1.75;
    }

    .future-about-intro-img,
    .future-about-split-img,
    .future-about-quality-img {
        height: 280px;
        border-radius: 20px;
    }

    .future-about-quality-box,
    .future-about-global-box {
        padding: 22px 16px;
        border-radius: 22px;
    }

    .future-chain-card,
    .future-tech-card {
        min-height: auto;
        padding: 26px 22px;
        border-radius: 20px;
    }

    .future-env-grid,
    .future-cert-grid,
    .future-about-global-data {
        grid-template-columns: 1fr;
    }

    .future-env-item img {
        height: 220px;
    }

    .future-env-item::after {
        top: 220px;
    }

    .future-cert-item img {
        height: 190px;
    }
	.future-about-video-box {
        padding: 6px;
        border-radius: 18px;
    }

    .future-about-video-box video {
        max-height: none;
        border-radius: 13px;
    }

    .future-about-video-box::after {
        left: 6px;
        right: 6px;
        bottom: 6px;
        height: 4px;
        border-radius: 0 0 12px 12px;
    }
}