.form-yzm-label {
    display: block;
}
.form-yzm {
    padding-right: 8.5rem;
}
.form-btn {
    position: absolute;
    right: 8px;
    top: 32px;
    height: 36px;
    line-height: 36px;
    padding: 0 12px;
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Global typography normalization */
h1, h2, h3, h4, h5, h6 {
    color: var(--ink-1);
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p { line-height: 1.55; color: var(--muted); }

.section-title { text-wrap: balance; }

/* Glassmorphism utility */
.is-glass {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--shadow-1);
}

:root {
    /* Brand */
    --brand-blue: #2775d7;
    --brand-blue-deep: #1e5bb8;
    --brand-red: #dc3545;
    --brand-red-deep: #c82333;
    --ink-1: #1a2332;
    --ink-2: #212529;
    --ink-3: #5b6574;
    --muted: #6c757d;

    /* Typography scale (slightly reduced) */
    --fs-display: 3.0rem;    /* was 3.5rem */
    --fs-h1: 2.0rem;         /* section title was 2.2rem */
    --fs-h2: 1.6rem;
    --fs-h3: 1.15rem;
    --fs-body: 1rem;
    --fs-small: 0.9rem;

    /* Radii */
    --radius-xs: 8px;
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-1: 0 4px 14px rgba(0,0,0,0.06);
    --shadow-2: 0 8px 20px rgba(0,0,0,0.08);
    --shadow-3: 0 12px 26px rgba(0,0,0,0.10);

    /* Effects */
    --glass-bg: rgba(255,255,255,0.6);
    --glass-border: rgba(255,255,255,0.65);
    --glass-blur: 10px;
    --ease-1: cubic-bezier(.2,.7,.3,1);
}

/* Header Section */
.header-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 0.7rem 0;
}

.navbar-brand {
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 32px;
    width: auto;
    object-fit: contain;
}



.navbar-nav {
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: #212529 !important;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #dc3545 !important;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 180px;
}

.dropdown-item {
    color: #495057;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
}

.dropdown-item:hover {
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
    transform: translateX(3px);
}

.dropdown-toggle::after {
    margin-left: 0.3rem;
    transition: transform 0.2s ease;
    transform: rotate(var(--arrow-rotation, 0deg));
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Hover Dropdown Styles */
.hover-dropdown {
    position: relative;
}

.hover-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none; /* 防止鼠标事件干扰 */
}

.hover-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* 恢复鼠标事件 */
}

.hover-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* 确保下拉菜单内容区域也能保持显示 */
.hover-dropdown .dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 现代科技感平台直连样式 */
.modern-platform-connect {
    position: relative;
    background: linear-gradient(135deg, rgba(22, 93, 255, 0.08) 0%, rgba(22, 93, 255, 0.05) 100%);
    border: 0.5px solid rgba(22, 93, 255, 0.2);
    box-shadow: 0 8px 32px rgba(22, 93, 255, 0.1);
}

.tech-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(22, 93, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(22, 93, 255, 0.08) 0%, transparent 50%);
    animation: techGradientFloat 8s ease-in-out infinite;
}

.tech-dots-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(22, 93, 255, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    animation: techDotsMove 20s linear infinite;
    opacity: 0.4;
}

.tech-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(22, 93, 255, 0.2), rgba(22, 93, 255, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid rgba(22, 93, 255, 0.3);
    animation: techIconPulse 3s ease-in-out infinite;
    margin-right: 10px;
}

.tech-icon-wrapper i {
    color: #165DFF;
    font-size: 1.2rem;
}

.tech-status-indicator {
    width: 8px;
    height: 8px;
    margin-left: 10px;
    background: #165DFF;
    border-radius: 50%;
    animation: techStatusBlink 2s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(22, 93, 255, 0.6);
}

.modern-platform-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(22, 93, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.modern-platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 93, 255, 0.1), rgba(22, 93, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-platform-card:hover::before {
    opacity: 1;
}

.card-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(22, 93, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.modern-platform-card:hover .card-glow-effect {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
    background: radial-gradient(circle, rgba(22, 93, 255, 0.3) 0%, transparent 70%);
}

.platform-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.platform-content .platform-name {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.modern-platform-card:hover .platform-name {
    color: #165DFF;
    text-shadow: 0 0 10px rgba(22, 93, 255, 0.5);
    transform: scale(1.05);
}

.connection-dot {
    width: 6px;
    height: 6px;
    background: #165DFF;
    border-radius: 50%;
    animation: connectionPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(22, 93, 255, 0.4);
}

.modern-platform-card:hover .connection-dot {
    background: #165DFF;
    box-shadow: 0 0 12px rgba(22, 93, 255, 0.6);
    animation-duration: 1s;
}

/* 现代科技感动画 */
@keyframes techGradientFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes techDotsMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(24px, 24px); }
}

@keyframes techIconPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(22, 93, 255, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 0 8px rgba(22, 93, 255, 0);
    }
}

@keyframes techStatusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes connectionPulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.2); 
    }
}

.cta-button {
    background: #e83845;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #bd2130;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 0 60px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-highlights .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-highlights .feature-icon {
    color: #dc3545;
    font-size: 1rem;
}

/* Hero Title */
.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Description */
.hero-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.digital-hero .hero-description {
    margin: 0 0 2rem 0;
    text-align: left;
}

/* Hero CTA Button */
.hero-cta-button {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    border-radius: 8px;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
}

.hero-cta-button:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.6);
    color: white;
}

/* Platforms Section */
.platforms-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.platforms-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 3rem;
}

.platform-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.platform-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.platform-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 1rem 0;
    transition: all 0.3s ease;
}

.platform-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-logo {
    transform: scale(1.1);
}

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

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(39, 117, 215, 0.4);
}

.platform-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
}

