/* ============================================================
   Imagineship Brand Theme - Main Stylesheet
   品牌色系：深蓝 #1a3a5c + 亮橙 #ff6b35
   ============================================================ */

/* --- CSS Variables --- */
:root {
    /* Brand Colors */
    --color-primary: #1a3a5c;
    --color-primary-dark: #0f2740;
    --color-primary-light: #2a5a8c;
    --color-accent: #ff6b35;
    --color-accent-dark: #e55a25;
    --color-accent-light: #ff8a5c;
    
    /* Neutrals */
    --color-white: #ffffff;
    --color-bg: #f8f9fb;
    --color-bg-alt: #f0f2f5;
    --color-gray-100: #f5f7fa;
    --color-gray-200: #e8ecf1;
    --color-gray-300: #d1d8e0;
    --color-gray-400: #a0aab4;
    --color-gray-500: #6b7a8d;
    --color-gray-600: #4a5568;
    --color-gray-700: #2d3748;
    --color-gray-800: #1a202c;
    --color-text: #1a202c;
    --color-text-secondary: #4a5568;
    --color-text-muted: #6b7a8d;
    
    /* Status */
    --color-success: #38a169;
    --color-warning: #ecc94b;
    --color-danger: #e53e3e;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-zh: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 50px rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --container-max: 1200px;
    --header-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-zh);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-accent);
}

ul, ol {
    list-style: none;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.text-accent {
    color: var(--color-accent);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn .icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-gray-300);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-white:hover {
    background: var(--color-gray-100);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.075rem;
}

/* --- Icons --- */
.icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-200);
    height: var(--header-height);
    transition: all var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: var(--space-xl);
}

/* Logo */
.site-brand .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo-text {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.site-logo-text .logo-icon {
    color: var(--color-accent);
}

.site-logo-text .logo-icon .icon {
    width: 32px;
    height: 32px;
}

.site-logo-text .logo-name {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-logo-text .logo-name strong {
    font-size: 1.125rem;
    color: var(--color-primary);
}

.site-logo-text .logo-name small {
    font-size: 0.625rem;
    color: var(--color-gray-400);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.main-nav .nav-list li a {
    display: block;
    padding: 0.5rem 0.875rem;
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.main-nav .nav-list li a:hover,
.main-nav .nav-list li.current-menu-item > a {
    color: var(--color-accent);
    background: rgba(255, 107, 53, 0.06);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-gray-500);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.lang-switch .icon {
    width: 16px;
    height: 16px;
}

.lang-switch:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.header-cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--color-gray-600);
}

.mobile-menu-toggle .close-icon {
    display: none;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon { display: none; }
.mobile-menu-toggle[aria-expanded="true"] .close-icon { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    position: relative;
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f8 50%, #fff5f0 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(26, 58, 92, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 40%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.hero-title {
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

.trust-item .icon {
    width: 18px;
    height: 18px;
    color: var(--color-success);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    position: relative;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.25rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
    font-size: 1.5rem;
}

.card-1 { top: 10%; left: -10%; animation-delay: 0s; }
.card-2 { top: 50%; right: -15%; animation-delay: 2s; }
.card-3 { bottom: 5%; left: 5%; animation-delay: 4s; }

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

/* Hero Visual - 地球内部装饰 */
.globe-inner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
}

.globe-grid {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(255,255,255,0.06) 49px, rgba(255,255,255,0.06) 50px),
        repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(255,255,255,0.06) 49px, rgba(255,255,255,0.06) 50px);
    animation: globeRotate 60s linear infinite;
}

@keyframes globeRotate {
    0% { background-position: 0 0; }
    100% { background-position: 50px 0; }
}

/* 抽象大陆块 */
.continent {
    position: absolute;
    border-radius: 40% 60% 50% 40%;
    background: rgba(255,255,255,0.12);
}

.continent-1 {
    width: 100px;
    height: 80px;
    top: 15%;
    left: 20%;
    transform: rotate(-15deg);
}

.continent-2 {
    width: 120px;
    height: 60px;
    top: 40%;
    right: 15%;
    border-radius: 50% 40% 60% 30%;
    transform: rotate(10deg);
}

.continent-3 {
    width: 80px;
    height: 50px;
    bottom: 20%;
    left: 30%;
    border-radius: 30% 60% 40% 50%;
    transform: rotate(-5deg);
}

/* 航线 - 虚线弧 */
.route-line {
    position: absolute;
    border: 1.5px dashed rgba(255,255,255,0.2);
    border-radius: 50%;
}

.route-1 {
    width: 280px;
    height: 120px;
    top: 20%;
    left: 15%;
    transform: rotate(-10deg);
    border-color: transparent transparent rgba(255,107,53,0.45) transparent;
}

.route-2 {
    width: 240px;
    height: 160px;
    top: 25%;
    left: 20%;
    transform: rotate(5deg);
    border-color: rgba(255,255,255,0.15) transparent transparent transparent;
}

.route-3 {
    width: 200px;
    height: 100px;
    bottom: 25%;
    left: 25%;
    transform: rotate(-8deg);
    border-color: transparent rgba(255,255,255,0.12) transparent transparent;
}

/* 航线节点 - 闪烁的点 */
.route-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,107,53,0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

.dot-1 { top: 25%; left: 25%; animation-delay: 0s; }
.dot-2 { top: 35%; right: 20%; animation-delay: 0.5s; }
.dot-3 { bottom: 30%; left: 35%; animation-delay: 1s; }
.dot-4 { top: 45%; left: 50%; animation-delay: 1.5s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.6); }
}

