﻿@charset "utf-8";

:root {
    --primary-orange: #ec6a00;
    --primary-green: #0f8f66;
    --text-dark: #1f2937;
    --text-light: #667085;
    --border-color: #dfe3ea;
    --bg-page: #eef2f7;
    --bg-soft: #f7f9fc;
    --panel-bg: #ffffff;
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* ==================== 基础重置 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-page);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-orange);
}

/* 全站正文行内字重统一，避免同一行前粗后细 */
p strong,
p b,
li strong,
li b {
    font-weight: inherit;
    color: inherit;
}

ul, li {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.w {
    width: 1600px;
    max-width: 95%;
    margin: 0 auto;
}

/* ==================== 头部导航 ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    transition: all 0.3s;
    background: #fff;
}

.header.scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    /* Logo图片本身是白色文字，在白色背景下需要滤镜处理 */
}

/* 默认状态下logo使用深色版本 */
.header .logo img {
    filter: none;
}

/* 主导航 */
.main-nav {
    flex: 1;
    min-width: 0;
}

.main-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 28px;
}

.main-nav > ul > li {
    position: relative;
    margin: 0;
    flex-shrink: 0;
}

.main-nav > ul > li > a {
    display: block;
    padding: 22px 0;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
    transition: color 0.3s;
}

.header.scrolled .main-nav > ul > li > a {
    color: #333;
}

.main-nav > ul > li:hover > a,
.main-nav > ul > li.active > a {
    color: #ec6a00;
}

.nav-search-item {
    position: relative;
}

.nav-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    min-width: 44px;
    height: 44px;
    margin: 11px 0;
    padding: 0 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #333;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s, background 0.3s;
}

.nav-search-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-search-label {
    display: inline-block;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transform: translateX(-4px);
    transition: max-width 0.25s ease, opacity 0.2s ease, transform 0.25s ease;
}

.nav-search-item.active .nav-search-toggle,
.nav-search-item.is-open .nav-search-toggle,
.nav-search-toggle:hover {
    color: #ec6a00;
    background: rgba(236, 106, 0, 0.08);
}

.nav-search-item.active .nav-search-label,
.nav-search-item.is-open .nav-search-label,
.nav-search-toggle:hover .nav-search-label {
    max-width: 40px;
    opacity: 1;
    transform: translateX(0);
}

.nav-search-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 20;
}

.nav-search-item.is-open .nav-search-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-search-form {
    display: flex;
    gap: 14px;
}

.nav-search-form input {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #d7dee8;
    border-radius: 10px;
    background: #fff;
    color: #1f2937;
    font-size: 14px;
    outline: none;
}

.nav-search-form input:focus {
    border-color: #ec6a00;
    box-shadow: 0 0 0 3px rgba(236, 106, 0, 0.12);
}

.nav-search-form button {
    height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 10px;
    background: #ec6a00;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.nav-language-item {
    position: relative;
}

.nav-language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 78px;
    height: 44px;
    margin: 11px 0;
    padding: 0 12px;
    border: 1px solid rgba(223, 227, 234, 0.9);
    border-radius: 12px;
    background: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.nav-language-divider,
.nav-language-alt {
    color: #7b8794;
}

.nav-language-item.is-open .nav-language-toggle,
.nav-language-toggle:hover {
    color: #ec6a00;
    border-color: rgba(236, 106, 0, 0.35);
    background: rgba(236, 106, 0, 0.06);
}

.nav-language-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 138px;
    padding: 8px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 20;
}

.nav-language-item.is-open .nav-language-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-language-option {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #333;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}

.nav-language-option:hover,
.nav-language-option.active {
    background: rgba(236, 106, 0, 0.08);
    color: #ec6a00;
}

/* 下拉菜单 */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 140px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    padding: 10px 0;
}

.main-nav > ul > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    text-align: center;
}

.dropdown a:hover {
    color: #ec6a00;
    background: #f5f5f5;
}

/* 头部右侧 */
.header-right {
    display: flex;
    align-items: center;
}

.header-phone {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
    flex-shrink: 0;
}

.header.scrolled .header-phone {
    color: #333;
}

