/* Self-hosted Inter (variable 300-700).
   Google Fonts is unreachable in mainland China and blocked the first paint,
   so the font is served locally from assets/fonts/. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* =========================================================
   HYSIM — Shared Design System (extracted from homepage)
   Used by all sub-pages (level-2 / level-3). Keep in sync
   with hysim-english.html visual language.
   ========================================================= */

*, *::before, *::after { margin:0; padding:0; box-sizing: border-box; }

:root {
    /* Brand — Dassault Systèmes (3DS) inspired blue system */
    --accent: #0072B5;        /* main authoritative blue */
    --accent-deep: #00507F;   /* darker, for pressed / hover base */
    --accent-bright: #009BDE;  /* bright interaction blue (3DS compass) */
    --accent-ink: #003354;
    --accent-tint: #E9F3FA;
    --accent-line: #BEDCEE;

    /* Refined neutrals (cool, sophisticated) */
    --ink: #0B1F2E;
    --text: #45586A;
    --text-soft: #697C8E;
    --muted: #91A3B2;
    --line: #E4EBF1;
    --line-soft: #EEF3F7;

    --white: #FFFFFF;
    --bg-soft: #F5F9FC;
    --bg-band: #EEF5FB;
    --deep: #00263D;

    --shadow-sm: 0 1px 2px rgba(15,30,45,0.04);
    --shadow-card: 0 18px 48px rgba(15,30,45,0.07);
    --shadow-card-hover: 0 26px 60px rgba(12,44,68,0.14);
    --t: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: inherit; transition: var(--t); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent-bright); color: #fff; }

/* Full-width band wrapper */
.band { width: 100%; }
.band-inner { max-width: 1680px; margin:0 auto; padding: 0 6vw; }

/* ============ HEADER ============ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 78px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border-bottom: 1px solid rgba(230,236,241,0.7);
    transition: box-shadow 0.3s ease;
}
.site-header > .band-inner {
    height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.site-logo { display: flex; align-items: center; gap: 11px; }
.logo-img { height: 40px; width: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 46px; }
.site-nav a { font-size: 0.9rem; color: var(--text); font-weight: 500; position: relative; letter-spacing: 0.2px; }
.site-nav a::after {
    content: ''; position: absolute; bottom: -7px; left: 0; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
    transition: width 0.35s ease; border-radius: 2px;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a:hover::after { width: 100%; }
.site-nav a.active { color: var(--accent); }
.site-nav a.active::after { width: 100%; }
.nav-group { display: flex; align-items: center; gap: 22px; padding: 0 30px; position: relative; }
.nav-group:first-child { padding-left: 0; }

/* Mobile menu toggle — JS-driven (gen_site.py script() toggles .open on .site-nav
   and .nav-open on <body>). Collapse is gated behind .js so the menu stays visible
   and reachable when JavaScript is unavailable. The visible control is the
   .nav-toggle <button> (3 spans = burger lines); there is intentionally no
   separate .nav-burger element. */
.nav-toggle {
    display: none;                 /* hidden on desktop */
    margin-left: auto;
    width: 44px; height: 44px; flex: 0 0 auto;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    background: transparent; border: 0; cursor: pointer; padding: 0;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px; border-radius: 2px;
    background: var(--ink); transition: transform .3s ease, opacity .3s ease;
}

/* Scroll-reveal is a progressive enhancement: hidden ONLY when JS is on (.js set
   in <head>). With JS off, all content stays visible (crawler/AI/no-JS friendly). */
.js .feat-card, .js .ind-card, .js .sol-card, .js .step, .js .subitem,
.js .news-card, .js .related-grid a, .js .media-card, .js .logo-tile {
    opacity: 0; transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}
.js .feat-card.in, .js .ind-card.in, .js .sol-card.in, .js .step.in, .js .subitem.in,
.js .news-card.in, .js .related-grid a.in, .js .media-card.in, .js .logo-tile.in {
    opacity: 1; transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .js .feat-card, .js .ind-card, .js .sol-card, .js .step, .js .subitem,
    .js .news-card, .js .related-grid a, .js .media-card, .js .logo-tile { opacity: 1; transform: none; transition: none; }
}

