/* 统一内页横幅 (Inner Page Hero) */
.inner-page-hero {
    height: 40vh !important;
    min-height: 270px !important;
    max-height: 380px !important;
    position: relative !important;
}

.inner-page-hero .overlay-color {
    background: linear-gradient(135deg, rgba(8, 24, 46, 0.86) 0%, rgba(9, 44, 82, 0.75) 100%) !important;
    opacity: 1 !important;
}

.inner-page-hero .hero-text-area .hero-title {
    font-size: clamp(2rem, 3.8vw, 3rem) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: 0.02em !important;
    line-height: 1.25 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45) !important;
    margin-bottom: 12px !important;
}

.inner-page-hero .hero-text-area .breadcrumb {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.inner-page-hero .hero-text-area .breadcrumb-item {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.72) !important;
    font-weight: 500 !important;
}

.inner-page-hero .hero-text-area .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45) !important;
    padding-right: 6px !important;
}

.inner-page-hero .hero-text-area .breadcrumb-link {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.inner-page-hero .hero-text-area .breadcrumb-link:hover {
    color: #38bdf8 !important;
}

.inner-page-hero .hero-text-area .breadcrumb-item.active {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.sp-page {
    --sp-ink: #1a2744;
    --sp-steel: #5c6b7c;
    --sp-paper: #ffffff;
    --sp-mist: #f3f7fb;
    --sp-line: #dce6ef;
    --sp-accent: #08adef;
    --sp-deep: #066bb3;
    --sp-free: #0f9d58;
    --sp-paid: #c45c26;
    color: var(--sp-ink);
}

.sp-page .sp-wrap {
    padding: 28px 0 72px;
}

.sp-subnav {
    margin: 0 0 28px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.sp-subnav ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 6px 0 10px;
    min-width: min-content;
}

.sp-subnav a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--sp-line);
    background: var(--sp-paper);
    color: var(--sp-steel);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.sp-subnav a:hover,
.sp-subnav a.is-current {
    color: var(--sp-deep);
    border-color: #b9dcf0;
    background: #e8f6fd;
}

.sp-subnav a.is-current {
    box-shadow: 0 0 0 3px rgba(8, 173, 239, .12);
}

.sp-lead {
    max-width: 760px;
    margin: 0 0 28px;
    color: var(--sp-steel);
    font-size: 15px;
    line-height: 1.85;
}

.sp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 768px) {
    .sp-grid.cols-2 { grid-template-columns: 1fr 1fr; }
    .sp-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}

@media (min-width: 992px) {
    .sp-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.sp-card {
    display: block;
    background: var(--sp-paper);
    border: 1px solid var(--sp-line);
    border-radius: 16px;
    padding: 26px 24px 22px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 24px rgba(26, 39, 68, .04);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

a.sp-card:hover {
    transform: translateY(-3px);
    border-color: #c5d7e6;
    box-shadow: 0 16px 32px rgba(26, 39, 68, .08);
    color: inherit;
}

.sp-card-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 14px;
}

.sp-card h3,
.sp-h {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 800;
    color: var(--sp-ink);
}

.sp-card p,
.sp-copy {
    margin: 0;
    color: var(--sp-steel);
    font-size: 14px;
    line-height: 1.75;
}

.sp-era {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 10px;
    border-radius: 999px;
    background: #e8f6fd;
    color: var(--sp-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
}

.sp-era.legacy {
    background: #f3f5f8;
    color: var(--sp-steel);
}

.sp-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--sp-accent);
    font-size: 14px;
    font-weight: 700;
}

.sp-section {
    margin-top: 42px;
}

.sp-section > h2 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 800;
}

.sp-section > h3 {
    margin: 28px 0 10px;
    font-size: 18px;
    font-weight: 800;
}

.sp-note {
    background: #fff8e8;
    border: 1px solid #f0ddb0;
    border-radius: 12px;
    padding: 14px 16px;
    color: #7a5a16;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sp-list {
    margin: 0 0 18px;
    padding-left: 18px;
    color: var(--sp-steel);
    line-height: 1.85;
}

.sp-list li + li {
    margin-top: 6px;
}

.sp-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--sp-line);
    border-radius: 12px;
    background: var(--sp-paper);
    margin: 0 0 22px;
}

.sp-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 13px;
}

.sp-table th,
.sp-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--sp-line);
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
}

.sp-table thead th {
    background: var(--sp-mist);
    color: var(--sp-deep);
    font-weight: 700;
    white-space: nowrap;
}

