@charset "utf-8";
    :root {
      --bg: #f5f5f7;
      --paper: #fff;
      --paper-soft: #fbfbfd;
      --warm-paper: #fff9f4;
      --ink: #1d1d1f;
      --muted: #6e6e73;
      --hairline: rgba(0,0,0,.09);
      --blue: #f06a00;
      --blue-soft: #fff1e6;
      --green: #3f6f5b;
      --green-soft: #edf6f1;
      --amber: #8b5c11;
      --amber-soft: #fff6e7;
      --brand-black: #050505;
      --brand-orange: #f06a00;
      --shadow: 0 20px 55px rgba(0,0,0,.08);
      --shadow-soft: 0 10px 30px rgba(0,0,0,.055);
      --orange-shadow: 0 12px 26px rgba(240,106,0,.18);
      --radius: 8px;
      --max: 1440px;
      --nav: 64px;
    }
*{-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box; list-style:none; border:0; margin:0; padding:0; text-decoration:none; }
    html { scroll-behavior: smooth; }
    body {margin: 0;font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;color: var(--ink);background: var(--bg);letter-spacing: 0;overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    img { display: block; width: 100%; }
    :focus-visible { outline: 3px solid rgba(240,106,0,.28); outline-offset: 3px; }
    .container { width: min(100% - 40px, var(--max)); margin: 0 auto; }
    .site-header {position: sticky; top:0;inset: 0 0 auto;z-index: 100;height: var(--nav);background: rgba(250,250,250,.78);border-bottom: 1px solid var(--hairline);backdrop-filter: saturate(180%) blur(22px);-webkit-backdrop-filter: saturate(180%) blur(22px);
    }
    .nav {height: var(--nav);display: flex;justify-content: space-between;align-items: center;gap: 18px;
    }
    .brand {display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      white-space: nowrap;
      min-height: 44px;
      padding: 6px 12px 6px 8px;
      border: 1px solid rgba(0,0,0,.06);
      border-radius: 999px;
      background: rgba(255,255,255,.62);
      transition: background .22s ease, box-shadow .22s ease, transform .22s ease;
    }
    .brand:hover {
      background: rgba(255,255,255,.92);
      box-shadow: 0 10px 25px rgba(0,0,0,.07);
      transform: translateY(-1px);
    }
    .brand-logo {
      width: 118px;
      height: auto;
      object-fit: contain;
      border-radius: 0;
      background: transparent;
      padding: 0;
      box-shadow: none;
    }
    .brand-text {
      display: inline-flex;
      align-items: baseline;
      gap: 6px;
      color: var(--ink);
      font-size: 14px;
    }
    .brand-text small {
      color: var(--brand-orange);
      font-size: 12px;
      font-weight: 800;
    }
    .nav-links { display: flex; gap: 28px; color: rgba(29,29,31,.72); font-size: 13px; }
    .nav-links a { transition: color .2s ease; }
    .nav-links a:hover { color: var(--ink); }
    .btn {
      min-height: 44px;
      border: 0;
      border-radius: 999px;
      padding: 0 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      font-weight: 650;
      white-space: nowrap;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { color: #fff; background: var(--brand-orange); box-shadow: var(--orange-shadow); }
    .btn-primary:hover { background: #d95f00; }
    .btn-secondary { color: var(--blue); background: #fff; border: 1px solid var(--hairline); }
    .menu {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--hairline);
      border-radius: 50%;
      background: rgba(255,255,255,.72);
      cursor: pointer;
    }
    .menu span, .menu span::before {
      display: block;
      width: 17px;
      height: 1.5px;
      margin: 0 auto;
      background: var(--ink);
      content: "";
      transition: transform .2s ease;
    }
    .menu span::before { transform: translateY(7px); }
    .nav-open .menu span { transform: rotate(45deg); }
    .nav-open .menu span::before { transform: rotate(90deg); }

    .hero {
      display: grid;
      align-items: center;
      background: linear-gradient(180deg,#fff 0%,#fff8f2 45%,#f5f5f7 100%);
      border-bottom: 1px solid var(--hairline);
    }
    .hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
    .eyebrow { margin: 0 0 18px; color: var(--blue); font-size: 13px; font-weight: 800; }
    h1 { margin: 0; max-width: 650px; font-size: clamp(36px, 6vw, 52px); line-height: 1.5; letter-spacing:1px; }
    .hero-lead { margin: 22px 0 0; max-width: 580px; color: var(--muted); font-size: 21px; line-height: 1.58; }
    .hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
    .badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
    .badge {
      min-height: 34px;
      display: inline-flex;
      align-items: center;
      border: 1px solid var(--hairline);
      border-radius: 999px;
      padding: 0 12px;
      color: var(--muted);
      background: rgba(255,255,255,.82);
      font-size: 13px;
      font-weight: 560;
    }
    .scene-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 34px;
      grid-column: 1 / -1;
    }
    .scene-card {
      min-height: 138px;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(0,0,0,.07);
      background:
        radial-gradient(circle at 82% 18%, rgba(240,106,0,.22), transparent 26%),
        linear-gradient(135deg, #fff, #fff4ea);
      position: relative;
      box-shadow: var(--shadow-soft);
      margin: 0;
      padding: 22px;
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      align-items: center;
    }
    .scene-card img {
      height: 100%;
      min-height: 190px;
      object-fit: cover;
      opacity: .88;
      filter: saturate(.9) contrast(1.02);
      transition: transform .45s ease, opacity .45s ease;
    }
    .scene-card:hover img {
      transform: scale(1.035);
      opacity: .96;
    }
    .scene-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 44%, rgba(255,255,255,.94));
    }
    .scene-card::before {
      content: "";
      position: relative;
      left: auto;
      top: auto;
      width: 50px;
      height: 50px;
      border-radius: 8px;
      background:
        linear-gradient(90deg, rgba(0,0,0,.18) 0 16%, transparent 16% 24%, rgba(240,106,0,.7) 24% 48%, transparent 48% 56%, rgba(0,0,0,.12) 56% 82%, transparent 82%),
        rgba(255,255,255,.74);
      border: 1px solid rgba(0,0,0,.06);
      box-shadow: 0 16px 34px rgba(0,0,0,.08);
      display: block;
    }
    .scene-card:nth-child(2) {
      background:
        radial-gradient(circle at 20% 20%, rgba(63,111,91,.18), transparent 28%),
        linear-gradient(135deg, #fff, #edf6f1);
    }
    .scene-card:nth-child(2)::before {
      background:
        linear-gradient(135deg, rgba(63,111,91,.68), rgba(63,111,91,.12)),
        rgba(255,255,255,.74);
    }
    .scene-card:nth-child(3) {
      background:
        radial-gradient(circle at 26% 76%, rgba(139,92,17,.18), transparent 30%),
        linear-gradient(135deg, #fff, #fff6e7);
    }
    .scene-card:nth-child(3)::before {
      background:
        radial-gradient(circle at 70% 40%, rgba(139,92,17,.64), transparent 20%),
        linear-gradient(90deg, rgba(139,92,17,.16), rgba(255,255,255,.74));
    }
    .scene-label {
      position: relative;
      left: auto;
      right: auto;
      top: auto;
      bottom: auto;
      transform: none;
      z-index: 1;
      color: var(--ink);
    }
    .scene-label strong {
      display: block;
      font-size: 17px;
      line-height: 1.25;
      margin-bottom: 4px;
    }
    .scene-label span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }
    .visual-card {
      overflow: hidden;
      border: 1px solid var(--hairline);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow);
      position: relative;
    }
    .visual-card::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
      opacity: .72;
    }
    .visual-card img { height: 320px; object-fit: cover; object-position: center 48%; filter: saturate(.9) contrast(1.03); }
    .visual-body { padding: 22px; display: grid; gap: 14px; }
    .toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
    .dots { display: flex; gap: 7px; }
    .dots span { width: 10px; height: 10px; border-radius: 50%; background: #d2d2d7; }
    .live {
      min-height: 28px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 999px;
      padding: 0 10px;
      background: var(--green-soft);
      color: var(--green);
      font-size: 12px;
      font-weight: 750;
    }
    .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
    .metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
    .metric { min-width: 0; border: 1px solid var(--hairline); border-radius: var(--radius); padding: 14px; background: linear-gradient(180deg,#fff,var(--paper-soft)); }
    .metric strong { display: block; font-size: 30px; line-height: 1; margin-bottom: 8px; }
    .metric span { display: block; color: var(--muted); font-size: 12px; line-height: 1.35; }
    .hero-note {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 12px;
      align-items: start;
      border: 1px solid var(--hairline);
      border-radius: var(--radius);
      padding: 14px;
      background: #fff;
    }
    .note-icon { width: 44px; height: 44px; border-radius: var(--radius); display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); font-weight: 850; font-size: 13px; }
    .hero-note h2 { margin: 0 0 4px; font-size: 15px; }
    .hero-note p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.pagebox section { padding: 40px 0; }
.pagebox .section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 30px; }
    .kicker { margin: 0 0 10px; color: var(--blue); font-size: 13px; font-weight: 800; }
.pagebox .section-title { margin: 0; font-size: clamp(34px,4vw,46px); line-height: 1.12; letter-spacing: 0; }
    .section-copy { margin: 0; max-width: 530px; color: var(--muted); font-size: 17px; line-height: 1.72; }
    .stats { padding: 44px 0; background: #fff; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
    .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; background: var(--hairline); }
    .stat { min-height: 138px; padding: 24px; background: #fff; display: flex; flex-direction: column; justify-content: center; }
    .stat strong { font-size: 38px; line-height: 1; margin-bottom: 10px; }
    .stat span { color: var(--muted); font-size: 14px; line-height: 1.45; }
    .grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
    .card, .tool-card, .info-card {
      border: 1px solid var(--hairline);
      border-radius: var(--radius);
      background: rgba(255,255,255,.86);
      box-shadow: var(--shadow-soft);
      transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
      position: relative;
      overflow: hidden;
    }
    .card:hover, .tool-card:hover, .info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(240,106,0,.24); background: #fff; }
    .card { padding: 15px; display: flex; flex-direction: column}
    .service-media {
      height: 136px;
      margin: -28px -28px 24px;
      overflow: hidden;
      border-bottom: 1px solid var(--hairline);
      background:
        radial-gradient(circle at 22% 22%, rgba(240,106,0,.22), transparent 28%),
        linear-gradient(135deg, #fff, #fff4ea);
      position: relative;
    }
    .service-media::before,
    .service-media::after {
      content: "";
      position: absolute;
      border-radius: 8px;
      background: rgba(255,255,255,.76);
      border: 1px solid rgba(0,0,0,.06);
      box-shadow: 0 12px 28px rgba(0,0,0,.08);
    }
    .service-media::before {
      width: 52%;
      height: 58%;
      left: 24px;
      top: 24px;
    }
    .service-media::after {
      width: 34%;
      height: 42%;
      right: 24px;
      bottom: 22px;
    }
    .service-media .visual-line,
    .service-media .visual-dot,
    .service-media .visual-bar {
      position: absolute;
      z-index: 1;
      display: block;
      border-radius: 999px;
      background: var(--brand-orange);
      transition: transform .45s ease;
    }
    .service-media .visual-line { width: 92px; height: 6px; left: 44px; top: 48px; opacity: .9; }
    .service-media .visual-dot { width: 34px; height: 34px; right: 48px; top: 32px; border-radius: 10px; box-shadow: var(--orange-shadow); }
    .service-media .visual-bar { width: 10px; height: 52px; right: 102px; bottom: 34px; opacity: .86; }
    .service-detect { background: radial-gradient(circle at 78% 24%, rgba(63,111,91,.18), transparent 28%), linear-gradient(135deg, #fff, #eef7f2); }
    .service-detect .visual-line,
    .service-detect .visual-dot,
    .service-detect .visual-bar { background: var(--green); }
    .service-consult { background: radial-gradient(circle at 30% 80%, rgba(139,92,17,.18), transparent 32%), linear-gradient(135deg, #fff, #fff7e8); }
    .service-consult .visual-line,
    .service-consult .visual-dot,
    .service-consult .visual-bar { background: var(--amber); }
    .card:hover .service-media .visual-line { transform: translateX(10px); }
    .card:hover .service-media .visual-dot { transform: translateY(-6px) rotate(4deg); }
    .card:hover .service-media .visual-bar { transform: scaleY(1.12); }
    .card-top { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
    .icon { width: 50px; height: 50px; border-radius: var(--radius); display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); font-weight: 850; }
    .card:nth-child(2) .icon { color: var(--green); background: var(--green-soft); }
    .card:nth-child(3) .icon { color: var(--amber); background: var(--amber-soft); }
    .count { color: var(--muted); font-size: 13px; font-weight: 750; }
    .pagebox .card h3,.pagebox .info-card h3 { margin: 10px 0 10px; font-size: 24px; line-height: 1.22; }
    .card p, .info-card p { margin: 0; color: var(--muted); line-height: 1.75; font-size: 15px; }
    .feature-band { background: #fff; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
    .feature {padding: 28px; }
    .feature .num { color: var(--muted); font-size: 13px; font-weight: 850; margin-bottom: 44px; }
    .feature h3 { margin: 0 0 12px; font-size: 25px; line-height: 1.22; }
    .feature p { margin: 0; color: var(--muted); line-height: 1.78; font-size: 15px; }
    .workflow-showcase {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items: stretch;
      margin-top: 34px;
    }
    .workflow-visual {
      min-height: 430px;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--hairline);
      background: #111;
      position: relative;
      box-shadow: var(--shadow);
    }
    .workflow-visual img {
      height: 100%;
      min-height: 430px;
      object-fit: cover;
      opacity: .9;
      filter: saturate(.86) contrast(1.05);
    }
    .workflow-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0,0,0,.72), transparent 58%);
    }
    .workflow-caption {
      position: absolute;
      left: 26px;
      right: 26px;
      bottom: 24px;
      z-index: 1;
      color: #fff;
    }
    .workflow-caption h3 {
      margin: 0 0 8px;
      font-size: 30px;
      line-height: 1.16;
    }
    .workflow-caption p {
      margin: 0;
      max-width: 480px;
      color: rgba(255,255,255,.78);
      line-height: 1.65;
    }
    .workflow-panel {
      display: grid;
      gap: 12px;
    }
    .workflow-step {
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 16px;
      align-items: center;
      min-height: 128px;
      padding: 14px;
      border-radius: var(--radius);
      border: 1px solid var(--hairline);
      background: rgba(255,255,255,.9);
      box-shadow: var(--shadow-soft);
    }
    .workflow-step img {
      width: 92px;
      height: 92px;
      border-radius: var(--radius);
      object-fit: cover;
      filter: saturate(.9);
    }
    .workflow-step:nth-child(2) img { object-position: center 40%; }
    .step-visual {
      width: 76px;
      height: 76px;
      border-radius: var(--radius);
      display: grid;
      place-items: center;
      color: var(--brand-orange);
      background: var(--blue-soft);
      border: 1px solid rgba(0,0,0,.06);
      font-size: 22px;
      font-weight: 850;
      box-shadow: 0 10px 24px rgba(0,0,0,.06);
    }
    .workflow-step:nth-child(2) .step-visual { color: var(--green); background: var(--green-soft); }
    .workflow-step:nth-child(3) .step-visual { color: var(--amber); background: var(--amber-soft); }
    .workflow-step h4 {
      margin: 0 0 6px;
      font-size: 18px;
    }
    .workflow-step p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.58;
    }
    .visual-summary {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 16px;
    }
    .summary-tile {
      min-height: 240px;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--hairline);
      background: #111;
      position: relative;
      box-shadow: var(--shadow-soft);
    }
    .summary-tile img {
      height: 100%;
      min-height: 240px;
      object-fit: cover;
      opacity: .86;
      filter: saturate(.88) contrast(1.04);
    }
    .summary-tile.illustrated {
      background:
        radial-gradient(circle at 72% 24%, rgba(240,106,0,.2), transparent 28%),
        linear-gradient(135deg, #fff, #fff4ea);
    }
    .summary-tile.illustrated::before {
      content: "";
      position: absolute;
      left: 28px;
      top: 28px;
      width: 58%;
      height: 42%;
      border-radius: 10px;
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(0,0,0,.06);
      box-shadow: 0 18px 38px rgba(0,0,0,.08);
      z-index: 1;
    }
    .consult-illustration {
      position: absolute;
      inset: 22px 22px 92px 22px;
      z-index: 2;
      border-radius: 10px;
      overflow: hidden;
      pointer-events: none;
    }
    .consult-avatar {
      position: absolute;
      left: 4px;
      top: 8px;
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 50% 34%, #f5c6a1 0 22%, transparent 23%),
        linear-gradient(180deg, #1d1d1f 0 38%, #fff 39%);
      border: 1px solid rgba(0,0,0,.08);
      box-shadow: 0 14px 28px rgba(0,0,0,.12);
    }
    .consult-card {
      position: absolute;
      right: 0;
      width: 66%;
      min-height: 54px;
      border-radius: 8px;
      background: rgba(255,255,255,.84);
      border: 1px solid rgba(0,0,0,.06);

      box-shadow: 0 12px 28px rgba(0,0,0,.08);
    }
    .consult-card::before {
      content: "";
      position: absolute;
      left: 14px;
      top: 14px;
      width: 42%;
      height: 6px;
      border-radius: 999px;
      background: var(--brand-orange);
    }
    .consult-card::after {
      content: "";
      position: absolute;
      left: 14px;
      right: 18px;
      bottom: 14px;
      height: 5px;
      border-radius: 999px;
      background: rgba(0,0,0,.12);
    }
    .consult-card.one { top: 4px; }
    .consult-card.two { top: 72px; right: 24px; }
    .consult-card.three { top: 140px; }
    .consult-line {
      position: absolute;
      left: 78px;
      right: 34px;
      top: 46px;
      height: 128px;
      border: 1px solid rgba(240,106,0,.32);
      border-left: 0;
      border-bottom: 0;
      border-radius: 0 16px 0 0;
    }
    .consult-dot {
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--brand-orange);
      box-shadow: 0 0 0 8px rgba(240,106,0,.12);
    }
    .consult-dot.a { left: 112px; top: 40px; }
    .consult-dot.b { right: 38px; top: 110px; }
    .consult-dot.c { left: 118px; bottom: 18px; }
    .summary-tile.illustrated::after {
      background:
        linear-gradient(180deg, transparent 35%, rgba(0,0,0,.08) 52%, rgba(0,0,0,.7) 100%),
        linear-gradient(90deg, rgba(0,0,0,.18), transparent 48%);
    }
    .summary-tile::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.72));
    }
    .summary-tile > div:not(.consult-illustration) {
      position: absolute;
      left: 20px;
      right: 20px;
      bottom: 18px;
      z-index: 1;
      color: #fff;
    }
    .summary-tile h4 {
      margin: 0 0 6px;
      font-size: 20px;
    }
    .summary-tile p {
      margin: 0;
      color: rgba(255,255,255,.76);
      font-size: 14px;
      line-height: 1.55;
    }
    .summary-tile.illustrated > div:not(.consult-illustration) h4 {
      color: #fff;
      text-shadow: 0 2px 14px rgba(0,0,0,.38);
    }
    .summary-tile.illustrated > div:not(.consult-illustration) p {
      color: rgba(255,255,255,.84);
      text-shadow: 0 2px 12px rgba(0,0,0,.32);
    }
    .tools-controls { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; margin-bottom: 18px; }
    .search { position: relative; }
    .search input {
      width: 100%;
      min-height: 48px;
      border: 1px solid var(--hairline);
      border-radius: 999px;
      background: #fff;
      outline: none;
      padding: 0 18px 0 42px;
      color: var(--ink);
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .search input:focus { border-color: rgba(240,106,0,.48); box-shadow: 0 0 0 4px rgba(240,106,0,.11); }
    .search::before { content: ""; position: absolute; left: 18px; top: 50%; width: 13px; height: 13px; border: 1.7px solid var(--muted); border-radius: 50%; transform: translateY(-50%); }
    .search::after { content: ""; position: absolute; left: 30px; top: 29px; width: 7px; height: 1.7px; border-radius: 2px; background: var(--muted); transform: rotate(45deg); }
    .filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
    .filter {
      min-height: 42px;
      border: 1px solid var(--hairline);
      border-radius: 999px;
      padding: 0 16px;
      background: #fff;
      color: var(--muted);
      cursor: pointer;
      font-size: 14px;
      font-weight: 700;
      transition: background .2s ease, color .2s ease, border-color .2s ease;
    }
    .filter:hover, .filter.active { color: #fff; background: var(--brand-black); border-color: var(--brand-black); }
    .tools-grid { display: grid;  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
    .tool-card {
      padding: 10px;
      text-align: left;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      color: inherit;
    }
    .tool-thumb {
      height: 112px;
      margin: -22px -22px 18px;
      overflow: hidden;
      border-bottom: 1px solid var(--hairline);
      background:
        radial-gradient(circle at 20% 20%, rgba(240,106,0,.2), transparent 28%),
        linear-gradient(135deg, #fff, #fff3e8);
      position: relative;
      color: var(--brand-orange);
    }
    .tool-thumb.detect {
      background:
        radial-gradient(circle at 78% 20%, rgba(63,111,91,.18), transparent 28%),
        linear-gradient(135deg, #fff, #edf6f1);
      color: var(--green);
    }
    .tool-thumb.consult {
      background:
        radial-gradient(circle at 22% 80%, rgba(139,92,17,.18), transparent 30%),
        linear-gradient(135deg, #fff, #fff6e7);
      color: var(--amber);
    }
    .tool-ui {
      position: absolute;
      inset: 18px;
      border-radius: 8px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(0,0,0,.06);
      box-shadow: 0 16px 34px rgba(0,0,0,.08);
      overflow: hidden;
      transition: transform .24s ease;
    }
    .tool-ui::before {
      content: "";
      position: absolute;
      left: 14px;
      top: 14px;
      width: 38%;
      height: 6px;
      border-radius: 999px;
      background: currentColor;
      opacity: .86;
    }
    .tool-ui::after {
      content: "";
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 16px;
      height: 34px;
      border-radius: 8px;
      background:
        linear-gradient(90deg, currentColor 0 16%, transparent 16% 23%, currentColor 23% 38%, transparent 38% 46%, currentColor 46% 70%, transparent 70%);
      opacity: .18;
    }
    .tool-chip-visual {
      position: absolute;
      right: 18px;
      top: 18px;
      width: 34px;
      height: 34px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      color: #fff;
      background: currentColor;
      font-size: 12px;
      font-weight: 850;
      box-shadow: 0 10px 22px color-mix(in srgb, currentColor 26%, transparent);
    }
   .pagebox .tool-card:hover .tool-ui { transform: translateY(-2px); }
   .pagebox .tool-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 2px;
      background: var(--brand-orange);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .24s ease;
    }
    .pagebox .tool-card:hover::before { transform: scaleX(1); }
    .pagebox .tool-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; }
    .category {
      min-height: 28px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 0 10px;
      color: var(--blue);
      background: var(--blue-soft);
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }
    .category.detect { color: var(--green); background: var(--green-soft); }
    .category.consult { color: var(--amber); background: var(--amber-soft); }
    .index { color: var(--muted); font-size: 12px; font-weight: 850; }
    .tool-card h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.3; }
    .tool-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .linklike { margin-top: 18px; color: var(--blue); font-size: 14px; font-weight: 750; }
    .empty { display: none; padding: 42px; border: 1px solid var(--hairline); border-radius: var(--radius); background: #fff; color: var(--muted); text-align: center; }
    .selected { padding-top: 0; }
    .selected-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
    .selected-media { min-height: 490px; border-radius: var(--radius); overflow: hidden; background: #111; position: relative; box-shadow: var(--shadow); }
    .selected-media img { height: 100%; min-height: 490px; object-fit: cover; object-position: center 48%; opacity: .88; filter: saturate(.86) contrast(1.05); }
    .selected-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.68)); pointer-events: none; }
    .caption { position: absolute; left: 24px; right: 24px; bottom: 24px; color: #fff; z-index: 1; }
    .caption h2 { margin: 0 0 8px; font-size: 34px; line-height: 1.16; }
    .caption p { margin: 0; color: rgba(255,255,255,.82); line-height: 1.65; max-width: 520px; }
    .recommend-list { display: grid; gap: 12px; }
    .recommend {
      min-height: 86px;
      padding: 18px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: center;
      border: 1px solid var(--hairline);
      border-radius: var(--radius);
      background: #fff;
      cursor: pointer;
      text-align: left;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .recommend:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); border-color: rgba(240,106,0,.24); }
    .recommend h3 { margin: 0 0 5px; font-size: 17px; line-height: 1.35; }
    .recommend p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
    .arrow { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); font-weight: 850; }
    .info-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 16px; }
    .info-card { min-height: 270px; padding: 28px; }
    .info-card h3 { margin-top: 0; }
    .info-card ul { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 10px; }
    .info-card li { display: grid; grid-template-columns: 18px 1fr; gap: 8px; color: var(--muted); font-size: 14px; line-height: 1.55; }
    .check { width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; background: var(--green-soft); color: var(--green); font-size: 11px; font-weight: 900; }
    .cta { padding: 92px 0; background: linear-gradient(180deg,#151515 0%,#080808 100%); color: #fff; text-align: center; border-top: 1px solid rgba(240,106,0,.2); }
    .cta h2 { margin: 0 auto; max-width: 820px; font-size: clamp(36px,4.5vw,50px); line-height: 1.14; }
    .cta p { margin: 18px auto 0; max-width: 650px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.7; }
    .cta-actions { justify-content: center; }
    .cta .btn-secondary { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.18); }
    .footer { padding: 36px 0; border-top: 1px solid var(--hairline); color: var(--muted); font-size: 13px; }
    .footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
    .modal {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(0,0,0,.48);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .modal.open { display: flex; }
    .modal-panel {
      width: min(1200px,100%);
      max-height: min(760px,calc(100vh - 48px));
      overflow: auto;
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 30px 80px rgba(0,0,0,.28);
      border: 1px solid rgba(255,255,255,.5);
    }
    .modal-head {
      position: sticky;
      top: 0; z-index:20;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding: 10px 10px;
      background: rgba(255,255,255,.86);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--hairline);
    }
    .modal-head h2 { margin: 0; font-size: 18px; line-height: 1.35; }
    .close { width: 44px; height: 44px; border: 1px solid var(--hairline); border-radius: 50%; background: #fff; cursor: pointer; color: var(--ink); font-size: 22px; line-height: 1; }
    .modal-body { padding: 24px; }
    .modal-body p { margin: 16px 0 0; color: var(--muted); line-height: 1.75; }
    .details { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 22px; }
    .detail { border: 1px solid var(--hairline); border-radius: var(--radius); padding: 14px; background: var(--paper-soft); }
    .detail span { display: block; color: var(--muted); font-size: 12px; margin-bottom: 7px; }
    .detail strong { font-size: 14px; line-height: 1.35; }
	
	
	.box3{border-radius:20px; border:4px dashed #FFD200; width:100%; max-width:var(--max); padding:0 25px 25px 25px; margin:0 auto 20px auto; background:#fff; }
.box3 dt{font-weight:900; text-align:center; font-size:1.5rem}
.box3 dd{font-weight:900; font-size:1rem; padding:6px 0}
.box3 input{padding:15px; width:100%; border:1px solid #000;}
.box3 label{display:block;}
.box3 label::after{content:'*'; color:#f00}
.box3 .btn-1{width:80%; margin:auto; display:block; background:var(--box-color); padding:15px 10px; text-align:center; cursor:pointer; font-size:1.3rem; font-weight:600;box-shadow: 0px 9px 19px -6px rgba(0, 0, 0, 0.5)}
.box3 .btn-1:hover{background:#E50003; color:#fff;}
.btnright{position:fixed; right:3px; bottom:30%; display:flex; flex-direction:column; gap:5px}
.btnright span{cursor:pointer; padding:4px; width:40px; text-align:center; background:#7a7067; color:#fff; font-size:14px; font-weight:500;box-shadow: 0px 9px 19px -6px rgba(0, 0, 0, 0.5); min-height:40px; display:flex; align-items:center; justify-content:center}
.btnright span:hover{background:#D37600}
.biUp{text-align:center; font-size:3rem; font-weight:900; color:#FFD200;}
    @media (max-width: 980px) {
      .menu { display: block; }
      .nav .btn { display: none; }
      .nav-links {
        position: fixed;
        top: var(--nav);
        left: 0;
        right: 0;
        display: none;
        padding: 18px 20px 24px;
        background: rgba(245,245,247,.95);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        border-bottom: 1px solid var(--hairline);
      }
      .nav-open .nav-links { display: grid; gap: 16px; }
      .hero-grid, .selected-layout, .info-grid { grid-template-columns: 1fr; }
      .scene-strip, .workflow-showcase, .visual-summary { grid-template-columns: 1fr; }
      .grid-3 { grid-template-columns: repeat(2,1fr); }
      .section-head { display: grid; }
    }
    @media (max-width: 720px) {
      .container { width: min(100% - 28px, var(--max)); }
      .brand { padding: 6px 9px; }
      .brand-logo { width: 104px; }
      .brand-text { display: none; }
      .hero { min-height: auto; padding: 58px 0 38px; }
      .hero-lead { font-size: 18px; }
      .hero-actions, .cta-actions { display: grid; }
      .btn { width: 100%; }
      .visual-card img, .selected-media, .selected-media img { min-height: 280px; height: 280px; }
      .scene-card, .scene-card img { min-height: 170px; }
      .workflow-visual, .workflow-visual img { min-height: 320px; }
      .workflow-step { grid-template-columns: 72px 1fr; min-height: 108px; }
      .workflow-step img { width: 72px; height: 72px; }
      .summary-tile, .summary-tile img { min-height: 220px; }
      .tool-thumb { height: 128px; }
      .metrics, .stats-grid, .grid-3,.details { grid-template-columns: 1fr; }
      .section-head { gap: 12px; }
      section { padding: 62px 0; }
      .tools-controls { grid-template-columns: 1fr; }
      .recommend { grid-template-columns: 1fr; }
      .arrow { display: none; }
      .modal { padding: 12px; }
    }