.platform-description {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* Core Advantages Section */
.core-advantages-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.advantage-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.advantage-icon {
    width: 80px;
    height: 80px;
    background: rgba(39, 117, 215, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #2775d7;
    font-size: 2rem;
}

.advantage-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-list li {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.advantage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #dc3545;
    font-weight: bold;
    font-size: 1rem;
}

.advantage-list li:last-child {
    margin-bottom: 0;
}

/* Seller Types Section */
.seller-types-section {
    background-color: white;
    padding: 5rem 0;
}

.seller-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.seller-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.seller-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.seller-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.seller-content {
    padding: 1.5rem;
}

.seller-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2775d7;
    margin-bottom: 1rem;
    line-height: 1.3;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.seller-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Digital System Hero Section */
.digital-hero {
    background: linear-gradient(135deg, #0f1419, #1a2332);
    min-height: 60vh;
    padding: 110px 0 60px 0;
    justify-content: flex-start;
    text-align: left;
}

.digital-hero .container {
    text-align: left;
}

.digital-hero .hero-overlay {
    background: rgba(15, 20, 25, 0.7);
}

.certification-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item i {
    color: #2662EC;
    font-size: 1rem;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    justify-content: flex-start;
}

.digital-hero .hero-buttons {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: auto;
}

.digital-hero .hero-cta-button {
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    border: none;
    border-radius: 8px;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(39, 117, 215, 0.4);
}

.digital-hero .hero-cta-button:hover {
    background: linear-gradient(135deg, #1e5bb8, #154a9e);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(39, 117, 215, 0.6);
    color: white;
}

.hero-secondary-button {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-secondary-button:hover {
    background: white;
    color: #0f1419;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* Dashboard Preview */
.dashboard-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.laptop-frame {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px 20px 0 0;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.laptop-frame::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 10px;
    background: #1a1a1a;
    border-radius: 0 0 10px 10px;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    overflow: hidden;
}

.dashboard-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
}

.chart-container {
    flex: 1;
    position: relative;
    margin: 20px 0;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #2662EC, #2775d7);
    border-radius: 1px;
}

.chart-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart-point {
    width: 8px;
    height: 8px;
    background: #2662EC;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
}

.chart-labels {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #6c757d;
}

.dashboard-footer {
    text-align: center;
    color: #6c757d;
    font-size: 0.7rem;
    margin-top: auto;
}

/* Industry Challenges Section */
.challenges-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.challenge-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.challenge-icon {
    width: 120px;
    height: 120px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(160, 217, 255, 0.2);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    border: none;
}

.challenge-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.3;
    padding-right: 140px;
}

.challenge-problem {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.solution-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2775d7;
    margin-bottom: 0.8rem;
}

.solution-text {
    color: #2775d7;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* What is Node 2.0 Section */
.what-is-node-section {
    background-color: white;
    padding: 5rem 0;
}

.features-container {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-card .feature-icon {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2775d7;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Core Modules Section */
.core-modules-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.module-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.module-icon {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #2775d7;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.module-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.module-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.module-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-features li {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.module-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #2775d7;
    font-weight: bold;
    font-size: 1rem;
}

.module-features li:last-child {
    margin-bottom: 0;
}

/* Core Product Capabilities Section */
.capabilities-section {
    background: linear-gradient(135deg, #1a2332, #0f1419);
    padding: 5rem 0;
}

.capabilities-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.capabilities-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.capability-card {
    background: #2a3441;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(39, 117, 215, 0.3);
}

.capability-icon {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.capability-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.capability-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.capability-metrics {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2662EC;
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.capabilities-cta-button {
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    border: none;
    border-radius: 8px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(39, 117, 215, 0.4);
}

.capabilities-cta-button:hover {
    background: linear-gradient(135deg, #1e5bb8, #154a9e);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(39, 117, 215, 0.6);
    color: white;
}

/* Scenario-based Solutions Section */
.solutions-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.solutions-title {
    color: #1a2332;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.solutions-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.solution-illustration {
    margin-bottom: 2rem;
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}



/* Solution Content */
.solution-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features li {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.solution-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2775d7;
    font-weight: bold;
}

.solution-features li:last-child {
    margin-bottom: 0;
}

/* Smart Financial Module Section */
.financial-module-section {
    background: white;
    padding: 5rem 0;
}

.financial-module-title {
    color: #1a2332;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.financial-module-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.financial-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.financial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.financial-icon {
    width: 60px;
    height: 60px;
    background: #e6f3ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2775d7;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.financial-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.financial-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.financial-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.financial-features li {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.financial-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: #2775d7;
    font-weight: bold;
}

.financial-features li:last-child {
    margin-bottom: 0;
}

/* Security and Performance Assurance Section */
.security-assurance-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.security-assurance-title {
    color: #1a2332;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.security-assurance-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.security-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.security-icon {
    width: 70px;
    height: 70px;
    background: #e6f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2775d7;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.security-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.security-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-features li {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.security-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2775d7;
    font-weight: bold;
}

.security-features li:last-child {
    margin-bottom: 0;
}

/* Open Integration Ecosystem Section */
.integration-ecosystem-section {
    background: white;
    padding: 5rem 0;
}

.integration-ecosystem-title {
    color: #1a2332;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.integration-ecosystem-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.integration-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.integration-icon {
    width: 60px;
    height: 60px;
    background: #2775d7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.integration-card .integration-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.integration-card .integration-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.integration-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.integration-tags .tag {
    background: #f8f9fa;
    color: #6c757d;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.integration-tags .tag:hover {
    background: #e6f3ff;
    color: #2775d7;
    border-color: #2775d7;
}

.integration-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.integration-features li {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.integration-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2775d7;
    font-weight: bold;
}

.integration-features li:last-child {
    margin-bottom: 0;
}

/* Book Demo Section */
.book-demo-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.demo-form-container {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.demo-title {
    color: #1a2332;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.demo-form .form-group {
    margin-bottom: 1.5rem;
}

.demo-form .form-label {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.demo-form .form-control {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.demo-form .form-control:focus {
    border-color: #2775d7;
    box-shadow: 0 0 0 0.2rem rgba(39, 117, 215, 0.25);
}

.demo-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.demo-submit-btn {
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    border: none;
    border-radius: 8px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(39, 117, 215, 0.4);
}

.demo-submit-btn:hover {
    background: linear-gradient(135deg, #1e5bb8, #154a9e);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(39, 117, 215, 0.6);
    color: white;
}



/* Quote Page Styles */
.quote-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.quote-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.quote-hero-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.quote-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.quote-form-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.quote-form-container {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section-title {
    color: #1a2332;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title i {
    color: #2775d7;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.required {
    color: #dc3545;
}

.form-control {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #2775d7;
    box-shadow: 0 0 0 0.2rem rgba(39, 117, 215, 0.25);
}

.form-control::placeholder {
    color: #adb5bd;
}

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-option {
    position: relative;
}

.service-option input[type="checkbox"] {
    display: none;
}

.service-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #495057;
}

.service-option label i {
    color: #2775d7;
    font-size: 1rem;
}

.service-option input[type="checkbox"]:checked + label {
    background: #e6f3ff;
    border-color: #2775d7;
    color: #2775d7;
}

.service-option label:hover {
    background: #e6f3ff;
    border-color: #2775d7;
}

/* Region Options */
.region-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.region-option {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.region-option input[type="radio"] {
    display: none;
}

.region-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #495057;
    justify-content: center;
}

.region-option label i {
    color: #2775d7;
    font-size: 1rem;
}

.region-option input[type="radio"]:checked + label {
    background: #e6f3ff;
    border-color: #2775d7;
    color: #2775d7;
}

.region-option label:hover {
    background: #e6f3ff;
    border-color: #2775d7;
}

/* Submit Button */
.quote-submit-btn {
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    border: none;
    border-radius: 8px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(39, 117, 215, 0.4);
}

.quote-submit-btn:hover {
    background: linear-gradient(135deg, #1e5bb8, #154a9e);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(39, 117, 215, 0.6);
    color: white;
}

.quote-submit-btn i {
    margin-right: 0.5rem;
}

/* Why Choose Us Section */
.why-choose-section {
    background: white;
    padding: 5rem 0;
}

.choose-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: #e6f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2775d7;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.choose-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 1rem;
}

.choose-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Home Page Hero Section */
.home-hero-section {
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px 0;
}

.home-hero-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.home-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 50, 0.75);
    z-index: 2;
}

.home-hero-section .container {
    position: relative;
    z-index: 3;
}

.home-hero-title {
    color: white;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
    letter-spacing: -0.02em;
}

.home-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 3;
    font-weight: 400;
}

.highlight-number {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(74, 158, 255, 0.3);
}

.service-tags {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.service-tag {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.service-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Shimmer highlight across tags */
.service-tag::after {
    content: "";
    position: absolute;
    top: 0; left: -150%;
    width: 150%; height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: tag-shine 3.2s ease-in-out infinite;
}

@keyframes tag-shine {
    0% { left: -150%; }
    45% { left: 150%; }
    100% { left: 150%; }
}

@keyframes tag-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Stagger floats casually */
.service-tag:nth-child(2) { animation-delay: .4s; }
.service-tag:nth-child(3) { animation-delay: .8s; }
.service-tag:nth-child(4) { animation-delay: 1.2s; }
.service-tag:nth-child(5) { animation-delay: 1.6s; }

.home-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.home-cta-primary {
    background: linear-gradient(135deg, #2662EC, #2775d7);
    border: none;
    border-radius: 6px;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(74, 158, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.home-cta-primary:hover {
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(74, 158, 255, 0.5);
    color: white;
}

.home-cta-secondary {
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.home-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-2px);
    color: white;
}

.home-cta-primary i,
.home-cta-secondary i {
    margin-right: 0.5rem;
}

/* Enable ripple effect container */
.home-cta-primary,
.home-cta-secondary,
.cta-button {
    position: relative;
    overflow: hidden;
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 600ms ease-out;
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

@keyframes ripple {
    to { transform: scale(3); opacity: 0; }
}

.certifications-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 1rem;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.certification-item i {
    color: #2662EC;
    font-size: 0.9rem;
}

.certification-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

/* Platform Logos Section */
.platform-logos-section {
    background: #F6F7FB;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.platform-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.platform-logo-item {
    height:auto;
    width:11%;
    object-fit: contain;
    filter: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.platform-logo-item:hover {
    opacity: 1;
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Responsive Design for Home Hero */
@media (max-width: 768px) {
    .home-hero-section {
        min-height: 75vh;
        padding: 80px 0 40px 0;
    }
    
    .home-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .home-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .home-hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 3rem;
    }
    
    .certifications-section {
        gap: 1rem;
        padding: 1.2rem 1.5rem;
        margin-top: 0.8rem;
    }
    
    .certification-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .platform-logos-container {
        gap: 1.8rem;
        padding: 0 1rem;
    }
    
    .platform-logo-item {
        height: 28px;
    }
}

@media (max-width: 576px) {
    .home-hero-section {
        min-height: 70vh;
        padding: 60px 0 30px 0;
    }
    
    .home-hero-title {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .home-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .service-tags {
        gap: 0.5rem;
        margin-top: 0.8rem;
    }
    
    .service-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .home-hero-buttons {
        margin-bottom: 2.5rem;
    }
    
    .certifications-section {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem 1.2rem;
        margin-top: 0.5rem;
    }
    
    .platform-logos-container {
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .platform-logo-item {
        height: 24px;
    }
}

/* Global Warehouse Network Section */
.warehouse-network-section {
    background: #fff;
    padding: 4rem 0;
    position: relative;
}

/* Header */
.wn-header {
    margin-bottom: 3rem;
}

.wn-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom:10px;
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;

}

/* KPIs Row */
.wn-kpis-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.wn-kpi-item {
    text-align: center;
    min-width: 150px;
}

.wn-kpi-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2662EC;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.wn-kpi-label {
    font-size: 1rem;
    color: #1a2332;
    font-weight: 500;
    margin: 0;
}

/* Content Grid */
.wn-content-grid {
    background: #F6F7FB;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Types Section */
.wn-types-section {
    padding-right: 2rem;
}

.wn-types-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.wn-type-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wn-type-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.wn-type-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.wn-type-icon.blue {
    background: #e6f3ff;
    color: #2775d7;
}

.wn-type-content {
    flex: 1;
}

.wn-type-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2332;
    margin: 0 0 0.3rem 0;
}

.wn-type-desc {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

/* Map Section */
.wn-map-section {
    padding-left: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wn-map-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
}

/* Responsive Design for Warehouse Network */
@media (max-width: 992px) {
    .wn-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    
    .wn-types-section,
    .wn-map-section {
        padding: 0;
    }
    
    .wn-map-image {
        max-width: 100%;
    }
    
    .wn-kpis-row {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .warehouse-network-section {
        padding: 3rem 0;
    }
    
    .wn-main-title {
        font-size: 1.8rem;
    }
    
    .wn-kpis-row {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .wn-kpi-number {
        font-size: 2.5rem;
    }
    
    .wn-kpi-label {
        font-size: 0.9rem;
    }
    
    .wn-content-grid {
        padding: 2rem;
        gap: 2.5rem;
    }
    
    .wn-types-title {
        font-size: 1.2rem;
    }
    
    .wn-type-list {
        gap: 1.2rem;
    }
    
    .wn-type-item {
        gap: 0.8rem;
    }
    
    .wn-type-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .wn-type-name {
        font-size: 1rem;
    }
    
    .wn-type-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .wn-kpis-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .wn-kpi-item {
        min-width: auto;
    }
    
    .wn-kpi-number {
        font-size: 2rem;
    }
    
    .wn-content-grid {
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .wn-types-title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .wn-type-list {
        gap: 1rem;
    }
    
    .wn-type-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

.warehouse-stat-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.warehouse-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
}

.warehouse-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e6f3ff, #d1e7ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #2775d7;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.warehouse-stat-card:hover .stat-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2775d7;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* Warehouse Types Info */
.warehouse-types-info {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.types-header {
    text-align: center;
    margin-bottom: 3rem;
}

.types-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.5rem;
}

.types-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.types-grid-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .types-grid-two-col {
        grid-template-columns: 1fr;
    }
}

.type-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.type-item:hover {
    background: #e6f3ff;
    border-color: #2775d7;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(39, 117, 215, 0.15);
}

.type-icon {
    width: 50px;
    height: 50px;
    background: #2775d7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.type-item:hover .type-icon {
    background: #1e5bb8;
    transform: scale(1.1);
}

.type-content {
    flex: 1;
}

.type-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 0.5rem;
}

.type-desc {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Warehouse Network */
@media (max-width: 768px) {
    .warehouse-stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .warehouse-types-info {
        padding: 2rem;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .type-item {
        padding: 1.2rem;
    }
}

/* Full Chain Services Section */
.full-chain-services-section {
    background: #F6F7FB;
    padding: 5rem 0;
    position: relative;
}

/* FCS: new premium layout */
.fcs-head .section-title { letter-spacing: .2px; }
.fcs-head .section-subtitle { color: #56606f; }

.fcs-flow {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.fcs-step {
    display: flex; align-items: center; gap: .6rem;
}
.fcs-step-icon {
    width: 40px; height: 40px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; background: linear-gradient(135deg, var(--brand-red), var(--brand-red-deep));
    box-shadow: 0 4px 12px rgba(220,53,69,0.25);
}
.fcs-step-name { font-weight: 700; color: #1a2332; }

.fcs-connector {
    height: 4px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-blue));
    border-radius: 999px;
    opacity: .6;
}

.fcs-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.fcs-card {
    background: #ffffff;
    border-radius: 12px; /* unified radius */
    border: 1px solid #e6e9ee;
    padding: 1.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.fcs-card:hover {
    transform: translateY(-4px);
    border-color: #d5deea;
    box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

.fcs-card-head {
    display: flex; align-items: center; gap: .75rem;
    margin-bottom: .5rem;
}
.fcs-no {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 10px; /* unified size */
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-deep));
    color: #fff; font-weight: 800;
    box-shadow: 0 4px 12px rgba(39,117,215,0.25);
}
.fcs-icon {
    width: 40px; height: 40px; border-radius: 10px; /* unified size */
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--brand-blue); background: rgba(39,117,215,0.10);
}
.fcs-title { font-size: 1.04rem; font-weight: 800; color: #1a2332; margin: .2rem 0 .3rem 0; }
.fcs-desc { color: #5d6676; margin: 0 0 .55rem 0; line-height: 1.55; }

.fcs-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.fcs-tag {
    display: inline-flex; align-items: center;
    padding: .32rem .56rem; border-radius: 999px;
    font-size: .82rem; color: #1e5bb8;
    background: rgba(39,117,215,0.12);
    border: 1px solid rgba(39,117,215,0.24);
}

/* Removed custom max-width to match global container width */

@media (max-width: 992px) {
    .fcs-flow { grid-template-columns: 1fr; row-gap: .6rem; }
    .fcs-connector { width: 100%; height: 3px; }
}

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

/* 核心基础服务：四宫格卡片 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 300ms ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 158, 255, 0.2);
    border-color: rgba(74, 158, 255, 0.2);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: #E7EEFF;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #2662EC;
    transition: all 300ms ease;
}

.service-card:hover .service-icon {
    background: #2662EC;
    color: white;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 0.75rem;
}

.service-desc {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 运力网络服务：左右图文混排 */
.logistics-services {
    margin-top: 4rem;
}

.logistics-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}

.logistics-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.logistics-item.reverse .logistics-content {
    order: 2;
}

.logistics-item.reverse .logistics-image {
    order: 1;
}

.logistics-content {
    padding: 2.5rem;
}

.logistics-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 1.5rem;
}

.logistics-desc {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.carrier-tags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.carrier-tags .carrier-tag {
    background: #F6F7FB;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}
.carrier-tags .carrier-tag:hover{
    color: #ffffff;
}
.delivery-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.delivery-stat {
    background: #F6F7FB;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.transport-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transport-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: #e6f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2662EC;
    flex-shrink: 0;
}

.feature-text {
    color: #1a2332;
    font-weight: 500;
}

.logistics-image {
    background: #F6F7FB;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.logistics-img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* 增值与统筹服务：两列卡片 */
.additional-services {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.additional-service {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 300ms ease;
}

.additional-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 158, 255, 0.15);
}

.additional-service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.additional-service-icon {
    width: 56px;
    height: 56px;
    background: #e6f3ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2662EC;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.additional-service-info {
    flex: 1;
}

.additional-service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 0.75rem;
}

.additional-service-desc {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-badge {
    background: #F6F7FB;
    color: #6c757d;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* 新样式的响应式设计 */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .logistics-content {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .logistics-item {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .logistics-item.reverse .logistics-content,
    .logistics-item.reverse .logistics-image {
        order: unset;
    }
    
    .carrier-tags {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .additional-services {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .logistics-content {
        padding: 1.5rem;
    }
    
    .logistics-title {
        font-size: 1.3rem;
    }
    
    .carrier-tags {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .delivery-stats {
        grid-template-columns: 1fr;
    }
    
    .additional-service {
        padding: 1.5rem;
    }
    
    .additional-service-header {
        gap: 1rem;
    }
    
    .additional-service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .logistics-services {
        margin-top: 2.5rem;
    }
    
    .additional-services {
        margin-top: 2.5rem;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        border-radius: 6px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .logistics-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

/* Tailwind CSS 兼容样式 - 数智系统驱动部分 */
.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.bg-deep-blue {
    background-color: #232e42;
}

.text-white {
    color: white;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.grid-bg {
    background-image: radial-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.opacity-50 {
    opacity: 0.5;
}

.top-1\/4 {
    top: 25%;
}

.-left-20 {
    left: -5rem;
}

.w-64 {
    width: 16rem;
}

.h-64 {
    height: 16rem;
}

.bg-brand-blue\/20 {
    background-color: rgba(37, 99, 235, 0.2);
}

.rounded-full {
    border-radius: 9999px;
}

.blur-3xl {
    filter: blur(64px);
}

.bottom-1\/4 {
    bottom: 25%;
}

.-right-20 {
    right: -5rem;
}

.w-80 {
    width: 20rem;
}

.h-80 {
    height: 20rem;
}

.bg-blue-400\/10 {
    background-color: rgba(96, 165, 250, 0.1);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.z-10 {
    z-index: 10;
}

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

.mb-16 {
    margin-bottom: 4rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.font-bold {
    font-weight: 700;
}

.mb-4 {
    margin-bottom: 1rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-blue-100 {
    color: #dbeafe;
}

.max-w-3xl {
    max-width: 48rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-6 {
    gap: 1.5rem;
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, 0.05);
}

.bg-white\/8 {
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.rounded-xl {
    border-radius: 0.75rem;
}

.p-6 {
    padding: 1.5rem;
}

.border {
    border-width: 1px;
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.border-white\/3 {
    border-color: rgba(255, 255, 255, 0.03);
}

.card-hover {
    transition: all 300ms ease;
}

.card-hover:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.w-14 {
    width: 3.5rem;
}

.h-14 {
    height: 3.5rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-blue-300 {
    color: #93c5fd;
}

.font-semibold {
    font-weight: 600;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.gap-8 {
    gap: 2rem;
}

.p-8 {
    padding: 2rem;
}

.gap-4 {
    gap: 1rem;
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.p-4 {
    padding: 1rem;
}

.h-16 {
    height: 4rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

/* 响应式样式 */
@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .sm\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* 响应式字体大小支持 */
.text-\[clamp\(1\.8rem\,4vw\,2\.5rem\)\] {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

/* 数智系统驱动特定样式优化 */
#system {
    background: linear-gradient(135deg, #232e42 0%, #1a2332 100%);
}

#system .container {
    max-width: 1200px;
}

#system .card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

#system .bg-white\/8:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

#system .bg-white\/10:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

/* Service Flow Timeline */
.service-flow-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(39, 117, 215, 0.3);
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2332;
    margin: 0;
    text-align: center;
}

.timeline-arrow {
    color: #2775d7;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Modern Service Cards */
.service-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2775d7, #1e5bb8, #2775d7);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.service-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2775d7;
    opacity: 0.3;
    line-height: 1;
}

.service-icon-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(39, 117, 215, 0.3);
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(39, 117, 215, 0.4);
}

.service-card-body {
    padding: 1.5rem 2rem 2rem;
}

.service-title-modern {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description-modern {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.feature-tag-modern {
    background: linear-gradient(135deg, rgba(39, 117, 215, 0.1), rgba(39, 117, 215, 0.05));
    color: #2775d7;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(39, 117, 215, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-tag-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.feature-tag-modern:hover::before {
    left: 100%;
}

.feature-tag-modern:hover {
    background: linear-gradient(135deg, rgba(39, 117, 215, 0.15), rgba(39, 117, 215, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 117, 215, 0.2);
}

/* Responsive Design for Full Chain Services */
@media (max-width: 992px) {
    .service-flow-timeline {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .timeline-arrow {
        display: none;
    }
    
    .service-card-header {
        padding: 1.2rem 1.5rem 0.8rem;
    }
    
    .service-card-body {
        padding: 1.2rem 1.5rem 1.5rem;
    }
    
    .service-number {
        font-size: 1.6rem;
    }
    
    .service-icon-modern {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .service-flow-timeline {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .timeline-item {
        flex-direction: row;
        gap: 1rem;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-card-modern {
        margin-bottom: 1.5rem;
    }
    
    .service-card-header {
        padding: 1rem 1.2rem 0.8rem;
    }
    
    .service-card-body {
        padding: 1rem 1.2rem 1.2rem;
    }
    
    .service-title-modern {
        font-size: 1.2rem;
    }
    
    .service-description-modern {
        font-size: 0.9rem;
    }
    
    .feature-tag-modern {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }
}

/* Digital System Driven Section */
.digital-system-section {
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    padding: 5rem 0;
    color: white;
}

.digital-system-section .section-title {
    color: white;
}

.digital-system-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* System Overview */
.system-overview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.system-header {
    text-align: center;
    margin-bottom: 3rem;
}

.system-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.system-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.system-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.module-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.module-item:hover .module-icon {
    transform: scale(1.1);
}

.module-info {
    flex: 1;
}

.module-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.module-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Integration Cards */
.integration-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
    transition: all 0.3s ease;
}

.integration-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.integration-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.integration-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.integration-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
}
.integration-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.platform-tags,
.carrier-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.platform-tag,
.carrier-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.platform-tag:hover,
.carrier-tag:hover {
    background: rgba(39, 117, 215, 0.3);
    border-color: #2775d7;
    transform: translateY(-2px);
}

/* Smart Features */
.smart-features {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.smart-features .features-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.smart-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.smart-features .feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.smart-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.smart-features .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.smart-features .feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.smart-features .feature-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.smart-features .feature-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Digital System */
@media (max-width: 768px) {
    .system-overview,
    .smart-features {
        padding: 2rem;
    }
    
    .system-title {
        font-size: 1.6rem;
    }
    
    .system-modules {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .module-item {
        padding: 1.2rem;
    }
    
    .integration-card {
        padding: 2rem;
    }
    
    .smart-features .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .smart-features .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .smart-features .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Compliance & Trust Section */
.compliance-trust-section {
    background: #ffffff;
    padding: 5rem 0;
}

.compliance-trust-section .section-title {
    color: #1a2332;
}

.compliance-trust-section .section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Certification Cards */
.certification-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.certification-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.certification-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.certification-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0;
}

.certification-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Certification Badges */
.certification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(39, 117, 215, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(39, 117, 215, 0.2);
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(39, 117, 215, 0.15);
    transform: translateY(-2px);
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: #2775d7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2775d7;
}

/* Achievement Badges */
.achievement-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(39, 117, 215, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(39, 117, 215, 0.1);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(39, 117, 215, 0.08);
    transform: translateX(5px);
}

.achievement-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.achievement-info {
    flex: 1;
}

.achievement-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 0.3rem;
}

.achievement-desc {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

/* Success Cases */
.success-cases {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cases-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2332;
    text-align: center;
    margin-bottom: 1rem;
}

.cases-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 3rem;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.case-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.case-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2332;
    margin: 0;
}

.case-content {
    margin-bottom: 1.5rem;
}

.metric-item {
    text-align: center;
    margin-bottom: 1rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2775d7;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.improvement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(39, 117, 215, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(39, 117, 215, 0.2);
}

.improvement-arrow {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
}

.improvement-text {
    font-size: 0.85rem;
    color: #2775d7;
    font-weight: 500;
}

.case-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Responsive Design for Compliance & Trust */
@media (max-width: 768px) {
    .certification-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .certification-badges {
        gap: 0.8rem;
    }
    
    .badge-item {
        padding: 0.5rem 0.8rem;
    }
    
    .success-cases {
        padding: 2rem;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-card {
        padding: 1.5rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .achievement-item {
        padding: 0.8rem;
    }
}

/* Challenge to Value Section */
.challenge-value-section {
    background: #ffffff;
    padding: 5rem 0;
    color: white;
}

.challenge-value-section .section-title {
    color: white;
}

.challenge-value-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Challenge Cards (Challenge to Value) */
.challenge-value-section .challenge-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.challenge-value-section .challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2775d7, #1e5bb8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.challenge-value-section .challenge-card:hover::before {
    transform: scaleX(1);
}

.challenge-value-section .challenge-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.challenge-value-section .challenge-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.challenge-value-section .challenge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.challenge-value-section .challenge-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.challenge-value-section .challenge-content {
    margin-bottom: 2rem;
}

.challenge-value-section .challenge-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.challenge-value-section .challenge-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.challenge-value-section .solution-arrow {
    text-align: center;
    margin: 2rem 0;
    color: #2775d7;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.challenge-value-section .solution-content {
    background: rgba(39, 117, 215, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(39, 117, 215, 0.2);
}

.challenge-value-section .solution-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2775d7;
    margin-bottom: 1rem;
}

.challenge-value-section .solution-highlight {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(39, 117, 215, 0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.challenge-value-section .solution-highlight i {
    color: #28a745;
    font-size: 1.2rem;
}

.challenge-value-section .solution-highlight span {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.challenge-value-section .solution-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Value Proposition (scoped) */
.challenge-value-section .value-proposition {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.challenge-value-section .value-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.challenge-value-section .value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.value-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.value-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.value-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-feature:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.value-feature .feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.value-feature .feature-info {
    flex: 1;
    text-align: left;
}

.value-feature .feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.value-feature .feature-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cta-section {
    margin-top: 2rem;
}

.challenge-value-section .value-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.challenge-value-section .value-cta-button:hover {
    background: linear-gradient(135deg, #1e5bb8, #2775d7);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 117, 215, 0.3);
    color: white;
    text-decoration: none;
}

.challenge-value-section .value-cta-button i {
    font-size: 1rem;
}

/* Responsive Design for Challenge to Value */
@media (max-width: 768px) {
    .challenge-value-section .challenge-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .challenge-value-section .value-proposition {
        padding: 2rem;
    }
    
    .challenge-value-section .value-title {
        font-size: 1.6rem;
    }
    
    .challenge-value-section .value-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .challenge-value-section .value-feature {
        padding: 1.2rem;
    }
    
    .challenge-value-section .solution-highlight {
        padding: 0.8rem;
    }
    
    .challenge-value-section .solution-highlight span {
        font-size: 0.9rem;
    }
}

/* Final CTA Section */
.final-cta-section {
    background:#F5F7FA;
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color:#000000;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color:#000000;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #ffffff;
    border: 1px solid #2562EC;
    border-radius: 10px;
    padding: 1rem;
    text-decoration: none;
    color:  #2562EC;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.primary{
    background-color: #2562EC;
    color: #ffffff;
}
.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    background: #1f53c8;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}
.cta-btn.primary:hover {
    background: #1f53c8;
    color: #ffffff;
}
.cta-btn .btn-content {
    flex: 1;
    text-align: left;
}

.cta-btn .btn-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-btn .btn-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.cta-btn .btn-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cta-btn:hover .btn-arrow {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

/* Final CTA Contact Info */
.final-cta-contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.final-cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.final-cta-contact-item i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.final-cta-contact-item span {
    font-weight: 500;
}

/* Responsive Design for Final CTA */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-btn {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .cta-btn .btn-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .cta-btn .btn-title {
        font-size: 1.2rem;
    }
    
    .final-cta-contact-info {
        gap: 2rem;
        flex-direction: column;
    }
    
    .final-cta-contact-item {
        font-size: 0.9rem;
    }
}

/* FBA Transfer Final CTA Section */
.fba-final-cta-section {
    background-color: white;
    padding: 4rem 0;
    color: #212529;
    text-align: center;
}

.fba-final-cta-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.fba-final-cta-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fba-final-cta-button {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    border-radius: 8px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
}

.fba-final-cta-button:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.6);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quote-hero-title {
        font-size: 2rem;
    }
    
    .quote-hero-subtitle {
        font-size: 1rem;
    }
    
    .quote-form-container {
        padding: 2rem;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .region-options {
        flex-direction: column;
    }
    
    .region-option {
        min-width: auto;
    }
}

/* Differentiation Advantages Section */
.diff-advantages-section {
    background: #1f2b38;
    padding: 5rem 0;
}

.diff-title {
    color: #e9eef5;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.diff-subtitle {
    color: #b3c0cf;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.diff-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.diff-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(39, 117, 215, 0.18);
    color: #77a8ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.diff-card-title {
    color: #e9eef5;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.diff-card-text {
    color: #b8c7d6;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* FBA Process Section */
.fba-process-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
    position: relative;
}

.fba-process-section .container {
    position: relative;
}

.fba-process-section .container::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.process-step-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 200px;
    border: 1px solid #e9ecef;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.fba-step-number {
    width: 60px;
    height: 60px;
    background: #2775d7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(39, 117, 215, 0.3);
    flex-shrink: 0;
}

.fba-step-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fba-step-text {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .fba-process-section .container::before {
        display: none;
    }
    
    .process-step-card {
        margin-bottom: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-text {
        font-size: 0.85rem;
    }
}

/* Why Choose Section */
.why-choose-section {
    background-color: white;
    padding: 5rem 0;
}

.benefit-card {
    background: transparent;
    padding: 2.5rem 2rem;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    transition: none;
    height: 100%;
    border: none;
    position: relative;
    overflow: visible;
}

.benefit-card::before {
    content: none;
    display: none;
}

.benefit-card:hover {
    transform: none;
    box-shadow: none;
    border-color: inherit;
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: rgba(39, 117, 215, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: #2775d7;
    font-size: 2.1rem;
    transition: none;
    position: relative;
    border: 1px solid rgba(39, 117, 215, 0.2);
}

.benefit-card:hover .benefit-icon {
    transform: none;
    box-shadow: none;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-description {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* Process Section */
.process-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

/* Center timeline line */
.process-section .container {
    position: relative;
}

.process-section .container::before {
    content: '';
    position: absolute;
    top: 120px;
    bottom: 50px;
    left: 50%;
    width: 2px;
    background: #e9ecef;
    transform: translateX(-50%);
}

.process-row {
    margin-bottom: 4rem;
    position: relative;
}

.process-row:last-child {
    margin-bottom: 0;
}

.process-image {
    position: static; /* make step-number position relative to row */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-left: 3rem;
}

.process-image.right-aligned {
    margin-left: 0;
    margin-right: 3rem;
}

.process-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #2775d7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(39, 117, 215, 0.35);
    z-index: 2;
}

.process-content {
    padding: 2rem;
    margin: 0 2rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Main Content */
.main-content {
    padding-top: 80px;
}

/* Services Section */
.services-section {
    background-color: #f8f9fa;
}

.section-title {
    font-size: var(--fs-h1);
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

/* Removed duplicate service-card and service-icon styles */

/* Hero Buttons */
.services-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #dc3545;
    border-color: white;
}

/* Dropshipping Final CTA Section */
.dropshipping-final-cta-section {
    background-color: white;
    padding: 4rem 0;
    text-align: center;
}

.dropshipping-final-cta-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.dropshipping-final-cta-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.dropshipping-final-cta-button {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    border-radius: 8px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
}

.dropshipping-final-cta-button:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.6);
    color: white;
}

/* Footer Section */
.footer-section {
    background-color: #161c2a;
    color: white;
    padding: 3rem 0 1rem 0;
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #adb5bd;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #dc3545;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: white;
}

.contact-info {
    margin-top: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #adb5bd;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-icon {
    color: #dc3545;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #495057;
    margin-top: 2rem;
}

.copyright p {
    color: #adb5bd;
    font-size: 0.85rem;
    margin: 0;
}
.copyright a,.copyright a:hover{
    font-size: 0.8rem;
    color: #adb5bd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .hero-section {
        min-height: 50vh;
        padding: 90px 0 50px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .feature-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature-highlights .feature-item {
        font-size: 0.8rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-section .section-title {
        font-size: 1.8rem;
    }
    
    .platforms-title {
        font-size: 1.8rem;
    }
    
    .platform-card {
        padding: 1.2rem 1rem;
    }
    
    .platform-logo {
        width: 80px;
        height: 80px;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .process-content {
        padding: 1.5rem 1rem;
        margin: 0 1rem;
    }
    
    .process-image {
        margin-left: 2rem;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    }
    
    .process-image.right-aligned {
        margin-left: 0;
        margin-right: 2rem;
    }
    
    .process-image img {
        height: 180px;
    }
    
    .step-number {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 45vh;
        padding: 70px 0 40px 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
    
    /* Responsive styles for service cards are handled in the main service section */
    
    .platform-logo {
        width: 70px;
        height: 70px;
    }
    
    .platform-card {
        padding: 1rem 0.8rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-description {
        font-size: 0.8rem;
    }
    
    .process-content {
        padding: 1rem 0.5rem;
        margin: 0 0.5rem;
    }
    
    .process-image {
        margin-left: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    
    .process-image.right-aligned {
        margin-left: 0;
        margin-right: 1rem;
    }
    
    .process-image img {
        height: 160px;
    }
    
    .step-number {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .final-cta-title {
        font-size: 1.7rem;
    }
    
    .final-cta-subtitle {
        font-size: 1rem;
    }
    
    .footer-logo-img {
        height: 35px;
    }
    
    .footer-logo-text {
        font-size: 1.3rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-title::after {
        width: 25px;
    }
    
    .final-cta-title {
        font-size: 1.5rem;
    }
    
    .final-cta-subtitle {
        font-size: 0.95rem;
    }
    
    .final-cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .footer-logo-img {
        height: 30px;
    }
    
    .footer-logo-text {
        font-size: 1.2rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-title::after {
        width: 20px;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
}
/*新增全球仓网实力*/
.grid .shadow-sm {
    -tw-shadow-color:#000000;
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.grid .bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.p-6 {
    padding: 1.5rem;
}
.rounded-xl {
    border-radius: 0.75rem;
}
.text-brand-blue{
    color: #2662ec;
}
@media (min-width: 768px){
    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
}
.text-gray-600 {
    color:#777E89;
}
/*智能功能亮点*/
.intelligent{
    background-color: #EFF1FA;
    padding: 5rem 0;
    position: relative;
}
.board{
    width: 100%;
    background: white;
    border-radius: 12px;
    padding: 2rem 0rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 300ms ease;
    cursor: pointer;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.board-top{
    padding: 0px 1.5rem;
    border-bottom: 1px rgb(229 231 235) solid;
}
.board-title{
    font-size: 2rem;
    color: rgb(29, 33, 41);
    font-weight: 700;
}
.gap-6 {
    gap: 1.5rem;
}
@media (min-width: 768px){
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.padding-left {
    padding: 0px 1.5rem;
}

.stat-card {
    border-radius: 0.5rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding: 1.5rem;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.06);
}
.stat-title {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(78 89 105 / var(--tw-text-opacity, 1));
}
.justify-between {
    justify-content: space-between;
}
.items-end {
    align-items: flex-end;
}
.flex {
    display: flex;
}
.stat-value {
    margin-bottom: 0.25rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(29 33 41 / var(--tw-text-opacity, 1));
}
.w-16 {
    width: 4rem;
}
.h-16 {
    height: 4rem;
}
.positive {
    --tw-text-opacity: 1;
    color: rgb(0 180 42 / var(--tw-text-opacity, 1));
}
.stat-change {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-primary {
    --tw-text-opacity: 1;
    color: rgb(22 93 255 / var(--tw-text-opacity, 1));
}
.justify-center {
    justify-content: center;
}
.items-center {
    align-items: center;
}
.card-shadow {
    box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.06);
    margin: 0px 1.5rem;
}
.card-shadow h2{
    font-size: 1.2rem;
}
.compliance-img{
    margin-right: 2rem;
}
.compliance-img img{
    width: 100%;
    height: auto;
    float: left;
}
.font-semibold {
    font-weight: 600;
}
.badge {
    display: inline-block;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
    margin-bottom: 2rem;
}
.bg-light-gray {
    --tw-bg-opacity: 1;
    background-color: rgb(246 247 251 / var(--tw-bg-opacity, 1));
}
/*案例*/
.cases{
    background-color: #F5F7FA;
    padding: 5rem 0;
    position: relative;
}
.bg-blue-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.text-deep-blue {
    --tw-text-opacity: 1;
    color: rgb(35 46 66 / var(--tw-text-opacity, 1));
}
.final-btn{
    width: 60%;
    float: left;
    margin: 0px 20%;
}
.final-btn a{
    width: 30%;
    float: left;
    display: block;
    margin: 0px 1.5%;
    font-size: 1.2rem;
}
.network-grid{
    display: block !important;
    overflow: hidden;
}
.network-grid .wn-types-section{
    float: left;
    width: 40%;
}
.network-grid .wn-map-section{
    float: right;
    width: 60%;
}
/* Quote page tabs styling */
.quote-form-container .nav-tabs {
    border-bottom: 1px solid rgba(22, 93, 255, 0.15);
}

.quote-form-container .nav-tabs .nav-tabs-link {
    width: auto;
    border: none;
    margin-bottom: -1px;
    color: #333333;
    background: transparent;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.quote-form-container .nav-tabs .nav-item .nav-tabs-link:hover {
    color: #2662ec !important;
    border-bottom: 2px solid #2662ec;
}

.quote-form-container .nav-tabs .nav-item .nav-tabs-link.active {
    color: #2662ec !important;
    border: none;
    border-bottom: 2px solid #2662ec;
    background: transparent;
}
.col-5 .form-select{
    padding: 10px 10px 11px;
    border: 1px solid #e9ecef;
}
.form-yzm-label{
    width: 100%;
    float: left;
}
.form-yzm{
    width: 70%;
    float: left;
}
.form-group .form-yzm-btn{
    width: 28%;
    float: left;
    margin-left: 2%;
    height: 47px;
}

.contact-methods .form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}
.contact-methods .form-check-label {
    margin-right: 18px;
    font-weight: 500;
}

.contact-methods + .form-control::placeholder {
    color: #b8c0cc;
}
/*关于我们*/
.section-subtitle { color:#6c757d; margin-top:.5rem; }
.bullet-list { list-style:none; padding:0; margin:0; }
.bullet-list li { position:relative; padding-left:1.2rem; margin-bottom:.55rem; color:#5b6574; }
.bullet-list li::before { content:"\2713"; position:absolute; left:0; top:0; color:#2775d7; font-weight:700; }

/* About Hero Section */
.about-hero-section {
    background:#f6f5fa;
    padding: 8rem 0px 5rem;
    display: flex;
    align-items: center;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: #1a2332;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.about-cta-primary {
    background: #2775d7;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-cta-primary:hover {
    background: #1e5bb8;
    transform: translateY(-2px);
}

.about-cta-secondary {
    border: 2px solid #2775d7;
    color: #2775d7;
    background: transparent;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-cta-secondary:hover {
    background: #2775d7;
    color: white;
    transform: translateY(-2px);
}

.scroll-indicator {
    color: #2775d7;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* About Us Section */
.about-us-section {
    background: #e4eafa;
    padding:5rem 0;
}

.about-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2b3141;
    margin-bottom: 1rem;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: #2775d7;
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}

.about-section-subtitle {
    font-size: 1rem;
    color: #1a2332;
    margin-bottom: 3rem;
    font-weight: 500;
}

.about-content-card {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-main-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #5b6574;
    margin-bottom: 1.5rem;
}

.about-main-text:last-child {
    margin-bottom: 0;
}

/* Mission Vision Values Section */
.mission-vision-values-section {
    background: white;
    padding: 5rem 0;
}

.mvv-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2332;
    margin:3rem 0px;
}

.mvv-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(39, 117, 215, 0.15);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    background: #E7EEFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0px 1.5rem 0px;
    color: #2775d7;
    font-size: 1.5rem;
}

.mvv-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.mvv-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .about-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta-primary,
    .about-cta-secondary {
        width: 200px;
    }
    
    .about-section-title,
    .mvv-section-title {
        font-size: 2rem;
    }
    
    .about-content-card {
        padding: 2rem;
    }
    
    .mvv-card {
        padding: 2rem 1.5rem;
    }
}

/* Core Operational Data Section */
.core-data-section {
    background:#242c43;
    padding: 5rem 0;
    color: white;
}

.core-data-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.core-data-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 400;
}

.core-data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.data-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.data-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.data-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2775d7;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.data-label {
    font-size: 0.9rem;
    color: white;
    line-height: 1.4;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 992px) {
    .core-data-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .core-data-title {
        font-size: 2.2rem;
    }
    
    .core-data-subtitle {
        font-size: 1rem;
    }
    
    .core-data-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .data-card {
        padding: 1.5rem 1rem;
    }
    
    .data-number {
        font-size: 2rem;
    }
    
    .data-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .core-data-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .data-card {
        padding: 1.2rem 1rem;
    }
}
   
/* Core Advantages Section */
.core-advantages-section {
    background: #f8f7fc;
    padding:5rem 0;
}

.core-advantages-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1rem;
}

.core-advantages-subtitle {
    font-size: 1rem;
    color: #5b6574;
    font-weight: 400;
}


.section-number {
    font-size: 1rem;
    color: #2775d7;
    font-weight: 600;
    margin-top: 1rem;
}
.digital-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom:1.5rem;
    line-height: 1.5;
}

.feature-item {
    margin-bottom: 2rem;
}

.feature-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #5b6574;
    margin: 0;
}
.align-items-center{
    margin: 2rem 0px;
}
.digital-visual {
    width: 100%;
    position: relative;
    height:400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.digital-visual img{
    width: 100%;
    height:100%;
    float: left;
    border-radius: 30px;
}

.server-racks {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 60px;
    background: #2775d7;
    border-radius: 4px;
    opacity: 0.8;
}

.server-racks::before,
.server-racks::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    width: 40px;
    height: 60px;
    background: #2775d7;
    border-radius: 4px;
    opacity: 0.6;
}

.server-racks::after {
    left: 100px;
    opacity: 0.4;
}

.security-shield {
    position: absolute;
    left: 30px;
    top: 30px;
    width: 50px;
    height: 50px;
    background: rgba(39, 117, 215, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2775d7;
    font-size: 1.5rem;
}

.cloud-computing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2775d7, #1e5bb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(39, 117, 215, 0.5);
}

.monitor-screen {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 40px;
    background: #2775d7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-line {
    width: 20px;
    height: 2px;
    background: white;
    position: absolute;
    top: 15px;
}

.chart-bar {
    width: 3px;
    height: 10px;
    background: white;
    position: absolute;
    bottom: 10px;
}

.mobile-device {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 30px;
    height: 40px;
    background: #2775d7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(39, 117, 215, 0.1) 0%, transparent 70%);
}

/* Global Warehouse Section */
.global-warehouse-section {
    background: white;
    padding: 80px 0;
}

.warehouse-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.warehouse-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #5b6574;
    margin-bottom:1rem;
}

.warehouse-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warehouse-image {
    width: 100%;
    height: 100%;
}

@keyframes movePackage {
    0% { left: -10%; }
    100% { left: 110%; }
}

.location-lists {
    margin-bottom: 2rem;
}

.location-group {
    margin-bottom: 1.5rem;
}

.location-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.5rem;
}

.location-details {
    font-size: 1rem;
    color: #5b6574;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .core-advantages-title {
        font-size: 2.2rem;
    }
    
    .digital-title,
    .warehouse-title {
        font-size: 1.8rem;
    }
    
    .digital-visual,
    .warehouse-visual {
        height: 250px;
        margin-bottom: 2rem;
    }
    
    .tech-illustration {
        padding: 1.5rem;
    }
}
/* Full-link Services Section */
.full-link-services-section {
    background: #F6F7FB;
    padding: 80px 0;
}

.services-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.align-items-center .service-icon {
    width: 50px;
    height: 50px;
    background: #E7EEFF;
    border-radius:10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2775d7;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-bottom:1rem;
}

.service-text {
    flex: 1;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.5rem;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5b6574;
    margin: 0;
}

.services-visual {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Customized Cooperation Section */

.cooperation-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.cooperation-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cooperation-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cooperation-icon {
    width: 50px;
    height: 50px;
    background: #E7EEFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2775d7;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cooperation-text {
    flex: 1;
}

.cooperation-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.5rem;
}

.cooperation-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #5b6574;
    margin: 0;
}

.cooperation-visual {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Localized Support Section */
.localized-support-section {
    background: #F6F7FB;
    padding: 80px 0;
}

.support-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.support-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #5b6574;
    margin-bottom: 2rem;
}

.local-advantages {
    background: #f5f9fc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.advantages-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1.5rem;
}

.advantage-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.advantage-item i {
    color: #2775d7;
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

.advantage-item span {
    font-size: 0.95rem;
    color: #5b6574;
    line-height: 1.5;
}

.support-visual {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image Placeholder */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.1rem;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.image-placeholder p {
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-title,
    .cooperation-title,
    .support-title {
        font-size: 1.8rem;
    }
    
    .service-item,
    .cooperation-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon,
    .cooperation-icon {
        align-self: center;
    }
    
    .services-visual,
    .cooperation-visual,
    .support-visual {
        height: 200px;
        margin-bottom: 2rem;
    }
    
    .local-advantages {
        padding: 1.5rem;
    }
}
.cooperation-content{
    min-height: 500px;
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
transition: all 0.4s ease;
border: 1px solid rgba(0, 0, 0, 0.05);
height: 100%;
position: relative;
padding: 2rem;
}
.cooperation-content:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.distribution{
    background-color: #ffffff;
    margin: 5rem 0px;
}
.distribution-img{
    width: 100%;
    margin: 1rem 0px;
}
.distribution-img img{
    width: 100%;
    height: auto;
    float: left;
}
.honors-title{
    width: 100%;
    font-size: 1.6rem;
    margin: 1rem 0px;
    text-align: center;
}
.distribution .shadow-lg {
    width: 90%;
    float: left;
    margin: 1rem 5%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: all 0.4s ease;
background-color: #f8f7fc;
   
}
.space-y-6{
    float: left;
    width: 65%;
    padding:2rem;
    margin: 0px;
}
.space-y-6 p{
    margin: 0px 0px 0px 10px;
    line-height: 2.3rem;
}
.space-y-6 .list-disc li{
    font-size: 0.9rem;
    line-height: 2rem;
}
.honors-img{
    float: left;
    width: 35%;
    margin:0px;
    overflow: hidden;
    position: relative;
}
.honors-img img{
    width: 80%;
    height: auto;
    float: left;
    margin: 5% 10%;
}
.bg-neutral{
    width: 100%;
    background-color: #faf9fe;
    padding:3.5rem 0px;
}
.mr-3{
    margin-right: 1rem;
}
.neutral-img{
    width: 50%;
    margin: 5% 25%;
    float: left;
}
.neutral-img img{
    width: 100%;
    float: left;
}
/* Official Certification Section */
.official-certification-section {
    background: white;
    padding: 80px 0;
}

.certification-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 3rem;
}

.certification-content {
    padding-right: 2rem;
}

.certification-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.certification-dot {
    width: 8px;
    height: 8px;
    background: #2775d7;
    border-radius: 50%;
    flex-shrink: 0;
}

.certification-text {
    font-size: 1.1rem;
    color: #1a2332;
    font-weight: 500;
    line-height: 1.5;
}


/* Trademark Registration Section */
.trademark-registration-section {
    background: #F6F7FB;
    padding: 80px 0;
}

.trademark-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1rem;
}

.trademark-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.trademark-regions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.region-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 150px;
}

.region-card:hover {
    background: #e7eeff;
    border-color: #2775d7;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(39, 117, 215, 0.15);
}

.region-icon {
    width: 40px;
    height: 40px;
    background: #E7EEFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: #2775d7;
    font-size: 1.2rem;
}

.region-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2332;
}

/* Responsive Design */
@media (max-width: 992px) {
   
    
    .trademark-regions {
        gap: 1rem;
    }
    
    .region-card {
        min-width: 100px;
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .certification-title,
    .trademark-title {
        font-size: 2.2rem;
    }
    
    .certification-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    .trademark-regions {
        flex-direction: column;
        align-items: center;
    }
    
    .region-card {
        width: 200px;
    }
    .space-y-6{
        width: 100%;
    }
    .honors-img{
        width: 100%;
        margin: 0px;
    }
}
.brand-logos{
    width: 100%;
    float: left;
}
.brand-logos img{
    width: 100%;
    float: left;
}
/* Contact Us Section */
.contact-us-section {
    background: #ffffff;
    padding: 5rem 0;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1rem;
}

.contact-slogan {
    font-size: 1rem;
    color: #5b6574;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-header {
   
    padding: 1.5rem 2rem;
    border-top:3px solid #2562EC;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-header i {
    color: #2775d7;
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0;
}

.card-content {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #2775d7;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2332;
}

.contact-value {
    font-size: 0.95rem;
    color: #5b6574;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-slogan {
        font-size: 1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .card-header {
        padding: 1.2rem 1.5rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 1.8rem;
    }
    
    .card-header {
        padding: 1rem 1.2rem;
    }
    
    .card-content {
        padding: 1.2rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
}