@charset "UTF-8";

/* LockCar Security Device Finder
   Palette taken from lockcar.co.uk: navy #112334 shell, plate yellow, amber CTA. */

/* Number plate font. Drop the file(s) into assets/fonts/ and this picks them up
   automatically; without them the stack falls back to condensed system fonts.
   Paths are relative to this stylesheet (assets/css/). */
@font-face {
	font-family: "UKNumberPlate";
	src: url("../fonts/UKNumberPlate.woff2") format("woff2"),
	     url("../fonts/UKNumberPlate.woff") format("woff"),
	     url("../fonts/UKNumberPlate.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

.lcsf {
	--lcsf-ink:      #0a1722;
	--lcsf-panel:    #112334;
	--lcsf-panel-2:  #162c3f;
	--lcsf-line:     rgba(255, 255, 255, 0.10);
	--lcsf-line-2:   rgba(255, 255, 255, 0.16);
	--lcsf-text:     #e9f1f8;
	--lcsf-muted:    #94a8b9;
	--lcsf-amber:    #ffc21a;
	--lcsf-amber-2:  #ffb400;
	--lcsf-plate:    #ffd427;
	--lcsf-blue:     #2f6df6;
	--lcsf-good:     #2fc98a;
	--lcsf-bad:      #ff6b6b;
	--lcsf-radius:   14px;

	box-sizing: border-box;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 16px 56px;
	color: var(--lcsf-text);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

.lcsf *,
.lcsf *::before,
.lcsf *::after { box-sizing: border-box; max-width: 100%; }

/* Overflow control, applied only where it belongs. A blanket
   "* { max-width: 100% }" also hits flex and grid children, table cells and
   absolutely positioned elements, which quietly breaks their sizing. */
.lcsf img,
.lcsf svg,
.lcsf video,
.lcsf table,
.lcsf pre { max-width: 100%; }

/* Zero-specificity resets: :where() keeps these from beating the class rules
   below, which is what silently kills margins in scoped stylesheets. */
.lcsf :where(h1, h2, h3, h4) {
	color: var(--lcsf-text);
	margin: 0;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.lcsf :where(p) { margin: 0; }

.lcsf button { font: inherit; cursor: pointer; }

/* Sections below set display:grid/flex, which would otherwise beat [hidden]. */
.lcsf [hidden] { display: none !important; }

/* ---------- hero ---------- */

.lcsf-hero {
	position: relative;
	background:
		radial-gradient(900px 320px at 85% -20%, rgba(255, 194, 26, 0.16), transparent 62%),
		linear-gradient(180deg, #162c3f 0%, var(--lcsf-panel) 100%);
	border: 1px solid var(--lcsf-line);
	border-radius: 22px;
	padding: 44px 32px 36px;
	text-align: center;
	overflow: hidden;
}

.lcsf-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--lcsf-amber), transparent);
	opacity: 0.5;
}

.lcsf-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lcsf-amber);
	margin-bottom: 14px;
}

.lcsf-eyebrow__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--lcsf-amber);
	box-shadow: 0 0 0 4px rgba(255, 194, 26, 0.18);
}

.lcsf-title {
	font-size: clamp(28px, 4.6vw, 46px);
	font-weight: 800;
	margin-bottom: 12px;
}

.lcsf-sub {
	color: var(--lcsf-muted);
	font-size: 16px;
	max-width: 560px;
	margin: 0 auto 28px;
}

/* ---------- the plate input ---------- */

.lcsf-plate-form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: stretch;
	justify-content: center;
	max-width: 100%;
}

.lcsf .vrm-search__form__group-container {
	flex: 0 1 400px;
	min-width: 260px;
}

.lcsf .form-group.vrm-search__form { margin: 0; }

