/* LicenseCorner B2B - quote request form (extracted from legacy snippet). */

.lcqr-wrap {
	--lc-green:#10b981;
	--lc-green-dark:#059669;
	--lc-green-soft:#d1fae5;
	--lc-card:#fff;
	--lc-border:#e5e7eb;
	--lc-text:#0f172a;
	--lc-muted:#64748b;
	--lc-dark:#0b1622;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	color: var(--lc-text);
	background: transparent;
	padding: 0;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.lcqr-wrap *,
.lcqr-wrap *::before,
.lcqr-wrap *::after { box-sizing: border-box; font-family: inherit; }

.lcqr-grid { display: grid; grid-template-columns: minmax(0,2fr) minmax(300px,1fr); gap: 24px; max-width: 1280px; margin: 0 auto; align-items: start; }
@media (max-width: 900px) { .lcqr-grid { grid-template-columns: 1fr; } }
.lcqr-card { background: var(--lc-card); border: 1px solid var(--lc-border); border-radius: 16px; padding: 32px; box-shadow: 0 1px 3px rgba(15,23,42,.04); }
.lcqr-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--lc-border); margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
.lcqr-head h2 { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.lcqr-badge { background: var(--lc-green-soft); color: var(--lc-green-dark); padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; line-height: 1; }

.lcqr-step { display: flex; align-items: center; gap: 10px; margin: 32px 0 14px; }
.lcqr-step:first-of-type { margin-top: 0; }
.lcqr-step .num { background: var(--lc-dark); color: #fff; width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; line-height: 1; }
.lcqr-step .lbl { font-size: 13px; font-weight: 600; letter-spacing: .08em; color: var(--lc-muted); text-transform: uppercase; }

.lcqr-search { position: relative; }
.lcqr-search input { width: 100%; padding: 14px 16px 14px 44px; border: 1px solid var(--lc-border); border-radius: 10px; font-size: 15px; background: #fff; color: var(--lc-text); transition: border-color .15s, box-shadow .15s; }
.lcqr-search input:focus { outline: none; border-color: var(--lc-green); box-shadow: 0 0 0 3px rgba(16,185,129,.15); }
.lcqr-search::before { content: ""; position: absolute; left: 16px; top: 50%; width: 16px; height: 16px; transform: translateY(-50%); background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'><circle cx='11' cy='11' r='7'/><path d='m20 20-3.5-3.5'/></svg>") no-repeat center / contain; pointer-events: none; z-index: 1; }
.lcqr-suggest { position: absolute; left: 0; right: 0; top: calc(100% + 6px); background: #fff; border: 1px solid var(--lc-border); border-radius: 10px; max-height: 320px; overflow: auto; z-index: 30; box-shadow: 0 12px 32px rgba(15,23,42,.12); display: none; }
.lcqr-suggest.show { display: block; }
.lcqr-sg { padding: 12px 14px; cursor: pointer; border-bottom: 1px solid #f1f5f9; font-size: 14px; display: flex; align-items: center; gap: 12px; }
.lcqr-sg:hover, .lcqr-sg.active { background: #f8fafc; }
.lcqr-sg:last-child { border-bottom: none; }
.lcqr-sg .sg-img { width: 32px; height: 32px; border-radius: 6px; background: var(--lc-green-soft); color: var(--lc-green-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; font-size: 13px; overflow: hidden; }
.lcqr-sg .sg-img img { width: 100%; height: 100%; object-fit: cover; }
.lcqr-sg .sg-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; }
.lcqr-sg .cat { font-size: 10px; color: var(--lc-green-dark); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.lcqr-sg .nm { font-weight: 500; color: var(--lc-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lcqr-sg.empty { cursor: default; color: var(--lc-muted); text-align: center; justify-content: center; }

.lcqr-list { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.lcqr-item { display: flex; align-items: center; gap: 14px; padding: 14px; border: 1px solid var(--lc-border); border-radius: 12px; background: #fff; transition: border-color .15s, box-shadow .15s; }
.lcqr-item:hover { border-color: #cbd5e1; box-shadow: 0 1px 4px rgba(15,23,42,.04); }
.lcqr-item .ico { width: 46px; height: 46px; border-radius: 10px; background: var(--lc-green-soft); color: var(--lc-green-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; font-size: 16px; overflow: hidden; }
.lcqr-item .ico img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lcqr-item .info { flex: 1; min-width: 0; }
.lcqr-item .cat { font-size: 11px; color: var(--lc-green-dark); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; display: block; margin-bottom: 3px; line-height: 1; }
.lcqr-item .name { font-size: 15px; font-weight: 600; color: var(--lc-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; line-height: 1.3; }
.lcqr-qty { display: inline-flex; align-items: stretch; border: 1px solid var(--lc-border); border-radius: 8px; background: #fff; overflow: hidden; height: 38px; flex-shrink: 0; }
.lcqr-qty button { background: #fff; border: none; width: 34px; height: 100%; padding: 0; font-size: 16px; line-height: 1; color: var(--lc-muted); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; font-family: inherit; font-weight: 500; transition: background .15s, color .15s; }
.lcqr-qty button:hover { background: #f1f5f9; color: var(--lc-text); }
.lcqr-qty input { width: 50px; height: 100%; border: none; border-left: 1px solid var(--lc-border); border-right: 1px solid var(--lc-border); text-align: center; font-size: 14px; font-weight: 600; background: transparent; color: var(--lc-text); font-family: inherit; -moz-appearance: textfield; padding: 0; }
.lcqr-qty input::-webkit-outer-spin-button,
.lcqr-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.lcqr-qty input:focus { outline: none; background: #f8fafc; }
.lcqr-rm { background: none; border: none; color: var(--lc-muted); cursor: pointer; padding: 8px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .15s, color .15s; }
.lcqr-rm:hover { background: #fee2e2; color: #dc2626; }
.lcqr-add { margin-top: 12px; width: 100%; padding: 14px; border: 1.5px dashed var(--lc-border); border-radius: 12px; background: transparent; color: var(--lc-muted); font-size: 14px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: inherit; transition: border-color .15s, color .15s, background .15s; }
.lcqr-add:hover { border-color: var(--lc-green); color: var(--lc-green-dark); background: rgba(16,185,129,.04); }

.lcqr-meter { margin-top: 20px; background: #f8fafc; border: 1px solid var(--lc-border); border-radius: 12px; padding: 14px 16px; }
.lcqr-meter-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; margin-bottom: 10px; flex-wrap: wrap; gap: 8px; }
.lcqr-meter-row .label { color: var(--lc-text); }
.lcqr-meter-row .label strong { font-weight: 700; }
.lcqr-meter-row .pill { background: var(--lc-green-soft); color: var(--lc-green-dark); padding: 5px 12px; border-radius: 999px; font-weight: 600; font-size: 12px; line-height: 1; }
.lcqr-meter-row .pill.warn { background: #fef3c7; color: #b45309; }
.lcqr-meter-bar { height: 8px; background: #e5e7eb; border-radius: 999px; overflow: hidden; }
.lcqr-meter-bar span { display: block; height: 100%; background: var(--lc-green); transition: width .3s, background .3s; border-radius: 999px; }
.lcqr-meter-bar span.warn { background: #f59e0b; }

.lcqr-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 16px; }
.lcqr-row:last-of-type { margin-bottom: 0; }
@media (max-width: 640px) { .lcqr-row { grid-template-columns: 1fr; } }
.lcqr-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--lc-text); }
.lcqr-field label .req { color: #dc2626; margin-left: 2px; }
.lcqr-field label .opt { color: var(--lc-muted); font-weight: 400; margin-left: 6px; }
.lcqr-field input,
.lcqr-field select,
.lcqr-field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--lc-border); border-radius: 10px; font-size: 14px; background: #fff; font-family: inherit; color: var(--lc-text); transition: border-color .15s, box-shadow .15s; }
.lcqr-field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.lcqr-field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.lcqr-field input:focus,
.lcqr-field select:focus,
.lcqr-field textarea:focus { outline: none; border-color: var(--lc-green); box-shadow: 0 0 0 3px rgba(16,185,129,.15); }
.lcqr-field.error input,
.lcqr-field.error select,
.lcqr-field.error textarea { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,.12); }

.lcqr-foot { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding-top: 24px; margin-top: 24px; border-top: 1px solid var(--lc-border); flex-wrap: wrap; }
.lcqr-foot .terms { font-size: 13px; color: var(--lc-muted); max-width: 60%; line-height: 1.5; }
.lcqr-foot .terms strong { color: var(--lc-text); font-weight: 600; }
.lcqr-submit { background: var(--lc-green); color: #fff; border: none; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; font-family: inherit; transition: background .15s, transform .05s; line-height: 1; }
.lcqr-submit:hover { background: var(--lc-green-dark); }
.lcqr-submit:active { transform: translateY(1px); }
.lcqr-submit:disabled { opacity: .6; cursor: not-allowed; }

.lcqr-side { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 24px; }
@media (max-width: 900px) { .lcqr-side { position: static; } }
.lcqr-side .lcqr-card.dark { background: linear-gradient(160deg,#0b1622,#1e293b); color: #fff; border: none; }
.lcqr-side h3 { margin: 0 0 6px; font-size: 17px; font-weight: 700; letter-spacing: -.005em; }
.lcqr-side .sub { color: var(--lc-muted); font-size: 13px; margin: 0 0 20px; line-height: 1.5; }
.lcqr-side .dark .sub { color: #94a3b8; }
.lcqr-side ol { list-style: none; padding: 0; margin: 0; }
.lcqr-side ol li { display: flex; gap: 12px; margin-bottom: 18px; }
.lcqr-side ol li:last-child { margin-bottom: 0; }
.lcqr-side ol li .n { background: rgba(16,185,129,.18); color: #34d399; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; line-height: 1; }
.lcqr-side ol li .ttl { font-weight: 700; font-size: 14px; display: block; margin-bottom: 3px; color: #fff; line-height: 1.3; }
.lcqr-side ol li .desc { color: #94a3b8; font-size: 13px; line-height: 1.5; }

.lcqr-bullets { list-style: none; padding: 0; margin: 0; }
.lcqr-bullets li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14px; line-height: 1.5; }
.lcqr-bullets li:last-child { margin-bottom: 0; }
.lcqr-bullets li::before { content: ""; width: 18px; height: 18px; flex-shrink: 0; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain; margin-top: 2px; }
.lcqr-contact { background: #f8fafc; border: 1px solid var(--lc-border); border-radius: 10px; padding: 14px; margin-top: 20px; display: flex; gap: 12px; align-items: flex-start; }
.lcqr-contact .ic { width: 22px; height: 22px; flex-shrink: 0; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'><path d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/></svg>") no-repeat center / contain; margin-top: 1px; }
.lcqr-contact .txt { font-size: 13px; color: var(--lc-muted); line-height: 1.4; }
.lcqr-contact .txt strong { display: block; color: var(--lc-text); font-weight: 600; margin-bottom: 2px; }

.lcqr-hp { position: absolute !important; left: -9999px !important; top: -9999px !important; opacity: 0 !important; height: 0 !important; width: 0 !important; overflow: hidden; }
.lcqr-msg { margin-top: 20px; padding: 14px 16px; border-radius: 10px; font-size: 14px; display: none; line-height: 1.4; }
.lcqr-msg.show { display: block; }
.lcqr-msg.success { background: var(--lc-green-soft); color: var(--lc-green-dark); }
.lcqr-msg.error { background: #fee2e2; color: #b91c1c; }