/* ============ HERO (homepage, kept for reference) ============ */
.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    background: var(--white); position: relative; overflow: hidden;
    padding: 130px 6vw 96px;
}
.hero::before {
    content: ''; position: absolute; top: -180px; right: -180px;
    width: 560px; height: 560px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,155,222,0.10), transparent 70%);
}
.hero::after {
    content: ''; position: absolute; bottom: -160px; left: -160px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,114,181,0.07), transparent 70%);
}
.hero-inner { position: relative; z-index: 2; max-width: 1000px; width: 100%; }
.hero h1 {
    font-size: clamp(2.9rem, 5.4vw, 5.6rem); font-weight: 300; line-height: 1.06; letter-spacing: -2.4px;
    color: var(--ink); margin-bottom: 30px;
}
.hero h1 strong { font-weight: 700; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-subtitle {
    font-size: clamp(1.05rem, 1.3vw, 1.28rem); color: var(--text);
    max-width: 680px; margin: 0 auto 46px; line-height: 1.8; font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 76px; margin-top: 84px; padding-top: 46px; border-top: 1px solid var(--line); flex-wrap: wrap; justify-content: center; }
.hero-stat .stat-number { font-size: clamp(2.3rem, 3.5vw, 3.1rem); font-weight: 300; color: var(--ink); line-height: 1; letter-spacing: -1.5px; }
.hero-stat .stat-number strong { font-weight: 700; color: var(--accent); }
.hero-stat .stat-label { font-size: 0.84rem; color: var(--text-soft); margin-top: 11px; letter-spacing: 0.5px; font-weight: 500; }

/* ============ BUTTONS ============ */
.btn-primary {
    padding: 16px 42px;
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    color: #fff;
    font-size: 0.95rem; font-weight: 600; border-radius: 10px; transition: var(--t);
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 24px rgba(0,114,181,0.28);
    border: none; cursor: pointer;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--accent-deep), var(--accent)); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,114,181,0.40); }
.btn-secondary {
    padding: 16px 38px; background: transparent; color: var(--ink);
    font-size: 0.95rem; font-weight: 600; border: 1.5px solid var(--line);
    border-radius: 10px; transition: var(--t);
    display: inline-flex; align-items: center; gap: 10px;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-tint); }
.btn-ghost {
    padding: 13px 30px; background: transparent; color: var(--accent);
    font-size: 0.9rem; font-weight: 600; border: 1.5px solid var(--accent-line);
    border-radius: 10px; transition: var(--t); display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { background: var(--accent-tint); border-color: var(--accent); }

/* ============ SECTION COMMON ============ */
.section { padding: 120px 0; }
.section-head { text-align: center; margin: 0 auto 70px; max-width: 760px; }
.section-label {
    display: inline-block; font-size: 0.78rem; letter-spacing: 4.5px; text-transform: uppercase;
    color: var(--accent); font-weight: 700; margin-bottom: 20px;
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 3.3rem); font-weight: 300; letter-spacing: -1.2px; color: var(--ink); line-height: 1.18;
}
.section-title strong { font-weight: 700; }
.section-desc {
    font-size: clamp(1rem, 1.1vw, 1.12rem); color: var(--text); margin-top: 20px; line-height: 1.8;
}
.band-soft { background: var(--bg-band); }