.lcsf .input-group {
	display: flex;
	align-items: stretch;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 26px -12px rgba(0, 0, 0, 0.7);
	background: var(--lcsf-plate);
	height: 78px;
	transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.lcsf .input-group:focus-within {
	box-shadow: 0 0 0 3px rgba(255, 194, 26, 0.45), 0 10px 26px -12px rgba(0, 0, 0, 0.7);
}

.lcsf .input-group-prepend { display: flex; }

.lcsf .input-group-text.uk {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 50px;
	flex-shrink: 0;
	background: var(--lcsf-blue);
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.06em;
	border: 0;
	border-radius: 0;
}

.lcsf .vrm-search__input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: var(--lcsf-plate);
	color: #101820;
	font-family: "UKNumberPlate", "Charles Wright", "Arial Narrow", Arial, sans-serif;
	/* Fluid so a long reg never overflows the plate on a narrow screen. */
	font-size: 50px;
	/* The plate font ships in one weight; 700 would trigger faux bold and
	   smear the glyphs. Raise this to 700 only if you drop the font file. */
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
	padding: 0 12px;
	height: 100%;
	box-shadow: none;
	outline: none;
	border-radius: 0;
}

/* Same size as the typed value, so the field does not jump when the visitor
   starts typing. Only the colour and tracking differ. */
.lcsf .vrm-search__input::placeholder {
	color: rgba(16, 24, 32, 0.38);
	font-size: clamp(30px, 4.2vw, 48px);
	letter-spacing: 0.02em;
}

/* ---------- buttons ---------- */

.lcsf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	border-radius: 10px;
	padding: 0 26px;
	min-height: 52px;
	font-size: 15.5px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.lcsf-btn:hover { text-decoration: none; }
.lcsf-btn:active { transform: translateY(1px); }

.lcsf-btn--primary {
	background: linear-gradient(180deg, var(--lcsf-amber) 0%, var(--lcsf-amber-2) 100%);
	color: #16202b;
	box-shadow: 0 10px 24px -12px rgba(255, 180, 0, 0.9);
	/* Kept in step with .lcsf .input-group height so the pair line up. */
	height: 78px;
}

.lcsf-btn--primary:hover { filter: brightness(1.05); color: #16202b; }

.lcsf-btn--ghost {
	background: transparent;
	color: var(--lcsf-text);
	border: 1px solid var(--lcsf-line-2);
	min-height: 46px;
	font-size: 14.5px;
	padding: 0 18px;
}

.lcsf-btn--ghost:hover { border-color: var(--lcsf-amber); color: var(--lcsf-amber); }

.lcsf-btn--pick {
	background: var(--lcsf-amber);
	color: #16202b;
	min-height: 46px;
	font-size: 14.5px;
	padding: 0 18px;
}

.lcsf-btn--pick:hover { filter: brightness(1.06); }

.lcsf-btn--pick.is-picked {
	background: var(--lcsf-good);
	color: #06251a;
}

.lcsf-btn--wide { width: 100%; height: 56px; }

.lcsf-btn[disabled] { opacity: 0.6; cursor: default; }

.lcsf-spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(22, 32, 43, 0.3);
	border-top-color: #16202b;
	border-radius: 50%;
	animation: lcsf-spin 0.7s linear infinite;
}

.lcsf-btn.is-loading .lcsf-spinner { display: block; }
.lcsf-btn.is-loading { pointer-events: none; opacity: 0.85; }

@keyframes lcsf-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
	.lcsf *, .lcsf *::before, .lcsf *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* ---------- small bits ---------- */

.lcsf-trust {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 24px;
	margin: 22px 0 0;
	padding: 0;
	font-size: 13px;
	color: var(--lcsf-muted);
}

.lcsf-trust li { display: inline-flex; align-items: center; gap: 7px; }

.lcsf-trust li::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--lcsf-good);
}

.lcsf-error {
	margin: 16px auto 0;
	max-width: 520px;
	background: rgba(255, 107, 107, 0.12);
	border: 1px solid rgba(255, 107, 107, 0.35);
	color: #ffb4b4;
	border-radius: 10px;
	padding: 11px 14px;
	font-size: 14px;
	text-align: center;
}

