/* ===================================
   深圳创臣企业管理有限公司 - 官网样式
   设计风格：现代翡翠绿 + 深石板灰 + 金色点缀
   区别于 b-xin.com 的蓝色传统风格
   =================================== */

/* ===== 基础重置 ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #14b8a6;
    --primary-lighter: #5eead4;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --dark-lighter: #334155;
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --bg: #f8fafc;
    --bg-alt: #f1f5f9;
    --text: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul, ol {
    list-style: none;
}

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

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

/* ===== 顶部信息栏 ===== */
.top-bar {
    background: var(--dark);
    color: var(--text-lighter);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .top-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar .top-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar .top-info svg {
    width: 14px;
    height: 14px;
    fill: var(--primary-light);
}

.top-bar .top-social {
    display: flex;
    gap: 12px;
}

.top-bar .top-social a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-lighter);
}

.top-bar .top-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== 导航栏 ===== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}

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

.nav-logo .logo-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.nav-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo .logo-text .cn {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
}

.nav-logo .logo-text .en {
    font-size: 11px;
    color: var(--text-lighter);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    color: var(--primary);
    background: rgba(13, 148, 136, 0.06);
}

.nav-menu > li > a .arrow {
    font-size: 10px;
    transition: var(--transition);
}

.nav-menu > li:hover > a .arrow {
    transform: rotate(180deg);
}

/* 下拉菜单 */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 680px;
    max-width: 800px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-menu > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--text-light);
    border-radius: var(--radius-sm);
}

.dropdown a:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
}

.nav-phone svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.btn-consult {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.btn-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.35);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
}

/* ===== Hero Banner ===== */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(13, 148, 136, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* 首页 Hero 左侧分类菜单 */
.hero-with-menu {
    padding: 20px 0;
}

.hero-with-menu .hero-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: stretch;
}

.hero-category-menu {
    background: rgba(15, 23, 42, 0.85);
    border-radius: var(--radius);
    overflow: visible;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    height: 520px;
    display: flex;
    flex-direction: column;
}

.menu-hd {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.menu-hd .menu-icon {
    font-size: 20px;
    line-height: 1;
}

.menu-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    position: relative;
}

.menu-item {
    position: static;
    flex: 1;
    display: flex;
    align-items: center;
}

.menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 16px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    transition: var(--transition);
    height: 100%;
}

.menu-link:hover,
.menu-item:hover .menu-link {
    background: var(--primary);
    color: var(--white);
}

.menu-title {
    font-weight: 500;
}

.menu-arrow {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.menu-item:hover .menu-arrow {
    color: var(--white);
    transform: translateX(3px);
}

.mega-panel {
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 720px;
    max-height: 520px;
    overflow-y: auto;
    background: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow-xl);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.menu-item:hover .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mega-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mega-title {
    grid-column: 1 / -1;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 4px;
}

.mega-title a {
    color: var(--dark);
}

.mega-title a:hover {
    color: var(--primary);
}

.mega-group h5 {
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 3px solid var(--primary);
}

.mega-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mega-links a {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-light);
    transition: var(--transition);
}

.mega-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.mega-brand {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(13,148,136,0.08), rgba(245,158,11,0.06));
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 4px;
}

.mega-brand strong {
    color: var(--primary-dark);
    font-size: 15px;
}

.mega-brand p {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 6px;
    line-height: 1.6;
}

.hero-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(13, 148, 136, 0.15);
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 50px;
    font-size: 13px;
    color: var(--primary-lighter);
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary-lighter), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(13, 148, 136, 0.45);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--primary-light);
    background: rgba(13, 148, 136, 0.1);
}

/* Hero 右侧卡片 */
.hero-visual {
    position: relative;
}

.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: var(--transition);
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.hero-stat-card .icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.hero-stat-card .icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.hero-stat-card .num {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat-card .num span {
    font-size: 18px;
    color: var(--primary-lighter);
}

.hero-stat-card .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
}

