﻿/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Noto Sans SC', 'Inter', sans-serif;
    color: #1a2332;
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Brand Colors (reference) =====
   Deep navy:   #0b1a2e
   Dark blue:   #1a3a5c
   Medium blue: #1a6ba0
   Gold/accent: #f5a623
   Gold hover:  #e09512
   Light bg:    #f7f9fc
   Card border: #eee
   Body text:   #4a5a6a
   Muted text:  #6a7a8a / #8a9aaa
   ==================================== */

/* ===== Typography ===== */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.05em;
}
.section-title .en {
    display: block;
    font-size: 0.5em;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #1a6ba0;
    margin-top: 6px;
    text-transform: uppercase;
}
.section-subtitle {
    text-align: center;
    color: #6a7a8a;
    max-width: 640px;
    margin: 12px auto 0;
    font-size: 1rem;
}
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1a6ba0, #f5a623);
    border-radius: 2px;
    margin: 16px auto 32px;
}
.header-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1a6ba0, #f5a623);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ===== Header / Nav ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26,107,160,0.1);
    transition: box-shadow 0.3s;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.navbar .logo { display: flex; align-items: center; }
.navbar .logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #3a4a5a;
    border-radius: 6px;
    transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active { background: #1a6ba0; color: #fff; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.nav-toggle span {
    width: 26px; height: 3px;
    background: #1a3a5c;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== Page Header (inner pages) ===== */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0b1a2e 0%, #1a3a5c 50%, #1a6ba0 100%);
    color: #fff;
    text-align: center;
}
.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
}
.page-header .en {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    opacity: 0.5;
    margin-top: 6px;
}
.page-header .page-subtitle {
    margin-top: 16px;
    opacity: 0.7;
    font-size: 0.95rem;
}

/* ===== Sections ===== */
section { padding: 80px 0; }
.section-header { margin-bottom: 44px; }

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0b1a2e;
    background-image:
        linear-gradient(135deg, rgba(11,26,46,0.92) 0%, rgba(26,58,92,0.85) 50%, rgba(26,107,160,0.78) 100%),
        url('../../img/banner.jpg');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-attachment: scroll, scroll;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 24px 60px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-logo { margin-bottom: 28px; }
.hero-logo img {  width: auto; margin: 0 auto; }
.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.03em;
}
.hero h1 .highlight { color: #f5a623; }
.hero .hero-en {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
}
.hero .hero-tags {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.hero .hero-tags span {
    padding: 8px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
}
.hero-cta {
    margin-top: 40px;
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}
.page-btn,
.page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5a6a;
    background: #fff;
    border: 1px solid #e0e4e8;
    border-radius: 8px;
    transition: all 0.25s;
    cursor: pointer;
    user-select: none;
}
.page-btn { gap: 4px; }
.page-btn:hover,
.page-num:hover { border-color: #1a6ba0; color: #1a6ba0; }
.page-num.active {
    background: #1a6ba0;
    color: #fff;
    border-color: #1a6ba0;
}
.page-num.active:hover { background: #f5a623; border-color: #f5a623; color: #0b1a2e; }
.page-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
.page-num.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.btn-primary { background: #f5a623; color: #fff; }
.btn-primary:hover { background: #f5a623; color: #0b1a2e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.35); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: #f5a623; color: #f5a623; }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-blue { background: #1a6ba0; color: #fff; }
.btn-blue:hover { background: #f5a623; color: #0b1a2e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.35); }
.btn-center { justify-content: center; width: 100%; }

/* ===== Pain Points ===== */
#pain {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
#pain::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(#edf3f8 1px, transparent 1px),
        linear-gradient(90deg, #edf3f8 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
    pointer-events: none;
}
#pain .container {
    position: relative;
    z-index: 1;
}
.pain-overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: stretch;
    position: relative;
    margin-bottom: 42px;
    padding: 36px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(11,26,46,0.96), rgba(26,58,92,0.95)),
        url('../../img/banner.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 50px rgba(11,26,46,0.14);
    overflow: hidden;
}
.pain-overview::after {
    content: '';
    position: absolute;
    right: -90px;
    top: -120px;
    width: 260px;
    height: 260px;
    border: 36px solid rgba(245,166,35,0.12);
    border-radius: 50%;
}
.pain-overview-main,
.pain-overview-side {
    position: relative;
    z-index: 1;
}
.pain-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f5a623;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 14px;
}
.pain-kicker::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #f5a623;
}
.pain-overview h3 {
    max-width: 760px;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1.55;
    font-weight: 900;
    margin-bottom: 18px;
}
.pain-overview p {
    max-width: 820px;
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.95;
}
.pain-overview-side {
    display: grid;
    gap: 12px;
}
.pain-metric {
    padding: 18px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(10px);
}
.pain-metric strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 900;
    color: #f5a623;
}
.pain-metric span {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,0.72);
    font-size: 0.82rem;
}
.pain-dilemma-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}
.pain-dilemma-head span {
    font-size: 1.55rem;
    font-weight: 900;
    color: #0b1a2e;
}
.pain-dilemma-head p {
    font-family: 'Inter', sans-serif;
    color: #8a9aaa;
    font-size: 0.78rem;
    font-weight: 700;
}
.pain-dilemma-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.pain-dilemma-card {
    position: relative;
    min-height: 250px;
    padding: 28px 22px 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e4ecf5;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pain-dilemma-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a6ba0, #f5a623);
}
.pain-dilemma-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,82,162,0.12);
    border-color: rgba(26,107,160,0.35);
}
.dilemma-index {
    position: absolute;
    right: 18px;
    top: 18px;
    color: rgba(26,107,160,0.1);
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    line-height: 1;
    font-weight: 900;
}
.dilemma-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: #fff;
    font-size: 1.35rem;
    background: linear-gradient(145deg, #0052A2, #1a6ba0);
    box-shadow: 0 10px 24px rgba(0,82,162,0.18);
}
.pain-dilemma-card h4 {
    color: #0b1a2e;
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 12px;
}
.pain-dilemma-card p {
    color: #6a7a8a;
    font-size: 0.85rem;
    line-height: 1.75;
}