.lcsf-link {
	background: none;
	border: 0;
	padding: 0;
	color: var(--lcsf-muted);
	font-size: 13px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.lcsf-link:hover { color: var(--lcsf-amber); }

.lcsf-h2 {
	font-size: clamp(21px, 2.6vw, 27px);
	font-weight: 800;
	margin-bottom: 6px;
}

.lcsf-h2-sub {
	color: var(--lcsf-muted);
	font-size: 14.5px;
	margin-bottom: 22px;
	max-width: 640px;
}

/* ---------- results ---------- */

.lcsf-results { margin-top: 26px; }
.lcsf-results > section + section { margin-top: 34px; }

.lcsf-vehicle {
	background: var(--lcsf-panel);
	border: 1px solid var(--lcsf-line);
	border-radius: 18px;
	padding: 24px;
}

.lcsf-vehicle__head {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	align-items: center;
	margin-bottom: 20px;
}

.lcsf-plate {
	display: inline-flex;
	align-items: stretch;
	border-radius: 6px;
	overflow: hidden;
	background: var(--lcsf-plate);
	line-height: 1;
	box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.8);
}

.lcsf-plate__uk {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--lcsf-blue);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.05em;
	padding: 0 9px;
}

.lcsf-plate__text {
	font-family: "UKNumberPlate", "Charles Wright", "Arial Narrow", Arial, sans-serif;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #101820;
	padding: 9px 14px 7px;
	text-transform: uppercase;
}

.lcsf-vehicle__name { flex: 1; min-width: 220px; }
.lcsf-vehicle__name h2 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; }

.lcsf-vehicle__spec {
	color: var(--lcsf-muted);
	font-size: 13.5px;
	margin: 5px 0 6px;
}

.lcsf-demo-note {
	background: rgba(255, 194, 26, 0.10);
	border: 1px solid rgba(255, 194, 26, 0.30);
	color: var(--lcsf-amber);
	border-radius: 10px;
	padding: 9px 13px;
	font-size: 12.5px;
	margin-bottom: 16px;
}

.lcsf-tables {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.lcsf-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--lcsf-panel-2);
	border: 1px solid var(--lcsf-line);
	border-radius: 12px;
	overflow: hidden;
	font-size: 14px;
}

.lcsf-table caption {
	caption-side: top;
	text-align: left;
	padding: 12px 16px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lcsf-muted);
	background: rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid var(--lcsf-line);
}

.lcsf-table th,
.lcsf-table td {
	padding: 10px 16px;
	border-bottom: 1px solid var(--lcsf-line);
	text-align: left;
}

.lcsf-table tr:last-child th,
.lcsf-table tr:last-child td { border-bottom: 0; }

.lcsf-table th {
	color: var(--lcsf-muted);
	font-weight: 500;
	white-space: nowrap;
}

.lcsf-table td { font-weight: 600; text-align: right; }

.lcsf-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	padding: 2px 10px;
	border-radius: 999px;
}

.lcsf-pill::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}

.lcsf-pill--ok  { background: rgba(47, 201, 138, 0.14); color: var(--lcsf-good); }
.lcsf-pill--bad { background: rgba(255, 107, 107, 0.14); color: var(--lcsf-bad); }

/* ---------- MOT history ---------- */

.lcsf-mot {
	margin-top: 16px;
	background: var(--lcsf-panel-2);
	border: 1px solid var(--lcsf-line);
	border-radius: 12px;
	overflow: hidden;
}

.lcsf-mot__summary {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 16px;
	cursor: pointer;
	list-style: none;
	font-size: 13.5px;
}

.lcsf-mot__summary::-webkit-details-marker { display: none; }

.lcsf-mot__summary::after {
	content: "";
	margin-left: auto;
	width: 8px;
	height: 8px;
	border: solid var(--lcsf-muted);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) translate(-2px, -2px);
	transition: transform 0.18s ease;
}