.hero-stat-card.gold .icon {
    background: linear-gradient(135deg, var(--gold), #d97706);
}

.hero-stat-card.gold .num span {
    color: var(--gold-light);
}

/* ===== 通用 Section ===== */
.section {
    padding: 80px 0;
}

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

.section-header .subtitle {
    display: inline-block;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    padding: 0 40px;
}

.section-header .subtitle::before,
.section-header .subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--primary);
    opacity: 0.3;
}

.section-header .subtitle::before { left: 0; }
.section-header .subtitle::after { right: 0; }

.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== 服务网格 ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.service-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.service-card .card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
    transition: var(--transition);
}

.service-card:hover .card-icon svg {
    fill: var(--white);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-card .card-tags a {
    font-size: 12px;
    padding: 4px 12px;
    background: var(--bg-alt);
    color: var(--text-light);
    border-radius: 50px;
    transition: var(--transition);
}

.service-card .card-tags a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== 香港公司注册区块 ===== */
.hk-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hk-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hk-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hk-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hk-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hk-advantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hk-advantages .adv-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.hk-advantages .adv-item .check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--white);
    margin-top: 2px;
}

.hk-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.hk-info-card h3 {
    font-size: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hk-info-card h3 .badge {
    font-size: 11px;
    padding: 3px 10px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50px;
    font-weight: 600;
}

.info-row {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    color: rgba(255, 255, 255, 0.5);
    min-width: 120px;
}

.info-row .value {
    color: var(--white);
    font-weight: 500;
}

/* ===== 海外公司注册列表 ===== */
.overseas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.overseas-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.overseas-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.overseas-card .card-banner {
    height: 140px;
    background: linear-gradient(135deg, var(--primary-dark), var(--dark-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.overseas-card .card-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.overseas-card .card-banner .country-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    z-index: 2;
}

.overseas-card .card-body {
    padding: 24px;
}

.overseas-card .card-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.overseas-card .card-body p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.overseas-card .card-link {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.overseas-card .card-link:hover {
    gap: 8px;
    color: var(--primary-dark);
}

/* 服务卡片变体颜色 */
.overseas-card:nth-child(3n+1) .card-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--dark-light));
}
.overseas-card:nth-child(3n+2) .card-banner {
    background: linear-gradient(135deg, #1a5632, var(--dark-light));
}
.overseas-card:nth-child(3n+3) .card-banner {
    background: linear-gradient(135deg, #92400e, var(--dark-light));
}

/* ===== 公司秘书服务 ===== */
.secretary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.secretary-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    border: 1px solid var(--border);
}

.secretary-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-lighter);
}

.secretary-card .num {
    font-size: 48px;
    font-weight: 800;
    color: var(--bg-alt);
    line-height: 1;
    min-width: 60px;
    transition: var(--transition);
}

.secretary-card:hover .num {
    color: var(--primary-lighter);
}

.secretary-card .content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.secretary-card .content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== 银行开户卡片 ===== */
.bank-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bank-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.bank-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.bank-card .bank-header {
    padding: 28px 24px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    position: relative;
}