/* === 交通工具动画 === */
.vehicle {
    position: absolute;
    z-index: 2;
}

/* 飞机 - 绕球体飞行弧线 */
.vehicle-plane {
    width: 44px;
    height: 44px;
    color: #ffffff;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)) drop-shadow(0 0 6px rgba(255,107,53,0.3));
    animation: flyPlane 8s ease-in-out infinite;
}

.vehicle-plane svg {
    width: 100%;
    height: 100%;
}

@keyframes flyPlane {
    0% {
        top: 55%;
        left: -12%;
        transform: scale(0.6);
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    25% {
        top: 15%;
        left: 20%;
        transform: scale(0.85);
    }
    45% {
        top: -2%;
        left: 48%;
        transform: scale(1);
    }
    65% {
        top: 8%;
        left: 72%;
        transform: scale(0.9);
    }
    92% {
        opacity: 1;
    }
    100% {
        top: 35%;
        left: 108%;
        transform: scale(0.7);
        opacity: 0;
    }
}

/* 飞机尾迹 */
.plane-trail {
    position: absolute;
    top: 50%;
    right: 100%;
    width: 60px;
    height: 2px;
    background: linear-gradient(to left, rgba(255,255,255,0.5), transparent);
    transform: translateY(-50%);
    animation: trailFade 8s ease-in-out infinite;
}

@keyframes trailFade {
    0%, 5%, 95%, 100% { opacity: 0; width: 0; }
    20%, 80% { opacity: 0.6; width: 60px; }
}

/* 轮船 - 在底部航行 */
.vehicle-ship {
    width: 56px;
    height: 32px;
    color: #ffffff;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.3));
    animation: sailShip 12s ease-in-out infinite;
}

.vehicle-ship svg {
    width: 100%;
    height: 100%;
}

@keyframes sailShip {
    0% {
        bottom: 22%;
        left: -15%;
        transform: translateY(0) scaleX(1);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    15% {
        bottom: 18%;
        transform: translateY(-2px) scaleX(1);
    }
    30% {
        bottom: 15%;
        transform: translateY(2px) scaleX(1);
    }
    50% {
        bottom: 12%;
        left: 45%;
        transform: translateY(-1px) scaleX(1);
    }
    65% {
        bottom: 15%;
        transform: translateY(2px) scaleX(1);
    }
    80% {
        bottom: 18%;
        transform: translateY(-2px) scaleX(1);
    }
    95% {
        opacity: 1;
    }
    100% {
        bottom: 22%;
        left: 110%;
        transform: translateY(0) scaleX(1);
        opacity: 0;
    }
}

/* 船的波浪轨迹 */
.ship-trail {
    position: absolute;
    bottom: -2px;
    right: 90%;
    width: 80px;
    height: 4px;
    background: repeating-linear-gradient(to left,
        transparent 0px,
        rgba(255,255,255,0.3) 4px,
        transparent 8px
    );
    animation: waveTrail 12s ease-in-out infinite;
}

@keyframes waveTrail {
    0%, 5%, 95%, 100% { opacity: 0; width: 0; }
    25%, 75% { opacity: 0.5; width: 80px; }
}

/* 卡车 - 在底部道路行驶 */
.vehicle-truck {
    width: 50px;
    height: 26px;
    color: var(--color-accent);
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.3));
    animation: driveTruck 10s linear infinite;
    animation-delay: 3s;
}