/* ============ CARDS (reused from homepage) ============ */
.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.sol-card {
    background: var(--white); border: 1px solid var(--line);
    border-radius: 18px; padding: 42px 44px; position: relative; overflow: hidden;
    transition: var(--t); box-shadow: var(--shadow-card); cursor: default;
}
.sol-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
    border-radius: 18px 18px 0 0;
}
.sol-card:hover { border-color: var(--accent-line); box-shadow: var(--shadow-card-hover); transform: translateY(-6px); }
.sol-card:hover::before { transform: scaleX(1); }
.sol-card h3 { font-size: clamp(1.2rem, 1.55vw, 1.42rem); font-weight: 600; color: var(--ink); margin-bottom: 14px; letter-spacing: -0.3px; }
.sol-card p { font-size: 0.98rem; color: var(--text); line-height: 1.76; margin-bottom: 22px; }
.sol-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.sol-tag {
    padding: 6px 15px; background: var(--accent-tint); border: 1px solid var(--accent-line);
    border-radius: 8px; font-size: 0.8rem; color: var(--accent-deep); font-weight: 500;
    display: inline-block; line-height: 1.4;
}
a.sol-tag, a.sol-tag:link, a.sol-tag:visited {
    text-decoration: none; color: var(--accent-deep);
}
a.sol-tag:hover, a.sol-tag:focus-visible {
    background: var(--accent); color: var(--white);
    border-color: var(--accent); transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(54,126,180,0.18);
}

.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ind-card {
    background: var(--white); border: 1px solid var(--line);
    border-radius: 18px; padding: 38px 34px; position: relative; overflow: hidden;
    transition: var(--t); box-shadow: var(--shadow-card);
}
.ind-card::before {
    content: ''; position: absolute; top:0; left:0; right:0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.ind-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-5px); }
.ind-card:hover::before { transform: scaleX(1); }
.ind-card h3 { font-size: 1.18rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.2px; }
.ind-card p { font-size: 0.92rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 18px; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.ind-tag {
    padding: 5px 13px; background: var(--bg-soft); border: 1px solid var(--line);
    border-radius: 7px; font-size: 0.76rem; color: var(--text-soft); font-weight: 500; transition: var(--t);
    display: inline-block; line-height: 1.4;
}
a.ind-tag, a.ind-tag:link, a.ind-tag:visited {
    text-decoration: none; color: var(--text-soft);
}
a.ind-tag:hover, a.ind-tag:focus-visible {
    color: var(--accent); border-color: var(--accent-line); background: var(--accent-tint);
}
.ind-card:hover .ind-tag { border-color: var(--accent-line); color: var(--accent); background: var(--accent-tint); }

/* ============ CLICKABLE TITLES / TILES ============ */
/* card titles jump to L3 */
.sol-card h3 a, .ind-card h3 a { color: inherit; text-decoration: none; transition: var(--t); }
.sol-card h3 a:hover, .ind-card h3 a:hover { color: var(--accent); }
/* section big title jumps to L2 */
.section-title .ttl-link { color: inherit; text-decoration: none; transition: var(--t); display: inline-block; }
.section-title .ttl-link:hover { color: var(--accent); }
/* logo / partner tile anchors */
.logo-tile { text-decoration: none; }

/* ============ LOGO WALL ============ */
.logo-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.logo-tile {
    background: var(--white); border: 1px solid var(--line);
    border-radius: 14px; min-height: 132px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
    padding: 24px 20px; transition: var(--t); cursor: default; text-align: center;
}
.logo-tile:hover { border-color: var(--accent-line); background: var(--accent-tint); transform: translateY(-5px); box-shadow: var(--shadow-card); }
.logo-mark { font-size: 1.32rem; font-weight: 700; letter-spacing: 0.3px; color: var(--ink); transition: var(--t); line-height: 1.15; }
.logo-tile:hover .logo-mark { color: var(--accent); }
.logo-caption { font-size: 0.68rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); transition: var(--t); }