/* ===== Mobile Nav ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 12px 20px 20px;
        gap: 2px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
        pointer-events: none;
        border-bottom: 1px solid rgba(26,107,160,0.12);
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links a {
        padding: 12px 16px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
        border-radius: 8px;
    }
    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    .sys-left {
        min-height: 400px;
        padding: 20px 56px 32px 24px;
    }
    .sys-left-vertical {
        font-size: clamp(4rem, 14vw, 6rem);
    }
}

@media (max-width: 900px) {
    .pain-overview {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .pain-overview-side { grid-template-columns: repeat(3, 1fr); }
    .pain-dilemma-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    #pain { padding: 64px 0; }
    .pain-overview {
        padding: 24px;
        border-radius: 14px;
    }
    .pain-overview h3 { font-size: 1.25rem; }
    .pain-overview p { font-size: 0.86rem; }
    .pain-overview-side,
    .pain-dilemma-grid {
        grid-template-columns: 1fr;
    }
    .pain-dilemma-head {
        display: block;
    }
    .pain-dilemma-head p { margin-top: 4px; }
    .pain-dilemma-card { min-height: auto; }
}



/* ===== DATA VISUALIZATION SOLUTION SECTION ===== */
#empower .container { max-width: 1200px; }

/* Viz Row Layout */
.viz-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
.viz-row-single { margin-bottom: 0; }
.viz-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #e4ecf5;
    box-shadow: 0 2px 12px rgba(0,82,162,0.04);
}
.viz-full { width: 100%; }