.lcsf-mot[open] .lcsf-mot__summary::after {
	transform: rotate(-135deg) translate(-2px, -2px);
}

.lcsf-mot__title {
	font-weight: 700;
	letter-spacing: 0.02em;
}

.lcsf-mot__count { color: var(--lcsf-muted); font-size: 12.5px; }

.lcsf-mot__list {
	padding: 4px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lcsf-mot__item {
	border-left: 3px solid var(--lcsf-good);
	background: rgba(255, 255, 255, 0.03);
	border-radius: 0 10px 10px 0;
	padding: 12px 14px;
}

.lcsf-mot__item.is-fail { border-left-color: var(--lcsf-bad); }

.lcsf-mot__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 12px;
	font-size: 13px;
}

.lcsf-mot__result {
	font-weight: 800;
	font-size: 11.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lcsf-good);
}

.lcsf-mot__item.is-fail .lcsf-mot__result { color: var(--lcsf-bad); }

.lcsf-mot__date { color: var(--lcsf-text); font-weight: 600; }
.lcsf-mot__miles { color: var(--lcsf-muted); margin-left: auto; font-variant-numeric: tabular-nums; }

.lcsf-mot__label {
	margin-top: 10px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lcsf-muted);
}

.lcsf-mot__defects {
	margin: 4px 0 0;
	padding-left: 18px;
	font-size: 12.5px;
	color: #c6d5e1;
	line-height: 1.5;
}

.lcsf-mot__defects.is-fail { color: #ffc0c0; }

.lcsf-mot__more {
	font-size: 12px;
	color: var(--lcsf-muted);
	text-align: center;
	padding-top: 4px;
}

/* ---------- the three selectable cards ---------- */

.lcsf-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.lcsf-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: left;
	background: var(--lcsf-panel);
	border: 1.5px solid var(--lcsf-line);
	border-radius: var(--lcsf-radius);
	padding: 22px 20px 20px;
	color: var(--lcsf-text);
	transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.lcsf-card:hover {
	border-color: var(--lcsf-line-2);
	transform: translateY(-2px);
	box-shadow: 0 18px 34px -22px rgba(0, 0, 0, 0.9);
}

.lcsf-card:focus-visible {
	outline: 3px solid var(--lcsf-amber);
	outline-offset: 3px;
}

.lcsf-card.is-selected {
	border-color: var(--lcsf-amber);
	background: linear-gradient(180deg, rgba(255, 194, 26, 0.10) 0%, var(--lcsf-panel) 70%);
	box-shadow: 0 0 0 4px rgba(255, 194, 26, 0.12);
}

.lcsf-card__badge {
	position: absolute;
	top: -11px;
	right: 16px;
	background: var(--lcsf-amber);
	color: #16202b;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
}

.lcsf-card__tick {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 22px;
	height: 22px;
	border: 2px solid var(--lcsf-line-2);
	border-radius: 50%;
	transition: background 0.16s, border-color 0.16s;
}

.lcsf-card.is-selected .lcsf-card__tick {
	background: var(--lcsf-amber);
	border-color: var(--lcsf-amber);
}

.lcsf-card.is-selected .lcsf-card__tick::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 11px;
	border: solid #16202b;
	border-width: 0 2.5px 2.5px 0;
	transform: rotate(45deg);
}

.lcsf-card__label {
font-size: 21px;
    font-weight: 700;
    padding-right: 34px;
    line-height: 1.25;
    color: aqua;
}

.lcsf-card__tagline {
	color: var(--lcsf-muted);
	font-size: 13.5px;
	line-height: 1.45;
}

.lcsf-card__bullets {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 8px;
	padding-top: 12px;
	border-top: 1px solid var(--lcsf-line);
}

.lcsf-card__bullet {
	position: relative;
	padding-left: 20px;
	font-size: 13px;
	color: #c6d5e1;
	line-height: 1.4;
}

.lcsf-card__bullet::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 6px;
	width: 7px;
	height: 4px;
	border: solid var(--lcsf-amber);
	border-width: 0 0 2px 2px;
	transform: rotate(-45deg);
}