.header-phone img {
    width: 24px;
    margin-right: 10px;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-tools[hidden] {
    display: none !important;
}

@media (min-width: 993px) {
    .main-nav {
        flex: 1;
        min-width: 0;
        display: flex;
        justify-content: center;
        margin-left: 0;
    }

    .main-nav ul {
        justify-content: center;
        margin: 0 auto;
    }
}

.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    margin-left: auto;
    border: 1px solid #dfe3ea;
    border-radius: 8px;
    background: #fff;
    color: #1f2937;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-toggle .line,
.mobile-menu-toggle .line::before,
.mobile-menu-toggle .line::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle .line {
    position: relative;
}

.mobile-menu-toggle .line::before,
.mobile-menu-toggle .line::after {
    content: '';
    position: absolute;
    left: 0;
}

.mobile-menu-toggle .line::before {
    transform: translateY(-6px);
}

.mobile-menu-toggle .line::after {
    transform: translateY(6px);
}

body.mobile-nav-open .mobile-menu-toggle .line {
    background: transparent;
}

body.mobile-nav-open .mobile-menu-toggle .line::before {
    transform: rotate(45deg);
}

body.mobile-nav-open .mobile-menu-toggle .line::after {
    transform: rotate(-45deg);
}

/* ==================== 全屏滚动 ==================== */
#fullpage {
    /* ????????????? */
    padding-top: 70px;
}

.section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.section1 {
    background: #07111f;
    height: 100vh;
    min-height: 100vh;
    height: 100svh;
    min-height: 100svh;
    margin-top: -70px;
    padding-top: 70px;
}

@supports (height: 100dvh) {
    .section1 {
        height: 100dvh;
        min-height: 100dvh;
    }
}

/* ==================== 第一屏 Banner轮播 ==================== */
.banner-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-swiper .swiper-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease;
}

.banner-swiper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(10, 30, 56, 0.72), rgba(0, 0, 0, 0.58));
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: 100%;
    color: #fff;
    text-align: center;
    padding: clamp(120px, 18vh, 180px) clamp(24px, 6vw, 80px) clamp(72px, 10vh, 110px);
}

.banner-copy {
    width: min(100%, 760px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    text-shadow: 0 10px 28px rgba(0,0,0,0.28);
    margin-inline: auto;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    align-self: center;
    width: fit-content;
    max-width: 100%;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(6,18,34,0.26);
    color: rgba(255,255,255,0.82);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-inline: auto;
}

/* Banner轮播分页器 */
.banner-pagination {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.banner-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.banner-pagination .swiper-pagination-bullet-active {
    background: #ec6a00;
    transform: scale(1.2);
}

.banner-content h1 {
    width: 100%;
    font-size: clamp(44px, 5vw, 72px);
    font-family: "HarmonyOS Sans SC", "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
    margin: 0;
    text-align: center;
    text-wrap: balance;
}

.banner-content h1 .highlight {
    display: block;
    margin-top: 8px;
    color: #ec6a00;
    font-size: clamp(26px, 2.45vw, 38px);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.banner-content .en {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255,255,255,0.8);
    margin: 0;
    text-align: center;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 14px;
    width: 100%;
    margin-inline: auto;
}

.hero-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    min-height: 54px;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.more-btn {
    background: linear-gradient(135deg, #ff8b2b, #ec6a00);
    border: 1px solid transparent;
    color: #fff;
    box-shadow: 0 14px 30px rgba(236,106,0,0.34);
}

.more-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(236,106,0,0.42);
}

.ghost-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.34);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ghost-btn:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(7,17,31,0.24);
}