/* Viz Card Title */
.viz-title {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1.5px solid #e4ecf5;
}
.viz-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #0052A2, #1a6bc4);
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 6px;
}
.viz-label-orange {
    background: linear-gradient(135deg, #F39800, #d98200);
}
.viz-sublabel {
    display: block;
    font-size: 0.78rem;
    color: #8a9aaa;
    font-weight: 500;
}

/* ===== VENN DIAGRAM (核心模式) ===== */
.venn-diagram {
    position: relative;
    width: 280px;
    height: 200px;
    margin: 0 auto 16px;
}
.venn-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    transition: transform 0.3s;
    overflow: hidden;
}
.venn-circle:hover { transform: scale(1.05); }
.venn-circle i { font-size: 1.4rem; margin-bottom: 4px; }
.vc-blue {
    background: linear-gradient(145deg, rgba(0,82,162,0.85), rgba(26,107,196,0.85));
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(0,82,162,0.3);
    z-index: 3;
}
.vc-orange {
    background: linear-gradient(145deg, rgba(243,152,0,0.85), rgba(217,130,0,0.85));
    left: 0;
    bottom: 0;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(243,152,0,0.3);
    z-index: 2;
}
.vc-navy {
    background: linear-gradient(145deg, rgba(11,26,46,0.85), rgba(26,58,92,0.85));
    right: 0;
    bottom: 0;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(11,26,46,0.3);
    z-index: 1;
}
.venn-center {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0052A2, #1a6bc4);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 4px 20px rgba(0,82,162,0.4);
}
.venn-center-text {
    font-size: 0.68rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    line-height: 1.3;
}
.venn-bottom-text {
    text-align: center;
    font-size: 0.78rem;
    color: #6a7a8a;
    font-weight: 500;
}
.venn-bottom-text i { color: #F39800; margin-right: 4px; }

/* ===== GAUGE COMPARE (转型目标) ===== */
.gauge-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 20px 0 20px;
}
.gauge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.gauge-wrap {
    position: relative;
    width: 100px;
    height: 55px;
    overflow: hidden;
}
.gauge-half {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gauge-before {
    background: linear-gradient(135deg, #e4ecf5, #c8d5e8);
    border: 4px solid #b0c0d8;
}
.gauge-after {
    background: linear-gradient(135deg, #0052A2, #1a6bc4);
    border: 4px solid #003d80;
}
.gauge-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    font-family: 'Inter', sans-serif;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
}
.gauge-before .gauge-value { color: #6a7a8a; }
.gauge-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4a5a6a;
    line-height: 1.4;
}
.gauge-arrow {
    font-size: 1.5rem;
    color: #F39800;
    padding-top: 20px;
}
.journey-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}
.jtag {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}
.jtag-from {
    background: #f0f4f8;
    color: #6a7a8a;
    border: 1.5px solid #c8d5e8;
}
.jtag-to {
    background: linear-gradient(135deg, #0052A2, #1a6bc4);
    color: #fff;
}
.jtag-sep { color: #F39800; font-size: 1.1rem; }

/* ===== RADAR CHART (成果转化) ===== */
.radar-chart {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 0 auto 16px;
}
.radar-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.radar-axis {
    position: absolute;
    width: 50%;
    height: 50%;
    left: 50%;
    top: 50%;
    transform-origin: 0 0;
    border-left: 1.5px dashed #e4ecf5;
}
.radar-axis span {
    position: absolute;
    right: -8px;
    top: -18px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #4a5a6a;
    white-space: nowrap;
    transform: rotate(calc(var(--angle) + 0deg));
}
/* 绘制背景圆环 */
.radar-chart::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    border: 1.5px solid #e4ecf5;
    left: 20%;
    top: 20%;
}
.radar-chart::after {
    content: '';
    position: absolute;
    width: 35%;
    height: 35%;
    border-radius: 50%;
    border: 1.5px solid #e4ecf5;
    left: 32.5%;
    top: 32.5%;
}
.radar-area {
    position: absolute;
    width: 200px;
    height: 200px;
    left: 20px;
    top: 20px;
    /* 菱形区域用clip-path */
    clip-path: polygon(50% 7%, 93% 50%, 50% 93%, 7% 50%);
    background: linear-gradient(135deg, rgba(0,82,162,0.12), rgba(243,152,0,0.12));
    border: 2px solid rgba(0,82,162,0.3);
}
.radar-dots { position: absolute; width: 100%; height: 100%; left: 0; top: 0; }
.radar-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0052A2;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,82,162,0.4);
    transform: translate(-50%, -50%);
}
.radar-dot:nth-child(1) { left: 120px; top: 26px; background: #0052A2; }
.radar-dot:nth-child(2) { left: 203px; top: 120px; background: #F39800; box-shadow: 0 2px 8px rgba(243,152,0,0.4); }
.radar-dot:nth-child(3) { left: 120px; top: 203px; background: #0052A2; }
.radar-dot:nth-child(4) { left: 38px; top: 120px; background: #F39800; box-shadow: 0 2px 8px rgba(243,152,0,0.4); }
.dot-val {
    position: absolute;
    white-space: nowrap;
    font-size: 0.65rem;
    font-weight: 800;
    color: #0b1a2e;
    background: #fff;
    padding: 1px 5px;
    border-radius: 8px;
    border: 1px solid #e4ecf5;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.radar-center-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
}
.radar-score {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #0052A2;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}
.radar-score-label {
    display: block;
    font-size: 0.65rem;
    color: #8a9aaa;
    font-weight: 600;
}
.radar-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
    margin-top: 8px;
}
.legend-item {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.li-blue { background: rgba(0,82,162,0.08); color: #0052A2; }
.li-orange { background: rgba(243,152,0,0.08); color: #c07d00; }

/* ===== PROGRESS FLOW (4大执行路径) ===== */
.progress-flow { display: flex; flex-direction: column; gap: 4px; }
.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 16px;
    background: #f5f8fd;
    border-radius: 12px;
    border: 1px solid #e4ecf5;
    transition: all 0.3s;
}
.flow-step:hover {
    border-color: #0052A2;
    background: #edf3fc;
}
.flow-num {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0052A2, #1a6bc4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.flow-content { flex: 1; min-width: 0; }
.flow-content h5 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #0b1a2e;
    margin-bottom: 6px;
    line-height: 1.4;
}
.flow-bar {
    height: 6px;
    background: #e4ecf5;
    border-radius: 3px;
    margin-bottom: 5px;
    overflow: hidden;
}
.flow-fill {
    height: 100%;
    background: linear-gradient(90deg, #0052A2, #1a6bc4);
    border-radius: 3px;
    width: var(--w);
    animation: flowLoad 1.5s ease-out forwards;
}
.flow-fill-anim { }
@keyframes flowLoad {
    from { width: 0 !important; }
    to { width: var(--w); }
}
.flow-content p {
    font-size: 0.72rem;
    color: #8a9aaa;
    margin: 0;
}
.flow-connector {
    text-align: center;
    color: #b0c0d8;
    font-size: 0.8rem;
    padding: 2px 0;
}

/* ===== RING INDICATORS (360°画像) ===== */
.ring-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 768px) { .ring-indicators { grid-template-columns: repeat(2, 1fr); } }
.ring-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: transform 0.3s;
}
.ring-item:hover { transform: translateY(-4px); }
.ring-wrap {
    position: relative;
    width: 110px;
    height: 110px;
}
.ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.ring-bg {
    fill: none;
    stroke: #e4ecf5;
    stroke-width: 8;
}
.ring-fill {
    fill: none;
    stroke: var(--c);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 251.2;
    stroke-dashoffset: calc(251.2 - 251.2 * var(--pct) / 100);
    transition: stroke-dashoffset 1.5s ease-out;
}
.ring-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.6rem;
    color: #0052A2;
}
.ring-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0b1a2e;
}
.ring-sub {
    font-size: 0.72rem;
    color: #8a9aaa;
    line-height: 1.4;
}
.ring-pct {
    font-size: 1.2rem;
    font-weight: 900;
    color: #0052A2;
    font-family: 'Inter', sans-serif;
}

/* ===== SOLUTION SECTION SPACING ===== */
#empower { padding: 80px 0; background: #f7f9fc; }

/* Responsive */
@media (max-width: 768px) {
    .viz-row { grid-template-columns: 1fr; }
    .venn-diagram { width: 220px; height: 160px; }
    .venn-circle { width: 95px; height: 95px; }
    .venn-center { width: 64px; height: 64px; }
    .venn-center-text { font-size: 0.6rem; }
    .ring-indicators { grid-template-columns: repeat(2, 1fr); }
    .radar-chart { width: 180px; height: 180px; }
}


/* ===== Solution Redesign ===== */
.solution-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 36px;
    align-items: stretch;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #0b1a2e, #1a3a5c);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 46px rgba(0,82,162,0.14);
}
.solution-hero-copy {
    padding: 44px 42px;
    color: #fff;
}
.solution-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f5a623;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.solution-eyebrow::before {
    content: '';
    width: 34px;
    height: 2px;
    background: #f5a623;
}
.solution-hero h3 {
    max-width: 620px;
    font-size: 2.1rem;
    line-height: 1.38;
    font-weight: 900;
    margin-bottom: 18px;
}
.solution-hero p {
    max-width: 680px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.9;
}
.solution-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.solution-hero-tags span {
    padding: 7px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.86);
    font-size: 0.82rem;
    font-weight: 700;
}
.solution-hero-media {
    position: relative;
    min-height: 320px;
}
.solution-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.solution-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,26,46,0.28), rgba(11,26,46,0.02));
}
.solution-media-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 1;
    width: 190px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 12px 30px rgba(11,26,46,0.18);
}
.solution-media-badge strong {
    display: block;
    color: #0052A2;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
}
.solution-media-badge span {
    display: block;
    margin-top: 6px;
    color: #4a5a6a;
    font-size: 0.78rem;
    font-weight: 700;
}
.solution-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}
.solution-pillar,
.solution-transition,
.solution-execution,
.outcome-panel {
    background: #fff;
    border: 1px solid #e4ecf5;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,82,162,0.04);
}
.solution-pillar {
    position: relative;
    padding: 28px 24px 26px;
    overflow: hidden;
}
.solution-pillar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0052A2, #f5a623);
}
.solution-pillar .pillar-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    margin-bottom: 18px;
    background: linear-gradient(145deg, #0052A2, #1a6bc4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}
.solution-pillar h4 {
    font-size: 1.15rem;
    color: #0b1a2e;
    font-weight: 900;
    margin-bottom: 10px;
}
.solution-pillar p {
    color: #6a7a8a;
    font-size: 0.85rem;
    line-height: 1.75;
}
/* ── 解决方案动效 ── */
.solution-pillar {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.solution-pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,82,162,0.1);
}
.solution-pillar .pillar-icon {
    transition: transform 0.4s ease, border-radius 0.4s ease;
}
.solution-pillar:hover .pillar-icon {
    transform: scale(1.1) rotate(-4deg);
    border-radius: 16px;
}
.solution-pillar:hover .pillar-icon i {
    animation: pillarIconPulse 0.5s ease;
}
@keyframes pillarIconPulse {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.18); }
    100% { transform: scale(1); }
}
.execution-steps article {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.execution-steps article:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,82,162,0.1);
    border-color: #0052A2;
}
.execution-steps article:hover b {
    background: #f5a623;
    transform: scale(1.12);
}
.execution-steps b {
    transition: background 0.3s ease, transform 0.3s ease;
}
.outcome-list p,
.platform-grid p {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}
.outcome-list p:hover,
.platform-grid p:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,82,162,0.1);
    border-color: #0052A2;
}
.solution-hero-media img {
    animation: solFloat 4s ease-in-out infinite;
}
@keyframes solFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
/* 错落入场（子元素依次出现） */
.solution-pillars.fade-up .solution-pillar {
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.solution-outcomes.fade-up .outcome-list p,
.solution-outcomes.fade-up .platform-grid p {
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.solution-execution.fade-up .execution-steps article {
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.solution-pillars.fade-up:not(.visible) .solution-pillar,
.solution-execution.fade-up:not(.visible) .execution-steps article,
.solution-outcomes.fade-up:not(.visible) .outcome-list p,
.solution-outcomes.fade-up:not(.visible) .platform-grid p {
    opacity: 0;
    transform: translateY(20px);
}
.solution-pillars.fade-up.visible .solution-pillar:nth-child(1),
.solution-execution.fade-up.visible .execution-steps article:nth-child(1) { transition-delay: 0s; }
.solution-pillars.fade-up.visible .solution-pillar:nth-child(2),
.solution-execution.fade-up.visible .execution-steps article:nth-child(2) { transition-delay: 0.1s; }
.solution-pillars.fade-up.visible .solution-pillar:nth-child(3),
.solution-execution.fade-up.visible .execution-steps article:nth-child(3) { transition-delay: 0.2s; }
.solution-execution.fade-up.visible .execution-steps article:nth-child(4) { transition-delay: 0.3s; }
.solution-outcomes.fade-up.visible .outcome-list p:nth-child(1),
.solution-outcomes.fade-up.visible .platform-grid p:nth-child(1) { transition-delay: 0s; }
.solution-outcomes.fade-up.visible .outcome-list p:nth-child(2),
.solution-outcomes.fade-up.visible .platform-grid p:nth-child(2) { transition-delay: 0.08s; }
.solution-outcomes.fade-up.visible .outcome-list p:nth-child(3),
.solution-outcomes.fade-up.visible .platform-grid p:nth-child(3) { transition-delay: 0.16s; }
.solution-outcomes.fade-up.visible .outcome-list p:nth-child(4),
.solution-outcomes.fade-up.visible .platform-grid p:nth-child(4) { transition-delay: 0.24s; }
/* ── 动效结束 ── */
.solution-transition {
    padding: 28px 30px;
    margin-bottom: 28px;
}
.transition-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}
.transition-title span,
.solution-block-title span {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0052A2, #1a6bc4);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
}
.transition-title strong {
    color: #0b1a2e;
    font-size: 1.15rem;
}
.transition-track {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
    align-items: center;
    gap: 12px;
}
.transition-track span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 22px;
    background: #f5f8fd;
    border: 1px solid #e4ecf5;
    color: #0b1a2e;
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
}
.transition-track span:first-child { color: #6a7a8a; }
.transition-track span:last-child {
    background: linear-gradient(135deg, #f5a623, #d98200);
    border-color: #f5a623;
    color: #fff;
}
.transition-track i {
    height: 2px;
    background: linear-gradient(90deg, #c8d5e8, #0052A2);
}
.solution-execution {
    padding: 30px;
    margin-bottom: 28px;
}
.solution-block-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e4ecf5;
}
.solution-block-title p {
    color: #8a9aaa;
    font-size: 0.82rem;
    font-weight: 600;
}
.execution-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.execution-steps article {
    position: relative;
    padding: 22px 18px 20px;
    border-radius: 14px;
    background: #f5f8fd;
    border: 1px solid #e4ecf5;
}
.execution-steps article::after {
    content: '';
    position: absolute;
    right: -14px;
    top: 50%;
    width: 12px;
    height: 2px;
    background: #c8d5e8;
}
.execution-steps article:last-child::after { display: none; }
.execution-steps b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0052A2;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    margin-bottom: 16px;
}
.execution-steps h4 {
    color: #0b1a2e;
    font-size: 0.98rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.execution-steps p {
    color: #6a7a8a;
    font-size: 0.78rem;
    line-height: 1.65;
}
.solution-outcomes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.outcome-panel { padding: 30px; }
.outcome-list,
.platform-grid {
    display: grid;
    gap: 14px;
}
.platform-grid { grid-template-columns: repeat(2, 1fr); }
.outcome-list p,
.platform-grid p {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 2px 12px;
    align-items: center;
    padding: 14px;
    border-radius: 12px;
    background: #f7f9fc;
    border: 1px solid #e4ecf5;
}
.outcome-list i,
.platform-grid i {
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0052A2;
    background: rgba(0,82,162,0.08);
}
.outcome-list strong,
.platform-grid strong {
    color: #0b1a2e;
    font-size: 0.9rem;
}
.outcome-list span,
.platform-grid span {
    color: #8a9aaa;
    font-size: 0.75rem;
}

@media (max-width: 900px) {
    .solution-hero,
    .solution-pillars,
    .solution-outcomes {
        grid-template-columns: 1fr;
    }
    .solution-hero-media { min-height: 260px; }
    .transition-track { grid-template-columns: 1fr; }
    .transition-track i {
        width: 2px;
        height: 18px;
        justify-self: center;
    }
    .execution-steps { grid-template-columns: repeat(2, 1fr); }
    .execution-steps article::after { display: none; }
}

@media (max-width: 560px) {
    .solution-hero-copy,
    .solution-execution,
    .outcome-panel { padding: 24px; }
    .solution-hero h3 { font-size: 1.55rem; }
    .transition-title,
    .solution-block-title { display: block; }
    .transition-title strong,
    .solution-block-title p {
        display: block;
        margin-top: 10px;
    }
    .execution-steps,
    .platform-grid { grid-template-columns: 1fr; }
}

/* ===== Team Teaser ===== */
#team-teaser { padding: 80px 0; background: #f5f8fd; }
.team-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
@media (max-width: 768px) { .team-teaser-grid { grid-template-columns: 1fr; } }
.team-bg-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.team-bg-card {
    position: relative;
    min-height: 430px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(0,82,162,0.12);
}
.team-bg-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    filter: saturate(0.92);
    transition: transform 0.45s ease, filter 0.45s ease;
}
.team-bg-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11,26,46,0.1), rgba(11,26,46,0.82)),
        linear-gradient(135deg, rgba(0,82,162,0.28), rgba(243,152,0,0.12));
}
.team-bg-card:hover img {
    transform: scale(1.06);
    filter: saturate(1.05);
}
.team-bg-content {
    position: absolute;
    z-index: 1;
    inset: auto 0 0 0;
    padding: 30px 28px;
    color: #fff;
}
.team-bg-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f5a623;
    color: #0b1a2e;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    margin-bottom: 18px;
}
.team-bg-content h4 {
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 6px;
}
.team-bg-content .team-en {
    color: rgba(255,255,255,0.78);
    margin-bottom: 18px;
}
.team-bg-desc {
    color: rgba(255,255,255,0.92);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 600;
}
.team-bg-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.team-bg-content li {
    position: relative;
    padding-left: 16px;
    color: rgba(255,255,255,0.88);
    font-size: 0.86rem;
    line-height: 1.75;
}
.team-bg-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f5a623;
}
@media (max-width: 900px) {
    .team-bg-card-grid {
        grid-template-columns: 1fr;
    }
    .team-bg-card,
    .team-bg-card img {
        min-height: 340px;
    }
}
@media (max-width: 560px) {
    .team-bg-content {
        padding: 24px;
    }
    .team-bg-card,
    .team-bg-card img {
        min-height: 360px;
    }
}
.team-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 34px;
    align-items: stretch;
}
.team-story {
    background: #fff;
    border: 1px solid #e4ecf5;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,82,162,0.06);
}
.team-story-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 0 0 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e4ecf5;
}
.team-story-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.team-story-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(145deg, #0052A2, #1a6bc4);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
}
.team-story h4 {
    font-size: 1.15rem;
    font-weight: 900;
    color: #0b1a2e;
    margin-bottom: 4px;
}
.team-story .team-en {
    margin-bottom: 12px;
}
.team-story ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.team-story li {
    position: relative;
    padding-left: 16px;
    color: #4a5a6a;
    font-size: 0.86rem;
    line-height: 1.75;
}
.team-story li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #F39800;
}
.team-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    min-height: 520px;
}
.team-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0b1a2e;
    box-shadow: 0 8px 28px rgba(0,82,162,0.1);
}
.team-photo-large {
    grid-row: 1 / span 2;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9);
    transition: transform 0.45s ease, filter 0.45s ease;
}
.team-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,26,46,0.04), rgba(11,26,46,0.68));
}
.team-photo:hover img {
    transform: scale(1.05);
    filter: saturate(1.05);
}
.team-photo span {
    position: absolute;
    z-index: 1;
    left: 20px;
    right: 20px;
    bottom: 20px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 800;
}
.team-cta {
    text-align: center;
    margin-top: 36px;
}
@media (max-width: 900px) {
    .team-showcase {
        grid-template-columns: 1fr;
    }
    .team-visuals {
        min-height: 460px;
    }
}
@media (max-width: 560px) {
    .team-story {
        padding: 24px;
    }
    .team-story-item {
        grid-template-columns: 40px 1fr;
        gap: 14px;
    }
    .team-story-num {
        width: 40px;
        height: 40px;
    }
    .team-visuals {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        min-height: 0;
    }
    .team-photo,
    .team-photo-large {
        grid-row: auto;
        min-height: 240px;
    }
}
.team-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,82,162,0.06);
    border: 1px solid #e4ecf5;
    text-align: center;
    transition: all 0.3s;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,82,162,0.12);
    border-color: #0052A2;
}
.team-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0052A2, #1a6bc4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: #fff;
}
.team-card h4 { font-size: 1.05rem; font-weight: 800; color: #0b1a2e; margin-bottom: 6px; }
.team-en { font-size: 0.7rem; color: #0052A2; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.team-card ul { text-align: left; list-style: none; padding: 0; margin: 0; }
.team-card li {
    font-size: 0.82rem;
    color: #4a5a6a;
    padding: 4px 0 4px 16px;
    position: relative;
    line-height: 1.6;
}
.team-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #F39800;
}

/* ===== About Teaser ===== */
#about-teaser {
    padding: 80px 0;
    background: #fff;
}
.about-simple {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 42px;
    align-items: center;
    padding: 18px;
    border: 1px solid #e4ecf5;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
    box-shadow: 0 16px 42px rgba(0,82,162,0.08);
}
.about-simple-image {
    position: relative;
    min-height: 360px;
    border-radius: 18px;
    overflow: hidden;
    background: #0b1a2e;
}
.about-simple-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,82,162,0.02), rgba(11,26,46,0.18));
}
.about-simple-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-simple-copy {
    padding: 18px 24px 18px 0;
}
.about-simple-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: #0052A2;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.about-simple-copy h3 {
    color: #0b1a2e;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    line-height: 1.25;
    margin-bottom: 18px;
}
.about-simple-copy p {
    max-width: 560px;
    color: #4a5a6a;
    font-size: 0.98rem;
    line-height: 2;
    margin-bottom: 28px;
}
@media (max-width: 900px) {
    .about-simple {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .about-simple-copy {
        padding: 0 8px 10px;
    }
}
@media (max-width: 560px) {
    #about-teaser {
        padding: 62px 0;
    }
    .about-simple {
        padding: 12px;
        border-radius: 18px;
    }
    .about-simple-image {
        min-height: 240px;
        border-radius: 14px;
    }
    .about-simple-copy h3 {
        font-size: 1.42rem;
    }
    .about-simple-copy p {
        font-size: 0.9rem;
        line-height: 1.9;
    }
}
.about-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 768px) { .about-teaser { grid-template-columns: 1fr; } }
.about-teaser-text p {
    font-size: 0.92rem;
    color: #4a5a6a;
    line-height: 1.9;
    margin-bottom: 14px;
}
.about-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.about-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: linear-gradient(135deg, rgba(0,82,162,0.08), rgba(243,152,0,0.08));
    border: 1px solid rgba(0,82,162,0.15);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #0052A2;
}
.about-tags span i { color: #F39800; }
.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.about-feature-card {
    background: #f5f8fd;
    border-radius: 12px;
    padding: 22px 18px;
    border: 1px solid #e4ecf5;
    transition: all 0.3s;
}
.about-feature-card:hover {
    border-color: #0052A2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,82,162,0.1);
}
.about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(145deg, #0052A2, #1a6bc4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.about-feature-content h5 { font-size: 0.9rem; font-weight: 800; color: #0b1a2e; margin-bottom: 6px; }
.about-feature-content p { font-size: 0.78rem; color: #6a7a8a; line-height: 1.6; }

/* ===== News Teaser ===== */
#news-teaser { padding: 80px 0; background: #f5f8fd; }
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
@media (max-width: 768px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e4ecf5;
    transition: all 0.3s;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,82,162,0.1);
    border-color: #0052A2;
}
.news-card a.news-img {
    display: block;
    color: inherit;
    text-decoration: none;
}
.news-card a.news-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.news-body { padding: 20px 18px; }
.news-date { font-size: 0.72rem; color: #8a9aaa; font-weight: 500; margin-bottom: 8px; }
.news-card h4 { font-size: 0.92rem; font-weight: 700; color: #0b1a2e; margin-bottom: 8px; line-height: 1.5; }
.news-card p { font-size: 0.78rem; color: #6a7a8a; line-height: 1.7; }

/* ===== News Detail Page ===== */
.page-header {
    position: relative;
    background-size: cover;
    background-position: center;
}
.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11,26,46,0.88) 0%, rgba(26,58,92,0.82) 50%, rgba(26,107,160,0.75) 100%);
}

.news-detail-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 0 60px;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #8a9aaa;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: #0052A2;
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: #f06529;
}
.breadcrumb .sep {
    opacity: 0.5;
}
.breadcrumb .current {
    color: #0b1a2e;
    font-weight: 500;
}

/* 新闻标题区 */
.news-detail-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8ecf2;
}
.news-detail-header .news-date {
    font-size: 0.85rem;
    color: #8a9aaa;
    margin-bottom: 12px;
    font-weight: 500;
}
.news-detail-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 900;
    color: #0b1a2e;
    line-height: 1.35;
    margin-bottom: 16px;
}
.news-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.news-tags .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f0f5fa;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #0052A2;
    font-weight: 500;
}
.news-tags .tag i {
    font-size: 0.7rem;
}