/* ============ CLIENT MARQUEE ============ */
.client-marquee {
    display: flex; flex-direction: column; gap: 14px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.client-track { display: flex; gap: 14px; width: max-content; animation: marquee-left 46s linear infinite; }
.client-track--rev { animation: marquee-right 46s linear infinite; animation-delay: -23s; }
.client-marquee:hover .client-track { animation-play-state: paused; }
.client-logo {
    width: 184px; height: 84px; flex: 0 0 auto;
    display: flex; align-items: center; justify-content: center;
    background: var(--white); border: 1px solid var(--line); border-radius: 12px;
    font-size: 1.05rem; font-weight: 700; letter-spacing: 0.3px; color: var(--ink); transition: var(--t);
}
.client-logo:hover { border-color: var(--accent-line); color: var(--accent); background: var(--accent-tint); }
@keyframes marquee-right { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-left  { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* =========================================================
   SUB-PAGE COMPONENTS (level-2 / level-3)
   ========================================================= */

/* push content below fixed header */
.page { padding-top: 78px; }

/* Sub-page hero */
.subhero {
    position: relative; overflow: hidden;
    background: linear-gradient(160deg, var(--bg-band), #ffffff 70%);
    padding: 96px 0 84px;
    border-bottom: 1px solid var(--line);
}
.subhero::before {
    content: ''; position: absolute; top: -140px; right: -120px;
    width: 460px; height: 460px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,155,222,0.10), transparent 70%);
}
.subhero .band-inner { position: relative; z-index: 2; text-align: center; }
/* Center-align all subhero content (big title + lead) across business/industry/SI/news detail pages */
.breadcrumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: 9px;
    font-size: 0.82rem; color: var(--text-soft); margin: 0 auto 26px;
    max-width: 720px; justify-content: flex-start; text-align: left;
}
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--muted); }
.breadcrumb .cur { color: var(--accent); font-weight: 600; }
.subhero-label {
    display: inline-block; font-size: 0.76rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--accent); font-weight: 700; margin-bottom: 18px;
}
.subhero h1 {
    font-size: clamp(2.2rem, 4.4vw, 3.6rem); font-weight: 300; letter-spacing: -1.4px;
    color: var(--ink); line-height: 1.1; margin: 0 auto 22px; max-width: 32ch;
}
.subhero h1 strong { font-weight: 700; }
.subhero-sub {
    font-size: clamp(1rem, 1.15vw, 1.18rem); color: var(--text);
    max-width: 720px; line-height: 1.8; margin: 0 auto 34px;
}
.subhero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* lead paragraph under a section */
.lead {
    font-size: clamp(1.02rem, 1.15vw, 1.18rem); color: var(--text);
    line-height: 1.85; max-width: 820px; margin: 0 auto 0;
}
.lead + .lead { margin-top: 18px; }

/* feature grid */
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feat-card {
    background: var(--white); border: 1px solid var(--line); border-radius: 16px;
    padding: 34px 36px; transition: var(--t); box-shadow: var(--shadow-card);
    position: relative; overflow: hidden;
}
.feat-card::before {
    content: ''; position: absolute; top:0; left:0; right:0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); border-color: var(--accent-line); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-card .num {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--accent-tint); color: var(--accent-deep);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; margin-bottom: 18px;
}
.feat-card h3 { font-size: 1.12rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.feat-card p { font-size: 0.94rem; color: var(--text); line-height: 1.74; }

/* 3-step delivery */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
    background: var(--white); border: 1px solid var(--line); border-radius: 16px;
    padding: 32px 32px; position: relative; box-shadow: var(--shadow-card);
}
.step .step-no {
    counter-increment: step; content: counter(step);
    font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; color: var(--accent);
    text-transform: uppercase; margin-bottom: 14px; display: block;
}
.step .step-no::before { content: "0" counter(step); }
.step h3 { font-size: 1.08rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--text); line-height: 1.72; }

/* numbered list of sub-solution links (on L2) */
.sublist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.sublist a.subitem {
    display: flex; align-items: center; gap: 18px;
    background: var(--white); border: 1px solid var(--line); border-radius: 14px;
    padding: 24px 28px; transition: var(--t); box-shadow: var(--shadow-sm);
}
.sublist a.subitem:hover { border-color: var(--accent-line); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.sublist .si-no {
    flex: 0 0 auto; width: 44px; height: 44px; border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-bright)); color: #fff;
    display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem;
}
.sublist .si-body h3 { font-size: 1.08rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.sublist .si-body p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.6; }
.sublist .si-arrow { margin-left: auto; color: var(--accent); font-weight: 700; transition: var(--t); }
.sublist a.subitem:hover .si-arrow { transform: translateX(5px); }

