* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: "微软雅黑", "黑体", "宋体";
}

:root {
    --primary-color: #ff6d00;
    --primary-light: #ff9a4d;
    --primary-dark: #e55c00;
    --text-dark: #1c2438;
    --text-gray: #666;
    --text-light: #999;
    --bg-light: #f6f8fa;
    --bg-white: #fff;
    --border-color: #e8e8e8;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(255, 109, 0, 0.15);
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
    -webkit-transition: background 0.4s ease, box-shadow 0.4s ease, -webkit-backdrop-filter 0.4s ease;
}

.header.home-transparent {
    background: transparent;
    box-shadow: none;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.header.home-transparent .nav-item {
    color: #fff;
    transition: color 0.4s ease;
}

.header.home-transparent .nav-item:hover,
.header.home-transparent .nav-item.active {
    color: #fff;
}

.header.home-transparent .nav-item::after {
    background: transparent;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.home-transparent.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header.home-transparent.scrolled .nav-item {
    color: var(--text-dark);
}

.header.home-transparent.scrolled .nav-item:hover,
.header.home-transparent.scrolled .nav-item.active {
    color: var(--primary-color);
}

.header.home-transparent.scrolled .nav-item::after {
    background: var(--primary-color);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo img {
    height: 50px;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 0;
}

.logo .logo-white {
    opacity: 1;
}

.logo .logo-colored {
    opacity: 0;
}

.header.home-transparent .logo .logo-white {
    opacity: 1;
}

.header.home-transparent .logo .logo-colored {
    opacity: 0;
}

.header.home-transparent.scrolled .logo .logo-white {
    opacity: 0;
}

.header.home-transparent.scrolled .logo .logo-colored {
    opacity: 1;
}

.header:not(.home-transparent) .logo .logo-white {
    opacity: 0;
}

.header:not(.home-transparent) .logo .logo-colored {
    opacity: 1;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    margin-left: 10px;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-item {
    position: relative;
    padding: 0 20px;
    height: 80px;
    line-height: 80px;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #1c2438;

    /* color: var(--primary-color); */
}

.nav-item.active {
    color: #1c2438;
}

.nav-item.has-dropdown {
    cursor: default;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item.has-dropdown:hover::after {
    width: 0;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.nav-item:hover .nav-dropdown,
.nav-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    padding: 0px 20px;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    color:#1c2438
}

.nav-dropdown-item:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.banner {
    position: relative;
    height: 890px;
    margin-top: 0;
    overflow: hidden;
}

.banner-slides {
    position: relative;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
}

.banner-content .banner-title-line {
    animation: titleReveal 1s ease forwards;
    opacity: 0;
}

.banner-content .banner-title-line2 {
    animation: titleReveal2 1.2s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.banner-content .banner-desc-line {
    animation: descFadeIn 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.banner-content .banner-btn {
    animation: btnFadeIn 0.6s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes titleReveal2 {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
        filter: blur(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes descFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes btnFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.banner-text-wrapper::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
}

.banner-title-line {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    line-height: 1.3;
    white-space: nowrap;
}

.banner-title-line2 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 6px;
    margin-bottom: 30px;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.banner-title-line2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.banner-desc-line {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 40px;
    letter-spacing: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    position: relative;
    padding: 0 20px;
}

.banner-desc-line::before,
.banner-desc-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.banner-desc-line::before {
    left: -20px;
}

.banner-desc-line::after {
    right: -20px;
}

.banner-btn {
    display: inline-block;
    padding: 14px 40px;
    background: rgba(255, 109, 0, 0.85);
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 109, 0, 0.3);
}

.banner-btn:hover {
    background: rgba(230, 95, 0, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 109, 0, 0.4);
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.banner-arrow:hover {
    background: var(--primary-color);
}

.banner-arrow.prev {
    left: 30px;
}

.banner-arrow.next {
    right: 30px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-size: 12px;
    border-radius: 3px;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.product-spec {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.product-price .price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.product-price .unit {
    font-size: 13px;
    color: var(--text-gray);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
}

.modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    font-size: 24px;
    color: var(--text-dark);
}

.modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #ff6b00;
    color: #fff;
}

.modal-body {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.hardware-detail-img {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hardware-detail-img img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.hardware-detail-info h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin: 20px 0 10px;
}

.hardware-detail-info h3:first-child {
    margin-top: 0;
}

.hardware-detail-overview {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}

.hardware-detail-traits {
    list-style: none;
    padding: 0;
}

.hardware-detail-traits li {
    font-size: 14px;
    color: var(--text-gray);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.hardware-detail-traits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.hardware-detail-application {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.honor-intro {
    background: linear-gradient(135deg, #fff5eb 0%, #fff 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
}

.honor-intro p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.honor-gallery-section,
.honor-cert-section {
    margin-bottom: 60px;
}

.contact-info-section {
    margin-bottom: 60px;
}

.process-section,
.charge-section,
.payment-section,
.faq-section,
.invoice-section {
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

.process-steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
     border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-card-vertical {
    display: flex;
    gap: 24px;
    background: #fff;
    padding: 24px
}

.process-steps-vertical:hover {
    box-shadow: 0 8px 25px rgba(255, 109, 0, 0.15);
}

.process-card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.process-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-line {
    width: 2px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(255, 109, 0, 0.3) 100%);
    margin: 8px 0;
}

.process-card-right {
    flex: 1;
}

.process-card-right h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.process-card-right p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

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

.charge-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.charge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 109, 0, 0.15);
}

.charge-card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.charge-card-content h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.charge-card-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

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

.payment-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 109, 0, 0.15);
}

.payment-content h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.payment-content p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 8px 25px rgba(255, 109, 0, 0.15);
}

.faq-q {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.faq-q::before {
    content: 'Q';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-a {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

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

.invoice-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.invoice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 109, 0, 0.15);
}

.invoice-card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.invoice-card-content h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.invoice-card-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .charge-cards,
    .payment-steps,
    .invoice-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nav-item {
    white-space: nowrap;
}

@media (max-width: 1072px) {
    .nav-item {
        padding: 0 12px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .charge-cards,
    .payment-steps,
    .invoice-cards {
        grid-template-columns: 1fr;
    }

    .process-steps-vertical {
        gap: 0;
    }

    .process-card-vertical {
        padding: 16px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 109, 0, 0.15);
}

.contact-card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.contact-city {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-person {
    font-size: 14px;
    color: var(--text-gray);
}

.contact-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-phone:hover {
    color: var(--primary-dark);
}

.contact-basic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-basic-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-basic-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe4cc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-basic-icon img {
    width: 28px;
    height: 28px;
}

.contact-basic-info h4 {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.contact-basic-info p {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

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

.service-station-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-station-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 109, 0, 0.15);
}

.station-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 0 12px 0 12px;
}

.service-station-card h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-right: 60px;
}

.service-station-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-basic-grid {
        grid-template-columns: 1fr;
        padding: 24px;
    }

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

@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.honor-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.honor-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.honor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 109, 0, 0.2);
}

.honor-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.honor-card-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.honor-card:hover .honor-card-img img {
    transform: scale(1.05);
}

.honor-card-info {
    padding: 16px;
    text-align: center;
}

.honor-card-info h4 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.honor-card-info p {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
}

.honor-cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.honor-cert-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.honor-cert-item img {
    width: 90%;
    height: auto;
    border-radius: 8px;
}

.honor-modal-overlay .modal-content {
    max-width: 800px;
    text-align: center;
    padding: 20px;
    position: relative;
}

.honor-modal-img {
    margin-bottom: 20px;
}

.honor-modal-img img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}

.honor-modal-overlay .modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 10;
}

.honor-modal-info h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 15px;
}

@media (max-width: 1024px) {
    .honor-masonry {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .honor-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .honor-cert-grid {
        grid-template-columns: 1fr;
    }

    .honor-card-img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .honor-masonry {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-header h2 {
        font-size: 18px;
    }

    .modal-body {
        padding: 20px;
    }
}

.lease-product-scroll {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.lease-product-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.lease-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 109, 0, 0.2);
}

.lease-product-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.lease-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.lease-product-card:hover .lease-product-img img {
    transform: scale(1.05);
}

.load-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px;
    background: linear-gradient(to right, rgba(255, 109, 0, 0.6), rgba(255, 140, 0, 0.85));
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.load-info span {
    display: inline-block;
    letter-spacing: 0.5px;
}

.lease-product-card:hover .load-info {
    transform: translateX(0);
    opacity: 1;
}

.lease-product-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255, 109, 0, 0.3);
}

.lease-product-info {
    padding: 18px;
}

.lease-product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lease-product-spec {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.lease-product-load {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
    border-top: 1px dashed #e8e8e8;
    border-bottom: 1px dashed #e8e8e8;
}

.lease-product-load span {
    font-size: 12px;
    color: #888;
}

.lease-product-load span::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}

.lease-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lease-product-price {
    display: flex;
    align-items: baseline;
}

.price-symbol {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.price-value {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.price-unit {
    font-size: 12px;
    color: var(--text-gray);
}

.lease-product-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s;
}

.lease-product-card:hover .lease-product-btn {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #cc4d00 100%);
    transform: scale(1.05);
}

.about-section {
    background: var(--bg-light);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.solution-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.solution-tab {
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.solution-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.solution-tab.active {
    background: var(--primary-color);
    color: var(--bg-white);
}

.solution-content {
    display: none;
}

.solution-content.active {
    display: block;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.solution-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.solution-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.solution-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.solution-card p {
    font-size: 14px;
    color: var(--text-gray);
}

.honor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.honor-item {
    position: relative;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.honor-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.honor-item:hover img {
    transform: scale(1.1);
}

.contact-section {
    background: var(--text-dark);
    color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item .phone {
    font-size: 24px;
    font-weight: bold;
    color: var(--bg-white);
    margin-top: 10px;
}

.footer {
    background: #DA732B;
    color: #fff;
    padding: 25px 0 10px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 10px;
    font-size: 15px;
}

.footer-bottom a {
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.footer-about h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 12px;
}

.footer-about p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-col h4 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}

.footer-col ul li {
    margin-bottom: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.footer-col ul li:hover {
    opacity: 0.8;
}

.footer-contact-text {
    font-size: 13px;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.5;
}

.footer-qrcode {
    margin-top: 12px;
    text-align: center;
}

.footer-qrcode img {
    width: 90px;
    height: 90px;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}

.footer-qrcode span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 6px;
}

.page-wrapper {
    padding-bottom: 20px;
    margin-top:-80px
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.page-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.page-header {
    height: 200px;
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    padding-left: 20px;
    opacity: 0.9;
}

.page-body {
    padding: 60px 0;
}

.content-box {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.content-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.corp-profile-section {
    margin-top: 30px;
}

.corp-profile-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.corp-profile-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.corp-profile-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corp-profile-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.corp-profile-main img {
    width: 95%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.corp-profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    overflow: hidden;
}

.corp-profile-overlay .slide-in-text {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    padding-left: 20px;
    display: inline-block;
    transform: translateX(100%);
    opacity: 0;
    animation: slideInFromRight 0.8s ease forwards;
}

.corp-profile-main:hover .slide-in-text {
    animation: slideInFromRight 0.8s ease forwards;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.corp-profile-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.corp-profile-text p {
    font-size: 15px;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 18px;
    text-align: justify;
}

.corp-profile-text p:first-child {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
}

.corp-profile-org-full {
    margin-top: 50px;
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.corp-org-header {
    text-align: center;
    margin-bottom: 30px;
}

.corp-org-header h4 {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.corp-org-header h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.corp-org-img {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.corp-org-img:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
}

.corp-org-img img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .corp-profile-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .corp-profile-main img {
        height: 280px;
    }
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    position: relative;
}

.flow-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: var(--border-color);
}

.flow-step {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 1;
}

.flow-step-num {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.flow-step h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.flow-step p {
    font-size: 13px;
    color: var(--text-gray);
    padding: 0 10px;
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: var(--bg-light);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #eee;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}

.charge-list {
    margin-top: 30px;
}

.charge-item {
    padding: 25px;
    margin-bottom: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.charge-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.charge-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}

.history-timeline-wrapper {
    position: relative;
    margin-top: 30px;
    padding: 40px 0;
}

.history-timeline-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://plt-official-site-1254134783.cos.ap-shenzhen-fsi.myqcloud.com/desktop-client/home/development-history.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.16;
    z-index: 0;
}

.history-timeline {
    position: relative;
    padding-left: 30px;
    z-index: 1;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.history-year {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.history-year::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

.history-year h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.history-year ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.history-year ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--border-color);
    border-radius: 50%;
}

.values-img {
    width: 100%;
    margin-top: 40px;
    border-radius: 10px;
}

.values-img img {
    width: 100%;
}

.brand-grid {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
}

.brand-item {
    text-align: center;
}

.brand-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.brand-item h4 {
    font-size: 16px;
    color: var(--text-dark);
}

.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    margin-bottom: 6px;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    right: 0;
    width: 60%;
    max-height: calc(100vh - 80px);
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
}

.mobile-nav-item:hover {
    background: var(--bg-light);
}

.section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-animate.animate-fade-up {
    opacity: 1;
    transform: translateY(0);
}

.text-reveal-container {
    overflow: hidden;
}

.text-reveal,
.text-reveal-delay-1,
.text-reveal-delay-2,
.text-reveal-delay-3,
.text-reveal-delay-4,
.text-reveal-delay-5,
.text-reveal-delay-6 {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-reveal-delay-1 { transition-delay: 0.1s; }
.text-reveal-delay-2 { transition-delay: 0.2s; }
.text-reveal-delay-3 { transition-delay: 0.3s; }
.text-reveal-delay-4 { transition-delay: 0.4s; }
.text-reveal-delay-5 { transition-delay: 0.5s; }
.text-reveal-delay-6 { transition-delay: 0.6s; }

.section-animate.animate-fade-up .text-reveal,
.section-animate.animate-fade-up .text-reveal-delay-1,
.section-animate.animate-fade-up .text-reveal-delay-2,
.section-animate.animate-fade-up .text-reveal-delay-3,
.section-animate.animate-fade-up .text-reveal-delay-4,
.section-animate.animate-fade-up .text-reveal-delay-5,
.section-animate.animate-fade-up .text-reveal-delay-6 {
    opacity: 1;
    transform: translateY(0);
}

.product-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.brand-item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.about-more {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s;
}

.about-more:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 109, 0, 0.3);
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stats-item {
    padding: 30px 20px;
}

.stats-num {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stats-label {
    font-size: 16px;
    opacity: 0.9;
}

.stats-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(255, 109, 0, 0.3);
}

.stats-highlight .stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.stats-highlight .stats-item {
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-highlight .stats-item:last-child {
    border-right: none;
}

.stats-highlight .stats-value {
    font-size: 56px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}

.stats-highlight .stats-num {
    display: inline-block;
}

.stats-highlight .stats-unit {
    font-size: 24px;
    margin-left: 5px;
}

.stats-highlight .stats-label {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    font-size: 16px;
}

.stats-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stats-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stats-item .stats-value {
    overflow: hidden;
}

.stats-item .stats-value .stats-num {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 1s ease;
}

.stats-item .stats-value .stats-unit {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 1s ease 0.1s;
}

.stats-item.animate-in .stats-num {
    transform: translateY(0);
}

.stats-item.animate-in .stats-unit {
    transform: translateY(0);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-network {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
}

.about-network h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.network-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 10px;
    transition: all 0.3s;
}

.network-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.network-value {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.network-num {
    display: inline-block;
}

.network-label {
    font-size: 13px;
    color: var(--text-gray);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.business-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff8a00 50%, var(--primary-color) 100%);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.business-card:hover::before {
    transform: scaleX(1);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.business-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    /* color: var(--text-dark); */
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.business-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.solution-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.solution-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.solution-card-home {
    position: relative;
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    overflow: hidden;
}

.solution-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.solution-card-home:hover::before {
    transform: scaleX(1);
}

.solution-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 109, 0, 0.15);
}

.solution-card-home h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.solution-subtitle {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.solution-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.solution-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.solution-card-home:hover .solution-arrow {
    opacity: 1;
    transform: translateX(0);
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-img-wrapper img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.banner {
    position: relative;
    height: 890px;
    margin-top: 80px;
    overflow: hidden;
}

.banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(255,255,255,1), transparent);
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    z-index: 10;
}

.banner-title {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.banner-desc {
    font-size: 22px;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 5px;
}

.banner-btn {
    display: inline-block;
    padding: 14px 40px;
    background: rgba(255, 109, 0, 0.85);
    color: var(--bg-white);
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 109, 0, 0.3);
}

.banner-btn:hover {
    background: rgba(230, 95, 0, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 109, 0, 0.4);
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

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

    .stats-highlight .stats-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .about-img-wrapper::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: 60px;
    }

    .logo img {
        height: 35px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .banner {
        height: 400px;
    }

    .banner-text-wrapper {
        display: none;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-desc {
        font-size: 16px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .about-content {
        flex-direction: column;
    }

    .solution-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .flow-steps {
        flex-direction: column;
        gap: 30px;
    }

    .flow-steps::before {
        display: none;
    }

    .page-header {
        height: 200px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .content-box {
        padding: 20px;
    }

    .brand-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stats-highlight {
        padding: 20px;
    }

    .stats-highlight .stats-value {
        font-size: 36px;
    }

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

    .business-grid {
        grid-template-columns: 1fr;
    }

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

    .about-img-wrapper::before {
        display: none;
    }

    .lease-product-scroll {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .banner {
        height: 300px;
    }
    
    .banner-btn {
        padding: 10px 25px;
        font-size: 14px;
        display: none;
    }

    .lease-product-scroll {
        grid-template-columns: 1fr;
    }

    .lease-product-info {
        padding: 12px;
    }

    .lease-product-name {
        font-size: 14px;
    }

    .lease-product-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .price-value {
        font-size: 20px;
    }
}

.sub-nav {
    background: var(--bg-light);
    border-bottom: 3px solid var(--primary-color);
    padding: 15px 0;
}

.sub-nav-list {
    display: flex;
    gap: 15px;
}

.sub-nav-item {
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s;
    color: var(--text-gray);
}

.sub-nav-item:hover,
.sub-nav-item.active {
    background: var(--primary-color);
    color: var(--bg-white);
}

.solution-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.solution-section-wrap {
    padding: 60px 0;
    background: #f8f9fa;
}

.solution-page-header {
    margin-top: 150px;
}

.solution-intro {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.solution-intro-content {
    flex: 1;
}

.solution-intro-content h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.solution-intro-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.solution-intro-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.solution-intro-img {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.solution-intro-img img {
    width: 100%;
    border-radius: 12px;
}

.hardware-section,
.software-section,
.benefits-section,
.smart-warehouse-section {
    margin-bottom: 60px;
}

.hardware-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hardware-card-new {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hardware-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 109, 0, 0.15);
}

.hardware-card-img {
    height: 160px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hardware-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hardware-card-content {
    padding: 20px;
}

.hardware-card-content h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.hardware-card-overview {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 12px;
}

.hardware-card-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.hardware-card-traits span {
    font-size: 11px;
    color: var(--primary-color);
    background: rgba(255, 109, 0, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
}

.hardware-card-link {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

.software-architecture {
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.software-arch-diagram {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.software-arch-diagram img {
    max-width: 100%;
}

.software-modules {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.software-module {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe4cc 100%);
    border-radius: 10px;
    transition: all 0.3s;
}

.software-module:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.15);
}

.software-module-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.software-module-info h4 {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.software-module-subtitle {
    font-size: 12px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.software-module-desc {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.4;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: #fff;
    padding: 30px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 109, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

.smart-warehouse-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.smart-warehouse-block {
    text-align: center;
}

.smart-warehouse-block h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.smart-warehouse-block img {
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .hardware-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .solution-intro {
        flex-direction: column;
    }

    .software-architecture {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hardware-grid-new {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .smart-warehouse-content {
        grid-template-columns: 1fr;
    }

    .solution-intro {
        padding: 24px;
    }

    .solution-intro-content h2 {
        font-size: 22px;
    }
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.hardware-card {
    background: #f2f3f5;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hardware-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hardware-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.hardware-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.hardware-card p {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    font-size: 12px;
    color: var(--primary-color);
}

.hardware-card:hover p {
    background: var(--primary-color);
    color: var(--bg-white);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-height: 80vh;
    background: var(--bg-white);
    border-radius: 10px;
    padding: 30px;
    z-index: 1001;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-gray);
    transition: color 0.3s;
}

.popup-close:hover {
    color: var(--primary-color);
}

.popup-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.popup-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.popup-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.popup-content ul li {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 5px;
    list-style: disc;
}

@media (max-width: 768px) {
    .hardware-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .popup-content {
        width: 90%;
        max-height: 85vh;
        padding: 20px;
    }

    .sub-nav-list {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hardware-grid {
        grid-template-columns: 1fr;
    }
}

.service-network-section {
    padding: 40px 0;
}

.service-network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.service-network-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 109, 0, 0.1);
}

.service-network-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff8a00 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-network-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 109, 0, 0.15);
}

.service-network-card:hover::before {
    transform: scaleX(1);
}

.service-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

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

.service-card-badge {
    background: rgba(255, 109, 0, 0.1);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.service-card-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-card-address {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.service-network-map {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.service-network-map img {
    max-width: 100%;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .service-network-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-network-grid {
        grid-template-columns: 1fr;
    }
}