.lcsf-card__cta {
	margin-top: 14px;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--lcsf-amber);
}

/* Escapes, not literal glyphs: an editor saving this file with the wrong
   encoding turns a literal arrow into mojibake. \2192 and \2713 are safe. */
.lcsf-card__cta::after { content: " \2192"; }
.lcsf-card.is-selected .lcsf-card__cta::after { content: " \2713"; }

/* ---------- products ---------- */

.lcsf-inline-plate {
	display: inline-block;
	background: var(--lcsf-plate);
	color: #101820;
	font-family: "UKNumberPlate", "Charles Wright", "Arial Narrow", Arial, sans-serif;
	font-size: 0.9em;
	letter-spacing: 0.05em;
	padding: 1px 9px;
	border-radius: 4px;
	vertical-align: 2px;
}

.lcsf-product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.lcsf-product__heading {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--lcsf-amber);
	margin-bottom: 10px;
	padding-left: 14px;
	position: relative;
}

.lcsf-product__heading::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	bottom: 3px;
	width: 3px;
	border-radius: 2px;
	background: var(--lcsf-amber);
}

.lcsf-product {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.lcsf-product__card {
	display: flex;
	flex-direction: column;
	flex: 1;
	background: var(--lcsf-panel);
	border: 1px solid var(--lcsf-line);
	border-radius: var(--lcsf-radius);
	overflow: hidden;
	transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.lcsf-product__card:hover {
	border-color: var(--lcsf-line-2);
	box-shadow: 0 18px 34px -24px rgba(0, 0, 0, 0.9);
}

.lcsf-product__media {
	background: #fff;
	height: 210px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.lcsf-product__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 12px;
}

/* No shop image yet: a subtle dark band instead of a big white gap. */
.lcsf-product__media--empty {
	background: repeating-linear-gradient(135deg, #162c3e 0 12px, #142838 12px 24px);
}

.lcsf-product__placeholder {
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.24em;
	color: rgba(255, 194, 26, 0.55);
	text-transform: uppercase;
}

.lcsf-product__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px 18px 20px;
	flex: 1;
}

.lcsf-product__name { font-size: 17px; font-weight: 800; }

.lcsf-product__price {
	color: var(--lcsf-amber);
	font-size: 15px;
	font-weight: 800;
}

.lcsf-product__excerpt {
	color: var(--lcsf-muted);
	font-size: 13.5px;
	line-height: 1.5;
}

.lcsf-product__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto;
	padding-top: 14px;
}

.lcsf-product__was {
	color: #ff6b6b;
	font-size: 14px;
	font-weight: 500;
	text-decoration: line-through;
	margin-left: 8px;
}

/* ---------- manual entry fallback ---------- */

.lcsf-manual {
	max-width: 620px;
	margin: 18px auto 0;
	text-align: left;
	background: var(--lcsf-panel);
	border: 1px solid var(--lcsf-line-2);
	border-radius: 14px;
	padding: 20px;
}

.lcsf-manual__lead {
	color: var(--lcsf-muted);
	font-size: 13.5px;
	line-height: 1.5;
	margin-bottom: 16px;
}

.lcsf-manual__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 14px;
}

.lcsf-manual__grid .lcsf-field:last-child { grid-column: 1 / -1; }

@media (max-width: 600px) {
	.lcsf-manual__grid { grid-template-columns: 1fr; }
}

.lcsf-manual .lcsf-btn--wide { margin-top: 4px; }

/* ---------- capture ---------- */

.lcsf-capture {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 28px;
	background: linear-gradient(180deg, var(--lcsf-panel-2) 0%, var(--lcsf-panel) 100%);
	border: 1px solid var(--lcsf-line);
	border-radius: 18px;
	padding: 28px;
}

.lcsf-chosen {
	margin-top: 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--lcsf-line);
	border-left: 3px solid var(--lcsf-amber);
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 13.5px;
	line-height: 1.6;
}