/* 新闻配图 */
.news-detail-image {
    margin-bottom: 36px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,82,162,0.12);
}
.news-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 新闻正文 */
.news-detail-content {
    font-size: 1rem;
    line-height: 2.4em;
    color: #3a4a5c;
}
.news-detail-content .lead {
    font-size: 1.15rem;
    color: #0b1a2e;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f0f5fa;
}
.news-detail-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0b1a2e;
    margin: 36px 0 16px;
    padding-left: 14px;
    border-left: 4px solid #f06529;
}
.news-detail-content p {
    margin-bottom: 18px;
    text-align: justify;
}
.news-detail-content strong {
    color: #0052A2;
    font-weight: 700;
}
.news-detail-content blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    background: linear-gradient(135deg, #f8fafc, #f0f5fa);
    border-left: 4px solid #0052A2;
    border-radius: 0 12px 12px 0;
}
.news-detail-content blockquote p {
    font-size: 1.08rem;
    color: #1a3a5c;
    font-style: italic;
    margin-bottom: 12px;
    text-align: left;
}
.news-detail-content blockquote cite {
    display: block;
    font-size: 0.88rem;
    color: #8a9aaa;
    font-style: normal;
    text-align: right;
}

/* 新闻底部 */
.news-detail-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e8ecf2;
    flex-wrap: wrap;
    gap: 16px;
}
.news-share {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #6a7a8a;
}
.news-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f0f5fa;
    border-radius: 50%;
    color: #0052A2;
    font-size: 1rem;
    transition: all 0.2s;
}
.news-share a:hover {
    background: #0052A2;
    color: #fff;
    transform: translateY(-2px);
}