/* stat row */
.stat-row { display: flex; flex-wrap: wrap; gap: 60px; justify-content: center; padding: 50px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { text-align: center; }
.stat .n { font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300; color: var(--ink); letter-spacing: -1.2px; line-height: 1; }
.stat .n strong { font-weight: 700; color: var(--accent); }
.stat .l { font-size: 0.84rem; color: var(--text-soft); margin-top: 10px; letter-spacing: 0.4px; }

/* tags row */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.pill { padding: 7px 16px; background: var(--accent-tint); border: 1px solid var(--accent-line); border-radius: 8px; font-size: 0.82rem; color: var(--accent-deep); font-weight: 500; }

/* related links block */
.related { background: var(--bg-soft); border-top: 1px solid var(--line); }
.related h2 { font-size: 1.5rem; font-weight: 600; color: var(--ink); margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-grid a {
    background: var(--white); border: 1px solid var(--line); border-radius: 12px;
    padding: 20px 22px; transition: var(--t); display: block;
}
.related-grid a:hover { border-color: var(--accent-line); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.related-grid .rt { font-size: 0.72rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 7px; }
.related-grid .rh { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.related-grid .rd { font-size: 0.86rem; color: var(--text-soft); line-height: 1.6; }

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--accent-deep), var(--accent));
    color: #fff; text-align: center; padding: 84px 0;
    position: relative; overflow: hidden;
}
.cta-band::after {
    content: ''; position: absolute; bottom: -160px; right: -120px; width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%);
}
.cta-band .band-inner { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; letter-spacing: -1px; margin-bottom: 16px; }
.cta-band h2 strong { font-weight: 700; }
.cta-band p { font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 620px; margin: 0 auto 32px; line-height: 1.7; }
.cta-band .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-band .btn-secondary:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; }

/* article body (news level-3) */
.article { max-width: 820px; margin: 0 auto; }
.article .meta { display: flex; gap: 14px; align-items: center; margin-bottom: 22px; font-size: 0.85rem; color: var(--text-soft); }
.article .cat { color: var(--accent); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 0.74rem; }
.article h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); font-weight: 600; color: var(--ink); letter-spacing: -0.8px; line-height: 1.22; margin-bottom: 18px; }
.article p { font-size: 1.04rem; color: var(--text); line-height: 1.9; margin-bottom: 20px; }
.article h3 { font-size: 1.3rem; font-weight: 600; color: var(--ink); margin: 36px 0 14px; }
.article h4 { font-size: 1.08rem; font-weight: 600; color: var(--accent-deep); margin: 26px 0 10px; }
.article blockquote {
    border-left: 3px solid var(--accent); background: var(--accent-tint);
    padding: 18px 24px; border-radius: 0 10px 10px 0; margin: 24px 0; color: var(--accent-deep); font-style: italic; line-height: 1.8;
}
.article-hero-media {
    height: 320px; border-radius: 18px; margin: 0 0 40px;
    background: linear-gradient(135deg, var(--accent-tint), #ffffff);
    border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
}

/* Long-form L4 article (mirrors reference hysim.net/services/skill/516.html): lead + numbered H2/H3 sections + lists */
.article .lead { font-size: 1.16rem; line-height: 1.95; color: var(--text); margin: 0 0 30px; }
.article h2 { margin-top: 46px; }
.article h2:first-of-type { margin-top: 0; }
.article ul, .article ol { margin: 0 0 26px; padding-left: 22px; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article ul li, .article ol li { font-size: 1.04rem; line-height: 1.85; margin-bottom: 12px; color: var(--text); }
.article ul li::marker { color: var(--accent); }

/* ============ DETAIL (level-3: big title + 图文 image-text) ============ */
/* Centered reading column for the whole 图文 page */
.detail { max-width: 900px; margin: 0 auto; }

/* Opening text (article-style lead, no image) */
.detail-intro { font-size: 1.18rem; line-height: 1.95; color: var(--text); margin: 0 0 40px; }

/* 4-up image+text grid for detail pages that list 4 sub-services */
.detail--grid4 { max-width: 1300px; }
.detail--grid4 .detail-intro { max-width: 900px; }
.media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; }
.media-grid .media-card { margin: 0; }
@media (max-width: 1100px){ .media-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .media-grid { grid-template-columns: 1fr; } }

/* 3-up variant for section index pages (e.g. System Integration, 3 items) */
.media-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px){ .media-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .media-grid--3 { grid-template-columns: 1fr; } }