.vehicle-truck svg {
    width: 100%;
    height: 100%;
}

@keyframes driveTruck {
    0% {
        bottom: 2%;
        right: -15%;
        transform: scaleX(-1) translateY(0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    15% {
        bottom: 5%;
        transform: scaleX(-1) translateY(-1px);
    }
    35% {
        bottom: 8%;
        transform: scaleX(-1) translateY(1px);
    }
    50% {
        bottom: 10%;
        right: 45%;
        transform: scaleX(-1) translateY(0);
    }
    65% {
        bottom: 8%;
        transform: scaleX(-1) translateY(-1px);
    }
    85% {
        bottom: 5%;
        transform: scaleX(-1) translateY(1px);
    }
    95% {
        opacity: 1;
    }
    100% {
        bottom: 2%;
        right: 110%;
        transform: scaleX(-1) translateY(0);
        opacity: 0;
    }
}

/* 浮动卡片位置微调 - 避免遮挡交通工具 */
.card-1 { top: 8%; left: -15%; animation-delay: 0s; z-index: 3; }
.card-2 { top: 48%; right: -18%; animation-delay: 2s; z-index: 3; }
.card-3 { bottom: 2%; left: 0%; animation-delay: 4s; z-index: 3; }

/* 响应式调整 */
@media (max-width: 768px) {
    .vehicle-plane { width: 28px; height: 28px; }
    .vehicle-ship { width: 36px; height: 20px; }
    .vehicle-truck { width: 32px; height: 18px; }
    .plane-trail { width: 40px; }
    .ship-trail { width: 50px; }
    .continent-1 { width: 60px; height: 50px; }
    .continent-2 { width: 80px; height: 40px; }
    .continent-3 { width: 50px; height: 30px; }
}



/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: var(--space-4xl) 0;
}

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

.bg-dark {
    background: var(--color-primary);
    color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header.light {
    color: var(--color-white);
}

.section-header.light .section-title {
    color: var(--color-white);
}

.section-header.light .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* --- Steps --- */
.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    justify-content: center;
}

.step-card {
    flex: 1;
    max-width: 260px;
    text-align: center;
    padding: var(--space-xl);
}

.step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.step-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: var(--space-3xl);
    color: var(--color-gray-300);
}

.step-connector .icon {
    width: 20px;
    height: 20px;
}

/* --- Platforms --- */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.platform-card {
    position: relative;
    padding: var(--space-2xl) var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    text-align: center;
    transition: all var(--transition);
    display: block;
    color: var(--color-text);
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
    color: var(--color-text);
}

.platform-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--platform-color) 10%, transparent);
    color: var(--platform-color);
}

.platform-icon .icon {
    width: 28px;
    height: 28px;
}

.platform-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.platform-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.card-arrow {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    color: var(--color-gray-300);
    transition: all var(--transition);
}

.card-arrow .icon {
    width: 18px;
    height: 18px;
}

.platform-card:hover .card-arrow {
    color: var(--color-accent);
    transform: translateX(4px);
}

/* --- Countries --- */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.country-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition);
}

.country-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}

.country-flag {
    font-size: 2rem;
}

.country-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.country-time {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
}