/* 相关新闻 */
.related-news {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e8ecf2;
}
.related-news .section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0b1a2e;
    margin-bottom: 24px;
    text-align: center;
}
.related-news .news-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .related-news .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .related-news .news-grid {
        grid-template-columns: 1fr;
    }
    .news-detail-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== Footer ===== */
.site-footer {
    background: linear-gradient(135deg, #0b1a2e, #1a3a5c);
    color: rgba(255,255,255,0.85);
    padding: 22px 20px;
    text-align: center;
}
.footer-bottom {
    margin: 0;
    padding: 0;
    border-top: 0;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.58);
}
.footer-bottom p {
    margin: 0;
}

/* ===== Back to Top ===== */
.back-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0052A2, #1a6bc4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(0,82,162,0.3);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 999;
    border: none;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,82,162,0.4); }

/* ===== Utilities ===== */
.text-center { text-align: center; }

/* ===== Fade Up Animation ===== */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   INNER PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, #0b1a2e, #1a3a5c);
    min-height: 300px;
    padding: 128px 0 74px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.page-header .container {
    position: relative;
    z-index: 1;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,82,162,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(243,152,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}
.page-header .en {
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 16px;
}
.header-divider {
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, #0052A2, #F39800);
    margin: 16px auto 18px;
    border-radius: 2px;
}
.page-subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.72);
    font-weight: 400;
}
@media (max-width: 768px) {
    .page-header {
        min-height: 260px;
        padding: 108px 0 58px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .page-subtitle {
        font-size: 0.92rem;
    }
}

/* ============================================
   TEAM PAGE
   ============================================ */
#team-page { padding: 80px 0; background: #f7f9fc; }

.team-pillars-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0 110px;
    background-color: #053270;
    background-image: url('../../img/teambg.jpg');
    background-position: 58% center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}