.sp-table tbody th {
    font-weight: 700;
    color: var(--sp-ink);
    background: #fafcfe;
    white-space: nowrap;
}

.sp-table tr:last-child th,
.sp-table tr:last-child td {
    border-bottom: 0;
}

.sp-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.sp-badge.free {
    background: #e7f7ee;
    color: var(--sp-free);
}

.sp-badge.paid {
    background: #fbeee6;
    color: var(--sp-paid);
}

.sp-steps {
    display: grid;
    gap: 14px;
}

@media (min-width: 768px) {
    .sp-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sp-step {
    background: var(--sp-paper);
    border: 1px solid var(--sp-line);
    border-radius: 14px;
    padding: 18px 18px 16px;
}

.sp-step .sp-badge {
    margin-bottom: 10px;
}

.sp-step h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.sp-offices {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .sp-offices {
        grid-template-columns: 220px 1fr;
        align-items: start;
    }
}

.sp-office-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

@media (min-width: 768px) {
    .sp-office-list {
        flex-direction: column;
        overflow: visible;
    }
}

.sp-office-btn {
    flex: none;
    border: 1px solid var(--sp-line);
    background: var(--sp-paper);
    color: var(--sp-ink);
    border-radius: 10px;
    padding: 10px 14px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.sp-office-btn.is-active,
.sp-office-btn:hover {
    background: var(--sp-accent);
    border-color: var(--sp-accent);
    color: #fff;
}

.sp-office-panel {
    background: var(--sp-paper);
    border: 1px solid var(--sp-line);
    border-radius: 14px;
    padding: 22px 24px;
    min-width: 0;
}

.sp-office-panel dl {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 8px 12px;
    margin: 0;
}

.sp-office-panel dt {
    color: var(--sp-accent);
    font-weight: 700;
}

.sp-office-panel dd {
    margin: 0;
    color: var(--sp-ink);
    word-break: break-all;
}

.sp-office-panel .sp-office-desc {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--sp-line);
    color: var(--sp-steel);
    font-size: 14px;
    line-height: 1.75;
}

.sp-qr {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border: 1px solid var(--sp-line);
    border-radius: 8px;
    background: #fff;
}

.sp-figure {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 12px auto 24px;
    background: #fff;
    border: 1px solid var(--sp-line);
    border-radius: 12px;
    padding: 12px;
}

.sp-cta {
    margin-top: 48px;
    padding: 36px 24px;
    border-radius: 18px;
    background: linear-gradient(140deg, #113f8a, #08adef);
    color: #fff;
    text-align: center;
}

.sp-cta h2 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #fff;
}

.sp-cta p {
    margin: 0 0 18px;
    opacity: .9;
}

.sp-cta-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.sp-cta-links a {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.sp-cta-links a:hover {
    background: rgba(255,255,255,.24);
    color: #fff;
}

.sp-back {
    margin-top: 18px;
}

.sp-back a {
    color: var(--sp-accent);
    font-weight: 700;
    text-decoration: none;
}

.sp-hl {
    background: #e8f6fd;
}

@media (max-width: 767px) {
    .sp-card h3,
    .sp-h {
        font-size: 18px;
    }
    .sp-table {
        min-width: 520px;
    }
}

/* ============================================================
   全球联保和服务特约（Global Warranty）专有样式
   依据官方文档 GlobalWarranty-985C1-B-250425 .docx 精细实现
   ============================================================ */

/* 顶部引言大卡片 */
.gw-intro-card {
    background: linear-gradient(135deg, #0b2246 0%, #084379 60%, #07629b 100%);
    border-radius: 20px;
    padding: 38px 36px 32px;
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(11, 34, 70, .14);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.gw-intro-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(8, 173, 239, .2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.gw-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(8, 173, 239, .25);
    border: 1px solid rgba(8, 173, 239, .5);
    color: #5cd0ff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    margin-bottom: 16px;
}

.gw-intro-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.3;
    letter-spacing: .02em;
}

.gw-intro-desc p {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, .9);
    margin: 0 0 10px;
}

.gw-intro-desc strong {
    color: #5cd0ff;
}

.gw-intro-note {
    background: rgba(255, 255, 255, .08);
    border-left: 4px solid #08adef;
    padding: 10px 16px;
    border-radius: 4px 8px 8px 4px;
    font-size: 14px;
    color: rgba(255, 255, 255, .95);
    margin-top: 14px !important;
}

/* 4个数字高光 */
.gw-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.gw-hl-item {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    transition: transform .2s ease, background .2s ease;
}

.gw-hl-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .12);
}