/* --- Features (Why Us) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.15);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
}

.feature-icon .icon {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
    padding: var(--space-3xl) 0;
}

.cta-box {
    text-align: center;
    padding: var(--space-4xl);
    background: linear-gradient(135deg, var(--color-accent) 0%, #ff8a5c 100%);
    border-radius: var(--radius-xl);
    color: var(--color-white);
}

.cta-box h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-box p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-main {
    padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-icon {
    color: var(--color-accent);
}

.footer-logo .logo-icon .icon {
    width: 28px;
    height: 28px;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo .logo-text strong {
    color: var(--color-white);
    font-size: 1rem;
}

.footer-logo .logo-text small {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
}

.footer-col ul li {
    margin-bottom: var(--space-sm);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-lg) 0;
}

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

.copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

/* 隐藏 TranslatePress 浮动语言切换器 */
.trp-language-switcher-container,
.trp-floater-ls-container,
[class*="trp-floater"],
.trp-floating-switcher,
#trp-floater-ls {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* 底部语言切换按钮 - 适配深色背景 */
.footer-lang-switch {
    color: rgba(255, 255, 255, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.footer-lang-switch .icon {
    color: rgba(255, 255, 255, 0.5);
}

.footer-lang-switch:hover {
    color: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    background: rgba(255, 107, 53, 0.1);
}

.footer-links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links a:hover {
    color: var(--color-accent);
}

/* ============================================================
   PAGE TEMPLATES
   ============================================================ */
.page-header {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
    background: var(--color-bg);
    text-align: center;
}

.page-header h1 {
    margin-bottom: var(--space-md);
}

.page-header .breadcrumb {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.page-content {
    padding: var(--space-3xl) 0;
}

.page-content .container {
    max-width: 800px;
}

/* Blog List */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--color-gray-100);
    flex-shrink: 0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.blog-card-body {
    padding: var(--space-xl);
}

.blog-card-body h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.blog-card-body h3 a {
    color: var(--color-text);
}

.blog-card-body h3 a:hover {
    color: var(--color-accent);
}

.blog-card-excerpt {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.blog-card-meta {
    font-size: 0.8125rem;
    color: var(--color-gray-400);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --space-4xl: 3.5rem;
        --header-height: 64px;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-white);
        padding: var(--space-xl);
        z-index: 999;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav .nav-list li a {
        padding: var(--space-md);
        font-size: 1.125rem;
        border-bottom: 1px solid var(--color-gray-100);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        padding-top: calc(var(--header-height) + var(--space-2xl));
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }
    
    .platforms-grid,
    .countries-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .cta-box {
        padding: var(--space-2xl);
    }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }

/* WordPress specific */
.wp-block-image { margin: var(--space-xl) 0; }
.wp-block-image img { border-radius: var(--radius-md); }
.alignwide { max-width: calc(var(--container-max) + 200px); margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }

/* === Fix: Nav layout override === */
.site-header .main-nav .nav-list,
.site-header .main-nav ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 4px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-header .main-nav .nav-list li,
.site-header .main-nav ul li {
    display: inline-flex !important;
    white-space: nowrap !important;
}

/* Fix logo sizing */
.site-brand .custom-logo-link,
.site-brand .custom-logo {
    max-height: 48px;
    width: auto;
}

.site-brand .logo-link {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .site-header .main-nav.active .nav-list,
    .site-header .main-nav.active ul {
        flex-direction: column !important;
        align-items: stretch !important;
    }
}

/* ============================================================
   CONTENT TYPOGRAPHY
   ============================================================ */
.page-content .container h2,
.post-body h2 {
    font-size: 1.625rem;
    color: var(--color-primary);
    margin: var(--space-2xl) 0 var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-gray-200);
}

.page-content .container h3,
.post-body h3 {
    font-size: 1.25rem;
    margin: var(--space-xl) 0 var(--space-sm);
}

.page-content .container h4,
.post-body h4 {
    font-size: 1.125rem;
    margin: var(--space-lg) 0 var(--space-sm);
}

.page-content .container p,
.post-body p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.page-content .container ul,
.page-content .container ol,
.post-body ul,
.post-body ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}

.page-content .container li,
.post-body li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.page-content .container ul li {
    list-style: disc;
}

.page-content .container ol li {
    list-style: decimal;
}

.page-content .container a:not(.btn),
.post-body a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-content .container a:not(.btn):hover,
.post-body a:hover {
    color: var(--color-accent-dark);
}

.page-content .container blockquote,
.post-body blockquote {
    margin: var(--space-xl) 0;
    padding: var(--space-lg) var(--space-xl);
    border-left: 4px solid var(--color-accent);
    background: var(--color-gray-100);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
}