.team-pillars-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,43,86,0.42), rgba(6,43,86,0.22));
    z-index: 0;
}
.team-pillars-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #053270 0%, rgba(5,50,112,0.78) 14%, rgba(5,50,112,0) 30%, rgba(5,50,112,0) 55%, rgba(5,50,112,0.55) 68%, #053270 82%),
        radial-gradient(circle at 28% 50%, rgba(5,50,112,0.42), rgba(5,50,112,0) 28%);
    z-index: 0;
    pointer-events: none;
}
.team-pillars-section .container {
    position: relative;
    z-index: 1;
}
.team-pillars-section .section-title {
    color: #fff;
}
.team-pillars-section .section-title .en {
    color: rgba(255,255,255,0.68);
}
.team-pillars-section .section-divider {
    background: #f5a623;
}

/* 三支柱图 */
.pillar-diagram {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 12px auto 0;
    max-width: 980px;
    padding: 0;
}
.pillar-diagram img {
    display: block;
    width: 100%;
    max-width: 820px;
    height: auto;
}
#team-page .pillar-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    min-width: 200px;
    text-align: center;
    border: 2px solid #e4ecf5;
    transition: all 0.3s;
}
#team-page .pillar-card:hover {
    border-color: #0052A2;
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,82,162,0.12);
}
#team-page .pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0052A2, #1a6bc4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    color: #fff;
}
#team-page .pillar-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #0b1a2e;
    margin-bottom: 8px;
}
#team-page .pillar-card p {
    font-size: 0.82rem;
    color: #6a7a8a;
    line-height: 1.6;
    margin: 0;
}