/* 4-up compact variant — fixed 4 per row, auto-wraps to the next row,
   scales down on tablet/phone. Used by Industry Solutions (industries.html + each industry detail page). */
.media-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.media-grid--4 .media-card { border-radius: 14px; box-shadow: 0 6px 20px rgba(0,40,61,.06); }
.media-grid--4 .media-card .mc-img { aspect-ratio: 16 / 10; }
.media-grid--4 .media-card .mc-img .mc-emoji { font-size: 2.8rem; }
.media-grid--4 .media-card .mc-body { padding: 16px 18px 18px; }
.media-grid--4 .media-card .mc-body h3 { font-size: 1.08rem; margin: 0 0 8px; letter-spacing: -0.2px; }
.media-grid--4 .media-card .mc-body p { font-size: .92rem; line-height: 1.6; margin: 0 0 10px; }
.media-grid--4 .media-card--link:hover { transform: translateY(-3px); }
@media (max-width: 1100px){ .media-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .media-grid--4 { grid-template-columns: 1fr; } }

/* Tighter vertical rhythm — applied ONLY to the page that opts in (digital-marketing) */
.page--tight .subhero { padding: 56px 0 44px; }
.page--tight .subhero h1 { margin-bottom: 16px; }
.page--tight .subhero-sub { margin-bottom: 26px; }
.page--tight .section { padding: 64px 0; }
.page--tight .detail-intro { margin-bottom: 28px; }
.page--tight .media-grid { gap: 20px; }
.page--tight .media-card .mc-body { padding: 22px 22px 24px; }

/* 图文 card: image placeholder on top, text below — the clearest image+text layout */
.media-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,40,61,.06);
    margin: 0 0 34px;
}
.media-card:last-child { margin-bottom: 0; }
.media-card .mc-img {
    position: relative;
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(135deg, var(--accent-tint), #cfe6f5);
    display: flex; align-items: center; justify-content: center;
}
.media-card .mc-img .mc-emoji { font-size: 3.6rem; line-height: 1; }
.media-card .mc-img .mc-tag {
    position: absolute; top: 14px; left: 14px;
    background: rgba(0,80,127,.86); color: #fff;
    font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 20px; font-weight: 600;
}
/* Optional cover image uploaded via the backend media library. When set, the
   fallback decorations (Image chip + emoji) are hidden — the photo is the cover. */
.media-card .mc-img .mc-cover {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
}
.media-card .mc-img:has(.mc-cover) .mc-emoji,
.media-card .mc-img:has(.mc-cover) .mc-tag { display: none; }
.media-card .mc-body { padding: 26px 30px 30px; }
.media-card .mc-body h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 600; color: var(--ink);
    margin: 0 0 12px; letter-spacing: -0.4px;
}
.media-card .mc-body p {
    font-size: 1rem; color: var(--text); line-height: 1.85; margin: 0 0 16px;
}
.mc-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.mc-tags .pill { padding: 6px 14px; background: var(--accent-tint); border: 1px solid var(--accent-line); border-radius: 8px; font-size: 0.8rem; color: var(--accent-deep); font-weight: 500; }