.hero-points {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    width: 100%;
    margin-inline: auto;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ==================== 第二屏 解决方案 ==================== */
.section2 {
    background: #fff;
    padding-top: 80px;
}

.nysec-tit {
    text-align: center;
    margin-bottom: 30px;
}

.nysec-tit .title {
    font-size: 36px;
    font-weight: normal;
    color: #333;
}

.nysec-tit.white .title {
    color: #fff;
}

/* 解决方案标签 */
.solutiontabs {
    margin-top: 30px;
    text-align: center;
}

.solutiontabs ul {
    display: flex;
    justify-content: center;
}

.solutiontabs li {
    width: 16.6%;
    font-size: 20px;
    cursor: pointer;
    padding: 15px 0;
    position: relative;
}

.solutiontabs li span {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.solutiontabs li span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ec6a00;
    transition: width 0.3s;
}

.solutiontabs li.active span::after,
.solutiontabs li:hover span::after {
    width: 100%;
}

/* 解决方案内容 */
.solutioncon {
    position: relative;
    margin-top: 30px;
}

.solution-item {
    display: none;
    position: relative;
    min-height: 500px;
}

.solution-item.active {
    display: block;
}

.solution-item .pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.solution-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-item .tbox {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
}

.solution-item .tbox .inner {
    padding: 50px 80px;
    color: #fff;
}

.solution-item .tit {
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 20px;
}

.solution-item .tit span {
    color: #ec6a00;
    margin-right: 10px;
}

.solution-item .desc {
    font-size: 14px;
    line-height: 2;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.solution-item .btn {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    margin-bottom: 40px;
}

.solution-item .btn .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ec6a00;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 20px;
}

.solution-item .databox {
    display: flex;
    gap: 60px;
}

.solution-item .databox .item {
    text-align: left;
}

.solution-item .databox .num {
    font-size: 24px;
    color: #ec6a00;
}

.solution-item .databox .num span {
    font-size: 56px;
    font-weight: bold;
}

.solution-item .databox .t {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-top: 5px;
}

/* ==================== 第三屏 公司简介 ==================== */
.section3 {
    background: #fff;
    padding: 80px 0;
}

.about-sec1 {
    padding-bottom: 60px;
}

.about-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 30px;
    font-weight: normal;
    color: #333;
    margin-right: 30px;
}

.playico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 40px;
    background: #ec6a00;
    border-radius: 8px;
}

.playico img {
    width: 20px;
}

.about-content {
    display: flex;
    gap: 60px;
}

.about-img {
    flex: 0 0 400px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 14px;
    line-height: 2;
    color: #666;
    margin-bottom: 15px;
}

.section-whyus {
    background: #fff;
    padding: 0 0 80px;
}

.whyus-section {
    padding: 0;
}

.whyus-card {
    background: #f1f3f7;
    border: 1px solid #e4e8ef;
    border-radius: 12px;
    padding: 34px 42px;
}

.whyus-title {
    font-size: 34px;
    line-height: 1.1;
    color: #1f2a3d;
    margin-bottom: 22px;
}

.whyus-list li {
    font-size: 18px;
    line-height: 1.55;
    color: #4b5b70;
    font-weight: 400;
    margin-bottom: 14px;
}

.whyus-list li:last-child {
    margin-bottom: 0;
}

.whyus-list strong {
    color: inherit;
    font-weight: inherit;
}

/* 时间线统计 */
.historyswiper-wrapper {
    background: #f5f5f5;
    padding: 80px 0;
}

.timeline-stats {
    position: relative;
    height: 280px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ec6a00;
    transform: translateY(-50%);
}

.stats-row {
    display: flex;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.stat-item {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item .dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: #ec6a00;
    border-radius: 50%;
    z-index: 2;
}

.stat-item.top {
    justify-content: flex-start;
    padding-top: 10px;
}

.stat-item.top .num {
    order: 1;
}

.stat-item.top .dot {
    order: 2;
}

.stat-item.top .label {
    order: 3;
    position: absolute;
    bottom: 20px;
}

.stat-item.bottom {
    justify-content: flex-end;
    padding-bottom: 10px;
}

.stat-item.bottom .label {
    order: 1;
    position: absolute;
    top: 20px;
}

.stat-item.bottom .dot {
    order: 2;
}

.stat-item.bottom .num {
    order: 3;
}

.stat-item .num {
    font-size: 50px;
    font-weight: bold;
    color: #202f44;
    line-height: 1;
}

.stat-item .num sup {
    font-size: 24px;
    color: #ec6a00;
    vertical-align: super;
}

.stat-item .label {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

/* ==================== 第四屏 合作伙伴 ==================== */
.brand-sec {
    background: #083a68;
    padding: 80px 0;
}

.brandlist {
    margin-top: 40px;
    position: relative;
}

.brand-swiper {
    overflow: hidden;
    position: relative;
    padding-bottom: 50px;
}

.brand-swiper .swiper-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.brand-swiper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    border: 1px solid rgba(255,255,255,0.2);
}

.brand-item {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    margin: -1px 0 0 -1px;
    transition: all 0.3s;
    background: transparent;
}

.brand-item:hover {
    background: rgba(255,255,255,0.1);
}

.brand-item img {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
}

/* 合作伙伴轮播分页器 */
.brand-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.brand-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.brand-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 50px;
}

