:root {
    --color-primary: #FF7A00;
    --color-black: #000000;
    --color-dark: #0A0A0A;
    --color-dark-gray: #1A1A1A;
    --color-gray: #333333;
    --color-light-gray: #666666;
    --color-silver: #999999;
    --color-silver-light: #CCCCCC;
    --color-silver-lighter: #E5E5E5;
    --color-white: #FFFFFF;
    --color-bg-light: #F9FAFB;
    --color-bg-lighter: #EFEFEF;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 96px;
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.hero {
    position: relative;
    width: 100%;
    height: 885px;
    overflow: hidden;
}

.hero__container {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero__panel {
    position: relative;
    flex: 1;
    width: 33.333%;
    height: 100%;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__panel:first-child .hero__overlay {
    background: linear-gradient(180deg, rgba(0, 50, 100, 0.40) 0%, rgba(0, 20, 50, 0.80) 100%);
}

.hero__overlay--brown {
    background: linear-gradient(180deg, rgba(100, 40, 20, 0.40) 0%, rgba(60, 20, 10, 0.80) 100%);
}

.hero__overlay--green {
    background: linear-gradient(180deg, rgba(20, 60, 40, 0.40) 0%, rgba(10, 40, 30, 0.80) 100%);
}

.hero__content {
    position: absolute;
    z-index: 2;
    bottom: 60px;
    left: 48px;
    width: 416px;
}
.hero__title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.hero__subtitle {
    font-size: 35px;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 19px;
}

.hero__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.6;
}

/* 底部装饰线 - 设计稿位置: left:767px (居中偏左), top:789px */
.hero__divider {
    position: absolute;
    bottom: 96px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 96px;
    background: linear-gradient(180deg, transparent 0%, #FF7A00 100%);
    z-index: 10;
}

/* Hero 面板悬停效果 */
.hero__panel {
    transition: flex 0.4s ease, opacity 0.4s ease;
}

.hero__panel--dimmed {
    flex: 0.6;
    opacity: 0.6;
}

.hero__panel--active {
    flex: 1.4;
}


.brand {
    position: relative;
    padding: 196px 0 0;
    background: #FFFFFF;
    overflow: hidden;
}

.brand__header {
    margin-bottom: 38px;
}

.brand__title {
    font-size: 44px;
    font-weight: 700;
    color: #000000;
}

.brand__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
}

.brand__intro {
    flex: 0 0 750px;
    max-width: 750px;
}

.brand__text {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 24px;
}

.brand__text:last-child {
    margin-bottom: 0;
}

.brand__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 19px;
    flex: 0 0 750px;
}

.brand__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 20px 30px;
    background: #F9FAFB;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.brand__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.brand__card-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.brand__card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand__card-number {
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.brand__card-label {
    font-size: 16px;
    color: #666666;
    line-height: 1.4;
}

.values {
    display: flex;
    position: relative;
    padding: 260px 0 170px;
    background: no-repeat center center;
    object-fit: cover;
    overflow: hidden;
    justify-content: right;
    background-size: cover;
}

.values__left {
    position: relative;
    flex: 0 0 50%;
    width: 50%;
    overflow: hidden;
}

.values__left-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.values__left-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.20) 100%);
}

/* 装饰图 - 设计稿: 1587x1190, left:-26px, top:-113px */
.values__decoration {
    position: absolute;
    left: -26px;
    top: -113px;
    width: 1587px;
    height: auto;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

.values__right {
    flex: 0 0 50%;
    width: 50%;
    padding: 0 80px;
    position: relative;
    z-index: 2;
}

.values__content {
    width: 608px;
    max-width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 58px;
    flex-direction: column;
}

.values__block:last-of-type {
    margin-bottom: 0;
}

.values__block-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
}
.values__block-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-primary);
}

.values__block-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 2;
    letter-spacing: 2px;
}

.values__block-main {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.2;
}

.values__block-sub {
    font-size: 18px;
    font-weight: 400;
    color: #E5E5E5;
    margin-bottom: 0;
}

.values__block-text {
    font-size: 17px;
    font-weight: 400;
    color: #D1D1D1;
    line-height: 1.75;
    margin-bottom: 0;
}