.bank-card:nth-child(3n+2) .bank-header {
    background: linear-gradient(135deg, #1a5632, #14532d);
}

.bank-card:nth-child(3n+3) .bank-header {
    background: linear-gradient(135deg, #92400e, #78350f);
}

.bank-card .bank-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.bank-card .bank-header .bank-tag {
    font-size: 12px;
    opacity: 0.8;
}

.bank-card .bank-body {
    padding: 24px;
}

.bank-card .bank-body p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bank-card .bank-link {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bank-card .bank-link:hover {
    gap: 8px;
}

/* ===== 跨境电商 ===== */
.crossborder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cb-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    text-align: center;
}

.cb-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.cb-card .cb-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cb-card:hover .cb-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.cb-card .cb-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
    transition: var(--transition);
}

.cb-card:hover .cb-icon svg {
    fill: var(--white);
}

.cb-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.cb-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.cb-card .cb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.cb-card .cb-tags span {
    font-size: 12px;
    padding: 3px 10px;
    background: var(--bg-alt);
    color: var(--text-light);
    border-radius: 50px;
}

/* ===== 新闻资讯 ===== */
.news-section {
    background: var(--bg-alt);
}

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

.news-featured {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-featured:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.news-featured .news-img {
    height: 260px;
    background: linear-gradient(135deg, var(--primary-dark), var(--dark-light));
    position: relative;
    overflow: hidden;
}

.news-featured .news-img::after {
    content: '创臣资讯';
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white);
    font-size: 14px;
    padding: 4px 12px;
    background: rgba(13, 148, 136, 0.8);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.news-featured .news-body {
    padding: 28px;
}

.news-featured .news-body h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-featured .news-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-featured .news-date {
    font-size: 13px;
    color: var(--text-lighter);
}

.news-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.news-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item .news-date {
    font-size: 12px;
    color: var(--text-lighter);
}

/* ===== 数据统计 ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--dark));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-item .stat-num {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-lighter), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item .stat-num span {
    font-size: 24px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== 服务网络 ===== */
.network-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.network-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.network-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.network-card .net-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-card .net-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.network-card .net-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.network-card .net-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.network-card .net-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== 关于我们页面 ===== */
.page-banner {
    height: 300px;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(13, 148, 136, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
}

.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.page-banner .breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.page-banner .breadcrumb a {
    color: var(--primary-lighter);
}

.page-banner .breadcrumb a:hover {
    color: var(--white);
}

/* 关于我们内容 */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro .about-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-intro .about-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-intro .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.about-feature .feat-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.about-feature .feat-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.about-feature .feat-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.about-visual {
    position: relative;
}

.about-visual .visual-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--dark));
    border-radius: var(--radius-lg);
    padding: 48px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-visual .visual-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.about-visual .visual-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.about-visual .visual-card .sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
}

.about-visual .visual-card .mission {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
}

/* 发展历程 */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-lighter), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
}

.timeline-item .tl-year {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    background: var(--primary);
    padding: 10px 4px;
    border-radius: 50px;
    position: relative;
    z-index: 3;
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.25);
}

.timeline-item .tl-year::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: -1;
}

.timeline-item .tl-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.timeline-item .tl-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-item .tl-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.timeline-item:nth-child(odd) .tl-content {
    grid-column: 1;
}

.timeline-item:nth-child(odd) .tl-spacer {
    grid-column: 3;
}

.timeline-item:nth-child(even) .tl-content {
    grid-column: 3;
}

.timeline-item:nth-child(even) .tl-spacer {
    grid-column: 1;
}

/* ===== 联系我们 ===== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.contact-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-detail .cd-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail .cd-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
}

.contact-detail .cd-text h5 {
    font-size: 14px;
    color: var(--text-lighter);
    margin-bottom: 4px;
}

.contact-detail .cd-text p {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.35);
}

/* 办公地点 */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.office-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.office-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-lighter);
}

.office-card .office-tag {
    display: inline-block;
    font-size: 12px;
    padding: 4px 12px;
    background: rgba(13, 148, 136, 0.08);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 16px;
}

