/* neotel-guide — wizard + result + lead form, scoped under .nt-guide (TDesign tokens, matches .nt-agv / .nt-roi) */
.nt-guide {
  --bg: #f3f3f3; --surface: #ffffff; --border: #dcdcdc; --border-strong: #c5c5c5;
  --text: rgba(0,0,0,.9); --text-muted: rgba(0,0,0,.55);
  --accent: #0052D9; --accent-dark: #003CAB; --accent-light: #F2F3FF;
  --success: #0d8a5f; --success-bg: #e3f9f0; --warning: #B8860B; --warning-bg: #fdf3e0;
  --danger: #d54941; --danger-bg: #fceceb; --radius: 9px; --radius-sm: 6px;
  --mono: "JetBrains Mono", "SF Mono", "Cascadia Code", Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", Helvetica, Arial, sans-serif;
  font-family: var(--sans); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased;
}
/* width cap needs to out-rank the block theme's `:root :where(.is-layout-constrained > *)` (0,1,0) rule → (0,2,0) */
.nt-guide[data-guide] { max-width: 900px; margin: 0 auto; box-sizing: border-box; }
.nt-guide *, .nt-guide *::before, .nt-guide *::after { box-sizing: border-box; margin: 0; padding: 0; }
.nt-guide [hidden] { display: none !important; }