/* ==================== 第五屏 资讯中心 ==================== */
.section5 {
    background: #f5f5f5;
    padding: 80px 0;
}

.newstabs {
    margin-bottom: 40px;
}

.newstabs ul {
    display: flex;
    gap: 30px;
}

.newstabs li a {
    font-size: 20px;
    color: #999;
    padding-bottom: 10px;
    position: relative;
}

.newstabs li.active a {
    color: #ec6a00;
}

.newstabs li.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ec6a00;
}

.newscentermain {
    position: relative;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    background: #fff;
    padding: 30px;
    transition: all 0.3s;
}

.news-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.news-item .date {
    flex: 0 0 80px;
    text-align: center;
    border-right: 1px solid #eee;
    padding-right: 30px;
    margin-right: 30px;
}

.news-item .date .month {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #ec6a00;
    line-height: 1;
}

.news-item .date .day {
    display: block;
    font-size: 24px;
    color: #333;
}

.news-item .info h3 {
    font-size: 18px;
    font-weight: normal;
    color: #333;
    margin-bottom: 10px;
}

.news-item .info p {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
}

.news-arrows {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 10px;
}

.news-arrows button {
    width: 50px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.news-arrows button:hover {
    border-color: #ec6a00;
}

.news-arrows button img {
    width: 20px;
}

/* ==================== 页脚 ==================== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding-top: 60px;
    display: block !important;
    width: 100%;
    min-height: 220px;
    clear: both;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 2;
}

.footmain {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}

.foot-nav {
    display: flex;
    gap: 60px;
}

.nav-col h4 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #fff;
}

.nav-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.nav-col a:hover {
    color: #ec6a00;
}

.foot-info {
    display: flex;
    gap: 60px;
}

.foot-info .info p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.ewmbox {
    text-align: center;
}

.ewmbox img {
    width: 120px;
    margin-bottom: 10px;
}

.ewmbox span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.foot-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.foot-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

.foot-bottom a {
    color: rgba(255,255,255,0.4);
}

/* Unified footer fallback (for pages using footer-main/footer-nav-col) */
.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    display: block !important;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.footer-brand .logo img {
    height: 40px;
}

.footer-nav {
    display: flex;
    gap: 60px;
}

.footer-nav-col h4 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #fff;
}

.footer-nav-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.footer-nav-col a:hover {
    color: #ec6a00;
}

.footer-friend-links {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-friend-title {
    flex: 0 0 auto;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.04em;
}

.footer-friend-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
}

.footer-friend-item {
    color: rgba(255,255,255,0.68);
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-friend-item:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 992px) {
    .footer-main {
        flex-direction: column;
        gap: 28px;
    }

    .footer-brand {
        flex-direction: column;
        gap: 14px;
    }

    .footer-nav {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 24px;
    }

    .footer-friend-list {
        gap: 10px 12px;
    }

    .footer-friend-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .footer-nav {
        grid-template-columns: 1fr;
    }
}