.page-content .container table,
.post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
    font-size: 0.9375rem;
}

.page-content .container th,
.post-body th {
    background: var(--color-primary);
    color: white;
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    font-weight: 600;
}

.page-content .container td,
.post-body td {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--color-gray-200);
}

.page-content .container tr:hover td,
.post-body tr:hover td {
    background: var(--color-gray-100);
}

/* Content images */
.page-content .container img,
.post-body img {
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
}

/* Highlighted box (for callouts) */
.page-content .container .wp-block-group,
.post-body .wp-block-group {
    padding: var(--space-lg);
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

/* Post navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: var(--space-xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-gray-200);
}

.post-navigation .nav-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-gray-400);
    margin-bottom: var(--space-xs);
}

.post-navigation .nav-title {
    font-weight: 600;
    color: var(--color-primary);
}

/* Pagination */
.pagination {
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-gray-200);
    font-weight: 500;
}

.pagination .page-numbers.current {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

/* TOC / internal link boxes */
.page-content .container > div[style*="border"],
.post-body > div[style*="border"] {
    border-radius: var(--radius-md) !important;
    padding: var(--space-lg) !important;
}

/* ==========================================
   运费查询页面 - Pricing Page
   ========================================== */
.pricing-header {
    text-align: center;
    padding: var(--space-2xl) 0 var(--space-xl);
}
.pricing-header h1 {
    font-size: 2.2rem;
    margin-bottom: var(--space-sm);
}
.page-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
}

/* 运费估算器 */
.pricing-calculator {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
    border: 1px solid rgba(26,58,92,0.08);
}
.pricing-calculator h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--primary);
}
.calc-desc {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}
.calc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    align-items: end;
}
.calc-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.calc-field input,
.calc-field select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d0d5dd;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: #fff;
    transition: border-color 0.2s;
}
.calc-field input:focus,
.calc-field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.12);
}
.calc-btn-wrap {
    display: flex;
    align-items: flex-end;
}
#calc-btn {
    width: 100%;
    padding: 11px 20px;
    font-size: 1rem;
    cursor: pointer;
}
.calc-result {
    margin-top: var(--space-lg);
    background: #fff;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 1px solid rgba(26,58,92,0.1);
}
.calc-result-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    text-align: center;
}
.result-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.result-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.result-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}
.result-highlight {
    color: var(--accent) !important;
    font-size: 1.5rem !important;
}
.calc-disclaimer {
    margin-top: var(--space-md);
    font-size: 0.82rem;
    color: var(--text-light);
    text-align: center;
}

/* Tab 导航 */
.pricing-tabs {
    margin-bottom: var(--space-2xl);
}
.tab-nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: var(--space-xl);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.tab-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    border: none;
    background: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: all 0.2s;
}
.tab-btn:hover {
    color: var(--primary);
    background: rgba(26,58,92,0.04);
}
.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    font-weight: 600;
}
.tab-flag {
    font-size: 1.3rem;
}
.tab-panel {
    display: none;
}
.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* 运输方式标题 */
.method-title {
    font-size: 1.15rem;
    color: var(--primary);
    margin: var(--space-xl) 0 var(--space-md);
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}
.method-title:first-child {
    margin-top: 0;
}

/* 运费表格 */
.pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid #e5e7eb;
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    min-width: 640px;
}
.pricing-table thead {
    background: var(--primary);
    color: #fff;
}
.pricing-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.pricing-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
    line-height: 1.5;
}
.pricing-table tbody tr:hover {
    background: rgba(255,107,53,0.03);
}
.pricing-table tbody tr:last-child td {
    border-bottom: none;
}
.route-name-cell strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.route-note {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
}
.transit-cell {
    white-space: nowrap;
}
.transit-days {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.05rem;
}
.transit-unit {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-left: 3px;
}
.price-cell {
    color: var(--text-secondary);
    font-size: 0.88rem;
    max-width: 280px;
}
.volume-cell {
    color: var(--text-light);
    font-size: 0.85rem;
    white-space: nowrap;
}