.nt-guide .card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 24px; }
.nt-guide .card h2 { font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.nt-guide .card h3 { font-size: 15px; font-weight: 600; margin: 18px 0 8px; }
.nt-guide .card p { font-size: 14.5px; color: var(--text-muted); margin-bottom: 10px; }

/* progress */
.nt-guide .prog { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; font-size: 13px; color: var(--text-muted); }
.nt-guide .prog .dot { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--border-strong); display: grid; place-items: center; font-weight: 600; font-size: 12px; color: var(--text-muted); background: var(--surface); }
.nt-guide .prog .dot.on { border-color: var(--accent); color: var(--accent); }
.nt-guide .prog .dot.done { border-color: var(--accent); background: var(--accent); color: #fff; }
.nt-guide .prog .bar { flex: 1; height: 2px; background: var(--border); }
.nt-guide .prog .bar.done { background: var(--accent); }
.nt-guide .prog .lbl { margin-left: 10px; }

/* options */
.nt-guide .qtitle { font-size: 21px; font-weight: 600; margin-bottom: 4px; }
.nt-guide .qhelp { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }
.nt-guide .opts { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; }
.nt-guide .opt { text-align: left; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 16px 18px; cursor: pointer; font: inherit; color: var(--text); transition: border-color .15s, box-shadow .15s; }
.nt-guide .opt:hover { border-color: var(--accent); box-shadow: 0 2px 10px rgba(0,82,217,.10); }
.nt-guide .opt:focus-visible { outline: 3px solid var(--accent-light); border-color: var(--accent); }
.nt-guide .opt.sel { border-color: var(--accent); background: var(--accent-light); }
.nt-guide .opt .ol { font-weight: 600; font-size: 15px; display: block; }
.nt-guide .opt .od { font-size: 13px; color: var(--text-muted); display: block; margin-top: 3px; }
.nt-guide .other-wrap { margin-top: 12px; }
.nt-guide .other-wrap label { font-size: 13px; color: var(--text-muted); display: block; margin-bottom: 4px; }
.nt-guide .navrow { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; gap: 12px; flex-wrap: wrap; }
.nt-guide .navrow .sp { flex: 1; }

/* buttons */
.nt-guide .btn { display: inline-flex; align-items: center; gap: 8px; border-radius: var(--radius-sm); padding: 11px 20px; font: 600 14.5px var(--sans); cursor: pointer; border: 1.5px solid transparent; text-decoration: none; transition: background .15s, border-color .15s; line-height: 1.3; }
.nt-guide .btn-primary { background: var(--accent); color: #fff; }
.nt-guide .btn-primary:hover { background: var(--accent-dark); color: #fff; }
.nt-guide .btn-primary:disabled { background: var(--border-strong); cursor: not-allowed; }
.nt-guide .btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.nt-guide .btn-outline:hover { background: var(--accent-light); }
.nt-guide .btn-ghost { background: transparent; color: var(--text-muted); border-color: transparent; padding-left: 4px; }
.nt-guide .btn-ghost:hover { color: var(--text); }

/* inputs */
.nt-guide input[type=text], .nt-guide input[type=email], .nt-guide input[type=tel], .nt-guide select {
  width: 100%; font: 14.5px var(--sans); color: var(--text); background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 10px 12px; height: auto;
}
.nt-guide input:focus, .nt-guide select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.nt-guide .fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
.nt-guide .fgrid .full { grid-column: 1 / -1; }
.nt-guide .fld label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.nt-guide .fld label .req { color: var(--danger); }
.nt-guide .hint { font-size: 12px; color: var(--text-muted); margin-top: 8px; }
.nt-guide .ferr { color: var(--danger); background: var(--danger-bg); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 13.5px; margin-top: 12px; }
.nt-guide .fok { color: var(--success); background: var(--success-bg); border-radius: var(--radius-sm); padding: 14px 16px; font-size: 14px; margin-top: 12px; }
.nt-guide .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* result */
.nt-guide .rhead { display: flex; align-items: flex-start; gap: 18px; flex-wrap: wrap; }
.nt-guide .badge { display: inline-flex; flex-direction: column; background: var(--accent); color: #fff; border-radius: var(--radius); padding: 14px 20px; min-width: 150px; }
.nt-guide .badge small { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
.nt-guide .badge b { font-size: 24px; font-weight: 700; line-height: 1.2; }
.nt-guide .badge.turnkey { background: var(--success); }
.nt-guide .badge.modeB { background: var(--accent-dark); }
.nt-guide .rtitle { flex: 1; min-width: 240px; }
.nt-guide .rtitle h2 { font-size: 22px; margin-bottom: 6px; }
.nt-guide .why { font-size: 15px; color: var(--text); background: var(--accent-light); border-left: 3px solid var(--accent); padding: 10px 14px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.nt-guide .owner { display: inline-block; margin-top: 10px; font-size: 12.5px; font-weight: 600; color: var(--text-muted); border: 1px solid var(--border-strong); border-radius: 999px; padding: 3px 10px; }
.nt-guide .owner b { color: var(--text); }
.nt-guide .confirm { font-size: 13px; color: var(--warning); background: var(--warning-bg); border-radius: var(--radius-sm); padding: 8px 12px; margin-top: 10px; display: inline-block; }
.nt-guide .scope { margin-top: 22px; }
.nt-guide .scope svg { width: 100%; height: auto; display: block; }
.nt-guide .legend { display: flex; gap: 18px; flex-wrap: wrap; font-size: 12.5px; color: var(--text-muted); margin-top: 8px; }
.nt-guide .legend i { display: inline-block; width: 12px; height: 12px; border-radius: 3px; vertical-align: -2px; margin-right: 6px; }
.nt-guide .two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.nt-guide .two .col { background: #fafafa; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 18px; }
.nt-guide .two h3 { margin-top: 0; }
.nt-guide .two ul { list-style: none; margin: 0; padding: 0; }
.nt-guide .two li { font-size: 14px; padding: 5px 0 5px 22px; position: relative; color: var(--text); }
.nt-guide .two li::before { content: ""; position: absolute; left: 0; top: 11px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
.nt-guide .two .col.you li::before { background: var(--border-strong); }
.nt-guide .rrow { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; align-items: center; }
.nt-guide .toast { font-size: 13px; color: var(--success); }
.nt-guide .trust { display: flex; gap: 22px; flex-wrap: wrap; margin: 6px 0 18px; }
.nt-guide .trust div { font-size: 13px; color: var(--text-muted); }
.nt-guide .trust b { display: block; font-size: 20px; color: var(--accent); }

@media (max-width: 720px) {
  .nt-guide .card { padding: 20px 18px; }
  .nt-guide .fgrid, .nt-guide .two { grid-template-columns: 1fr; }
  .nt-guide .badge { width: 100%; }
}