/* 六大破局方向 */
.innovation-section {
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0,82,162,0.08) 0, rgba(0,82,162,0) 28%),
        linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.innovation-section::before {
    content: 'BREAKTHROUGH';
    position: absolute;
    right: 5vw;
    top: 34px;
    color: rgba(0,82,162,0.045);
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 8vw, 7.5rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    pointer-events: none;
}
.innovation-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.innovation-card {
    position: relative;
    overflow: hidden;
    min-height: 178px;
    padding: 28px 26px 26px;
    border: 1px solid rgba(0,82,162,0.12);
    border-radius: 18px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 12px 32px rgba(0,82,162,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.innovation-card::after {
    content: '';
    position: absolute;
    right: -44px;
    bottom: -44px;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: rgba(0,82,162,0.05);
    transition: transform 0.3s ease, background 0.3s ease;
}
.innovation-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,82,162,0.26);
    box-shadow: 0 18px 44px rgba(0,82,162,0.13);
}
.innovation-card:hover::after {
    transform: scale(1.18);
    background: rgba(243,152,0,0.1);
}
.innovation-card .num-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.innovation-card .num-icon i {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(145deg, #0052A2, #1a6bc4);
    box-shadow: 0 10px 22px rgba(0,82,162,0.2);
    font-size: 1.18rem;
}
.innovation-card h5 {
    color: #0b1a2e;
    font-size: 1.08rem;
    font-weight: 900;
    margin: 0;
}
.innovation-card p {
    position: relative;
    z-index: 1;
    color: #4a5a6a;
    font-size: 0.9rem;
    line-height: 1.85;
    margin: 0;
}
.innovation-card:nth-child(2n) .num-icon i {
    background: linear-gradient(145deg, #F39800, #d98200);
    box-shadow: 0 10px 22px rgba(243,152,0,0.2);
}
@media (max-width: 900px) {
    .innovation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 560px) {
    .innovation-section {
        padding: 64px 0;
    }
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    .innovation-card {
        min-height: 0;
        padding: 24px 22px;
    }
}

/* 精准赋能结构 */
.empower-structure {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 48px;
}
.empower-tier {
    background: #fff;
    border-radius: 14px;
    padding: 24px 32px;
    text-align: center;
    border: 2px solid #e4ecf5;
    min-width: 320px;
    transition: all 0.3s;
}
.empower-tier:hover { border-color: #0052A2; }
.tier-gold { border-color: #F39800; background: linear-gradient(135deg, #fff, #fffbeb); }
.tier-blue { border-color: #0052A2; }
.tier-navy { border-color: #1a3a5c; }
.empower-tier .tier-badge {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0052A2, #1a6bc4);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 32px;
    margin-bottom: 8px;
}
.tier-gold .tier-badge { background: linear-gradient(145deg, #F39800, #d98200); }
.empower-tier h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #0b1a2e;
    margin-bottom: 4px;
}
.empower-tier p {
    font-size: 0.82rem;
    color: #6a7a8a;
    margin: 0;
}
.empower-arrow {
    font-size: 1.2rem;
    color: #b0c0d8;
    text-align: center;
    padding: 4px 0;
}
.empower-footer {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0052A2;
    text-align: center;
    padding: 12px;
}

/* Team Full Grid */
.team-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
@media (max-width: 768px) { .team-full-grid { grid-template-columns: 1fr; } }
.team-full-grid .team-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid #e4ecf5;
    box-shadow: 0 2px 12px rgba(0,82,162,0.06);
    transition: all 0.3s;
}
.team-full-grid .team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,82,162,0.12);
    border-color: #0052A2;
}
.team-full-grid .team-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0052A2, #1a6bc4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    color: #fff;
}
.team-full-grid .team-en {
    font-size: 0.7rem;
    font-weight: 700;
    color: #0052A2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}
.team-full-grid h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0b1a2e;
    text-align: center;
    margin-bottom: 8px;
}
.team-full-grid .team-desc {
    font-size: 0.82rem;
    color: #6a7a8a;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 16px;
}
.team-full-grid ul { list-style: none; padding: 0; margin: 0; }
.team-full-grid li {
    font-size: 0.82rem;
    color: #4a5a6a;
    padding: 4px 0 4px 16px;
    position: relative;
    line-height: 1.6;
    margin-bottom: 4px;
}
.team-full-grid li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #F39800;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
#about-page { padding: 80px 0; background: #f7f9fc; }
.about-profile {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    border: 1px solid #e4ecf5;
    margin-bottom: 48px;
}
.about-profile p {
    font-size: 0.95rem;
    color: #4a5a6a;
    line-height: 2;
    margin-bottom: 16px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.about-profile strong { color: #0052A2; font-weight: 700; }

/* About Highlights */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
@media (max-width: 768px) { .about-highlights { grid-template-columns: repeat(2, 1fr); } }
#about-page .hl-item {
    background: #fff;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    border: 1.5px solid #e4ecf5;
    transition: all 0.3s;
}
#about-page .hl-item:hover {
    border-color: #0052A2;
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,82,162,0.1);
}
#about-page .hl-item .icon {
    font-size: 2rem;
    color: #0052A2;
    margin-bottom: 12px;
}
#about-page .hl-item h5 {
    font-size: 0.92rem;
    font-weight: 800;
    color: #0b1a2e;
    margin-bottom: 4px;
}
#about-page .hl-item p {
    font-size: 0.78rem;
    color: #6a7a8a;
    line-height: 1.5;
}