.values__footer {
    padding-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.values__footer-text {
    font-size: 14px;
    font-weight: 400;
    color: #888888;
    letter-spacing: 1.5px;
}

.honors {
    padding: 96px 0;
    background: #FFFFFF;
}

.honors__header {
    margin-bottom: 48px;
}

.honors__subtitle {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Helvetica Neue', sans-serif;
    color: #333333;
    text-align: center;
    margin-bottom: 16px;
}

.honors__title {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Helvetica Neue', sans-serif;
    color: #000000;
    text-align: center;
}

.honors__grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.honors__row--top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.honors__row--bottom {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.honors__item {
    background-color: #000000;
    background-size: cover;
    background-position: center;
    border: 1px solid #1A1A1A;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

/* 第一行大图比例: 302x190 → padding-top 63% */
.honors__row--top .honors__item::before {
    content: '';
    display: block;
    padding-top: 63%;
}

/* 第二行小图比例: 234x312 → padding-top 133% */
.honors__item--small::before {
    content: '';
    display: block;
    padding-top: 133%;
}

.honors__item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.journey {
    position: relative;
    padding: 136px 0 96px;
    background: #0A0A0A;
    color: #FFFFFF;
}
.journey__container{position: relative;z-index: 1;}
.journey__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.journey .container {
    position: relative;
    z-index: 1;
}

.journey__header {
    margin-bottom: 42px;
}

.journey__title {
    font-size: 45px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.7;
}

.journey__timeline {
    max-height: 885px;
    overflow: hidden;
}

.journey__item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.journey__year {
    display: block;
    flex-shrink: 0;
    width: 80px;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.journey__item-content {
    flex: 1;
    max-width: 485px;
}

.journey__item-desc {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255);
    line-height: 1.6;
    margin-bottom: 0;
}

.strength {
    padding: 92px 0;
    background: #EFEFEF;
}

.strength__header {
    margin-bottom: 48px;
}

.strength__title-block {
    margin-bottom: 18px;
}

.strength__title {
    font-size: 45px;     
    font-weight: 700;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 0;
}

.strength__desc {
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
    max-width: 768px;
    margin-bottom: 0     ;
}

.strength__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    gap: 40px;
}

.strength__card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.strength__card--offset {
    margin-top: 87px;
}

.strength__card:hover {
    transform: translateY(-8px);
}

.strength__card-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 101/126;
}
.strength__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strength__card-title {
    font-size: 22px;
    font-weight: 700;
    color: #FF7A00;
    line-height: 1.5;
    margin-top: 30px;
    margin-bottom: 0;
}

.strength__card-text {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin-top: 16px;
    margin-bottom: 10px;
}

.global {
    position: relative;
    padding: 128px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.global__content {
    display: flex;
    gap: 46px;
    align-items: flex-start;
}

.global__left {
    flex: 0 0 608px;
    max-width: 608px;
}

.global__info {
    margin-bottom: 25px;
}

.global__title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 9px;
}

.global__subtitle {
    font-size: 17px;
    font-weight: 400;
    color: #999999;
    letter-spacing: 3px;
    line-height: 1.5;
}
.global__divider{width: 75px; height: 2px; background-color: #000000;margin-top: 25px;}

.global__network {
    margin-bottom: 25px;
}

.global__network-title {
    font-size: 18px;
    line-height: 1.5;
    color: #666666;
    margin-bottom: 30px;
}

.global__regions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.global__region {
    display: flex;
    align-items: center;
    gap: 30px;
}

.global__region em {
    display: inline-block;
    width: 15px;
    height: 15px;
}

.global__region span {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

.global__partners {
    font-size: 16px;
    padding-bottom: 62px;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 25px;
}
.global__partners p{margin-bottom: 10px;}

.global__revenue-label {
    font-size: 18px;
    color: #666666;
    display: block;
    margin-bottom: 8px;
}

.global__revenue-value {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.global__revenue-number {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    line-height: 1;
}

.global__revenue-unit {
    font-size: 25px;
    color: #000000;
    line-height: 1.5;
}

.global__right {
    position: absolute;
    bottom: 128px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.footer {
    padding: 64px 0 32px;
    background: #000000;
    color: #FFFFFF;
}

.footer__content {
    display: flex;
    gap: 128px;
    margin-bottom: 64px;
}

.footer__info {
    flex: 0 0 200px;
}

.footer__logo {
    width: 96px;
    height: auto;
    margin-bottom: 16px;
    display: block;
}

.footer__company {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Helvetica Neue', sans-serif;
    color: #999999;
}

.footer__links {
    display: flex;
    gap: 64px;
    flex: 1;
}

.footer__column {
    flex: 1;
}

.footer__heading {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Helvetica Neue', sans-serif;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__list a {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Helvetica Neue', sans-serif;
    color: #999999;
    transition: color 0.3s ease;
}

.footer__list a:hover {
    color: #FF7A00;
}

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer__copyright {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Helvetica Neue', sans-serif;
    color: #999999;
    text-align: center;
}

@media (max-width: 1440px) {
    .brand__content {
        flex-direction: column;
        gap: 48px;
    }

    .brand__intro {
        flex: 1;
        max-width: 100%;
    }

    .strength__grid {
        grid-template-columns: repeat(3, 320px);
    }
}

@media (max-width: 992px) {
    .brand {
        padding: 106px 0;
    }
    .values {
        height: auto;
        background: no-repeat left 41% center;
        padding: 130px 0 60px;
    }
    .values__block-header{justify-content: end;padding-left: 0;padding-right: 15px;}
    .values__block-header::after{right: 0;left: auto;}
    .values__content{text-align: right;}
    .values__right {
        width: 100%;
        padding: 48px 32px;
    }

    .honors__row--top {
        grid-template-columns: repeat(2, 1fr);
    }

    .honors__row--bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey__item {
        padding-left: 60px;
    }

    .journey__year {
        font-size: 30px;
        width: 65px;
    }

    .strength__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .strength__card--offset {
        margin-top: 0;
    }

    .global__content {
        flex-direction: column;
        gap: 48px;
    }

    .global__left {
        flex: 1;
        max-width: 100%;
    }
    .global__right{display: none;}
    .global__revenue-number{font-size: 28px;}
    .global__revenue-unit{font-size: 18px;}

    
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .hero__container {
        flex-direction: column;
    }

    .hero__panel {
        width: 100%;
        height: 100vh;
        min-height: 600px;
    }

    .hero__content {
        left: 24px;
        width: calc(100% - 48px);
    }

    .hero__title {
        font-size: 30px;
    }

    .hero__subtitle {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .brand__content {
        flex-direction: column;
        width: 100%;
        gap: 40px;
    }

    .brand__intro {
        flex: 1;
        max-width: 100%;
    }

    .brand__cards {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 0;
        flex: 1;
        width: 100%;
    }

    .brand__card {
        width: 100%;
        height: auto;
        min-height: 80px;
    }

    .values__right {
        padding: 32px 16px;
    }

    .values__block-main {
        font-size: 24px;
    }

    .honors {
        padding: 64px 0;
    }

    .honors__row--top,
    .honors__row--bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .honors__item--large,
    .honors__item--small {
        grid-column: span 1;
    }

    .journey {
        padding: 64px 0;
    }

    .journey__header {
        padding-left: 16px;
        margin-bottom: 48px;
    }

    .journey__item {
        padding-left: 0;
        flex-direction: column;
        gap: 8px;
    }

    .journey__year {
        font-size: 28px;
    }

    .journey__item-content {
        max-width: 100%;
    }

    .strength {
        padding: 64px 0;
    }

    .strength__grid {
        grid-template-columns: 1fr;
    }

    .global {
        padding: 64px 0;
    }

    .global__regions {
        grid-template-columns: 1fr;
    }

    .honors__row--top,
    .honors__row--bottom {
        grid-template-columns: 1fr;
    }

    .footer__content {
        flex-direction: column;
        gap: 48px;
    }

    .footer__links {
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer__column {
        flex: 0 0 calc(50% - 16px);
    }
    .brand__title{font-size: 32px;}
    .brand__header{margin-bottom: 24px;}
    .brand__card-label{font-size: 14px;}
    .brand__bg-pattern{margin-top: 12px}
    .values__content{gap: 38px;}
    .honors__title{font-size: 24px;}
    .strength__title{font-size: 32px;}
    .strength__desc{font-size: 14px;}
    .global__title{font-size: 32px;}
    .global__subtitle,.global__network-title,.global__revenue-label,.global__revenue-unit{font-size: 16px;}
    .global__region{gap:15px}
    .global__revenue-number{font-size: 24px;}
}

@media (max-width: 545px) {
    .brand {
        padding: 66px 0;
    }
    .hero__title {
        font-size: 24px;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    .hero__content {
        left: 16px;
        width: calc(100% - 32px);
    }

    .brand__card {
        padding: 12px;
    }

    .brand__cards {
        grid-template-columns: 1fr;
    }

    .brand__card-number {
        font-size: 20px;
    }

    .strength__card {
        border-radius: var(--radius-md);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

/* Staggered Animation Delays */
.brand__card:nth-child(1) { animation-delay: 0.1s; }
.brand__card:nth-child(2) { animation-delay: 0.2s; }
.brand__card:nth-child(3) { animation-delay: 0.3s; }
.brand__card:nth-child(4) { animation-delay: 0.4s; }
.brand__card:nth-child(5) { animation-delay: 0.5s; }
.brand__card:nth-child(6) { animation-delay: 0.6s; }
.brand__card:nth-child(7) { animation-delay: 0.7s; }
.brand__card:nth-child(8) { animation-delay: 0.8s; }