.gw-hl-num {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    font-family: inherit;
}

.gw-hl-num small {
    font-size: 14px;
    font-weight: 600;
    color: #5cd0ff;
    margin-left: 2px;
}

.gw-hl-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    margin-top: 6px;
    font-weight: 500;
}

/* 各板块通用头部 */
.gw-section {
    margin-top: 48px;
}

.gw-section-header {
    margin-bottom: 24px;
}

.gw-section-tag {
    display: inline-block;
    color: var(--sp-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.gw-section-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--sp-ink);
    margin: 0 0 8px;
    line-height: 1.35;
}

/* 标签展示模块 */
.gw-labels-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 24px;
    align-items: stretch;
}

.gw-label-card {
    background: #ffffff;
    border: 1px solid var(--sp-line);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(26, 39, 68, .04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gw-label-product .gw-img-frame {
    background: #f7fafc;
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid var(--sp-line);
}

.gw-label-product .gw-img-frame img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    border-radius: 8px;
}

.gw-label-product .gw-card-body {
    padding: 20px 22px;
}

.gw-label-product h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--sp-ink);
}

.gw-label-product p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--sp-steel);
}

.gw-label-samples {
    padding: 22px 24px;
    justify-content: space-between;
}

.gw-stickers-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gw-sticker-box {
    background: #f9fbfd;
    border: 1px solid var(--sp-line);
    border-radius: 12px;
    padding: 16px;
}

.gw-sticker-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--sp-deep);
    margin-bottom: 12px;
}

.gw-sticker-img {
    background: #111111;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 14px;
}

.gw-sticker-img img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

.gw-sticker-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
    color: var(--sp-steel);
}

.gw-sticker-specs li strong {
    color: var(--sp-ink);
}

.gw-card-tip {
    margin-top: 18px;
    background: #eef7fd;
    border: 1px solid #cce8f9;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--sp-deep);
    line-height: 1.6;
}

/* 保修内容与服务流程图 */
.gw-flow-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    margin: 20px 0 24px;
}

.gw-flow-card {
    background: #ffffff;
    border: 1px solid var(--sp-line);
    border-radius: 16px;
    padding: 24px 20px;
    position: relative;
    box-shadow: 0 6px 20px rgba(26, 39, 68, .04);
    min-height: 290px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.gw-flow-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(26, 39, 68, .08);
}

.gw-flow-card.highlight {
    border-color: #b9dcf0;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbfe 100%);
    box-shadow: 0 8px 24px rgba(8, 173, 239, .08);
}

.gw-flow-step-num {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 11px;
    font-weight: 800;
    color: #9aa8b8;
    letter-spacing: .08em;
}

.gw-flow-badge {
    position: absolute;
    top: 12px;
    right: 14px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.gw-flow-badge.free {
    background: #e6f7ee;
    color: #0b8043;
    border: 1px solid #b8ebcf;
}

.gw-flow-badge.paid {
    background: #fdf2eb;
    color: #b34a12;
    border: 1px solid #f9d8c4;
}

.gw-flow-icon-wrap {
    margin: 24px auto 14px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gw-flow-icon-img {
    max-height: 64px;
    width: auto;
    object-fit: contain;
}

.gw-flow-circle-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e8f6fd;
    color: var(--sp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.gw-flow-circle-icon.paid-bg {
    background: #fbf0ea;
    color: #c45c26;
}

.gw-flow-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--sp-ink);
    margin: 0 0 6px;
}

.gw-flow-method {
    display: inline-block;
    align-self: center;
    background: var(--sp-mist);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--sp-deep);
    margin-bottom: 10px;
}

.gw-flow-desc {
    margin: 0;
    font-size: 13px;
    color: var(--sp-steel);
    line-height: 1.65;
    text-align: left;
}

.gw-flow-arrow {
    color: #a4b6c8;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 服务条款注释框 */
.gw-notice-box {
    background: #fbfcfe;
    border: 1px solid var(--sp-line);
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 4px 14px rgba(26, 39, 68, .03);
}

.gw-notice-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--sp-ink);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gw-notice-title i {
    color: var(--sp-accent);
}

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

.gw-notice-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--sp-steel);
}

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