/* Sys Empowerment */
.sys-empowerment {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    margin-bottom: 48px;
}
@media (max-width: 768px) { .sys-empowerment { grid-template-columns: 1fr; } }
.sys-left {
    background: linear-gradient(145deg, rgba(0,82,162,0.85), rgba(26,107,196,0.75)), url('../../img/fnbg.png');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: 16px 70px 40px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    color: #fff;
    min-height: 480px;
}
.sys-left-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: 0.85;
}
.sys-left-tag .sep {
    margin: 0 6px;
    opacity: 0.6;
}
.sys-left-title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 900;
    line-height: 1.25;
    color: #f06529;
    margin: 0 0 22px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.sys-left-en {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin: 0 0 18px;
    color: #fff;
    text-transform: uppercase;
}
.sys-left-line {
    width: 44px;
    height: 2px;
    background: #fff;
}
.sys-left-vertical {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.35);
    color: transparent;
    line-height: 1.05;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}
.sys-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sys-block {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    border: 1px solid #e4ecf5;
    transition: all 0.3s;
}
.sys-block:hover {
    border-color: #0052A2;
    box-shadow: 0 4px 16px rgba(0,82,162,0.08);
}
.sys-block h4 {
    font-size: 0.92rem;
    font-weight: 800;
    color: #0b1a2e;
    margin-bottom: 10px;
}
.sys-block h4 i { color: #0052A2; margin-right: 6px; }
.tag-bod-os, .tag-non-oil {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-right: 6px;
    margin-bottom: 6px;
}
.tag-bod-os { background: rgba(0,82,162,0.1); color: #0052A2; border: 1px solid rgba(0,82,162,0.2); }
.tag-non-oil { background: rgba(243,152,0,0.1); color: #c07d00; border: 1px solid rgba(243,152,0,0.2); }
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.pillar-item {
    background: #f5f8fd;
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    border: 1px solid #e4ecf5;
}
.pillar-item h6 {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0052A2;
    line-height: 1.4;
    margin: 0;
}

/* Vision Text */
.vision-text {
    background: linear-gradient(135deg, #0b1a2e, #1a3a5c);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 2;
    margin-bottom: 32px;
}
.highlight-blue { color: #4da6ff; }
.highlight-gold { color: #F39800; }

.section-cta {
    text-align: center;
    margin-top: 16px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
#contact-page { padding: 80px 0; background: #f7f9fc; }
.address-section { margin-bottom: 0; }
.address-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.accent-bar {
    width: 5px;
    height: 32px;
    background: linear-gradient(180deg, #0052A2, #F39800);
    border-radius: 3px;
    flex-shrink: 0;
}
.address-header h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0b1a2e;
}
.address-header h2 .en {
    font-size: 0.75rem;
    font-weight: 500;
    color: #8a9aaa;
    margin-left: 8px;
}
.address-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e4ecf5;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,82,162,0.08);
}
@media (max-width: 768px) { .address-grid { grid-template-columns: 1fr; } }

/* 地图容器 */
.address-map {
    min-height: 480px;
    background: #f0f4f8;
    position: relative;
}
#tdtMap { width: 100%; height: 480px; }

/* 联系信息 */
.address-info {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.address-info h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: #0b1a2e;
    margin-bottom: 24px;
}
.info-line {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}
.info-line .label {
    font-weight: 600;
    color: #8a9aaa;
    flex-shrink: 0;
}
.info-line .value {
    color: #0b1a2e;
    font-weight: 600;
}
.info-line .value a { color: #0052A2; transition: color 0.2s; }
.info-line .value a:hover { color: #F39800; }
.slogan {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid #e4ecf5;
    font-size: 1.1rem;
    font-weight: 900;
    color: #0b1a2e;
    line-height: 1.5;
}
.slogan span { color: #0052A2; }

/* ============================================
   NEWS PAGE
   ============================================ */
#news-page { padding: 80px 0; background: #f7f9fc; }
.news-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    justify-content: center;
}
.news-filter-btn {
    padding: 6px 18px;
    border-radius: 20px;
    border: 1.5px solid #e4ecf5;
    background: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    color: #6a7a8a;
    cursor: pointer;
    transition: all 0.3s;
}
.news-filter-btn:hover,
.news-filter-btn.active {
    background: #0052A2;
    color: #fff;
    border-color: #0052A2;
}
.news-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
@media (max-width: 900px) { .news-list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .news-list-grid { grid-template-columns: 1fr; } }
.news-list-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e4ecf5;
    transition: all 0.3s;
}
.news-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,82,162,0.1);
    border-color: #0052A2;
}
.news-list-card .news-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.news-list-card .news-body { padding: 20px; }
.news-list-card .news-date {
    font-size: 0.72rem;
    color: #8a9aaa;
    font-weight: 500;
    margin-bottom: 8px;
}
.news-list-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0b1a2e;
    margin-bottom: 8px;
    line-height: 1.5;
}
.news-list-card p {
    font-size: 0.78rem;
    color: #6a7a8a;
    line-height: 1.7;
}
.news-tag {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(0,82,162,0.08);
    color: #0052A2;
    border-radius: 8px;
    font-size: 0.68rem;
    font-weight: 600;
    margin-bottom: 8px;
}

/* ============================================
   NEWS DETAIL PAGE
   ============================================ */
#news-detail-page { padding: 80px 0; background: #f7f9fc; }
.news-article {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e4ecf5;
}
.news-article-header {
    background: linear-gradient(135deg, #0b1a2e, #1a3a5c);
    padding: 48px;
    text-align: center;
}
.news-article-header .news-tag { margin-bottom: 16px; }
.news-article-header h1 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.4;
}
.news-meta {
    display: flex;
    gap: 24px;
    justify-content: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}
.news-meta span i { margin-right: 4px; }
.news-article-body {
    padding: 48px;
    font-size: 0.95rem;
    color: #4a5a6a;
    line-height: 2;
}
.news-article-body p { margin-bottom: 16px; }
.news-article-body h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0b1a2e;
    margin: 24px 0 12px;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #0052A2;
    font-weight: 600;
    padding: 10px 24px;
    background: rgba(0,82,162,0.08);
    border-radius: 20px;
    transition: all 0.3s;
    margin-top: 24px;
}
.back-link:hover {
    background: #0052A2;
    color: #fff;
}