.office-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.office-card .office-row {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.office-card .office-row .or-label {
    min-width: 50px;
    color: var(--text-lighter);
}

/* ===== 页脚 ===== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .footer-logo .logo-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
}

.footer-brand .footer-logo .logo-text .cn {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.footer-brand .footer-logo .logo-text .en {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-light);
    min-width: 16px;
}

.footer-col h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-lighter);
    padding-left: 4px;
}

.footer-office {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.5;
}

.footer-office strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.footer-office span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom .fb-copyright .fb-icp a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-bottom .fb-copyright .fb-icp a:hover {
    color: var(--primary-lighter);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom .fb-links {
    display: flex;
    gap: 20px;
}

.footer-bottom .fb-links a:hover {
    color: var(--primary-lighter);
}

/* ===== 悬浮咨询 ===== */
.float-contact {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.float-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.float-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    transition: var(--transition);
}

.float-btn:hover svg {
    fill: var(--white);
}

.float-btn .tooltip {
    position: absolute;
    right: 100%;
    margin-right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.float-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== 回到顶部 ===== */
.back-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
    font-size: 20px;
}

.back-top.show {
    opacity: 1;
    visibility: visible;
}

.back-top:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

/* ===== 通用辅助 ===== */
.section-dark {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

.section-dark .section-header h2,
.section-dark h2 {
    color: var(--white);
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .subtitle {
    color: var(--primary-lighter);
}

.section-dark .subtitle::before,
.section-dark .subtitle::after {
    background: var(--primary-lighter);
}

.subtitle.light {
    color: var(--primary-lighter);
}

.subtitle.light::before,
.subtitle.light::after {
    background: var(--primary-lighter);
}

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

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

.mt30 {
    margin-top: 30px;
}

/* ===== 首页：注册香港公司区块 ===== */
.hk-register {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.hk-left .subtitle.light {
    color: var(--primary-lighter);
}

.hk-left h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.hk-left .lead {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.hk-left .hk-section {
    background: none;
    padding: 0;
    margin-bottom: 32px;
    position: relative;
    overflow: visible;
}

.hk-left .hk-section::before {
    display: none;
}

.hk-left .hk-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-lighter);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hk-left .hk-section ul {
    list-style: none;
}

.hk-left .hk-section ul li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.hk-left .hk-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-size: 13px;
}

.hk-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hk-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.hk-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.time-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.time-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.time-item:hover {
    background: rgba(13, 148, 136, 0.1);
    border-color: rgba(13, 148, 136, 0.2);
}

.time-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-lighter);
    min-width: 60px;
    text-align: center;
}

.time-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.time-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.hk-mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mini-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
    display: block;
}

.mini-card:hover {
    background: rgba(13, 148, 136, 0.08);
    border-color: rgba(13, 148, 136, 0.2);
    transform: translateY(-3px);
}

.mini-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-lighter);
    margin-bottom: 8px;
}

.mini-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ===== 首页：公司秘书服务（覆盖不匹配的样式） ===== */
.secretary-card .sec-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.secretary-card .sec-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--primary);
    transition: var(--transition);
}

.secretary-card:hover .sec-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.secretary-card:hover .sec-icon svg {
    fill: var(--white);
}

.secretary-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.secretary-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===== 首页：银行开户服务（覆盖不匹配的样式） ===== */
.bank-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.bank-card:nth-child(3n+2) h3 {
    border-bottom-color: #1a5632;
}

.bank-card:nth-child(3n+3) h3 {
    border-bottom-color: #92400e;
}

.bank-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.bank-card > a {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.bank-card > a:hover {
    gap: 8px;
}

/* ===== 首页：跨境电商服务 ===== */
.cross-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cross-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    text-align: center;
}

.cross-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.cross-card .cross-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    transition: var(--transition);
}

.cross-card:hover .cross-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

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

.cross-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== 首页：全球资讯热点 ===== */
.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.news-card .news-img {
    height: 170px;
    overflow: hidden;
    background: var(--bg-alt);
}

.news-card .news-img svg {
    width: 100%;
    height: 100%;
}

.news-card .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.news-card .news-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card .news-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.5;
}

.news-card .news-body h3 a {
    color: inherit;
}

.news-card .news-body h3 a:hover {
    color: var(--primary);
}

/* 首页资讯卡片：标题/摘要截断，保持卡片等高 */
.news-card .news-body h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

.news-card .news-body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .news-body p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
    flex: 1;
}

.news-card .news-meta {
    font-size: 13px;
    color: var(--text-lighter);
}

/* ===== 首页：创臣服务网络（覆盖不匹配的样式） ===== */
.network-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.network-card .network-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1;
}

.network-card ul {
    text-align: left;
    margin-top: 12px;
}