.gw-notice-num {
    flex-shrink: 0;
    font-weight: 800;
    color: var(--sp-deep);
    background: #e8f6fd;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12px;
}

.gw-notice-text strong {
    color: var(--sp-ink);
}

/* 出口第三国处理方法 */
.gw-rule-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.gw-rule-card {
    background: #ffffff;
    border: 1px solid var(--sp-line);
    border-left: 5px solid #0f9d58;
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(26, 39, 68, .04);
}

.gw-rule-card.warning {
    border-left-color: #e53935;
}

.gw-rule-icon {
    font-size: 28px;
    color: #0f9d58;
    flex-shrink: 0;
    margin-top: 2px;
}

.gw-rule-card.warning .gw-rule-icon {
    color: #e53935;
}

.gw-rule-content h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 800;
    color: var(--sp-ink);
}

.gw-rule-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--sp-steel);
}

.gw-consult-callout {
    background: #f4f9fd;
    border: 1px dashed #97cfec;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.gw-callout-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: var(--sp-deep);
    line-height: 1.6;
}

.gw-callout-text i {
    font-size: 20px;
    color: var(--sp-accent);
}

.gw-btn-consult {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--sp-accent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease;
}

.gw-btn-consult:hover {
    background: var(--sp-deep);
    color: #ffffff;
}