/* ==================== 侧边栏 ==================== */
.sidebar {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.sidebar-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    min-width: 58px;
    max-width: 58px;
    height: 58px;
    padding: 0 14px;
    box-sizing: border-box;
    color: #fff;
    background: rgba(8, 16, 28, 0.9);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(7,17,31,0.2);
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.28s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sidebar button.sidebar-item {
    border: 0;
    font: inherit;
    cursor: pointer;
}

.sidebar-item:hover,
.sidebar-item:focus-visible {
    max-width: 220px;
    color: #fff;
    background: #ec6a00;
    border-color: rgba(236,106,0,0.7);
    transform: translateX(-3px);
    box-shadow: 0 16px 30px rgba(7,17,31,0.24);
}

.sidebar-item img,
.sidebar-item svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.sidebar-item img {
    filter: brightness(0) invert(1);
}

.sidebar-item svg {
    fill: currentColor;
    stroke: none;
}

.sidebar-item svg * {
    fill: currentColor !important;
}

.sidebar-label {
    display: inline-flex;
    align-items: center;
    max-width: 0;
    margin-left: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transition: max-width 0.24s ease, margin-left 0.24s ease, opacity 0.2s ease;
}

.sidebar-item:hover .sidebar-label,
.sidebar-item:focus-visible .sidebar-label {
    max-width: 120px;
    margin-left: 10px;
    opacity: 1;
}

.sidebar-copy.is-copied {
    background: #0f8f66;
}

@media (max-width: 992px) {
    .sidebar {
        left: 12px;
        right: 12px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 10px;
        border-radius: 20px;
        background: rgba(8, 16, 28, 0.84);
        backdrop-filter: blur(14px);
        box-shadow: 0 18px 36px rgba(7,17,31,0.24);
        transition: opacity 0.24s ease, transform 0.24s ease;
    }

    body.mobile-sidebar-managed .sidebar {
        left: 50%;
        right: auto;
        width: min(calc(100% - 24px), 360px);
        transform: translateX(-50%) translateY(14px);
        opacity: 0;
        pointer-events: none;
    }

    body.mobile-sidebar-managed.mobile-sidebar-visible .sidebar {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .sidebar-item,
    .sidebar button.sidebar-item {
        min-width: 46px;
        max-width: 46px;
        width: 46px;
        height: 46px;
        padding: 0;
        border-radius: 14px;
        justify-content: center;
        background: rgba(255,255,255,0.06);
        box-shadow: none;
    }

    .sidebar-item:hover,
    .sidebar-item:focus-visible {
        max-width: 46px;
        transform: none;
        box-shadow: none;
    }

    .sidebar-item img,
    .sidebar-item svg {
        width: 22px;
        height: 22px;
    }

    .sidebar-label {
        display: none;
    }
}

/* ==================== 响应式 ==================== */
@media (max-width: 1680px) {
    .w {
        width: 1200px;
    }
    
    .banner-content h1 {
        font-size: 40px;
    }
    
    .stat-item .num {
        font-size: 42px;
    }
}

@media (max-width: 1680px) {
    .header-inner {
        gap: 16px;
        padding: 0 48px;
    }

    .main-nav ul {
        gap: 20px;
    }

    .main-nav > ul > li > a {
        font-size: 15px;
    }

    .nav-search-toggle {
        min-width: 40px;
        padding: 0 10px;
    }

    .nav-language-toggle {
        min-width: 72px;
        padding: 0 10px;
    }

    .header-phone {
        font-size: 16px;
    }
}

@media (max-width: 1400px) {
    .w {
        width: 1100px;
    }

    .header-inner {
        gap: 14px;
        padding: 0 28px;
    }

    .section-home-strength .w,
    .section3 .w,
    .section-whyus .w,
    .section5 .w {
        padding: 0 36px;
    }
    
    .main-nav ul {
        gap: 14px;
    }

    .main-nav > ul > li > a {
        font-size: 14px;
    }

    .nav-search-toggle {
        min-width: 36px;
        height: 40px;
        margin: 14px 0;
        padding: 0 8px;
    }

    .nav-language-toggle {
        min-width: 68px;
        height: 40px;
        margin: 14px 0;
        padding: 0 9px;
        font-size: 13px;
    }

    .header-phone {
        font-size: 15px;
    }
    
    .solution-item .tbox .inner {
        padding: 40px 50px;
    }
}

@media (max-width: 1200px) {
    .w {
        width: 95%;
    }

    .header-inner {
        padding: 0 24px;
    }

    .main-nav ul {
        gap: 10px;
    }

    .main-nav > ul > li > a {
        font-size: 13px;
    }

    .section-home-strength .w,
    .section3 .w,
    .section-whyus .w,
    .section5 .w {
        padding: 0 24px;
    }

    .header-phone {
        font-size: 16px;
    }

    .banner-content {
        padding: 108px 24px 72px;
    }
    
    .banner-content h1 {
        font-size: 38px;
    }

    .banner-content h1 .highlight {
        font-size: 24px;
    }

    .banner-copy {
        width: min(100%, 620px);
        gap: 12px;
    }

    .hero-actions a {
        min-width: 156px;
        min-height: 50px;
        padding: 12px 26px;
    }
    
    .stat-item .num {
        font-size: 36px;
    }
    
    .stat-item .label {
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .header-inner {
        padding: 0 16px;
    }

    .header-tools {
        display: none !important;
    }

    .section-home-strength .w,
    .section3 .w,
    .section-whyus .w,
    .section5 .w {
        padding: 0 16px;
    }

    .header-phone {
        display: none;
    }

    .section1 {
        padding-top: 70px;
    }

    .banner-content {
        padding: 96px 20px 68px;
    }

    .banner-pagination {
        bottom: 32px;
        gap: 12px;
    }

    .banner-copy {
        width: min(100%, 640px);
    }

    .hero-kicker {
        letter-spacing: 0.24em;
    }

    .banner-content .en {
        max-width: 100%;
    }

    .hero-actions {
        gap: 14px;
        margin-top: 8px;
    }

    .main-nav {
        display: block;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #eef2f7;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.26s ease;
        z-index: 999;
    }

    body.mobile-nav-open .main-nav {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .main-nav ul {
        display: block;
        padding: 6px 0 10px;
    }

    .main-nav > ul > li {
        margin: 0;
        border-bottom: 1px solid #f3f4f6;
    }

    .main-nav > ul > li > a {
        padding: 12px 16px;
        font-size: 15px;
    }

    .nav-search-item {
        position: static;
    }

    .nav-search-toggle {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 12px 16px;
        border-radius: 0;
        justify-content: flex-start;
        background: transparent;
    }

    .nav-search-label {
        display: inline;
        font-size: 15px;
    }

    .nav-search-panel {
        position: static;
        width: auto;
        margin: 0 16px 12px;
        padding: 12px;
        border-radius: 12px;
        border-color: #e8edf4;
        box-shadow: none;
        background: #f8fafc;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        display: none;
    }

    .nav-search-item.is-open .nav-search-panel {
        display: block;
    }

    .nav-search-form {
        flex-direction: column;
    }

    .nav-search-form button {
        width: 100%;
    }

    .nav-language-item {
        position: static;
    }

    .nav-language-toggle {
        min-width: 0;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 12px 16px;
        border: 0;
        border-radius: 0;
        justify-content: flex-start;
        background: transparent;
    }

    .nav-language-panel {
        position: static;
        min-width: 0;
        margin: 0 16px 12px;
        padding: 8px;
        border-radius: 12px;
        border-color: #e8edf4;
        box-shadow: none;
        background: #f8fafc;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        display: none;
    }

    .nav-language-item.is-open .nav-language-panel {
        display: block;
    }

    .main-nav > ul > li .dropdown {
        position: static;
        transform: none;
        min-width: 0;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0 0 8px;
    }

    .main-nav > ul > li .dropdown a {
        text-align: left;
        font-size: 13px;
        padding: 8px 30px;
    }
    
    .solution-item .tbox {
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .solution-item .pic {
        position: relative;
        height: 300px;
    }
    
    .stats-row {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 33.33%;
        margin-bottom: 40px;
    }
    
    .foot-nav {
        flex-wrap: wrap;
    }
    
    .nav-col {
        flex: 0 0 33.33%;
        margin-bottom: 30px;
    }

    .whyus-card {
        padding: 24px 20px;
    }

    .whyus-title {
        font-size: 28px;
    }

    .whyus-list li {
        font-size: 16px;
    }

    .section-whyus {
        padding: 0 0 56px;
    }
}

@media (max-width: 576px) {
    .banner-content {
        padding: 92px 16px 60px;
    }

    .banner-content h1 {
        font-size: 32px;
        line-height: 1.16;
    }

    .banner-content h1 .highlight {
        margin-top: 2px;
        font-size: 20px;
    }

    .banner-content .en {
        font-size: 15px;
        line-height: 1.5;
    }

    .banner-copy {
        gap: 10px;
    }

    .hero-kicker {
        min-height: 32px;
        padding: 0 12px;
        font-size: 11px;
        letter-spacing: 0.18em;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions a {
        width: min(100%, 260px);
        min-width: 0;
        min-height: 48px;
        padding: 12px 20px;
        font-size: 15px;
    }

    .hero-points {
        gap: 8px;
    }

    .hero-points span {
        min-height: 32px;
        padding: 0 12px;
        font-size: 13px;
    }

    .banner-pagination {
        bottom: 24px;
    }
}



/* ==================== Bold Industry Solutions (Homepage) ==================== */
.section2.solution-stage {
    background: #fff;
    color: #0c1526;
    padding: 84px 0 92px;
    position: relative;
    overflow: hidden;
}

.solutions-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 2;
}

.solutions-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.solutions-head .eyebrow {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(12,21,38,0.45);
    margin-bottom: 12px;
}

.solutions-head .title {
    font-size: 40px;
    font-weight: 500;
    color: #0c1526;
    margin-bottom: 12px;
}

.solutions-head .subtitle {
    font-size: 16px;
    color: #667085;
    max-width: 640px;
}

.head-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 999px;
    background: #ec6a00;
    color: #fff;
    font-size: 15px;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(236,106,0,0.3);
}

.primary-btn:hover {
    background: #ff7a1a;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(236,106,0,0.45);
}

.head-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    border-left: 1px solid rgba(12,21,38,0.12);
}

.head-meta .num {
    font-size: 28px;
    font-weight: 700;
    color: #0c1526;
}

.head-meta .label {
    font-size: 12px;
    color: #667085;
    margin-top: 2px;
}

.solution-stage .solutiontabs {
    margin-top: 0;
}

.solution-stage .solutiontabs ul.solutions-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.solution-stage .solutiontabs li {
    width: auto;
    padding: 16px 18px;
    border-radius: 14px;
    background: #f5f7fb;
    border: 1px solid #d8e0ea;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #0c1526;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.solution-stage .solutiontabs li span::after {
    display: none;
}

.solution-stage .solutiontabs li em {
    font-style: normal;
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.6;
}

.solution-stage .solutiontabs li::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(236,106,0,0.4), rgba(236,106,0,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-stage .solutiontabs li span,
.solution-stage .solutiontabs li em {
    position: relative;
    z-index: 1;
}

.solution-stage .solutiontabs li.active,
.solution-stage .solutiontabs li:hover {
    background: rgba(236,106,0,0.12);
    border-color: rgba(236,106,0,0.42);
    transform: translateY(-2px);
}

.solution-stage .solutiontabs li.active::after,
.solution-stage .solutiontabs li:hover::after {
    opacity: 1;
}

.solution-stage .solutioncon {
    margin-top: 18px;
}

.solution-stage .solution-item {
    display: none;
    position: relative;
    min-height: 400px;
    border-radius: 14px;
    background: #0b1426;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.solution-stage .solution-item.active {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

.solution-stage .solution-item:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.solution-media {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.solution-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.4), rgba(0,0,0,0));
}

.solution-media-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 1;
}

.solution-panel {
    padding: 30px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.panel-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    color: #0c1526;
    background: #ec6a00;
}

.panel-title {
    font-size: 30px;
    color: #fff;
}

.panel-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.9;
}

.panel-actions {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    font-size: 14px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.panel-btn:hover {
    background: rgba(236,106,0,0.2);
    border-color: rgba(236,106,0,0.6);
    transform: translateY(-1px);
}

.panel-metrics {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.panel-metrics .metric {
    min-width: 120px;
}

.panel-metrics .num {
    font-size: 26px;
    color: #ec6a00;
    font-weight: 600;
}

.panel-metrics .num span {
    font-size: 36px;
    font-weight: 700;
}

.panel-metrics .t {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
}

@media (max-width: 1200px) {
    .solutions-wrap {
        padding: 0 40px;
    }

    .solutions-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .solution-stage .solutiontabs ul.solutions-tabs {
        grid-template-columns: repeat(3, 1fr);
    }

    .solution-stage .solution-item.active {
        grid-template-columns: 1fr;
    }

    .solution-media {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .solutions-wrap {
        padding: 0 20px;
    }

    .solutions-head .title {
        font-size: 28px;
    }

    .head-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .head-meta {
        padding-left: 0;
        border-left: none;
    }

    .solution-stage .solutiontabs ul.solutions-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-panel {
        padding: 28px 24px 24px;
    }
}

@media (max-width: 520px) {
    .solution-stage .solutiontabs ul.solutions-tabs {
        grid-template-columns: 1fr;
    }

    .panel-title {
        font-size: 24px;
    }
}


/* ==================== h-h	0|m:j
Z Core Advantages ==================== */

.section-home-strength {

    padding: 100px 0;

    background: #fff;

    position: relative;

    z-index: 10;

}

/* ==================== 首页优势 Core Advantages ==================== */
.section-home-strength {
    padding: 100px 0;
    background: #fff;
    position: relative;
    z-index: 10;
}

.section-home-strength .w,
.section3 .w,
.section-whyus .w,
.section5 .w {
    width: 100%;
    max-width: 1600px;
    padding: 0 80px;
    box-sizing: border-box;
}

.strength-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.head-main {
    max-width: 700px;
}

.head-main .eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.head-main h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: bold;
}

.head-main p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.strength-link {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: var(--primary-orange);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.strength-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.strength-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.strength-card {
    background: var(--bg-soft);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.strength-card:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-10px);
    border-color: rgba(236,106,0,0.1);
}

.strength-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 16px;
    position: relative;
    padding-left: 15px;
    font-weight: bold;
}

.strength-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 18px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.strength-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

.strength-strip {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.strip-item {
    flex: 1 1 0;
    text-align: center;
    position: relative;
}

.strip-item .num {
    font-size: 56px;
    line-height: 1;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
}

.strip-item .num span {
    color: var(--primary-orange);
}

.strip-item .label {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .head-main h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .section-home-strength {
        padding: 60px 0;
    }

    .strength-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    
    .strength-link {
        margin-top: 20px;
    }
    
    .strength-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
        margin-top: 50px;
        padding-top: 40px;
    }

    .strip-item .num {
        font-size: 42px;
    }
}

@media (max-width: 520px) {
    .strength-grid {
        grid-template-columns: 1fr;
    }
    
    .head-main h2 {
        font-size: 26px;
    }
}
/* ==================== About Modern ==================== */
.about-modern-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
}

.about-eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-modern-header .section-title {
    font-size: 36px;
    margin-right: 0;
    font-weight: bold;
    color: var(--text-dark);
}

.about-modern-content {
    align-items: stretch;
}

.about-modern-text {
    flex: 1;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-lead {
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: var(--text-dark) !important;
    font-weight: 500;
    margin-bottom: 30px !important;
}

.about-bullets {
    margin-bottom: 40px;
}

.about-bullets li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.about-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary-orange);
    border-radius: 50%;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-link-btn {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
}

.about-link-btn:hover {
    color: var(--primary-orange);
}

.about-link-btn::after {
    content: '+';
    margin-left: 8px;
    transition: transform 0.3s;
}

.about-link-btn:hover::after {
    transform: translateX(5px);
}

.about-modern-media {
    flex: 0 0 500px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-modern-media>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-modern-media:hover>img {
    transform: scale(1.05);
}

/* About stats overlay */
.about-mini-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.mini-stat .num {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-orange);
    line-height: 1.2;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.mini-stat .label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 1200px) {
    .about-modern-media {
        flex: 0 0 400px;
    }

    .about-mini-stats {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .about-modern-content {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .about-modern-media {
        flex: auto;
        height: 300px;
    }

    .about-modern-text {
        padding-right: 0;
    }

    .about-mini-stats {
        flex-direction: row;
        justify-content: space-around;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .about-mini-stats {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        position: relative;
        background: #f7f9fc;
        backdrop-filter: none;
    }

    .about-modern-media {
        height: auto;
        border-radius: 12px 12px 0 0;
    }

    .about-modern-header .section-title {
        font-size: 28px;
    }
}




/* Premium Interaction Styles */

/* Hide default cursor only if not on touch device */
@media (pointer: fine) {
    body {
        cursor: none;
    }
    
    a, button, input, textarea, select {
        cursor: none !important;
    }
}

.premium-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: #ec6a00;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s, background-color 0.3s;
    mix-blend-mode: exclusion;
}

.premium-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(236, 106, 0, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s, opacity 0.3s;
}

/* Hover States */
.premium-cursor.hover {
    width: 12px;
    height: 12px;
    background: #fff;
    mix-blend-mode: exclusion;
}

.premium-cursor-follower.hover {
    width: 48px;
    height: 48px;
    border-color: #ec6a00;
    background: rgba(236, 106, 0, 0.05);
}

/* Specific elements might need position relative for magnetic */
.primary-btn, .more-btn, .ghost-btn, .nav-search-toggle {
    will-change: transform;
    /* transition is managed via JS on mouseout, but base should be set */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s, box-shadow 0.3s, border-color 0.3s, color 0.3s;
    overflow: hidden; /* for sweep overlay */
    position: relative;
}

/* Sweep effect */
.sweep-overlay {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.primary-btn:hover .sweep-overlay, 
.more-btn:hover .sweep-overlay {
    width: 300px;
    height: 300px;
}

.primary-btn *, .more-btn * {
    position: relative;
    z-index: 2;
}