.network-card ul li {
    font-size: 13px;
    color: var(--text-light);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.network-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.network-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== 产品页面：通用组件 ===== */
.banner-sub-text {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    letter-spacing: 2px;
    margin-top: 8px;
}

.btn-primary-lg {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

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

.cta-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

/* ===== 全球公司注册页面 ===== */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.adv-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.adv-card:hover {
    background: rgba(13, 148, 136, 0.15);
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.adv-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-lighter);
    opacity: 0.4;
    line-height: 1;
}

.adv-text {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.req-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.req-row {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.req-row:last-child {
    border-bottom: none;
}

.req-row:hover {
    background: var(--bg-alt);
}

.req-label {
    width: 140px;
    font-weight: 700;
    color: var(--dark);
    font-size: 15px;
    flex-shrink: 0;
}

.req-value {
    color: var(--text-light);
    font-size: 15px;
}

/* ===== 银行开户页面 ===== */
.stats-bar-section {
    background: var(--dark);
    padding: 40px 0;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

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

.stat-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-lighter);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

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

.bank-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.bank-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-lighter);
}

.bank-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.bank-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.bank-card:hover .bank-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.bank-card:hover .bank-icon svg {
    fill: var(--white);
}

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

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

.ps-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.process-step h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

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

.tip-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 3px solid var(--primary);
}

.tip-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.tip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--primary);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}

.tip-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.tip-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== 公司秘书页面 ===== */
.sec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sec-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.sec-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-lighter);
}

.sec-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.sec-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.sec-card:hover .sec-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.sec-card:hover .sec-icon svg {
    fill: var(--white);
}

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

.sec-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.sec-link {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.sec-link:hover {
    gap: 8px;
}

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

.warn-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    text-align: center;
}

.warn-card:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-4px);
}

.warn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.15);
    color: #f87171;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.warn-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.warn-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.penalty-table {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.penalty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.penalty-row:last-child {
    border-bottom: none;
    background: #fef2f2;
}

.penalty-row:last-child .pen-amount {
    color: #dc2626;
}

.penalty-row:hover {
    background: var(--bg-alt);
}

.pen-period {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.pen-amount {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}

/* ===== 会计财税页面 ===== */
.conseq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.conseq-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.conseq-card:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-4px);
}

.conseq-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #f87171;
    margin-bottom: 12px;
    line-height: 1;
}

.conseq-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.tax-process {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}

.tax-step {
    flex: 1;
    min-width: 160px;
    max-width: 180px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.tax-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.tax-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 14px;
}

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

.tax-step p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.tax-step-arrow {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-lighter);
    font-size: 20px;
    font-weight: 800;
    z-index: 1;
}

.tax-step:last-child .tax-step-arrow {
    display: none;
}

/* ===== 全球商标注册页面 ===== */
.tm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tm-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.tm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-lighter);
}

.tm-header {
    padding: 24px 20px 16px;
    text-align: center;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
}

.tm-country {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--primary-lighter);
    font-weight: 600;
    margin-bottom: 6px;
}

.tm-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
}

.tm-info {
    padding: 20px;
}

.tm-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
}

.tm-info-item:last-child {
    border-bottom: none;
}

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

.tm-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.tm-validity {
    color: var(--primary);
}

.tm-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--bg-alt);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.tm-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

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

.tm-adv-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
}

.tm-adv-card:hover {
    background: rgba(13, 148, 136, 0.15);
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.tm-adv-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-lighter);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}

.tm-adv-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.tm-adv-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ===== 跨境电商页面 ===== */
.cb-adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cb-adv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    text-align: center;
}

.cb-adv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-lighter);
}

.cb-adv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.03));
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    transition: var(--transition);
}

.cb-adv-card:hover .cb-adv-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.cb-adv-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.cb-adv-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.cb-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.cb-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-lighter);
}

.cb-service-header {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--primary);
}

.cb-service-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.cb-service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.cb-service-link {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.cb-service-link:hover {
    gap: 8px;
}

/* ===== 资讯列表页 ===== */
.news-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.news-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.news-search-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.news-search-input {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    width: 220px;
    transition: var(--transition);
}

.news-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 143, 0.1);
}