/* 计费说明卡片 */
.pricing-notes {
    margin-bottom: var(--space-2xl);
}
.pricing-notes h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
}
.notes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}
.note-card {
    background: #f9fafb;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 1px solid #e5e7eb;
}
.note-card .note-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,107,53,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    color: var(--accent);
}
.note-card .note-icon svg {
    width: 20px;
    height: 20px;
}
.note-card h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.note-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* CTA */
.pricing-cta {
    text-align: center;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
}
.pricing-cta h2 {
    color: #fff;
    margin-bottom: var(--space-sm);
}
.pricing-cta p {
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin: 0 auto var(--space-lg);
}
.pricing-cta .cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}
.pricing-cta .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}
.pricing-cta .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* 响应式 */
@media (max-width: 768px) {
    .calc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .calc-result-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .notes-grid {
        grid-template-columns: 1fr;
    }
    .tab-btn {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    .pricing-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 480px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }
    .calc-result-inner {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   注册页面样式
   ======================================== */
.register-page .register-benefits {
    margin-bottom: var(--space-2xl);
}
.register-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.register-page .benefit-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}
.register-page .benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.register-page .benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-accent);
}
.register-page .benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-xs);
    color: var(--color-primary);
}
.register-page .benefit-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 注册入口 */
.register-entries {
    margin-bottom: var(--space-2xl);
}
.register-entries .section-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
}
.entries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}
.entry-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.entry-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 30px rgba(26, 58, 92, 0.1);
}
.entry-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.entry-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-white);
}
.entry-card h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}
.entry-card p {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
}
.entry-card .btn-lg {
    padding: 14px 40px;
    font-size: 1.1rem;
}
.entry-note {
    margin-top: var(--space-md);
    font-size: 0.85rem;
    color: var(--color-text-light);
}
.entry-note a {
    color: var(--color-accent);
    text-decoration: underline;
}
.qr-code-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-sm);
}
.qr-code-img {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 4px;
    background: #fff;
}
.qr-hint {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* 注册流程 */
.register-steps {
    margin-bottom: var(--space-2xl);
    padding: var(--space-2xl);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
}
.register-steps .section-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    counter-reset: step;
}
.step-card {
    text-align: center;
    position: relative;
}
.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}
.step-card h3 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}
.step-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* 快捷入口 */
.register-quick-links {
    margin-bottom: var(--space-xl);
}
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}
.quick-link-card {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 500;
    transition: all var(--transition);
}
.quick-link-card:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.quick-link-card svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ========================================
   物流跟踪页面样式
   ======================================== */
.tracking-form-section {
    margin-bottom: var(--space-2xl);
}
.tracking-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-2xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.08);
    border: 1px solid var(--color-border);
}
.tracking-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tracking-card-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--color-accent);
}
.tracking-card h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}
.tracking-input-group {
    display: flex;
    gap: 0;
    max-width: 560px;
    margin: 0 auto;
}
.tracking-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--color-border);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition);
}
.tracking-input:focus {
    border-color: var(--color-accent);
}
.tracking-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 14px 28px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    white-space: nowrap;
    font-size: 1rem;
}
.tracking-btn svg {
    width: 20px;
    height: 20px;
}
.tracking-note {
    margin-top: var(--space-md);
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* 物流跟踪引导步骤 */
.tracking-guide {
    margin-bottom: var(--space-2xl);
}
.tracking-guide .section-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
}
.guide-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.guide-step {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
}
.guide-step-num {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--space-md);
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}
.guide-step h3 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}
.guide-step p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* 常用操作入口 */
.tracking-actions {
    margin-bottom: var(--space-2xl);
}
.actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.action-card {
    display: block;
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition);
}
.action-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 58, 92, 0.1);
}
.action-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    background: rgba(26, 58, 92, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.action-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
}
.action-card:hover .action-icon {
    background: rgba(255, 107, 53, 0.1);
}
.action-card:hover .action-icon svg {
    stroke: var(--color-accent);
}
.action-card h3 {
    font-size: 1.05rem;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}
.action-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* 物流跟踪 CTA */
.tracking-cta {
    margin-bottom: var(--space-xl);
}