.lcsf-chosen:empty { display: none; }

.lcsf-chosen strong { color: var(--lcsf-amber); }
.lcsf-chosen span { display: block; color: var(--lcsf-muted); }

.lcsf-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.lcsf-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 14px;
}

.lcsf-field__label {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--lcsf-muted);
	letter-spacing: 0.02em;
}

.lcsf-optional {
	font-weight: 400;
	opacity: 0.7;
	text-transform: lowercase;
}

.lcsf-field input,
.lcsf-field select,
.lcsf-field textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--lcsf-line-2);
	border-radius: 10px;
	color: var(--lcsf-text);
	font: inherit;
	font-size: 15px;
	padding: 12px 14px;
	transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.lcsf-field textarea { resize: vertical; }

.lcsf-field input::placeholder,
.lcsf-field textarea::placeholder { color: rgba(148, 168, 185, 0.65); }

.lcsf-field input:focus,
.lcsf-field select:focus,
.lcsf-field textarea:focus {
	outline: none;
	border-color: var(--lcsf-amber);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 3px rgba(255, 194, 26, 0.16);
}

.lcsf-field select option { background: var(--lcsf-panel); color: var(--lcsf-text); }

.lcsf-field.has-error input,
.lcsf-field.has-error select { border-color: var(--lcsf-bad); }

.lcsf-consent {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	font-size: 13.5px;
	color: var(--lcsf-muted);
	line-height: 1.5;
	margin: 4px 0 18px;
	cursor: pointer;
}

.lcsf-consent input {
	width: 19px;
	height: 19px;
	margin-top: 2px;
	accent-color: var(--lcsf-amber);
	flex-shrink: 0;
}

.lcsf-consent a { color: var(--lcsf-amber); }
.lcsf-consent.has-error span { color: #ffb4b4; }

.lcsf-hp {
	position: absolute !important;
	left: -9999px;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.lcsf-fineprint {
	margin-top: 12px;
	font-size: 12px;
	color: var(--lcsf-muted);
	text-align: center;
}

.lcsf-success {
	grid-column: 1 / -1;
	text-align: center;
	padding: 26px 20px;
}

.lcsf-success__tick {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(47, 201, 138, 0.15);
	margin-bottom: 14px;
	position: relative;
}

.lcsf-success__tick::after {
	content: "";
	width: 12px;
	height: 22px;
	border: solid var(--lcsf-good);
	border-width: 0 3px 3px 0;
	transform: rotate(45deg) translate(-2px, -2px);
}

.lcsf-success h3 { font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.lcsf-success p { color: var(--lcsf-muted); font-size: 14.5px; margin-bottom: 18px; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
	.lcsf-cards { grid-template-columns: 1fr; }
	.lcsf-capture { grid-template-columns: 1fr; }
	.lcsf-tables { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
	.lcsf { padding-bottom: 40px; }
	.lcsf-hero { padding: 30px 18px 28px; border-radius: 18px; }
	.lcsf-product-grid { grid-template-columns: 1fr; }
	.lcsf-field-row { grid-template-columns: 1fr; }
	/* Column + wrap would size the flex line to content and overflow, so the
	   stacked layout must not wrap. */
	.lcsf-plate-form { gap: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        width: 100%; }
	.lcsf .vrm-search__form__group-container { flex: 1 1 auto; min-width: 0; }
	.lcsf-btn--primary { width: 100%; height: 56px; }
	.lcsf .input-group { height: 55px; width: 250px; }
	/* clamp() already scales the value and placeholder together; only the
	   ceiling needs lowering here so a 7-character reg still fits. */
	.lcsf .vrm-search__input,
	.lcsf .vrm-search__input::placeholder { font-size: 33px; }
	.lcsf-plate__text { font-size: 25px; }
	.lcsf-vehicle { padding: 18px; }
	.lcsf-capture { padding: 20px; }
	.lcsf-table td { text-align: right; }
}