.news-search-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.news-search-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.news-filter a {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    background: var(--white);
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.news-filter a:hover,
.news-filter a.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary);
}

.news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.news-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-lighter);
}

.news-item-cover {
    flex-shrink: 0;
    width: 240px;
    overflow: hidden;
    background: var(--bg-alt);
}

.news-item-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-item:hover .news-item-cover img {
    transform: scale(1.05);
}

.news-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 32px;
    min-width: 0;
}

.news-item-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.news-item-cat {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

.news-item-date {
    font-size: 13px;
    color: var(--text-lighter);
}

.news-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.5;
}

.news-item h3 a {
    color: inherit;
}

.news-item h3 a:hover {
    color: var(--primary);
}

.news-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.news-item-link {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.news-item-link:hover {
    gap: 8px;
}

.news-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-lighter);
    font-size: 16px;
}

/* ===== 资讯详情页 ===== */
.article-detail {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
}

.article-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.article-header h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.article-cat {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary);
    font-weight: 600;
}

.article-summary {
    padding: 20px 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* News detail cover gallery */
.article-cover-gallery {
    display: grid;
    gap: 8px;
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
}
.article-cover-gallery.article-cover-1 { grid-template-columns: 1fr; }
.article-cover-gallery.article-cover-1 .article-cover-item { height: 380px; }
.article-cover-gallery.article-cover-2 { grid-template-columns: 1fr 1fr; }
.article-cover-gallery.article-cover-2 .article-cover-item { height: 260px; }
.article-cover-gallery.article-cover-3 { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; }
.article-cover-gallery.article-cover-3 .article-cover-item:first-child { grid-row: span 2; min-height: 340px; }
.article-cover-gallery.article-cover-3 .article-cover-item:not(:first-child) { height: 166px; }
.article-cover-gallery.article-cover-4 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.article-cover-gallery.article-cover-4 .article-cover-item { height: 180px; }
.article-cover-gallery.article-cover-5,
.article-cover-gallery.article-cover-6,
.article-cover-gallery.article-cover-7,
.article-cover-gallery.article-cover-8 { grid-template-columns: repeat(3, 1fr); }
.article-cover-gallery.article-cover-5 .article-cover-item,
.article-cover-gallery.article-cover-6 .article-cover-item,
.article-cover-gallery.article-cover-7 .article-cover-item,
.article-cover-gallery.article-cover-8 .article-cover-item { height: 140px; }
.article-cover-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); background: var(--bg-alt); }
.article-cover-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.article-cover-item:hover img { transform: scale(1.06); }
@media (max-width: 768px) {
    .article-cover-gallery.article-cover-2,
    .article-cover-gallery.article-cover-4,
    .article-cover-gallery.article-cover-5,
    .article-cover-gallery.article-cover-6,
    .article-cover-gallery.article-cover-7,
    .article-cover-gallery.article-cover-8 { grid-template-columns: 1fr 1fr; }
    .article-cover-gallery.article-cover-1 .article-cover-item { height: 220px; }
    .article-cover-gallery.article-cover-2 .article-cover-item,
    .article-cover-gallery.article-cover-4 .article-cover-item { height: 150px; }
    .article-cover-gallery.article-cover-3 .article-cover-item:first-child { min-height: 200px; }
    .article-cover-gallery.article-cover-3 .article-cover-item:not(:first-child) { height: 98px; }
    .article-cover-gallery.article-cover-5 .article-cover-item,
    .article-cover-gallery.article-cover-6 .article-cover-item,
    .article-cover-gallery.article-cover-7 .article-cover-item,
    .article-cover-gallery.article-cover-8 .article-cover-item { height: 100px; }
}

.article-content {
    font-size: 16px;
    color: var(--text);
    line-height: 2;
}

.article-content p {
    margin-bottom: 16px;
}

.article-content h2,
.article-content h3 {
    margin: 24px 0 12px;
    color: var(--dark);
}