/* 响应式 - 注册页 & 跟踪页 */
@media (max-width: 768px) {
    .register-page .benefits-grid {
        grid-template-columns: 1fr;
    }
    .entries-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .guide-steps-grid {
        grid-template-columns: 1fr;
    }
    .actions-grid {
        grid-template-columns: 1fr;
    }
    .tracking-input-group {
        flex-direction: column;
    }
    .tracking-input {
        border-right: 2px solid var(--color-border);
        border-radius: var(--radius-md);
        margin-bottom: var(--space-sm);
    }
    .tracking-input:focus {
        border-color: var(--color-accent);
    }
    .tracking-btn {
        border-radius: var(--radius-md);
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer 小程序二维码 */
.footer-qr {
    margin-top: var(--space-md);
}
.footer-qr-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-xs);
}
.footer-qr-img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    background: #fff;
    padding: 3px;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-page {
    padding-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.contact-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 0.6rem;
}

.contact-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.contact-qr {
    display: flex;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.contact-qr img {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-sm);
    border: 2px solid #f0f0f0;
    padding: 4px;
    background: #fff;
}

.contact-qr-hint {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0;
}

/* Contact info card */
.contact-card--info {
    text-align: left;
}

.contact-card--info .contact-card__icon {
    margin: 0 0 1.2rem 0;
}

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

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

.contact-info-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-value {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 500;
}

a.contact-info-value {
    color: var(--color-accent);
    text-decoration: none;
}

a.contact-info-value:hover {
    text-decoration: underline;
}

/* Map section */
.contact-map {
    margin-bottom: 4rem;
}

.contact-map h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card--info {
        text-align: left;
    }
    
    .contact-map h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-qr img {
        width: 140px;
        height: 140px;
    }
}

/* Mini-program deep link button */
.miniprogram-link {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--color-accent);
    color: var(--color-accent) !important;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s;
}

.miniprogram-link:hover {
    background: var(--color-accent);
    color: var(--color-white) !important;
}

.footer-miniprogram-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,0.4);
    transition: color 0.2s;
}

.footer-miniprogram-link:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

/* =============================================
   Platform Service Pages
   - Overview: /consolidate-shipping/
   - Individual: /taobao/, /jd/, /pdd/, etc.
   ============================================= */

/* Hero section */
.service-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d1f33 100%);
    color: var(--color-white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.service-hero .breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.service-hero .breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.service-hero .breadcrumb a:hover {
    color: var(--color-accent);
}

.service-hero .breadcrumb .sep {
    margin: 0 0.5rem;
    color: rgba(255,255,255,0.4);
}

.service-hero .breadcrumb .current {
    color: var(--color-white);
}

.service-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-hero .hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.service-hero .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section styles */
.section-padding {
    padding: 4rem 0;
}

.bg-light {
    background: #f8f9fb;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #6b7b8d;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* Platform grid (overview page) */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.platform-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--color-dark, #1a2b3c);
    border: 1px solid #e8ecf1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--platform-color, var(--color-accent));
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: var(--platform-color, var(--color-accent));
}

.platform-card__header {
    margin-bottom: 0.75rem;
}

.platform-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.platform-card__desc {
    font-size: 0.9rem;
    color: #6b7b8d;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.platform-card__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* Flow steps */
.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.flow-step {
    text-align: center;
    position: relative;
}

.flow-step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.flow-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.flow-step p {
    font-size: 0.9rem;
    color: #6b7b8d;
    line-height: 1.5;
}

/* Connector line between steps */
.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -1rem;
    width: calc(100% - 56px);
    height: 2px;
    background: #dde3ea;
    transform: translateX(50%);
}

/* Platform intro section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.intro-text p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    background: var(--color-white);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #6b7b8d;
}

/* Popular items grid */
.popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.popular-item {
    background: var(--color-white);
    border: 1px solid #e8ecf1;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.2s;
}

.popular-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(255,107,53,0.1);
}

.popular-item__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Tips */
.tips-list {
    max-width: 700px;
    margin: 2rem auto 0;
}

.tip-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    background: var(--color-white);
    border-radius: 10px;
    padding: 1.25rem;
    border: 1px solid #e8ecf1;
}

.tip-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-item p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
    padding-top: 0.25rem;
}