/* 产品表格区域 */
.gw-table-block {
    background: #ffffff;
    border: 1px solid var(--sp-line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(26, 39, 68, .04);
}

.gw-table-block .sp-table-wrap {
    margin: 0;
    border: none;
    border-radius: 0;
}

.gw-table-title {
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gw-table-title.applicable {
    background: #e8f8f0;
    color: #0b8043;
    border-bottom: 2px solid #a3e6be;
}

.gw-table-title.not-applicable {
    background: #fdf0ee;
    color: #c5221f;
    border-bottom: 2px solid #f7b8b5;
}

.gw-table-title.info {
    background: #eaf4fc;
    color: var(--sp-deep);
    border-bottom: 2px solid #b5dcf4;
}

.gw-td-category {
    background: #f7fafc !important;
    font-weight: 700 !important;
    color: var(--sp-ink) !important;
    white-space: nowrap;
}

.gw-table-footer-note {
    background: #fff9ed;
    border-top: 1px solid #fae1b3;
    padding: 12px 20px;
    font-size: 13px;
    color: #8c6008;
    line-height: 1.6;
}

/* 地图区域 */
.gw-map-wrapper {
    background: #ffffff;
    border: 1px solid var(--sp-line);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(26, 39, 68, .04);
}

.gw-map-inner {
    background: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.gw-map-inner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.gw-map-caption {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--sp-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--sp-steel);
}

.gw-map-docno {
    font-weight: 700;
    color: var(--sp-deep);
    background: #e8f6fd;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 12px;
}

/* 国家/地区与代理机构对照表（双列） */
.gw-country-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.gw-country-col {
    padding: 8px 12px;
}

.gw-country-col:first-child {
    border-right: 1px solid var(--sp-line);
}

.gw-country-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.gw-country-tbl th,
.gw-country-tbl td {
    padding: 9px 12px;
    border-bottom: 1px solid var(--sp-line);
    text-align: left;
}

.gw-country-tbl thead th {
    background: #f7fafc;
    color: var(--sp-deep);
    font-weight: 700;
}

.gw-country-tbl tbody tr:hover td {
    background: #fbfdff;
}

.gw-country-empty td {
    border-bottom: 0;
}

/* 机构简称徽标标签 */
.gw-code {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .05em;
    color: #ffffff;
}

.gw-code.ci { background: #3fa535; }
.gw-code.cic { background: #f26522; }
.gw-code.ck { background: #1a448a; }
.gw-code.tcm { background: #e6007e; }
.gw-code.cwt { background: #ea5582; }
.gw-code.cwv { background: #009944; }
.gw-code.cwsb { background: #e5a700; color: #222; }
.gw-code.cwi { background: #8f3289; }
.gw-code.cip { background: #6f2c91; }
.gw-code.irt { background: #cf9b00; color: #222; }
.gw-code.ceu { background: #007882; }
.gw-code.cst { background: #005bac; }
.gw-code.cdm { background: #7b599f; }
.gw-code.tex { background: #009ad6; }

/* 14 家全球代理机构卡片网格 */
.gw-agencies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gw-agency-card {
    background: #ffffff;
    border: 1px solid var(--sp-line);
    border-radius: 14px;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(26, 39, 68, .03);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.gw-agency-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(26, 39, 68, .08);
    border-color: #b9dcf0;
}

.gw-agency-card.highlight-china {
    border-color: #fca772;
    background: linear-gradient(180deg, #ffffff 0%, #fffbf8 100%);
    box-shadow: 0 6px 20px rgba(242, 101, 34, .08);
}

.gw-agency-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.gw-agency-pin {
    width: 32px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gw-agency-pin img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gw-agency-meta {
    display: flex;
    flex-direction: column;
}

.gw-agency-abbr {
    font-size: 17px;
    font-weight: 900;
    color: var(--sp-ink);
    line-height: 1.2;
}

.gw-agency-country {
    font-size: 12px;
    font-weight: 700;
    color: var(--sp-deep);
}

.gw-agency-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--sp-ink);
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
}

.gw-agency-contact {
    padding-top: 10px;
    border-top: 1px dashed var(--sp-line);
    font-size: 12px;
    color: var(--sp-steel);
    display: flex;
    align-items: center;
    gap: 6px;
    word-break: break-all;
}

.gw-agency-contact i {
    color: var(--sp-accent);
}

.gw-agency-contact a {
    color: var(--sp-deep);
    text-decoration: none;
    font-weight: 600;
}

.gw-agency-contact a:hover {
    text-decoration: underline;
    color: var(--sp-accent);
}

/* 官方落款与中国公司信息卡片 */
.gw-footer-card {
    margin-top: 48px;
    background: #ffffff;
    border: 1px solid var(--sp-line);
    border-radius: 16px;
    padding: 28px 30px;
    box-shadow: 0 6px 20px rgba(26, 39, 68, .04);
}

.gw-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.gw-footer-company-cn {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: var(--sp-ink);
}

.gw-footer-company-en {
    margin: 4px 0 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--sp-deep);
}

.gw-footer-website a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sp-deep);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.gw-footer-website a:hover {
    color: var(--sp-accent);
    text-decoration: underline;
}

.gw-footer-divider {
    height: 1px;
    background: var(--sp-line);
    margin: 18px 0;
}

.gw-footer-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--sp-steel);
}

.gw-footer-address p {
    margin: 0 0 4px;
}

.gw-footer-address .en-address {
    font-size: 12.5px;
    color: #7b8b9b;
}

.gw-footer-contacts p {
    margin: 0 0 4px;
}

.gw-footer-contacts strong {
    color: var(--sp-ink);
}

.gw-footer-legal {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--sp-mist);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: #8c9ba9;
}

.gw-footer-date {
    font-weight: 600;
    color: var(--sp-deep);
}

/* 历史说明入口条 */
.gw-legacy-nav {
    margin-top: 24px;
    background: #f7fafc;
    border: 1px solid var(--sp-line);
    border-radius: 10px;
    padding: 12px 18px;
}

.gw-legacy-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--sp-steel);
}

.gw-legacy-content i {
    color: #8b99a7;
}

.gw-legacy-link {
    color: var(--sp-deep);
    font-weight: 700;
    text-decoration: none;
}

.gw-legacy-link:hover {
    color: var(--sp-accent);
    text-decoration: underline;
}

/* 移动端与平板响应式适配 */
@media (max-width: 991px) {
    .gw-intro-card {
        padding: 28px 24px 24px;
    }
    .gw-intro-title {
        font-size: 26px;
    }
    .gw-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gw-labels-grid {
        grid-template-columns: 1fr;
    }
    .gw-stickers-row {
        grid-template-columns: 1fr;
    }
    .gw-flow-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .gw-flow-arrow {
        transform: rotate(90deg);
        height: 20px;
    }
    .gw-rule-cards {
        grid-template-columns: 1fr;
    }
    .gw-consult-callout {
        flex-direction: column;
        align-items: flex-start;
    }
    .gw-country-grid {
        grid-template-columns: 1fr;
    }
    .gw-country-col:first-child {
        border-right: none;
        border-bottom: 1px solid var(--sp-line);
    }
    .gw-agencies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gw-footer-info-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 575px) {
    .gw-intro-title {
        font-size: 22px;
    }
    .gw-highlights {
        grid-template-columns: 1fr 1fr;
    }
    .gw-agencies-grid {
        grid-template-columns: 1fr;
    }
    .gw-agency-contact {
        font-size: 11px;
    }
}
