/* NDT Inspect — workflow forms (Form.php + forms.js). One look for every form on the site. */
:root{--wz-ink:#0b1620;--wz-text:#122b46;--wz-muted:#5a6a7b;--wz-hint:#6f7f8f;--wz-line:#dfe5eb;--wz-line-strong:#c9d3dc;--wz-bg:#f6f8fa;--wz-green:#3d9142;--wz-green-dark:#2f7d35;--wz-green-tint:#eaf5ec;--wz-green-line:#bfe0c5;--wz-red:#b42318;--wz-red-tint:#fdf1f0;--wz-red-line:#f2c8c4;--wz-amber-tint:#fff7e3;--wz-amber-line:#f1dfa8;--wz-blue-tint:#e8f1fb;--wz-radius:16px;--wz-shadow:0 1px 2px rgba(11,22,32,.04),0 10px 30px rgba(11,22,32,.06)}

/* ---------------------------------------------------------------- shell */
.ndti-wiz{max-width:880px;margin:0 0 40px;font-family:inherit;color:var(--wz-text)}
.ndti-wiz *,.ndti-wiz *::before,.ndti-wiz *::after{box-sizing:border-box}
.ndti-wiz [hidden]{display:none!important}
.ndti-wiz--embed{margin:0 0 24px}
.ndti-wiz__head{display:flex;gap:18px;align-items:flex-start;background:linear-gradient(120deg,#0b1620,#173026 60%,#1d4a2c);color:#fff;border-radius:var(--wz-radius) var(--wz-radius) 0 0;padding:28px 30px 26px;margin:0}
.ndti-wiz--single .ndti-wiz__head,.ndti-wiz__head:last-child{border-radius:var(--wz-radius) var(--wz-radius) 0 0}
.ndti-wiz__icon{flex:0 0 auto;width:54px;height:54px;border-radius:14px;background:rgba(255,255,255,.08);display:grid;place-items:center}
.ndti-wiz__icon img{width:36px;height:36px}
.ndti-wiz__headtext{flex:1;min-width:0}
.ndti-wiz__title{color:#fff;font-size:26px;font-weight:800;line-height:1.2;margin:0 0 6px;letter-spacing:-.01em}
.ndti-wiz--embed .ndti-wiz__title{font-size:22px}
.ndti-wiz__intro{margin:0;color:rgba(255,255,255,.82);font-size:14.5px;line-height:1.55;max-width:640px}
.ndti-wiz__intro a{color:#9be0a3}
.ndti-wiz__meta{flex:0 1 auto;min-width:0;max-width:min(40%,300px);font-size:12.5px;color:rgba(255,255,255,.75);text-align:right}   /* a badge, not a paragraph: it wraps before it can squeeze the title (2026-09-13) */
.ndti-wiz__meta strong{display:block;color:#fff;font-size:15px}

/* progress rail */
.ndti-wiz__progress{background:#fff;border:1px solid var(--wz-line);border-top:0;padding:14px 22px 12px}
.ndti-wiz__steps{list-style:none;margin:0;padding:0;display:flex;gap:0;counter-reset:none}
.ndti-wiz__steps li{flex:1;min-width:0;position:relative;display:flex}
.ndti-wiz__steps li+li::before{content:"";position:absolute;left:-50%;right:50%;top:20px;height:2px;background:var(--wz-line);z-index:0}
.ndti-wiz__steps li.is-done+li::before,.ndti-wiz__steps li.is-current+li.is-done::before{background:var(--wz-green)}
.ndti-wiz__steps li.is-current::before{background:var(--wz-green)}
.ndti-wiz__jump{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;gap:7px;width:100%;background:none;border:0;padding:4px 6px;cursor:default;font:inherit;color:var(--wz-hint);text-align:center;border-radius:10px}
.ndti-wiz__steps li.is-reachable .ndti-wiz__jump{cursor:pointer}
.ndti-wiz__steps li.is-reachable .ndti-wiz__jump:hover{background:var(--wz-bg)}
.ndti-wiz__num{width:32px;height:32px;border-radius:50%;border:2px solid var(--wz-line-strong);background:#fff;display:grid;place-items:center;font-size:13px;font-weight:800;color:var(--wz-hint);transition:all .15s}
.ndti-wiz__steps li.is-current .ndti-wiz__num{background:var(--wz-green);border-color:var(--wz-green);color:#fff;box-shadow:0 0 0 4px var(--wz-green-tint)}
.ndti-wiz__steps li.is-done .ndti-wiz__num{background:#fff;border-color:var(--wz-green);color:var(--wz-green)}
.ndti-wiz__steps li.is-done .ndti-wiz__num span{font-size:0}
.ndti-wiz__steps li.is-done .ndti-wiz__num span::before{content:"\2713";font-size:14px}
.ndti-wiz__steps li.is-error .ndti-wiz__num{border-color:var(--wz-red);color:var(--wz-red)}
.ndti-wiz__lbl{display:flex;flex-direction:column;line-height:1.25;min-width:0}
.ndti-wiz__lbl strong{font-size:13px;font-weight:700;color:var(--wz-muted)}
.ndti-wiz__lbl small{font-size:11.5px;color:var(--wz-hint);margin-top:2px}
.ndti-wiz__steps li.is-current .ndti-wiz__lbl strong,.ndti-wiz__steps li.is-done .ndti-wiz__lbl strong{color:var(--wz-text)}
.ndti-wiz__mobile{display:none}
.ndti-wiz__steps--tabs li::before{display:none}
.ndti-wiz__steps--tabs .ndti-wiz__jump{cursor:pointer;flex-direction:row;justify-content:center;gap:10px;padding:8px 10px}
.ndti-wiz__steps--tabs .ndti-wiz__num{width:26px;height:26px;font-size:12px}
.ndti-wiz__steps--tabs .ndti-wiz__lbl{text-align:left}
.ndti-wiz__steps--tabs li.is-current .ndti-wiz__jump{background:var(--wz-green-tint)}

.ndti-wiz__note{background:var(--wz-amber-tint);border:1px solid var(--wz-amber-line);border-top:0;color:#6b4f0a;padding:10px 22px;font-size:13.5px}
.ndti-wiz__note strong{color:#4d3906}

/* step card */
.ndti-wiz__form{margin:0}
.ndti-wiz__step{background:#fff;border:1px solid var(--wz-line);border-top:0;padding:28px 30px 8px}
.ndti-wiz__head+.ndti-wiz__form>.ndti-wiz__step:first-of-type,.ndti-wiz__head+.ndti-wiz__form>.ndti-wiz__errors+.ndti-wiz__step{border-top:0}
.ndti-wiz--single .ndti-wiz__step,.ndti-wiz--done .ndti-wiz__step{border-radius:0}
.ndti-wiz--single>.ndti-wiz__form>.ndti-wiz__step:first-child,.ndti-wiz--done>.ndti-wiz__step:first-child,.ndti-wiz--done>.ndti-flow+.ndti-wiz__step{border-top:1px solid var(--wz-line);border-radius:var(--wz-radius)}
.ndti-wiz--done>.ndti-wiz__step{padding-bottom:28px}
.ndti-wiz__step-head{margin:0 0 22px;padding-bottom:18px;border-bottom:1px solid var(--wz-line)}
.ndti-wiz__kicker{display:inline-block;font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--wz-green-dark);background:var(--wz-green-tint);border-radius:999px;padding:3px 10px;margin-bottom:10px}
.ndti-wiz__step-title{margin:0 0 6px;font-size:21px;font-weight:800;color:var(--wz-ink);line-height:1.25;outline:0}
.ndti-wiz__lead{margin:0;color:var(--wz-muted);font-size:14.5px;line-height:1.55;max-width:640px}
.ndti-wiz__tips{background:var(--wz-bg);border:1px solid var(--wz-line);border-radius:12px;padding:14px 18px 14px 46px;margin:0 0 22px;position:relative;font-size:13.5px;color:var(--wz-muted)}
.ndti-wiz__tips::before{content:"\1F4A1";position:absolute;left:16px;top:13px;font-size:17px}
.ndti-wiz__tips strong{display:block;color:var(--wz-text);font-size:12px;letter-spacing:.08em;text-transform:uppercase;margin-bottom:6px}
.ndti-wiz__tips ul{margin:0;padding-left:18px}
.ndti-wiz__tips li{margin:3px 0;line-height:1.5}
.ndti-wiz__body{display:flex;flex-direction:column;gap:20px;padding-bottom:20px}
.ndti-wiz.is-ready .ndti-wiz__step[hidden]{display:none}
.ndti-wiz:not(.is-ready) .ndti-wiz__next{display:none}

/* error summary */
.ndti-wiz__errors{background:var(--wz-red-tint);border:1px solid var(--wz-red-line);border-top:0;color:#8a1c12;padding:14px 22px;font-size:14px;outline:0}
.ndti-wiz__errors strong{display:block;margin-bottom:4px;color:#7a170e}
.ndti-wiz__errors ul{margin:0;padding-left:20px}
.ndti-wiz__errors a{color:#8a1c12;text-decoration:underline}

/* navigation bar */
.ndti-wiz__nav{display:flex;justify-content:space-between;align-items:center;gap:14px;background:var(--wz-bg);border:1px solid var(--wz-line);border-top:0;border-radius:0 0 var(--wz-radius) var(--wz-radius);padding:16px 30px}
.ndti-wiz__nav-right{display:flex;align-items:center;gap:14px;margin-left:auto;flex-wrap:wrap;justify-content:flex-end}
.ndti-wiz__cancel{color:var(--wz-muted);font-size:14px;font-weight:600;text-decoration:none}
.ndti-wiz__cancel:hover{color:var(--wz-red);text-decoration:underline}
.ndti-wiz .ndti-btn{display:inline-flex;align-items:center;justify-content:center;gap:6px;min-height:44px;padding:0 22px;font-size:14.5px;font-weight:700;border-radius:10px;line-height:1.2;transition:background .15s,box-shadow .15s,transform .05s}
.ndti-wiz .ndti-btn:active{transform:translateY(1px)}
.ndti-wiz .ndti-btn:focus-visible{outline:0;box-shadow:0 0 0 3px #fff,0 0 0 5px var(--wz-green)}
.ndti-wiz .ndti-btn[disabled]{opacity:.6;cursor:progress}
.ndti-wiz .ndti-btn--ghost{background:#fff}
.ndti-wiz--danger .ndti-wiz__submit:focus-visible{box-shadow:0 0 0 3px #fff,0 0 0 5px var(--wz-red)}
.ndti-wiz__draft{font-size:12.5px;color:var(--wz-hint);margin-right:auto}
.ndti-wiz__draft-notice{display:flex;gap:12px;align-items:center;flex-wrap:wrap;background:var(--wz-blue-tint);border:1px solid #cfe0f5;color:#123c69;border-radius:10px;padding:10px 14px;font-size:13.5px}
.ndti-wiz__draft-notice button{background:none;border:0;color:#123c69;font:inherit;font-weight:700;text-decoration:underline;cursor:pointer;padding:0}

/* ---------------------------------------------------------------- fields */
.ndti-f{display:flex;flex-direction:column;gap:6px;min-width:0}
.ndti-f--sm{max-width:220px}.ndti-f--md{max-width:400px}
.ndti-f__label{font-size:14px;font-weight:700;color:var(--wz-text);line-height:1.3;display:flex;align-items:baseline;gap:8px;margin:0}
.ndti-f__opt{font-style:normal;font-weight:600;font-size:11px;letter-spacing:.05em;text-transform:uppercase;color:var(--wz-hint);background:var(--wz-bg);border:1px solid var(--wz-line);border-radius:999px;padding:1px 7px}
.ndti-f__help{font-size:13px;color:var(--wz-hint);line-height:1.45;margin-top:-2px}
.ndti-f__help a{color:var(--wz-green-dark)}
.ndti-f__after{font-size:12.5px;color:var(--wz-hint)}
.ndti-f__msg{font-size:13px;font-weight:600;color:var(--wz-red);line-height:1.4;min-height:0}
.ndti-f__msg:empty{display:none}
.ndti-f__msg::before{content:"\26A0\FE0E  "}
.ndti-wiz .ndti-f__in,.ndti-wiz input.ndti-f__in,.ndti-wiz select.ndti-f__in,.ndti-wiz textarea.ndti-f__in{width:100%;min-height:46px;border:1px solid var(--wz-line-strong);border-radius:10px;padding:10px 14px;font:inherit;font-size:15px;color:var(--wz-text);background:#fff;box-shadow:none;margin:0;line-height:1.4;transition:border-color .12s,box-shadow .12s;-webkit-appearance:none;appearance:none}
.ndti-wiz .ndti-f__in::placeholder{color:#9aa8b5;opacity:1}
.ndti-wiz .ndti-f__in:hover{border-color:#b1bfcb}
.ndti-wiz .ndti-f__in:focus{outline:0;border-color:var(--wz-green);box-shadow:0 0 0 3px rgba(61,145,66,.18)}
.ndti-wiz .ndti-f__in[readonly]{background:var(--wz-bg);color:var(--wz-muted)}
.ndti-f.is-invalid .ndti-f__in{border-color:var(--wz-red);background:#fffafa}
.ndti-f.is-invalid .ndti-f__in:focus{box-shadow:0 0 0 3px rgba(180,35,24,.16)}
.ndti-wiz textarea.ndti-f__in{min-height:120px;resize:vertical;line-height:1.55}
.ndti-wiz select.ndti-f__in{padding-right:40px;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%235a6a7b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;cursor:pointer}
.ndti-wiz input[type=date].ndti-f__in{min-width:0}
.ndti-f__count{font-size:12px;color:var(--wz-hint);text-align:right;margin-top:-2px}
.ndti-f__count.is-near{color:#8a5b00}.ndti-f__count.is-over{color:var(--wz-red)}
.ndti-f__affix{display:flex;align-items:stretch}
.ndti-f__affix .ndti-f__in{flex:1;min-width:0}
.ndti-f__prefix,.ndti-f__suffix{display:flex;align-items:center;padding:0 12px;border:1px solid var(--wz-line-strong);background:var(--wz-bg);color:var(--wz-muted);font-size:14px;font-weight:600;white-space:nowrap}
.ndti-f__prefix{border-right:0;border-radius:10px 0 0 10px}.ndti-f__suffix{border-left:0;border-radius:0 10px 10px 0}
.ndti-f__affix .ndti-f__prefix+.ndti-f__in{border-top-left-radius:0;border-bottom-left-radius:0}
.ndti-f__affix .ndti-f__in:has(+.ndti-f__suffix){border-top-right-radius:0;border-bottom-right-radius:0}
.ndti-f__pw{position:relative}
.ndti-f__pw .ndti-f__in{padding-right:74px}
.ndti-f__eye{position:absolute;right:8px;top:50%;transform:translateY(-50%);background:var(--wz-bg);border:1px solid var(--wz-line);border-radius:7px;color:var(--wz-muted);font:inherit;font-size:12px;font-weight:700;padding:5px 10px;cursor:pointer}
.ndti-f__eye:hover{color:var(--wz-text);border-color:var(--wz-line-strong)}
.ndti-f__strength{display:flex;align-items:center;gap:10px;font-size:12.5px;color:var(--wz-hint)}
.ndti-f__strength-bar{flex:1;height:6px;border-radius:999px;background:var(--wz-line);overflow:hidden}
.ndti-f__strength-bar i{display:block;height:100%;width:0;border-radius:999px;background:var(--wz-red);transition:width .2s,background .2s}
.ndti-f__strength[data-level="2"] i{background:#e0a800}.ndti-f__strength[data-level="3"] i,.ndti-f__strength[data-level="4"] i{background:var(--wz-green)}
.ndti-f-row{display:grid;grid-template-columns:var(--cols,1fr 1fr);gap:16px;align-items:start}
.ndti-f-row>.ndti-f{max-width:none}
.ndti-f--html{gap:0}
.ndti-f--heading{gap:2px;margin-top:6px}
.ndti-f--heading h3{margin:0;font-size:15px;font-weight:800;color:var(--wz-ink);letter-spacing:.01em}
.ndti-f--heading p{margin:0;font-size:13.5px;color:var(--wz-muted)}
.ndti-f--heading+.ndti-f{margin-top:-6px}

/* choice cards */
.ndti-choices{display:grid;grid-template-columns:repeat(var(--cols,1),1fr);gap:10px}
.ndti-choices--chips{display:flex;flex-wrap:wrap;gap:8px}
.ndti-choice{position:relative;display:block;cursor:pointer;margin:0;font-weight:400}
.ndti-choice input{position:absolute;opacity:0;width:1px;height:1px;margin:0}
.ndti-choice__box{display:flex;gap:12px;align-items:flex-start;border:1px solid var(--wz-line-strong);border-radius:12px;padding:12px 14px;background:#fff;transition:border-color .12s,background .12s,box-shadow .12s}
.ndti-choice:hover .ndti-choice__box{border-color:#b1bfcb}
.ndti-choice__mark{flex:0 0 auto;width:20px;height:20px;border-radius:50%;border:2px solid var(--wz-line-strong);margin-top:1px;position:relative;background:#fff}
.ndti-choice input[type=checkbox]+.ndti-choice__box .ndti-choice__mark{border-radius:6px}
.ndti-choice__mark::after{content:"";position:absolute;inset:4px;border-radius:50%;background:var(--wz-green);opacity:0;transform:scale(.4);transition:all .12s}
.ndti-choice input[type=checkbox]+.ndti-choice__box .ndti-choice__mark::after{border-radius:2px;inset:3px;background:var(--wz-green) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E") center/10px no-repeat}
.ndti-choice input:checked+.ndti-choice__box{border-color:var(--wz-green);background:var(--wz-green-tint);box-shadow:0 0 0 1px var(--wz-green)}
.ndti-choice input:checked+.ndti-choice__box .ndti-choice__mark{border-color:var(--wz-green)}
.ndti-choice input:checked+.ndti-choice__box .ndti-choice__mark::after{opacity:1;transform:scale(1)}
.ndti-choice input:focus-visible+.ndti-choice__box{box-shadow:0 0 0 3px rgba(61,145,66,.25)}
.ndti-choice__text{display:flex;flex-direction:column;gap:2px;min-width:0;line-height:1.35}
.ndti-choice__text strong{font-size:14.5px;color:var(--wz-text)}
.ndti-choice__text small{font-size:13px;color:var(--wz-muted)}
.ndti-choices--chips .ndti-choice__box{padding:7px 12px;border-radius:999px;align-items:center}
.ndti-choices--chips .ndti-choice__mark{width:16px;height:16px}
.ndti-choices--chips .ndti-choice__text strong{font-size:13.5px}
.ndti-choices--list .ndti-choice__box{border:0;border-radius:8px;padding:8px 10px;background:none}
.ndti-choices--list .ndti-choice input:checked+.ndti-choice__box{box-shadow:none;background:var(--wz-green-tint)}
.ndti-f.is-invalid .ndti-choice__box{border-color:var(--wz-red)}

/* switches */
.ndti-f--switch{gap:4px}
.ndti-switch{display:flex;gap:14px;align-items:flex-start;cursor:pointer;margin:0;font-weight:400;padding:12px 14px;border:1px solid var(--wz-line);border-radius:12px;background:#fff;transition:border-color .12s,background .12s}
.ndti-switch:hover{border-color:#b1bfcb}
.ndti-switch input{position:absolute;opacity:0;width:1px;height:1px;margin:0}
.ndti-switch__track{flex:0 0 auto;width:42px;height:24px;border-radius:999px;background:#c9d3dc;position:relative;transition:background .15s;margin-top:1px}
.ndti-switch__track::after{content:"";position:absolute;top:3px;left:3px;width:18px;height:18px;border-radius:50%;background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.25);transition:transform .15s}
.ndti-switch input:checked~.ndti-switch__track{background:var(--wz-green)}
.ndti-switch input:checked~.ndti-switch__track::after{transform:translateX(18px)}
.ndti-switch input:focus-visible~.ndti-switch__track{box-shadow:0 0 0 3px rgba(61,145,66,.25)}
.ndti-switch__text{display:flex;flex-direction:column;gap:2px;line-height:1.35;min-width:0}
.ndti-switch__text strong{font-size:14.5px;color:var(--wz-text);font-weight:700}
.ndti-switch__text small{font-size:13px;color:var(--wz-muted)}
.ndti-f--confirm .ndti-switch{border-style:dashed}
.ndti-f--confirm .ndti-switch__text strong{font-weight:600}

/* file drop-zone */
.ndti-file{position:relative;display:flex;flex-direction:column;gap:10px}
.ndti-file__in{position:absolute;opacity:0;width:1px;height:1px;margin:0}
.ndti-file__zone{display:flex;gap:14px;align-items:center;border:2px dashed var(--wz-line-strong);border-radius:12px;padding:16px 18px;background:var(--wz-bg);cursor:pointer;transition:border-color .12s,background .12s;margin:0;font-weight:400}
.ndti-file__zone:hover,.ndti-file.is-drag .ndti-file__zone{border-color:var(--wz-green);background:var(--wz-green-tint)}
.ndti-file__in:focus-visible+.ndti-file__zone{box-shadow:0 0 0 3px rgba(61,145,66,.25)}
.ndti-file__ic{flex:0 0 auto;width:44px;height:44px;border-radius:12px;background:#fff;border:1px solid var(--wz-line);display:grid;place-items:center}
.ndti-file__ic img{width:26px;height:26px}
.ndti-file__txt{display:flex;flex-direction:column;font-size:14px;color:var(--wz-muted);line-height:1.4}
.ndti-file__txt strong{color:var(--wz-green-dark)}
.ndti-file__txt small{font-size:12.5px;color:var(--wz-hint);margin-top:2px}
.ndti-file__picked{display:flex;flex-direction:column;gap:6px}
.ndti-file__item{display:flex;align-items:center;gap:12px;border:1px solid var(--wz-green-line);background:var(--wz-green-tint);border-radius:10px;padding:8px 12px;font-size:13.5px;color:var(--wz-text)}
.ndti-file__item img{width:44px;height:44px;object-fit:cover;border-radius:8px;background:#fff}
.ndti-file__item .name{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:600}
.ndti-file__item .size{color:var(--wz-hint);font-size:12.5px}
.ndti-file__item .rm{background:none;border:0;color:var(--wz-red);font:inherit;font-size:12.5px;font-weight:700;cursor:pointer;padding:2px 6px}
.ndti-file__current{display:flex;align-items:center;gap:10px;font-size:13px;color:var(--wz-muted)}
.ndti-file__current img{width:48px;height:48px;object-fit:contain;border:1px solid var(--wz-line);border-radius:8px;background:#fff}
.ndti-file__current a{color:var(--wz-green-dark);font-weight:600}
.ndti-file.has-file .ndti-file__zone{border-style:solid}
.ndti-file__thumbs{display:flex;gap:8px;flex-wrap:wrap}
.ndti-file__thumbs label{position:relative;display:block;font-size:11.5px;text-align:center;color:var(--wz-muted);cursor:pointer;margin:0;font-weight:400}
.ndti-file__thumbs img{width:84px;height:64px;object-fit:cover;border-radius:8px;display:block;border:1px solid var(--wz-line)}
.ndti-file__thumbs input{width:auto;margin:4px 4px 0 0;vertical-align:middle}
.ndti-file__thumbs input:checked+img,.ndti-file__thumbs label:has(input:checked) img{opacity:.35;filter:grayscale(1)}

/* callouts + facts */
.ndti-callout{border-radius:12px;padding:12px 16px;font-size:14px;line-height:1.5;border:1px solid var(--wz-line);background:var(--wz-bg);color:var(--wz-text)}
.ndti-callout--info{background:var(--wz-blue-tint);border-color:#cfe0f5;color:#123c69}
.ndti-callout--success{background:var(--wz-green-tint);border-color:var(--wz-green-line);color:#1e5426}
.ndti-callout--warning{background:var(--wz-amber-tint);border-color:var(--wz-amber-line);color:#6b4f0a}
.ndti-callout--danger{background:var(--wz-red-tint);border-color:var(--wz-red-line);color:#8a1c12}
.ndti-callout strong{color:inherit}
.ndti-callout p{margin:0 0 6px}.ndti-callout p:last-child{margin:0}
.ndti-facts{margin:0;border:1px solid var(--wz-line);border-radius:12px;overflow:hidden;display:flex;flex-direction:column}
.ndti-facts>div{display:grid;grid-template-columns:160px 1fr;gap:12px;padding:10px 16px;border-top:1px solid var(--wz-line);font-size:14px}
.ndti-facts>div:first-child{border-top:0}
.ndti-facts>div:nth-child(odd){background:var(--wz-bg)}
.ndti-facts dt{margin:0;color:var(--wz-hint);font-weight:600;font-size:13px}
.ndti-facts dd{margin:0;color:var(--wz-text);font-weight:600}

/* review summary */
.ndti-wiz__summary{display:flex;flex-direction:column;gap:18px}
.ndti-wiz__summary-nojs{margin:0;color:var(--wz-muted);font-size:14px}
.ndti-wiz.is-ready .ndti-wiz__summary-nojs{display:none}
.ndti-wiz__sum-group{border:1px solid var(--wz-line);border-radius:12px;overflow:hidden}
.ndti-wiz__sum-head{display:flex;justify-content:space-between;align-items:center;gap:12px;background:var(--wz-bg);padding:9px 16px;border-bottom:1px solid var(--wz-line)}
.ndti-wiz__sum-head strong{font-size:13px;letter-spacing:.06em;text-transform:uppercase;color:var(--wz-muted)}
.ndti-wiz__sum-head button{background:none;border:0;color:var(--wz-green-dark);font:inherit;font-size:13px;font-weight:700;cursor:pointer;padding:2px 4px;text-decoration:underline}
.ndti-wiz__sum-group dl{margin:0;display:flex;flex-direction:column}
.ndti-wiz__sum-group dl>div{display:grid;grid-template-columns:200px 1fr;gap:12px;padding:9px 16px;border-top:1px solid #eef2f5;font-size:14px}
.ndti-wiz__sum-group dl>div:first-child{border-top:0}
.ndti-wiz__sum-group dt{margin:0;color:var(--wz-hint);font-weight:600;font-size:13px}
.ndti-wiz__sum-group dd{margin:0;color:var(--wz-text);white-space:pre-wrap;word-break:break-word;overflow-wrap:anywhere}
.ndti-wiz__sum-group dd.is-empty{color:#9aa8b5;font-style:italic}
.ndti-wiz__next{background:var(--wz-green-tint);border:1px solid var(--wz-green-line);border-radius:12px;padding:14px 18px;font-size:14px;color:#1e5426}
.ndti-wiz__next strong{display:block;font-size:12px;letter-spacing:.08em;text-transform:uppercase;margin-bottom:6px}
.ndti-wiz__next ol{margin:0;padding-left:20px}
.ndti-wiz__next li{margin:3px 0;line-height:1.5}

/* cross-page flow rail */
.ndti-flow{list-style:none;margin:0 0 14px;padding:0;display:flex;gap:6px;flex-wrap:wrap;align-items:center}
.ndti-flow li{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:600;color:var(--wz-hint);background:#fff;border:1px solid var(--wz-line);border-radius:999px;padding:5px 12px 5px 6px}
.ndti-flow li::after{content:"";display:none}
.ndti-flow__num{box-sizing:border-box;flex:none;width:22px;height:22px;border-radius:50%;background:var(--wz-line);color:var(--wz-muted);display:grid;place-items:center;font-size:11.5px;font-weight:800;line-height:1;font-variant-numeric:tabular-nums}
.ndti-flow__num svg{display:block;width:12px;height:12px}
.ndti-flow__lbl{line-height:1.2}
.ndti-flow li.is-current{border-color:var(--wz-green);color:var(--wz-text);background:var(--wz-green-tint)}
.ndti-flow li.is-current .ndti-flow__num{background:var(--wz-green);color:#fff}
.ndti-flow li.is-done{color:var(--wz-muted)}
.ndti-flow li.is-done .ndti-flow__num{background:#fff;border:2px solid var(--wz-green);color:var(--wz-green)}

/* done card */
.ndti-done{text-align:center;padding:14px 8px}
.ndti-done__ic{display:inline-grid;place-items:center;width:64px;height:64px;border-radius:50%;background:var(--wz-green-tint);color:var(--wz-green-dark);font-size:30px;font-weight:800;margin-bottom:14px;border:2px solid var(--wz-green-line)}
.ndti-done__ic--error{background:var(--wz-red-tint);color:var(--wz-red);border-color:var(--wz-red-line)}
.ndti-done h2{margin:0 0 8px;font-size:22px;font-weight:800;color:var(--wz-ink)}
.ndti-done p{margin:0 auto;max-width:520px;color:var(--wz-muted);font-size:14.5px;line-height:1.55}
.ndti-done__links{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-top:20px}

/* danger variant */
.ndti-wiz--danger .ndti-wiz__head{background:linear-gradient(120deg,#2b0f0c,#4a1912 60%,#6a2118)}
.ndti-wiz--danger .ndti-wiz__kicker{background:var(--wz-red-tint);color:var(--wz-red)}

/* compact composer (replies, comments, contact-the-seller) */
.ndti-wiz--compact{max-width:none}
.ndti-wiz--compact .ndti-wiz__step{padding:20px 22px 4px;border-top:1px solid var(--wz-line);border-radius:var(--wz-radius) var(--wz-radius) 0 0}
.ndti-wiz--compact .ndti-wiz__step-head{margin-bottom:14px;padding-bottom:12px}
.ndti-wiz--compact .ndti-wiz__step-title{font-size:17px}
.ndti-wiz--compact .ndti-wiz__body{gap:14px;padding-bottom:14px}
.ndti-wiz--compact .ndti-wiz__nav{padding:12px 22px}
.ndti-wiz--compact .ndti-btn{min-height:40px;padding:0 18px;font-size:14px}
.ndti-wiz--compact textarea.ndti-f__in{min-height:96px}

/* legacy small forms that keep .ndti-form get the same field look */
.ndti-form input[type=text],.ndti-form input[type=email],.ndti-form input[type=password],.ndti-form input[type=url],.ndti-form input[type=number],.ndti-form input[type=date],.ndti-form input[type=search],.ndti-form select,.ndti-form textarea{border-radius:10px;border-color:var(--wz-line-strong);min-height:44px;font-size:15px}
.ndti-form input:focus,.ndti-form select:focus,.ndti-form textarea:focus{outline:0;border-color:var(--wz-green);box-shadow:0 0 0 3px rgba(61,145,66,.18)}

/* inside designed live pages */
.ndti-live .ndti-wiz{margin-left:auto;margin-right:auto}
.ndti-live .ndti-wiz .ndti-btn{display:inline-flex}

/* ---------------------------------------------------------------- responsive */
@media (max-width:760px){
  .ndti-wiz__head{padding:20px 18px 18px;gap:12px;border-radius:14px 14px 0 0}
  .ndti-wiz__icon{width:44px;height:44px;border-radius:11px}.ndti-wiz__icon img{width:28px;height:28px}
  .ndti-wiz__title{font-size:21px}
  .ndti-wiz__meta{display:none}
  .ndti-wiz__progress{padding:12px 16px}
  .ndti-wiz.is-ready .ndti-wiz__steps:not(.ndti-wiz__steps--tabs){display:none}
  .ndti-wiz.is-ready .ndti-wiz__mobile{display:grid;grid-template-columns:auto 1fr;gap:4px 12px;align-items:center}
  .ndti-wiz__counter{font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--wz-green-dark)}
  .ndti-wiz__mlabel{font-size:14px;font-weight:700;color:var(--wz-text);text-align:right}
  .ndti-wiz__barwrap{grid-column:1/-1;height:6px;border-radius:999px;background:var(--wz-line);overflow:hidden}
  .ndti-wiz__bar{display:block;height:100%;background:var(--wz-green);border-radius:999px;transition:width .25s}
  .ndti-wiz__steps--tabs{overflow-x:auto;gap:4px;-webkit-overflow-scrolling:touch}
  .ndti-wiz__steps--tabs li{flex:0 0 auto}
  .ndti-wiz__steps--tabs .ndti-wiz__lbl small{display:none}
  .ndti-wiz__step{padding:20px 18px 4px}
  .ndti-wiz__step-title{font-size:19px}
  .ndti-wiz__nav{padding:12px 16px;flex-wrap:wrap;position:sticky;bottom:0;z-index:5;box-shadow:0 -8px 24px rgba(11,22,32,.06)}
  .ndti-wiz__nav-right{width:100%;justify-content:space-between}
  .ndti-wiz__nav-right .ndti-btn{flex:1}
  .ndti-wiz__prev{order:2;width:100%;margin-top:8px}
  .ndti-f-row{grid-template-columns:1fr!important}
  .ndti-f--sm,.ndti-f--md{max-width:none}
  .ndti-facts>div,.ndti-wiz__sum-group dl>div{grid-template-columns:1fr;gap:2px}
  .ndti-choices{grid-template-columns:1fr!important}
  .ndti-file__zone{padding:14px}
}
@media (min-width:761px){
  .ndti-wiz__steps li:first-child .ndti-wiz__jump{align-items:center}
}
@media (prefers-reduced-motion:reduce){.ndti-wiz *{transition:none!important}}

/* search bars (directory / results pages) */
.ndti-searchbar{display:flex;gap:10px;align-items:center;flex:1;min-width:260px;max-width:560px;margin:0}
.ndti-searchbar__in{flex:1;min-width:0;min-height:46px;border:1px solid var(--wz-line-strong);border-radius:12px;padding:10px 14px 10px 42px;font:inherit;font-size:15px;color:var(--wz-text);background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%237f868f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E") no-repeat 14px center;-webkit-appearance:none;appearance:none}
.ndti-searchbar__in:focus{outline:0;border-color:var(--wz-green);box-shadow:0 0 0 3px rgba(61,145,66,.18)}
.ndti-searchbar .ndti-btn{display:inline-flex;align-items:center;min-height:46px;padding:0 20px;border-radius:12px}
.ndti-toolbar{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin:0 0 20px}
.ndti-toolbar .ndti-btn{display:inline-flex;align-items:center;min-height:46px;border-radius:12px}

/* spam check — Google reCAPTCHA v3 on the contact, enquiry (and optionally sign-in / sign-up) forms (Captcha.php, 2026-09-15):
   Google's badge stays hidden, which Google allows when the notice below is shown; the notice sits under the button bar */
.grecaptcha-badge{visibility:hidden!important}
.ndti-captcha__note{margin:8px 2px 0;font-size:12px;line-height:1.5;color:#7f868f;text-align:right}
.ndti-captcha__note a{color:inherit;text-decoration:underline}
.ndti-enq .ndti-captcha__note{text-align:left;margin:0}