/* Country grid */
.country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.country-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-white);
    border: 1px solid #e8ecf1;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-decoration: none;
    transition: all 0.2s;
}

.country-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.country-flag {
    font-size: 2rem;
}

.country-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.country-link {
    font-size: 0.8rem;
    color: var(--color-accent);
    font-weight: 500;
}

/* Related platforms */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.related-card {
    display: block;
    background: var(--color-white);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    border: 1px solid #e8ecf1;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.related-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--platform-color, var(--color-accent));
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.related-card__name {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.related-card__tagline {
    font-size: 0.9rem;
    color: #6b7b8d;
}

/* Responsive */
@media (max-width: 992px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .flow-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .flow-step:not(:last-child)::after {
        display: none;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .country-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 1.8rem;
    }
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .flow-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .intro-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 3rem 0 2rem;
    }
    .service-hero h1 {
        font-size: 1.5rem;
    }
    .platform-grid {
        grid-template-columns: 1fr;
    }
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-padding {
        padding: 2.5rem 0;
    }
}

/* =============================================
   Guide Page Styles
   ============================================= */

.guide-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d1f33 100%);
    color: var(--color-white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.guide-hero__label {
    display: inline-block;
    background: rgba(255,107,53,0.2);
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.guide-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guide-hero__subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Steps */
.guide-steps__inner {
    max-width: 800px;
    margin: 0 auto;
}

.guide-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.guide-step__number {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent), #ff8f5e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
}

.guide-step__content {
    flex: 1;
    min-width: 0;
}

.guide-step__content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.guide-step__content > p {
    line-height: 1.9;
    color: #555;
    margin-bottom: 1rem;
}

/* Tips */
.guide-tip {
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1rem;
}

.guide-tip--orange {
    background: #fff7f0;
    border-left: 4px solid var(--color-accent);
    color: #666;
}

.guide-tip strong {
    color: var(--color-accent);
}

/* Platforms */
.guide-platforms {
    background: #f0f7ff;
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.guide-platforms__label {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.guide-platforms__grid {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.guide-platform-tag {
    background: var(--color-white);
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    border: 1px solid #e5e7eb;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s;
}

.guide-platform-tag:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* Features grid */
.guide-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.guide-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 8px;
}

.guide-feature__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guide-feature__text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-primary);
}

.guide-feature__text span {
    font-size: 0.85rem;
    color: #6b7b8d;
}

/* Channels table */
.guide-channels {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1rem 0;
}

.guide-channels__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.guide-channels__table th {
    text-align: left;
    padding: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    border-bottom: 2px solid #e5e7eb;
}

.guide-channels__table td {
    padding: 0.6rem 0.5rem;
    color: #4a5568;
    border-bottom: 1px solid #f0f0f0;
}

.guide-channels__table tr:last-child td {
    border-bottom: none;
}

/* FAQ */
.guide-faq .faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s;
}

.faq-item[open] {
    border-color: var(--color-accent);
}

.faq-item summary {
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--color-accent);
    font-weight: 300;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin-top: 1rem;
    color: #555;
    line-height: 1.8;
}

.faq-item a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Guide responsive */
@media (max-width: 768px) {
    .guide-hero h1 {
        font-size: 1.8rem;
    }
    .guide-step {
        flex-direction: column;
        gap: 1rem;
    }
    .guide-step__number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 16px;
    }
    .guide-features-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   About Page Styles
   ============================================= */

.about-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d1f33 100%);
    color: var(--color-white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero__subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Story */
.about-story {
    max-width: 750px;
    margin: 0 auto;
}

.about-story p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    background: var(--color-white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid #e8ecf1;
    transition: transform 0.2s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.value-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
    color: #6b7b8d;
    line-height: 1.6;
}

/* Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--color-white);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #e8ecf1;
}

.advantage-item__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #fff7f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.advantage-item p {
    font-size: 0.9rem;
    color: #6b7b8d;
    line-height: 1.5;
    margin: 0;
}

/* About responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

.about-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--color-white);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #e8ecf1;
}

.about-contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-contact-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.about-contact-item p {
    font-size: 0.9rem;
    color: #6b7b8d;
    margin: 0;
}

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