
      :root {
        --blue: #2563eb;
        --blue-700: #1d4ed8;
        --blue-950: #142554;
        --cyan: #0891b2;
        --green: #16a34a;
        --amber: #f59e0b;
        --red: #dc2626;
        --ink: #0f172a;
        --text: #334155;
        --muted: #64748b;
        --line: #dbe7fb;
        --surface: #ffffff;
        --soft: #f4f8ff;
        --soft-blue: #eaf3ff;
        --soft-green: #ecfdf5;
        --soft-amber: #fffbeb;
        --radius: 8px;
        --shadow: 0 22px 60px rgba(30, 64, 175, 0.12);
        --shadow-card: 0 12px 36px rgba(30, 64, 175, 0.06);
      }

      * { box-sizing: border-box; }

      body {
        margin: 0;
        background: linear-gradient(180deg, #f7fbff 0%, #ffffff 18%, #f8fbff 100%);
        color: var(--ink);
        font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Inter, Arial, sans-serif;
        letter-spacing: 0;
      }

      a { color: inherit; text-decoration: none; }
      img { display: block; max-width: 100%; }

      /* ===== 顶部公告条（跑马灯·左右来回） ===== */
      .topline {
        height: 34px;
        background: #1459d9;
        color: #eaf3ff;
        font-size: 13px;
        display: flex;
        align-items: center;
        overflow: hidden;
        position: relative;
        white-space: nowrap;
      }
      .topline-track {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
        position: absolute;
        left: 0;
        animation: topline-pingpong 38s ease-in-out infinite;
      }
      .topline-track span {
        opacity: 0.92;
        padding: 0;
        display: inline-flex;
        align-items: center;
      }
      .topline-track span::after {
        content: "\00a0\00a0\00a0";
        opacity: 0.5;
      }
      .topline-track span:last-child::after { content: ""; }
      .topline:hover .topline-track { animation-play-state: paused; }
      @keyframes topline-pingpong {
        0% { left: 0; }
        45% { left: calc(100% - var(--track-w, 400px)); }
        55% { left: calc(100% - var(--track-w, 400px)); }
        100% { left: 0; }
      }
      @media (max-width: 900px) {
        .topline { font-size: 12px; }
      }

      /* ===== 导航条（与主站一致） ===== */
      .nav {
        height: 76px;
        background: rgba(255, 255, 255, 0.78);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid rgba(219, 231, 251, 0.7);
        position: sticky;
        top: 0;
        z-index: 20;
        box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
      }
      .container { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
      .nav-inner {
        height: 76px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
      }
      .brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
      .brand-logo {
        width: 44px; height: 44px;
        border-radius: 50%;
        overflow: hidden;
        background: linear-gradient(135deg, #1d4ed8, #0891b2);
        flex: 0 0 auto;
        display: grid;
        place-items: center;
        color: #fff;
        font-weight: 800;
        font-size: 20px;
        box-shadow: 0 6px 16px rgba(37, 99, 235, 0.28);
      }
      .brand-name { font-weight: 800; font-size: 21px; line-height: 1.05; display: block; }
      .brand-sub { color: var(--muted); font-size: 12px; margin-top: 4px; display: block; }
      .nav-links {
        display: flex; align-items: center; gap: 4px;
        background: rgba(241, 245, 249, 0.7);
        border: 1px solid rgba(226, 232, 240, 0.8);
        padding: 5px;
        border-radius: 999px;
        color: #475569; font-size: 14px; font-weight: 600;
        flex: 1; justify-content: center; max-width: 760px;
        margin: 0 auto;
      }
      .nav-links a {
        position: relative;
        display: inline-flex; align-items: center;
        padding: 8px 16px; border-radius: 999px;
        color: #475569; text-decoration: none; white-space: nowrap;
        line-height: 1.2;
        transition: color 0.2s, background 0.2s;
      }
      .nav-links a:hover {
        color: #1d4ed8; background: rgba(37, 99, 235, 0.06);
      }
      .nav-links a.active {
        color: #fff;
        background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.28);
      }
      .nav-links a.active:hover {
        color: #fff; background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
      }
      .nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

      .btn {
        min-height: 44px; padding: 0 22px;
        border-radius: 999px;
        display: inline-flex; align-items: center; justify-content: center;
        font-weight: 700; font-size: 14px;
        border: 1px solid transparent;
        cursor: pointer; white-space: nowrap;
        transition: transform 0.2s, box-shadow 0.2s;
      }
      .btn-primary {
        color: #fff; background: var(--blue);
        box-shadow: 0 12px 28px rgba(37, 99, 235, 0.26);
      }
      .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(37, 99, 235, 0.32); }
      .btn-secondary { color: var(--blue-700); background: #fff; border-color: #bfd6ff; }
      .btn-secondary:hover { transform: translateY(-2px); border-color: var(--blue); }
      .btn-ghost { color: var(--blue-700); background: var(--soft-blue); }
      .btn-ghost:hover { background: #dbeafe; }

      /* ===== 面包屑 ===== */
      .breadcrumb {
        padding: 18px 0 0;
        font-size: 13px;
        color: var(--muted);
      }
      .breadcrumb a:hover { color: var(--blue); }
      .breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
      .breadcrumb .current { color: var(--ink); font-weight: 600; }

      /* ===== 子页 Hero（聚焦版，无大图拼贴） ===== */
      .subhero {
        position: relative;
        overflow: hidden;
        padding: 40px 0 64px;
      }
      .subhero::before {
        content: "";
        position: absolute; inset: 0;
        background:
          linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
          linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
        background-size: 36px 36px;
        mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
        pointer-events: none;
      }
      .subhero::after {
        content: "";
        position: absolute; right: -190px; top: -40px;
        width: 560px; height: 560px;
        background: radial-gradient(circle, rgba(14, 165, 233, 0.16), transparent 64%);
        pointer-events: none;
      }
      .subhero-inner { position: relative; z-index: 1; max-width: 820px; }
      .eyebrow {
        display: inline-flex; align-items: center; gap: 10px;
        border: 1px solid #c8dcff;
        background: rgba(255, 255, 255, 0.84);
        color: var(--blue-700);
        padding: 8px 14px;
        border-radius: 999px;
        font-size: 13px; font-weight: 800;
      }
      .eyebrow-dot {
        width: 8px; height: 8px; border-radius: 50%;
        background: var(--green);
        box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.12);
      }
      h1 {
        margin: 22px 0 18px;
        font-size: 52px; line-height: 1.1; letter-spacing: 0;
      }
      h1 .accent { color: var(--blue); }
      .subhero-lead {
        color: #3f5068; font-size: 18px; line-height: 1.82;
        max-width: 700px; margin: 0 0 28px;
      }
      .subhero-lead strong { color: var(--blue-950); }
      .subhero-actions { display: flex; gap: 12px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
      .subhero-proof {
        display: flex; gap: 28px; flex-wrap: wrap;
        padding-top: 22px; border-top: 1px solid var(--line);
      }
      .subhero-proof .item { display: flex; flex-direction: column; }
      .subhero-proof .num { font-size: 26px; font-weight: 900; color: var(--blue-950); line-height: 1; }
      .subhero-proof .lbl { font-size: 12px; color: var(--muted); margin-top: 6px; }

      /* ===== 章节通用 ===== */
      section { padding: 72px 0; }
      .section-head {
        display: flex; align-items: flex-end; justify-content: space-between;
        gap: 32px; margin-bottom: 30px;
      }
      .kicker { color: var(--blue); font-weight: 800; font-size: 13px; margin-bottom: 10px; }
      h2 { margin: 0; font-size: 38px; line-height: 1.18; letter-spacing: 0; }
      .section-desc { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 490px; }

      .soft-band {
        background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
        border-top: 1px solid #e3efff;
        border-bottom: 1px solid #e3efff;
      }

      /* ===== 人群识别卡片（4 类创业者） ===== */
      .persona-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
      }
      .persona-card {
        border: 1px solid var(--line);
        background: #fff;
        border-radius: 8px;
        box-shadow: var(--shadow-card);
        padding: 28px;
        transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
        position: relative;
        overflow: hidden;
      }
      .persona-card::before {
        content: "";
        position: absolute; left: 0; top: 0; bottom: 0;
        width: 4px;
        background: var(--blue);
        opacity: 0; transition: opacity 0.25s;
      }
      .persona-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(30, 64, 175, 0.12); border-color: #bfd6ff; }
      .persona-card:hover::before { opacity: 1; }
      .persona-tag {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 999px;
        font-size: 12px; font-weight: 800;
        margin-bottom: 14px;
      }
      .tag-blue { background: var(--soft-blue); color: var(--blue-700); }
      .tag-cyan { background: #ecfeff; color: var(--cyan); }
      .tag-green { background: var(--soft-green); color: var(--green); }
      .tag-amber { background: var(--soft-amber); color: #b45309; }
      .persona-card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.28; }
      .persona-card .who { color: #55677f; font-size: 15px; line-height: 1.72; margin: 0 0 16px; }
      .persona-card .pain {
        background: #fef2f2;
        border-left: 3px solid var(--red);
        padding: 12px 14px;
        border-radius: 0 6px 6px 0;
        font-size: 13px; color: #7f1d1d;
        margin-bottom: 14px;
      }
      .persona-card .pain strong { color: var(--red); }
      .persona-card .help {
        display: flex; flex-wrap: wrap; gap: 8px;
      }
      .help-chip {
        font-size: 12px; font-weight: 700;
        padding: 5px 11px;
        border-radius: 6px;
        background: var(--soft);
        color: var(--blue-700);
        border: 1px solid var(--line);
      }

      /* ===== 痛点 → 服务 对照区 ===== */
      .gap-grid {
        display: grid;
        grid-template-columns: 1fr 60px 1fr;
        gap: 0;
        align-items: stretch;
      }
      .gap-col { display: flex; flex-direction: column; gap: 14px; }
      .gap-pain, .gap-fix {
        border-radius: 8px;
        padding: 22px 24px;
        border: 1px solid;
      }
      .gap-pain {
        background: #fff7f7;
        border-color: #fecaca;
      }
      .gap-fix {
        background: #f0fdf4;
        border-color: #bbf7d0;
      }
      .gap-pain .label, .gap-fix .label {
        font-size: 11px; font-weight: 900; letter-spacing: 1px;
        margin-bottom: 8px;
      }
      .gap-pain .label { color: var(--red); }
      .gap-fix .label { color: var(--green); }
      .gap-pain h4, .gap-fix h4 { margin: 0 0 6px; font-size: 17px; }
      .gap-pain p, .gap-fix p { margin: 0; font-size: 14px; line-height: 1.65; color: #55677f; }
      .gap-arrow {
        display: flex; align-items: center; justify-content: center;
        font-size: 24px; color: var(--blue); font-weight: 900;
      }

      /* ===== 陪跑路径时间线 ===== */
      .journey {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 30px;
        box-shadow: var(--shadow-card);
      }
      .journey-item {
        display: grid;
        grid-template-columns: 130px 1fr;
        gap: 22px;
        padding: 22px 0;
        border-bottom: 1px solid #edf3ff;
      }
      .journey-item:first-child { padding-top: 0; }
      .journey-item:last-child { border-bottom: 0; padding-bottom: 0; }
      .journey-stage {
        color: var(--blue);
        font-weight: 900; font-size: 14px;
        display: flex; flex-direction: column; gap: 4px;
      }
      .journey-stage .week { font-size: 12px; color: var(--muted); font-weight: 600; }
      .journey-item h3 { margin: 0 0 8px; font-size: 18px; }
      .journey-item p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }
      .journey-item .outcomes {
        display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px;
      }
      .outcome-chip {
        font-size: 12px; font-weight: 700;
        padding: 4px 10px; border-radius: 5px;
        background: var(--soft-blue); color: var(--blue-700);
      }

      /* ===== 适合 / 不适合 双栏 ===== */
      .fit-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
      }
      .fit-card {
        border-radius: 12px;
        padding: 30px;
        border: 1px solid;
      }
      .fit-yes { background: #f0fdf4; border-color: #bbf7d0; }
      .fit-no { background: #fff7f7; border-color: #fecaca; }
      .fit-head {
        display: flex; align-items: center; gap: 12px;
        margin-bottom: 18px;
      }
      .fit-icon {
        width: 40px; height: 40px; border-radius: 50%;
        display: grid; place-items: center;
        font-size: 20px; font-weight: 900;
      }
      .fit-yes .fit-icon { background: var(--green); color: #fff; }
      .fit-no .fit-icon { background: var(--red); color: #fff; }
      .fit-head h3 { margin: 0; font-size: 22px; }
      .fit-head .sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
      .fit-list { list-style: none; padding: 0; margin: 0; }
      .fit-list li {
        padding: 10px 0 10px 28px;
        position: relative;
        font-size: 15px; line-height: 1.6;
        color: #3f5068;
        border-bottom: 1px dashed rgba(0,0,0,0.06);
      }
      .fit-list li:last-child { border-bottom: 0; }
      .fit-yes .fit-list li::before {
        content: "✓"; position: absolute; left: 0; top: 10px;
        color: var(--green); font-weight: 900;
      }
      .fit-no .fit-list li::before {
        content: "✕"; position: absolute; left: 0; top: 10px;
        color: var(--red); font-weight: 900;
      }

      /* ===== 学员成果证言 ===== */
      .story-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }
      .story-card {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 26px;
        box-shadow: var(--shadow-card);
        display: flex; flex-direction: column;
      }
      .story-quote {
        font-size: 15px; line-height: 1.72; color: #3f5068;
        margin: 0 0 18px; flex: 1;
        position: relative; padding-left: 18px;
      }
      .story-quote::before {
        content: """;
        position: absolute; left: -2px; top: -12px;
        font-size: 42px; color: var(--blue); opacity: 0.25;
        font-family: Georgia, serif;
      }
      .story-meta {
        display: flex; align-items: center; gap: 12px;
        padding-top: 16px; border-top: 1px solid var(--line);
      }
      .story-avatar {
        width: 40px; height: 40px; border-radius: 50%;
        background: linear-gradient(135deg, var(--blue), var(--cyan));
        color: #fff; display: grid; place-items: center;
        font-weight: 800; font-size: 15px; flex: 0 0 auto;
      }
      .story-name { font-weight: 700; font-size: 14px; }
      .story-role { font-size: 12px; color: var(--muted); margin-top: 2px; }
      .story-result {
        margin-top: 10px;
        display: inline-block;
        padding: 3px 10px;
        background: var(--soft-green);
        color: var(--green);
        border-radius: 5px;
        font-size: 12px; font-weight: 800;
        align-self: flex-start;
      }

      /* ===== 报名咨询区 ===== */
      .cta-panel {
        background: linear-gradient(135deg, #1d4ed8 0%, #142554 100%);
        border-radius: 16px;
        padding: 48px;
        color: #fff;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
        position: relative;
        overflow: hidden;
      }
      .cta-panel::before {
        content: ""; position: absolute; right: -100px; top: -100px;
        width: 360px; height: 360px;
        background: radial-gradient(circle, rgba(14, 165, 233, 0.3), transparent 64%);
        pointer-events: none;
      }
      .cta-text { position: relative; z-index: 1; }
      .cta-text .kicker { color: #93c5fd; }
      .cta-text h2 { color: #fff; font-size: 32px; margin-bottom: 14px; }
      .cta-text p { color: #dbeafe; font-size: 15px; line-height: 1.72; margin: 0; }
      .cta-form {
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.18);
        border-radius: 12px;
        padding: 24px;
        position: relative; z-index: 1;
        backdrop-filter: blur(8px);
      }
      .cta-form .field {
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 6px;
        padding: 12px 14px;
        color: #fff;
        font-size: 14px;
        margin-bottom: 10px;
      }
      .cta-form .field::placeholder { color: rgba(255,255,255,0.55); }
      .cta-form .field.full { width: 100%; }
      .cta-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
      .cta-form .btn {
        width: 100%;
        background: #fff;
        color: var(--blue-700);
        margin-top: 4px;
      }
      .cta-form .btn:hover { background: #f0f9ff; }
      .cta-note { font-size: 12px; color: rgba(219, 234, 254, 0.7); margin-top: 10px; text-align: center; }

      /* ===== FAQ ===== */
      .faq-list { max-width: 820px; margin: 0 auto; }
      .faq-item {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
        margin-bottom: 12px;
        overflow: hidden;
        box-shadow: var(--shadow-card);
      }
      .faq-q {
        padding: 18px 24px;
        font-weight: 700; font-size: 16px;
        cursor: pointer;
        display: flex; justify-content: space-between; align-items: center;
        list-style: none;
      }
      .faq-q::-webkit-details-marker { display: none; }
      .faq-q .icon {
        width: 24px; height: 24px; border-radius: 50%;
        background: var(--soft-blue); color: var(--blue);
        display: grid; place-items: center;
        font-size: 18px; font-weight: 300;
        transition: transform 0.2s;
        flex: 0 0 auto;
      }
      .faq-item[open] .faq-q .icon { transform: rotate(45deg); }
      .faq-a { padding: 0 24px 20px; color: #55677f; font-size: 14px; line-height: 1.72; }

      /* ===== 页脚（与主站一致） ===== */
      .footer {
        background: #0d2a5f;
        color: #dbeafe;
        padding: 34px 0;
        margin-top: 0;
      }
      .footer-inner {
        display: flex; align-items: center; justify-content: space-between;
        gap: 30px;
      }
      .footer .brand-name { color: #fff; }
      .footer .brand-sub { color: #bfdbfe; }
      .footer-links { display: flex; gap: 22px; font-size: 13px; color: #bfdbfe; }
      .footer-links a:hover { color: #fff; }

      /* ===== 响应式 ===== */
      @media (max-width: 900px) {
        .container { width: min(100% - 32px, 1180px); }
        .nav-links { display: none; }
        h1 { font-size: 36px; }
        h2 { font-size: 28px; }
        .persona-grid, .fit-grid, .story-grid { grid-template-columns: 1fr; }
        .gap-grid { grid-template-columns: 1fr; }
        .gap-arrow { transform: rotate(90deg); padding: 6px 0; }
        .cta-panel { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
        .cta-form .row { grid-template-columns: 1fr; }
        .section-head, .footer-inner { flex-direction: column; align-items: flex-start; }
        .journey-item { grid-template-columns: 1fr; gap: 8px; }
      }

      /* ===== AI 图片视觉系统 ===== */
      .subhero { padding: 28px 0 64px; }
      .subhero-grid {
        position: relative; z-index: 1;
        display: grid;
        grid-template-columns: 1fr 0.95fr;
        gap: 48px;
        align-items: center;
      }
      .subhero-text { max-width: 560px; }
      .subhero-visual {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 28px 70px rgba(30, 64, 175, 0.22);
        border: 1px solid #bfd6ff;
      }
      .subhero-visual img {
        width: 100%; height: auto; display: block;
      }
      .subhero-visual::after {
        content: "";
        position: absolute; inset: 0;
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
        pointer-events: none;
      }
      .subhero-visual .visual-badge {
        position: absolute; left: 18px; bottom: 18px;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(10px);
        border: 1px solid #dbe7fb;
        border-radius: 10px;
        padding: 10px 14px;
        display: flex; align-items: center; gap: 10px;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
      }
      .visual-badge .dot {
        width: 8px; height: 8px; border-radius: 50%;
        background: var(--green);
        box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.18);
      }
      .visual-badge .txt { font-size: 12px; font-weight: 800; color: var(--blue-950); }
      .visual-badge .sub { font-size: 11px; color: var(--muted); margin-top: 2px; }

      /* 4 类人群卡片图片 */
      .persona-card { padding: 0; overflow: hidden; }
      .persona-card .card-body { padding: 24px 28px 28px; }
      .persona-image {
        width: 100%; height: 180px;
        overflow: hidden;
        position: relative;
        background: linear-gradient(135deg, #eaf3ff, #f0f7ff);
        border-bottom: 1px solid var(--line);
      }
      .persona-image img {
        width: 100%; height: 100%;
        object-fit: cover;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .persona-card:hover .persona-image img {
        transform: scale(1.06);
      }
      .persona-image::after {
        content: "";
        position: absolute; inset: 0;
        background: linear-gradient(180deg, transparent 50%, rgba(255, 255, 255, 0.4));
        pointer-events: none;
      }
      .persona-tag {
        position: absolute; top: 14px; left: 14px;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
      }

      /* 陪跑路径区装饰图带 */
      .journey-banner {
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 24px;
        height: 140px;
        position: relative;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-card);
      }
      .journey-banner img {
        width: 100%; height: 100%; object-fit: cover;
      }
      .journey-banner::after {
        content: "";
        position: absolute; inset: 0;
        background: linear-gradient(90deg, rgba(20, 37, 84, 0.78) 0%, rgba(20, 37, 84, 0.3) 60%, transparent);
      }
      .journey-banner .banner-text {
        position: absolute; left: 30px; top: 50%;
        transform: translateY(-50%);
        color: #fff;
        z-index: 2;
      }
      .journey-banner .banner-text .kicker-w {
        color: #93c5fd; font-weight: 800; font-size: 12px; letter-spacing: 1px;
        margin-bottom: 6px;
      }
      .journey-banner .banner-text h3 {
        margin: 0; font-size: 22px; color: #fff;
      }

      /* 学员证言卡片头像区背景图 */
      .story-card .story-cover {
        width: 100%; height: 120px;
        border-radius: 8px 8px 0 0;
        overflow: hidden;
        margin: -26px -26px 18px;
        position: relative;
      }
      .story-card .story-cover img {
        width: 100%; height: 100%; object-fit: cover;
      }
      .story-card .story-cover::after {
        content: "";
        position: absolute; inset: 0;
        background: linear-gradient(180deg, transparent 40%, rgba(255,255,255,0.95));
      }

      @media (max-width: 900px) {
        .subhero-grid { grid-template-columns: 1fr; gap: 32px; }
        .subhero-visual { max-width: 520px; }
      }

    