/* clickable image+text card (section index links) */
.media-card--link { cursor: pointer; text-decoration: none; color: inherit; transition: transform .25s ease, box-shadow .25s ease; }
.media-card--link:hover { transform: translateY(-5px); box-shadow: 0 16px 38px rgba(0,40,61,.14); border-color: var(--accent-line); }
.media-card--link .mc-more { display: block; text-align: center; margin-top: 10px; color: var(--accent); font-weight: 600; font-size: .94rem; }
.media-card--link .mc-more .arr { display: inline-block; transition: transform .2s ease; }
.media-card--link:hover .mc-more .arr { transform: translateX(5px); }

/* ============ NEWS GRID (news.html + related) ============ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
    background: var(--white); border: 1px solid var(--line); border-radius: 16px;
    overflow: hidden; transition: var(--t); box-shadow: var(--shadow-card); display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: var(--accent-line); }
.news-thumb { height: 150px; background: linear-gradient(135deg, var(--accent-tint), #ffffff); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; border-bottom: 1px solid var(--line); position: relative; }
.news-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(140deg, rgba(0,114,181,0.04), rgba(0,155,222,0.12)); }
.news-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.news-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; font-size: 0.78rem; }
.news-cat { color: var(--accent); font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; }
.news-date { color: var(--muted); }
.news-card h3 { font-size: 1.08rem; font-weight: 600; color: var(--ink); line-height: 1.4; margin-bottom: 10px; }
.news-card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.news-more { color: var(--accent); font-weight: 600; font-size: 0.88rem; display: flex; width: 100%; justify-content: center; align-items: center; gap: 6px; }
.news-card:hover .news-more .arr { transform: translateX(5px); }
.news-more .arr { transition: transform 0.3s ease; }

/* ============ FOOTER (deep navy, 3 nav columns + compact contact card with phones, socials, QR) ============ */
.site-footer { background: var(--deep); color: rgba(255,255,255,0.78); padding: 64px 0 28px; }
.footer-inner { max-width: 1680px; margin: 0 auto; padding: 0 5vw; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr 1.35fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); align-items: start; }
.footer-col h4 { font-size: 0.95rem; font-weight: 600; color: #fff; margin: 0 0 18px; letter-spacing: 0.3px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; list-style: none; }
.footer-col a { font-size: 0.86rem; color: rgba(255,255,255,0.62); transition: var(--t); }
.footer-col a:hover { color: #fff; }
/* --- Contact card (matches the Chinese site footer) --- */
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact p.c-phone { margin: 0; display: flex; align-items: baseline; gap: 10px; line-height: 1.45; }
.footer-contact .lbl { font-size: 0.72rem; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(255,255,255,0.5); min-width: 44px; }
.footer-contact .tel-link {
    color: var(--accent-bright);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.2px;
}
.footer-contact .tel-link:hover { color: #fff; text-decoration: underline; }
/* 3 round social icons (mirrors Chinese footer) */
.footer-contact .footer-social { display: flex; gap: 14px; margin-top: 6px; }
.footer-contact .social-ic {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.04);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.78); transition: var(--t);
}
.footer-contact .social-ic svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.footer-contact .social-ic:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,114,181,0.42); }
/* WeChat QR (or graceful placeholder when image missing) */
.footer-contact .footer-qr {
    display: inline-flex; align-self: flex-start;
    margin-top: 12px; background: #fff; padding: 6px;
    border-radius: 6px; transition: var(--t);
}
.footer-contact .footer-qr img { display: block; width: 132px; height: 132px; object-fit: contain; }
.footer-contact .footer-qr:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,0.3); }
/* Fallback when QR image fails to load: render a neutral placeholder block */
.footer-contact .footer-qr.qr-fallback { background: rgba(255,255,255,0.06); padding: 28px 18px; color: rgba(255,255,255,0.45); font-size: 0.78rem; letter-spacing: 1px; }
.footer-contact .qr-hint { margin: 10px 0 0; font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.4px; }
/* Bottom legal / copyright strip */
.footer-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 0.8rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px; }
.footer-bot a { color: rgba(255,255,255,0.34); }
.footer-bot a:hover { color: rgba(255,255,255,0.66); }
.footer-legal { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-legal .legal-links a { color: rgba(255,255,255,0.34); }
.footer-legal .legal-links a:hover { color: rgba(255,255,255,0.66); }

/* ============ NOSCRIPT FALLBACK ============ */
.noscript-content { max-width: 900px; margin: 0 auto; padding: 60px 6vw; }
.noscript-content h1 { font-size: 1.8rem; margin-bottom: 16px; }
.noscript-content h2 { font-size: 1.2rem; margin: 28px 0 12px; }
.noscript-content ul { list-style: disc; padding-left: 22px; }
.noscript-content li { margin-bottom: 8px; line-height: 1.7; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1280px) {
    .band-inner { padding: 0 5vw; }
    .footer-inner { padding: 0 5vw; }
    .hero-stats { gap: 54px; }
    /* Mid width: 3 nav cols + slightly wider contact card */
    .footer-top { grid-template-columns: 1fr 1fr 1fr 1.55fr; gap: 36px; }
}
@media (max-width: 1024px) {
    .logo-wall { grid-template-columns: repeat(2, 1fr); }
    .ind-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    /* Footer: 2 equal columns, contact spans full width */
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-col { grid-column: auto; }
    .footer-col.footer-contact { grid-column: 1 / -1; max-width: 420px; }
    .steps { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .band-inner, .hero, .footer-inner { padding-left: 22px; padding-right: 22px; }
    .nav-toggle { display: flex; }
    .site-nav {
        position: absolute; top: 78px; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--white); border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 44px rgba(15,30,45,.14);
        padding: 6px 22px 16px;
    }
    .js .site-nav { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
    .site-nav.open { max-height: 78vh; overflow-y: auto; }
    .site-nav .nav-group { flex-direction: column; align-items: stretch; gap: 0; padding: 0; }
    .site-nav .nav-group a { padding: 15px 2px; font-size: 1rem; border-bottom: 1px solid var(--line-soft); }
    .site-nav .nav-group a::after { display: none; }
    .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hero h1 { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats { flex-wrap: wrap; gap: 30px; }
    .section { padding: 76px 0; }
    .section-title { font-size: 1.9rem; }
    .logo-wall { grid-template-columns: 1fr; }
    .ind-grid { grid-template-columns: 1fr; }
    .solutions-grid { grid-template-columns: 1fr; }
    .feat-grid { grid-template-columns: 1fr; }
    .sublist { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bot { flex-direction: column; gap: 12px; text-align: center; }
    .footer-legal { justify-content: center; }
    .client-logo { width: 150px; height: 72px; font-size: 0.95rem; }
    .media-card .mc-body { padding: 22px 20px 24px; }
    .media-card .mc-img { aspect-ratio: 4 / 3; }
    .detail-intro { font-size: 1.08rem; }
}

/* ---------- backend CMS page blocks (render_cms_page) ---------- */
.cms-fig { margin: 28px 0; }
.cms-fig img { width: 100%; border-radius: 12px; display: block; box-shadow: 0 8px 24px rgba(0,38,61,.10); }
.cms-fig figcaption { font-size: .9rem; color: #5b6b78; margin-top: 8px; text-align: center; }
.cms-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 24px 0; }
.cms-card { background: #E9F3FA; border: 1px solid #BEDCEE; border-radius: 12px; padding: 18px 20px; font-weight: 500; }
.cms-cta { background: #00263D; color: #fff; border-radius: 14px; padding: 28px 30px; margin: 26px 0; text-align: center; }
.cms-cta h2 { color: #fff; margin-bottom: 8px; }
.cms-cta p { color: #cfe3f2; margin: 0; }
