:root {
    --bg: #f4f6f8;
    --panel: #ffffff;
    --text: #101828;
    --muted: #667085;
    --line: #e4e7ec;
    --primary: #155eef;
    --primary-dark: #004eeb;
    --soft-blue: #eaf2ff;
    --green: #12b76a;
    --shadow: 0 18px 50px rgba(16, 24, 40, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.75;
    font-size: 23px;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.top-service-bar {
    padding: 12px 16px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), #7a5af8);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .08em;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(228,231,236,.85);
}
.nav-wrap { height: 74px; display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
    width: 40px; height: 40px; display: grid; place-items: center;
    color: #fff; font-weight: 800; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #7a5af8);
    box-shadow: 0 8px 18px rgba(21,94,239,.22);
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 22px; line-height: 1.25; }
.brand small { color: var(--muted); font-size: 25px; margin-top: 2px; }
.nav { display: flex; gap: 28px; color: #475467; font-size: 22px; }
.nav a:hover { color: var(--primary); }
.nav-cta {
    padding: 12px 18px; border-radius: 10px; color: #fff; background: var(--text);
    font-size: 21px; font-weight: 700;
}

.hero { padding: 82px 0 72px; overflow: hidden; background: linear-gradient(180deg,#fff 0%,#f7faff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-block; font-size: 19px; letter-spacing: .14em; font-weight: 800; color: var(--primary); }
.hero-guidance-line {
    margin-top: 8px;
    font-size: 25px;
    line-height: 1.4;
    font-weight: 800;
    color: #344054;
    letter-spacing: .04em;
}
.hero h1 { margin: 17px 0 20px; font-size: clamp(42px,5.2vw,72px); line-height: 1.1; letter-spacing: -.04em; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero-copy > p { max-width: 650px; color: #475467; font-size: 27px; margin: 0; }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 11px; font-size: 22px; font-weight: 750; transition: .2s ease; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 24px rgba(21,94,239,.18); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--line); background: #fff; color: #344054; }
.hero-stats { display: flex; gap: 34px; margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--line); max-width: 540px; }
.hero-stats div { display: flex; align-items: baseline; gap: 7px; }
.hero-stats strong { font-size: 38px; }
.hero-stats span { font-size: 22px; color: var(--muted); }

.hero-panel { min-height: 450px; position: relative; border-radius: 30px; background: #ffffff; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: stretch; border: 1px solid var(--line); }
.hero-panel-image { width: 100%; height: auto; display: block; object-fit: cover; }
.hero-inline-qr {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 18px 24px 20px;
    overflow: hidden;
    background: linear-gradient(180deg,#ffffff 0%,#f7faff 100%);
    border-top: 1px solid var(--line);
}
.hero-service-visual {
    position: absolute;
    left: -42px;
    bottom: 42px;
    width: 345px;
    height: 292px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    pointer-events: none;
}
.hero-service-visual img {
    display: block;
    width: 345px;
    max-width: none;
    height: auto;
    object-fit: contain;
    transform: scaleX(-1);
    transform-origin: center;
    filter: drop-shadow(0 20px 30px rgba(21,94,239,.16));
}
.hero-qr-side {
    position: relative;
    z-index: 2;
    flex: 0 0 232px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-right: 0;
}
.hero-inline-qr-image {
    flex: 0 0 232px;
    width: 232px;
    padding: 8px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(15,23,42,.08);
}
.hero-inline-qr-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.hero-inline-qr-copy strong,
.hero-inline-qr-copy span {
    display: block;
}
.hero-inline-qr-copy {
    width: 100%;
    text-align: center;
}
.hero-inline-qr-copy strong {
    font-size: 24px;
    color: var(--text);
}
.hero-inline-qr-copy span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.55;
}

.section { padding: 88px 0; }
.section-heading { margin-bottom: 36px; }
.section-heading h2 { margin: 10px 0 0; font-size: clamp(30px,3.5vw,46px); line-height: 1.2; letter-spacing: -.03em; }
.section-heading p { color: var(--muted); margin: 12px 0 0; font-size: 24px; }
.split-heading { display: grid; grid-template-columns: 1fr .82fr; gap: 60px; align-items: end; }
.split-heading > p { margin: 0 0 5px; font-size: 25px; }
.centered { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }

.risk-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.risk-card { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 24px 24px 28px; transition: .25s ease; }
.risk-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.risk-card-head { display:flex; align-items:center; justify-content:space-between; gap:14px; }
.risk-icon-wrap { width:60px; height:60px; border-radius:18px; background: linear-gradient(180deg,#f8fbff 0%,#eef4ff 100%); display:grid; place-items:center; border:1px solid #dbe8ff; box-shadow: inset 0 1px 0 rgba(255,255,255,.85); }
.risk-icon { width:40px; height:40px; display:block; }
.risk-num { display: inline-flex; width: 50px; height: 50px; align-items:center; justify-content:center; border-radius: 12px; background: var(--soft-blue); color: var(--primary); font-weight: 800; font-size: 22px; }
.risk-card h3 { margin: 22px 0 10px; font-size: 34px; }
.risk-card p { margin: 0; color: var(--muted); font-size: 24px; }

.direction-section { background: #fff; }
.direction-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.direction-card { position: relative; min-height: 360px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(180deg,#fff 0%,#fbfdff 100%); transition: .25s ease; overflow:hidden; }
.direction-card::after { content:""; position:absolute; width:160px; height:160px; border-radius:50%; right:-70px; bottom:-75px; background:var(--soft-blue); }
.direction-card:hover { transform: translateY(-6px); border-color:#cbd5e1; box-shadow:var(--shadow); }
.direction-top { display:flex; align-items:center; justify-content:space-between; }
.direction-visual { display:flex; align-items:center; gap:12px; }
.direction-icon { width:52px; height:52px; display:block; filter: drop-shadow(0 8px 16px rgba(21,94,239,.18)); }
.direction-badge { display:grid; place-items:center; width:48px; height:48px; border-radius:15px; background:var(--text); color:#fff; font-weight:800; }
.direction-badge.large { width:68px; height:68px; font-size:27px; flex:0 0 auto; }
.direction-index { color:#98a2b3; font-size:20px; letter-spacing:.1em; }
.direction-card h3 { margin: 28px 0 10px; font-size:34px; }
.direction-subtitle { min-height: 66px; color:#344054; margin:0; font-size:23px; font-weight:600; }
.direction-desc { color:var(--muted); font-size:23px; margin:16px 0 26px; }
.card-link { position:relative; z-index:2; display:inline-flex; gap:8px; align-items:center; color:var(--primary); font-weight:800; font-size:22px; }
.card-link span { transition:.2s ease; }
.card-link:hover span { transform: translate(2px,-2px); }

.process-section { background:#0f172a; color:#fff; }
.process-section .container { width:min(1260px, calc(100% - 40px)); }
.process-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
.process-copy .eyebrow { color:#8fb4ff; }
.process-copy h2 { font-size:42px; line-height:1.2; margin:12px 0 16px; }
.process-copy p { color:#cbd5e1; margin:0; font-size:24px; }
.support-boundary {
    margin-top: 28px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.12);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 22px;
    align-items: start;
}
.support-boundary h3 {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 27px;
    line-height: 1.35;
    color: #fff;
}
.support-group + .support-group { margin-top: 0; }
.support-group {
    min-width: 0;
    height: 100%;
    padding: 16px 16px 14px;
    border-radius: 15px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
}
.support-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}
.support-group-title span {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
}
.support-group-positive .support-group-title span {
    background: rgba(18,183,106,.18);
    color: #6ce9a6;
}
.support-group-negative .support-group-title span {
    background: rgba(240,68,56,.18);
    color: #fda29b;
}
.support-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 7px;
}
.support-group li {
    position: relative;
    padding-left: 20px;
    color: #d0d5dd;
    font-size: 19px;
    line-height: 1.55;
}
.support-group li::before {
    content: "•";
    position: absolute;
    left: 2px;
    top: 0;
    color: #98a2b3;
}
.process-list { list-style:none; padding:0; margin:0; display:grid; gap:14px; }
.process-list li { display:grid; grid-template-columns:56px 1fr; gap:18px; align-items:start; padding:20px; border-radius:16px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.09); }
.process-list li > span { display:grid; place-items:center; width:48px; height:48px; border-radius:14px; background:rgba(93,135,255,.16); color:#9fbaff; font-weight:800; }
.process-list strong { font-size:28px; }
.process-list p { color:#cbd5e1; margin:4px 0 0; font-size:23px; }

.assessment-section { background:#eef4ff; }
.assessment-box { display:grid; grid-template-columns: .9fr 1.1fr; background:#fff; border-radius:26px; overflow:hidden; box-shadow:var(--shadow); }
.assessment-intro { padding:42px; background:linear-gradient(160deg,#eef4ff,#fff); display:flex; gap:20px; align-items:flex-start; }
.assessment-intro h2 { margin:8px 0 10px; font-size:40px; }
.assessment-intro p { color:var(--muted); margin:0; font-size:24px; }
.assessment-content { padding:42px; }
.assessment-content h3 { margin:0 0 18px; font-size:32px; }
.assessment-content ul { margin:0 0 26px; padding:0; list-style:none; display:grid; gap:12px; }
.assessment-content li { position:relative; padding-left:32px; color:#475467; font-size:24px; }
.assessment-content li::before { content:"✓"; position:absolute; left:0; top:0; color:var(--green); font-weight:900; }

.footer { background:#fff; border-top:1px solid var(--line); }
.footer-inner { min-height:110px; display:flex; align-items:center; justify-content:space-between; gap:30px; }
.footer-inner div strong, .footer-inner div span { display:block; }
.footer-inner div span, .footer-inner p { color:var(--muted); font-size:21px; }
.footer-inner p { margin:0; }



/* V9: 二维码咨询区域 */
.contact-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}
.contact-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    right: -170px;
    top: -190px;
    background: rgba(21,94,239,.08);
}
.contact-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 54px;
    align-items: center;
    padding: 46px 52px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #dce7ff;
    box-shadow: 0 24px 60px rgba(21,94,239,.09);
}
.contact-copy h2 {
    margin: 11px 0 14px;
    font-size: clamp(34px,3.8vw,50px);
    line-height: 1.16;
    letter-spacing: -.03em;
}
.contact-copy > p {
    max-width: 680px;
    margin: 0;
    color: #475467;
    font-size: 24px;
}
.contact-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.contact-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 6px 14px 6px 8px;
    border-radius: 999px;
    background: var(--soft-blue);
    color: var(--primary);
    font-size: 19px;
    font-weight: 800;
}
.contact-points span img {
    width: 24px;
    height: 24px;
    display: block;
    border-radius: 50%;
    box-shadow: 0 6px 12px rgba(21,94,239,.16);
}
.qr-card {
    justify-self: end;
    width: min(100%, 330px);
    padding: 20px 20px 18px;
    text-align: center;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid var(--line);
}
.qr-image-wrap {
    padding: 10px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e4e7ec;
}
.qr-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.qr-card strong,
.qr-card span {
    display: block;
}
.qr-card strong {
    margin-top: 14px;
    font-size: 22px;
}
.qr-card span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 17px;
}
.footer-admin-link {
    margin-left: 10px;
    color: #98a2b3;
    font-size: .82em;
    white-space: nowrap;
}
.footer-admin-link:hover { color: var(--primary); }




/* V12: 评估结果区域新增二维码 */
.assessment-qr-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 6px 0 24px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg,#f8fbff 0%,#eef4ff 100%);
    border: 1px solid #dce7ff;
}
.assessment-qr-image-wrap {
    flex: 0 0 150px;
    width: 150px;
    padding: 8px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
}
.assessment-qr-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.assessment-qr-copy strong {
    display: block;
    font-size: 24px;
    color: var(--text);
}
.assessment-qr-copy p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.6;
}
.assessment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* V15: 三个方向改为点击弹出二维码，不再跳转 */
button.card-link {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}
.qr-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.qr-modal.is-open { display: flex; }
.qr-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .58);
    backdrop-filter: blur(3px);
}
.qr-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(calc(100vw - 20px), 1040px);
    padding: 42px 34px 34px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, .28);
    text-align: center;
}
.qr-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #f2f4f7;
    color: #475467;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.qr-modal-dialog h3 {
    margin: 4px 0 4px;
    font-size: 38px;
}
.qr-modal-direction {
    min-height: 28px;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 25px;
    font-weight: 700;
}
.qr-modal-image-wrap {
    width: min(100%, 820px);
    margin: 0 auto;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: #fff;
}
.qr-modal-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
body.modal-open { overflow: hidden; }



/* V17: 手机端完整显示电脑版 */
html, body {
    min-width: 1200px;
}
.container {
    width: 1180px;
    max-width: none;
}


/* V31: 二维码点击放大 */
.qr-zoom-trigger {
    cursor: zoom-in;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.qr-zoom-trigger:hover {
    transform: translateY(-2px) scale(1.015);
    border-color: #a9c4ff;
    box-shadow: 0 16px 32px rgba(21,94,239,.14);
}
.qr-zoom-trigger:focus-visible {
    outline: 3px solid rgba(21,94,239,.28);
    outline-offset: 4px;
}
.qr-modal-dialog {
    max-height: calc(100vh - 32px);
    overflow: auto;
}
.qr-modal-close {
    top: 16px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 34px;
}
.qr-modal-image-wrap img {
    min-height: 360px;
}
@supports (height: 100dvh) {
    .qr-modal-dialog { max-height: calc(100dvh - 32px); }
}



/* V33: 全站视觉精修 */
:root {
    --primary-soft: #4f7cff;
    --violet: #7a5af8;
    --cyan: #2e90fa;
    --ink: #0b1220;
    --card-shadow: 0 18px 46px rgba(16,24,40,.09);
    --card-shadow-hover: 0 24px 58px rgba(21,94,239,.15);
}

body {
    background:
        radial-gradient(circle at 8% 4%, rgba(122,90,248,.07), transparent 24%),
        radial-gradient(circle at 92% 12%, rgba(46,144,250,.08), transparent 24%),
        var(--bg);
}

.top-service-bar {
    position: relative;
    overflow: hidden;
    padding: 13px 16px;
    background: linear-gradient(100deg, #0f4fd6 0%, #155eef 45%, #7157e8 100%);
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.16);
    text-shadow: 0 1px 2px rgba(0,0,0,.14);
}
.top-service-bar::before,
.top-service-bar::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    filter: blur(2px);
}
.top-service-bar::before { left: 8%; top: -135px; }
.top-service-bar::after { right: 9%; bottom: -145px; }

.site-header {
    background: rgba(255,255,255,.93);
    box-shadow: 0 8px 26px rgba(16,24,40,.055);
}
.nav-wrap { height: 78px; }
.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(21,94,239,.22);
}
.nav {
    gap: 8px;
    padding: 6px;
    border: 1px solid #edf0f5;
    border-radius: 999px;
    background: rgba(248,250,252,.88);
}
.nav a {
    padding: 7px 15px;
    border-radius: 999px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav a:hover {
    color: var(--primary);
    background: #eef4ff;
    transform: translateY(-1px);
}
.nav-cta {
    border-radius: 999px;
    background: linear-gradient(135deg, #101828, #344054);
    box-shadow: 0 10px 22px rgba(16,24,40,.15);
    transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(16,24,40,.2); }

.hero {
    position: relative;
    isolation: isolate;
    padding: 88px 0 78px;
    background:
        radial-gradient(circle at 12% 18%, rgba(122,90,248,.13), transparent 28%),
        radial-gradient(circle at 86% 23%, rgba(46,144,250,.12), transparent 28%),
        linear-gradient(180deg,#ffffff 0%,#f6f9ff 100%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: radial-gradient(rgba(21,94,239,.12) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.38), transparent 72%);
}
.hero-grid { gap: 64px; }
.hero-copy {
    position: relative;
    padding: 10px 0 10px;
}
.hero-copy::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 3px;
    width: 5px;
    height: 82px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--primary), var(--violet));
    box-shadow: 0 8px 20px rgba(21,94,239,.22);
}
.eyebrow {
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef4ff;
    border: 1px solid #dce7ff;
    letter-spacing: .12em;
}
.hero-guidance-line {
    margin-top: 12px;
    color: #344054;
    font-weight: 800;
    letter-spacing: .06em;
}
.hero h1 {
    text-shadow: 0 1px 0 #fff;
}
.hero-copy > p {
    line-height: 1.8;
    color: #475467;
}
.btn {
    position: relative;
    border-radius: 13px;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, #155eef 0%, #4f7cff 62%, #7157e8 100%);
    box-shadow: 0 14px 30px rgba(21,94,239,.22);
}
.btn-primary:hover { box-shadow: 0 18px 34px rgba(21,94,239,.28); }
.btn-ghost:hover { border-color: #b9cdfc; background: #f7faff; color: var(--primary); }
.hero-stats {
    gap: 16px;
    border-top: 0;
    padding-top: 0;
}
.hero-stats div {
    min-width: 142px;
    padding: 13px 15px;
    border: 1px solid #e5eaf2;
    border-radius: 16px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 10px 24px rgba(16,24,40,.055);
}
.hero-stats strong { color: var(--primary); }

.hero-panel {
    border: 1px solid rgba(209,219,235,.9);
    border-radius: 32px;
    box-shadow: 0 26px 70px rgba(26,51,93,.15);
    transform: translateZ(0);
}
.hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.hero-panel-image { border-bottom: 1px solid #e8edf5; }
.hero-inline-qr {
    position: relative;
    background:
        radial-gradient(circle at 12% 100%, rgba(122,90,248,.10), transparent 36%),
        linear-gradient(180deg,#fff 0%,#f7faff 100%);
}
.hero-qr-side {
    position: relative;
    padding: 14px 12px 12px;
    border: 1px solid #dfe8fb;
    border-radius: 22px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 16px 36px rgba(21,94,239,.09);
}
.hero-inline-qr-image {
    box-shadow: 0 14px 32px rgba(21,94,239,.12);
}
.hero-inline-qr-copy strong {
    color: #174ea6;
    letter-spacing: .04em;
}

.section { position: relative; }
.section-heading h2,
.process-copy h2 { letter-spacing: -.025em; }
.section-heading h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 5px;
    margin-top: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--violet));
}
.section-heading.centered h2::after { margin-left: auto; margin-right: auto; }

#needs {
    background:
        radial-gradient(circle at 0 0, rgba(21,94,239,.055), transparent 28%),
        #f8fafc;
}
.risk-grid { gap: 22px; }
.risk-card {
    position: relative;
    overflow: hidden;
    border-color: #e6eaf0;
    box-shadow: var(--card-shadow);
}
.risk-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #155eef, #4f7cff);
}
.risk-card:nth-child(2)::before { background: linear-gradient(90deg,#12b76a,#32d583); }
.risk-card:nth-child(3)::before { background: linear-gradient(90deg,#7a5af8,#9b8afb); }
.risk-card:nth-child(4)::before { background: linear-gradient(90deg,#f79009,#fdb022); }
.risk-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: #cad9f8;
}
.risk-icon-wrap {
    box-shadow: 0 10px 22px rgba(21,94,239,.09), inset 0 1px 0 rgba(255,255,255,.9);
}
.risk-num {
    width: auto;
    min-width: 50px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f2f4f7;
    color: #98a2b3;
}

.direction-section {
    background:
        radial-gradient(circle at 100% 20%, rgba(122,90,248,.065), transparent 26%),
        #fff;
}
.direction-grid { gap: 26px; }
.direction-card {
    min-height: 390px;
    border-color: #e3e8ef;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
}
.direction-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg,#155eef,#4f7cff);
}
.direction-card:nth-child(2)::before { background: linear-gradient(90deg,#12b76a,#32d583); }
.direction-card:nth-child(3)::before { background: linear-gradient(90deg,#f79009,#fdb022); }
.direction-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--card-shadow-hover);
}
.direction-icon { width: 58px; height: 58px; }
.direction-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #101828;
    box-shadow: 0 8px 18px rgba(16,24,40,.16);
}
.card-link {
    padding: 9px 14px !important;
    border-radius: 999px !important;
    background: #eef4ff !important;
    border: 1px solid #d6e4ff !important;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.card-link:hover {
    transform: translateY(-2px);
    background: #e3edff !important;
    box-shadow: 0 8px 18px rgba(21,94,239,.12);
}

.contact-section {
    background:
        radial-gradient(circle at 12% 25%, rgba(122,90,248,.09), transparent 28%),
        radial-gradient(circle at 88% 60%, rgba(21,94,239,.10), transparent 30%),
        linear-gradient(180deg,#f7faff 0%,#eef4ff 100%);
}
.contact-card {
    overflow: hidden;
    border-color: #d6e4ff;
    box-shadow: 0 28px 74px rgba(21,94,239,.13);
}
.contact-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 7px;
    height: 100%;
    background: linear-gradient(180deg,var(--primary),var(--violet));
}
.contact-copy h2 { color: #101828; }
.contact-points span {
    border: 1px solid #d9e6ff;
    box-shadow: 0 8px 18px rgba(21,94,239,.06);
}
.qr-card {
    border-color: #d6e4ff;
    background: linear-gradient(180deg,#fff 0%,#f7faff 100%);
    box-shadow: 0 16px 38px rgba(21,94,239,.12);
}
.qr-card strong { color: #174ea6; }

.process-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(79,124,255,.22), transparent 28%),
        radial-gradient(circle at 88% 78%, rgba(122,90,248,.18), transparent 32%),
        linear-gradient(135deg,#0b1220 0%,#101828 55%,#111a2e 100%);
}
.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 38px 38px;
}
.process-section .container { position: relative; z-index: 1; }
.process-copy .eyebrow {
    background: rgba(93,135,255,.14);
    border-color: rgba(143,180,255,.28);
}
.support-boundary {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.13);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.support-group {
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.support-group:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.075);
    border-color: rgba(255,255,255,.15);
}
.process-list {
    position: relative;
    gap: 16px;
}
.process-list::before {
    content: "";
    position: absolute;
    left: 43px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: linear-gradient(180deg, rgba(93,135,255,.75), rgba(122,90,248,.18));
}
.process-list li {
    position: relative;
    z-index: 1;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(6px);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.process-list li:hover {
    transform: translateX(6px);
    border-color: rgba(143,180,255,.26);
    background: rgba(255,255,255,.09);
}
.process-list li > span {
    box-shadow: 0 8px 18px rgba(21,94,239,.18);
}

.footer {
    position: relative;
    background: linear-gradient(180deg,#fff 0%,#f8fafc 100%);
}
.footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--violet), transparent);
    opacity: .5;
}
.footer-inner div strong { color: #101828; }

.qr-modal-backdrop { background: rgba(6,12,24,.68); }
.qr-modal-dialog {
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 34px 100px rgba(2,6,23,.34);
}
.qr-modal-image-wrap {
    box-shadow: 0 18px 46px rgba(21,94,239,.10);
}

.icp-record {
    padding: 0 20px 22px;
    text-align: center;
    font-size: 15px !important;
    line-height: 1.5;
    color: var(--muted);
}
.icp-record a {
    color: inherit;
    font-size: 15px !important;
    text-decoration: none !important;
}
.icp-record a:hover {
    color: var(--primary);
    text-decoration: underline !important;
    text-underline-offset: 2px;
}


/* ICP record final override - 2026-08-21 */
.footer .icp-record { font-size: 15px !important; }
.footer .icp-record a { font-size: 15px !important; text-decoration: none !important; }
.footer .icp-record a:hover { text-decoration-line: underline !important; text-decoration-thickness: 1px !important; text-underline-offset: 2px !important; }


/* ICP FORCE-15 fallback override - 2026-08-21 */
.footer .icp-record { font-size:15px !important; -webkit-text-size-adjust:none !important; text-size-adjust:none !important; }
.footer .icp-record a { font-size:15px !important; text-decoration:none !important; -webkit-text-size-adjust:none !important; text-size-adjust:none !important; }
.footer .icp-record a:hover { text-decoration:underline !important; text-underline-offset:2px !important; }


/* V37: 手机端保持原样；仅宽屏电脑端调整二维码弹窗 */
@media (min-width: 1330px) {
    .qr-modal-dialog {
        width: 660px !important;
        max-width: calc(100vw - 64px) !important;
        padding: 34px 30px 28px !important;
        border-radius: 26px !important;
    }

    .qr-modal-dialog h3 {
        font-size: 34px !important;
        margin: 2px 0 3px !important;
    }

    .qr-modal-direction {
        min-height: 28px !important;
        margin-bottom: 14px !important;
        font-size: 23px !important;
    }

    .qr-modal-image-wrap {
        width: 500px !important;
        max-width: 100% !important;
        padding: 12px !important;
        border-radius: 20px !important;
    }

    .qr-modal-image-wrap img {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
    }

    .qr-modal-close {
        top: 12px !important;
        right: 14px !important;
        width: 46px !important;
        height: 46px !important;
        font-size: 31px !important;
    }
}