.article-related {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.article-related h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    transition: var(--transition);
}

.related-item:hover {
    background: rgba(13, 148, 136, 0.05);
    transform: translateX(4px);
}

.related-date {
    font-size: 13px;
    color: var(--text-lighter);
    flex-shrink: 0;
    white-space: nowrap;
}

.related-title {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--bg-alt);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-back:hover {
    background: var(--border);
}

.btn-consult-article {
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-consult-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    .hero-with-menu .hero-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .hero-category-menu {
        height: auto;
        max-height: 420px;
    }
    .mega-panel {
        display: none;
    }
    .hero-main {
        grid-template-columns: 1fr;
        padding: 20px 0;
    }
    .hero-visual {
        display: none;
    }
    .services-grid,
    .overseas-grid,
    .bank-grid,
    .crossborder-grid,
    .cross-grid,
    .sec-grid,
    .cb-service-grid,
    .cb-adv-grid,
    .warn-grid,
    .conseq-grid,
    .tips-grid,
    .tm-adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .adv-grid,
    .tm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-bar {
        grid-template-columns: repeat(3, 1fr);
    }
    .stats-bar .stat-item:nth-child(n+4) {
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .tax-process {
        gap: 16px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .network-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-list {
        grid-template-columns: 1fr;
    }
    .about-intro,
    .contact-section,
    .hk-section .container,
    .hk-register {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar .top-info {
        display: none;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-item {
        flex-direction: column;
    }
    .news-item-cover {
        width: 100%;
        height: 180px;
    }
    .news-item-body {
        padding: 20px;
    }
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-cta .nav-phone {
        display: none;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .section {
        padding: 56px 0;
    }
    .section-header h2 {
        font-size: 26px;
    }
    .services-grid,
    .overseas-grid,
    .bank-grid,
    .crossborder-grid,
    .cross-grid,
    .secretary-grid,
    .network-grid,
    .offices-grid,
    .hk-mini-cards,
    .adv-grid,
    .tm-grid,
    .sec-grid,
    .cb-service-grid,
    .cb-adv-grid,
    .warn-grid,
    .conseq-grid,
    .tips-grid,
    .tm-adv-grid,
    .stats-bar {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .tax-process {
        flex-direction: column;
        align-items: center;
    }
    .tax-step {
        max-width: 100%;
        width: 100%;
    }
    .tax-step-arrow {
        display: none;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 16px;
    }
    .req-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .req-label {
        width: auto;
    }
    .penalty-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .cta-title {
        font-size: 24px;
    }
    .hk-advantages {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        grid-template-columns: 40px 1fr;
    }
    .timeline-item:nth-child(odd) .tl-content,
    .timeline-item:nth-child(even) .tl-content {
        grid-column: 2;
    }
    .timeline-item .tl-spacer {
        display: none;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .dropdown {
        display: none;
    }
}

/* ===== 动画 ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* 滚动揭示 */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   移动端增强适配（追加于文件末尾，覆盖基础样式）
   ========================================== */

@media (max-width: 768px) {
    /* 顶部信息栏整体隐藏 */
    .top-bar { display: none; }

    /* 导航栏紧凑化 */
    .navbar .container { padding-top: 10px; padding-bottom: 10px; }
    .nav-logo .logo-icon { width: 38px; height: 38px; font-size: 19px; }
    .nav-logo .logo-text .cn { font-size: 15px; }
    .nav-logo .logo-text .en { font-size: 8px; letter-spacing: 0.5px; }
    .btn-consult { display: none; }
    .mobile-toggle { font-size: 26px; padding: 4px; }

    /* 汉堡菜单展开：右侧滑出面板 */
    .nav-menu.show {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(300px, 84vw);
        background: var(--white);
        padding: 72px 16px 24px;
        box-shadow: -12px 0 40px rgba(15, 23, 42, 0.18);
        z-index: 1300;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        animation: mobileMenuIn 0.28s ease;
    }
    @keyframes mobileMenuIn {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
    }
    .nav-menu.show > li {
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.show > li > a {
        padding: 13px 8px;
        font-size: 15px;
        font-weight: 600;
        justify-content: space-between;
        border-radius: 6px;
    }
    .nav-menu.show > li.active > a { color: var(--primary); }
    .nav-menu.show > li > a .arrow { transition: transform 0.3s; }

    /* 移动端子菜单：静态展开 */
    .nav-menu.show .dropdown {
        display: none;
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: 0;
        width: 100%;
        box-shadow: none;
        background: var(--bg-alt);
        padding: 10px;
        grid-template-columns: 1fr;
        gap: 2px;
        border-radius: 8px;
        margin: 0 0 10px;
    }
    .nav-menu.show li.dropdown-open > .dropdown { display: grid; }
    .nav-menu.show li.dropdown-open > a { color: var(--primary); }
    .nav-menu.show li.dropdown-open > a .arrow { transform: rotate(180deg); }
    .nav-menu.show .dropdown a {
        padding: 9px 10px;
        font-size: 14px;
        color: var(--text-light);
        border-radius: 6px;
    }
    .nav-menu.show .dropdown a:hover { background: var(--white); color: var(--primary); }

    /* 移动端菜单遮罩 */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.5);
        z-index: 1200;
        opacity: 0;
        transition: opacity 0.3s;
    }
    .nav-overlay.show {
        display: block;
        opacity: 1;
    }

    /* 首页 hero 左侧分类菜单：手机上隐藏 */
    .hero-category-menu { display: none; }

    /* hero 内容适配 */
    .hero { min-height: auto; padding: 48px 0 40px; }
    .hero-content .hero-badge { font-size: 12px; padding: 5px 12px; }
    .hero-content h1 { font-size: 26px; line-height: 1.35; }
    .hero-actions { flex-wrap: wrap; gap: 10px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { padding: 10px 18px; font-size: 14px; }

    /* 区块间距与标题 */
    .section { padding: 48px 0; }
    .section-header h2 { font-size: 24px; }
    .section-header p { font-size: 14px; }

    /* 卡片内边距 */
    .service-card,
    .overseas-card,
    .bank-card,
    .secretary-card,
    .news-card,
    .stat-item,
    .crossborder-card { padding: 20px 16px; }

    /* 悬浮按钮适配 */
    .float-contact { right: 12px; bottom: 76px; gap: 10px; }
    .float-btn { width: 44px; height: 44px; }
    .float-btn svg { width: 20px; height: 20px; }
    .float-btn .tooltip { display: none; }
    .back-top { right: 12px; bottom: 18px; width: 42px; height: 42px; font-size: 18px; }

    /* 联系我们页面 */
    .contact-form { padding: 20px 16px; }
    .contact-info-card { padding: 20px 16px; }

    /* 子页面横幅 */
    .page-banner { height: 200px; }
    .page-banner h1 { font-size: 26px; }
    .page-banner .breadcrumb { font-size: 13px; }

    /* 英文副标题防止溢出 */
    .section-header .subtitle { padding: 0 28px; letter-spacing: 1px; font-size: 12px; word-break: break-word; }
    .section-header .subtitle::before,
    .section-header .subtitle::after { width: 20px; }
}

/* 超小屏 */
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .hero-content h1 { font-size: 23px; }
    .section-header h2 { font-size: 22px; }
    .footer-grid { gap: 24px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { width: 100%; justify-content: center; }
    .nav-phone { display: none; }
}

/* ==================== 分页样式 ==================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    padding: 20px 0;
    flex-wrap: wrap;
}
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #fff;
}
.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(26, 95, 143, 0.05);
}
.pagination .page-current {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    font-weight: 600;
}
.pagination .page-info {
    border: none;
    background: transparent;
    color: #999;
    font-size: 13px;
    padding: 0 8px;
}
.pagination .page-first,
.pagination .page-last,
.pagination .page-prev,
.pagination .page-next {
    padding: 0 16px;
}

/* 新闻列表空状态 */
.news-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}
