/**
 * LoadX Solutions — component layer.
 *
 * Design tokens (colour, type, spacing) come from theme.json as CSS custom
 * properties. This file only adds the component styles that block supports
 * cannot express: cards, icon tiles, grids, the process timeline, the quote
 * calculator slot, forms and the sticky header.
 *
 * Contents
 *  1.  Tokens & base
 *  2.  Utilities & layout grids
 *  3.  Header & navigation
 *  4.  Hero
 *  5.  Trust bar
 *  6.  Cards, icons & badges
 *  7.  Process steps
 *  8.  Vehicle types
 *  9.  Testimonials
 *  10. FAQ accordion
 *  11. CTA bands
 *  12. Quote calculator slot
 *  13. Forms & notices
 *  14. Contact & map
 *  15. Breadcrumbs & page header
 *  16. Footer
 *  17. Buttons & links
 *  18. Motion, print & accessibility
 */

/* ------------------------------------------------------------------ *
 * 1. Tokens & base
 * ------------------------------------------------------------------ */

:root {
	--lx-radius-sm: 8px;
	--lx-radius-md: 12px;
	--lx-radius-lg: 18px;
	--lx-radius-pill: 999px;
	--lx-border: 1px solid var(--wp--preset--color--line);
	--lx-shadow-soft: 0 1px 2px rgba(10, 26, 50, 0.04), 0 8px 24px rgba(10, 26, 50, 0.06);
	--lx-shadow-raised: 0 2px 4px rgba(10, 26, 50, 0.05), 0 18px 40px rgba(10, 26, 50, 0.12);
	--lx-transition: 180ms cubic-bezier(0.2, 0, 0.2, 1);
	--lx-header-height: 76px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--lx-header-height) + 16px);
	-webkit-text-size-adjust: 100%;
}

body {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

::selection {
	background: var(--wp--preset--color--blue);
	color: #fff;
}

img,
svg {
	max-width: 100%;
	height: auto;
}

:where(a, button, summary, input, select, textarea):focus-visible {
	outline: 2px solid var(--wp--preset--color--blue);
	outline-offset: 2px;
	border-radius: 4px;
}

.screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link:focus {
	background: var(--wp--preset--color--navy);
	color: #fff;
	display: block;
	font-size: 0.9375rem;
	left: 12px;
	padding: 12px 20px;
	position: fixed;
	top: 12px;
	z-index: 999;
	border-radius: var(--lx-radius-sm);
	clip-path: none;
	height: auto;
	width: auto;
}

/* ------------------------------------------------------------------ *
 * 2. Utilities & layout grids
 * ------------------------------------------------------------------ */

.lx-eyebrow,
.is-style-lx-eyebrow {
	color: var(--wp--preset--color--blue);
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

.lx-dark .lx-eyebrow,
.lx-dark .is-style-lx-eyebrow {
	color: #8fb2ff;
}

.lx-lede {
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--large);
	line-height: 1.65;
	max-width: 62ch;
}

/* Constrained layouts force auto margins on their children, so the intro block
   itself stays full width and the measure is set on the text inside it. That
   keeps headings flush with the card grid below. */
.lx-section-head > h2,
.lx-section-head > h3 {
	max-width: 22ch;
}

.lx-section-head .lx-lede {
	max-width: 60ch;
}

.lx-section-head.has-text-align-center > * {
	margin-inline: auto;
}

.lx-section-head.has-text-align-center .lx-lede {
	margin-inline: auto;
}

.lx-dark,
.lx-dark :where(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}

.lx-dark :where(p, li) {
	color: rgba(233, 239, 250, 0.82);
}

.lx-dark .lx-lede {
	color: rgba(233, 239, 250, 0.78);
}

.lx-dark a:not(.wp-block-button__link):not(.lx-btn) {
	color: #a9c4ff;
}

/* Light cards sitting inside a dark section (hero side panels, quote slots)
   opt back out of the inverted text colours. */
.lx-dark :where(.lx-card, .is-style-lx-card, .is-style-lx-panel, .is-style-lx-bordered, .lx-testimonial, .is-style-lx-testimonial, .lx-quote-slot) {
	color: var(--wp--preset--color--contrast);
}

.lx-dark :where(.lx-card, .is-style-lx-card, .is-style-lx-panel, .is-style-lx-bordered, .lx-testimonial, .is-style-lx-testimonial, .lx-quote-slot) :where(h1, h2, h3, h4, h5, h6) {
	color: var(--wp--preset--color--navy);
}

.lx-dark :where(.lx-card, .is-style-lx-card, .is-style-lx-panel, .is-style-lx-bordered, .lx-testimonial, .is-style-lx-testimonial, .lx-quote-slot) :where(p, li) {
	color: var(--wp--preset--color--muted);
}

.lx-dark :where(.lx-card, .is-style-lx-card, .is-style-lx-panel, .is-style-lx-bordered, .lx-quote-slot) a:not(.wp-block-button__link):not(.lx-btn) {
	color: var(--wp--preset--color--blue);
}

/* Auto-fit grid used for every card row: no media queries required. */
.lx-grid {
	display: grid;
	gap: var(--lx-grid-gap, 1.25rem);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--lx-grid-min, 260px)), 1fr));
}

.lx-grid > * + * {
	margin-block-start: 0;
}

.lx-grid--2 { --lx-grid-min: 280px; }
.lx-grid--3 { --lx-grid-min: 240px; }
.lx-grid--4 { --lx-grid-min: 220px; }
.lx-grid--6 { --lx-grid-min: 140px; }
.lx-grid--gap-lg { --lx-grid-gap: 1.35rem; }

/* Auto-fit alone would give a "3 column" grid four columns on a wide screen,
   so the column count is pinned once there is room for it. */
@media (min-width: 700px) {
	.lx-grid--3,
	.lx-grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lx-grid--6 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1000px) {
	.lx-grid--2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	/* Question list gets the wider column; the category intro sits alongside it. */
	.lx-grid--faq {
		grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	}

	.lx-grid--3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.lx-grid--4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.lx-grid--6 {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

.lx-stack-tight > * + * {
	margin-block-start: 0.5rem;
}

/* ------------------------------------------------------------------ *
 * 3. Header & navigation
 * ------------------------------------------------------------------ */

.lx-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid transparent;
	transition: box-shadow var(--lx-transition), border-color var(--lx-transition);
}

.lx-header.is-stuck {
	border-bottom-color: var(--wp--preset--color--line);
	box-shadow: 0 1px 20px rgba(10, 26, 50, 0.06);
}

.lx-header__inner {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
	min-height: var(--lx-header-height);
}

.lx-header__inner > * + * {
	margin-block-start: 0;
}

/* Flex children default to min-width:auto, which would push the header wider
   than a phone viewport and force the whole page to overflow.
   Do NOT apply this to the navigation — it collapses the hamburger to 0 width. */
.lx-header__inner > :not(.wp-block-navigation),
.lx-header__actions > * {
	min-width: 0;
}

.lx-header .wp-block-navigation {
	flex: 0 0 auto;
	min-width: auto;
	max-width: 100%;
}

.lx-header .wp-block-navigation__responsive-container-open {
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 10px;
	color: var(--wp--preset--color--navy);
	flex-shrink: 0;
}

.lx-header .wp-block-navigation__responsive-container-open:hover,
.lx-header .wp-block-navigation__responsive-container-open:focus-visible {
	background: var(--wp--preset--color--surface-blue);
	outline: none;
}

.lx-header__inner p {
	margin-block: 0;
}

.lx-logo {
	align-items: center;
	display: inline-flex;
	gap: 0.7rem;
	text-decoration: none;
	color: var(--wp--preset--color--navy);
	flex: 0 0 auto;
}

.lx-logo__mark {
	align-items: center;
	background: linear-gradient(145deg, #123a86 0%, #0a1a32 100%);
	border-radius: 10px;
	color: #fff;
	display: inline-flex;
	height: 38px;
	justify-content: center;
	width: 38px;
	flex: 0 0 auto;
}

.lx-logo__mark svg {
	width: 22px;
	height: 22px;
}

.lx-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.lx-logo__name {
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.lx-logo__name em {
	color: var(--wp--preset--color--blue);
	font-style: normal;
}

.lx-logo__sub {
	color: var(--wp--preset--color--muted);
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.lx-dark .lx-logo,
.lx-footer .lx-logo {
	color: #fff;
}

.lx-footer .lx-logo__mark {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.lx-footer .lx-logo__sub {
	color: rgba(233, 239, 250, 0.6);
}

.lx-nav .wp-block-navigation-item__content {
	color: var(--wp--preset--color--contrast);
	font-weight: 500;
	padding-block: 0.35rem;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: color var(--lx-transition), border-color var(--lx-transition);
}

.lx-nav .wp-block-navigation-item__content:hover,
.lx-nav .current-menu-item > .wp-block-navigation-item__content,
.lx-nav .current-menu-ancestor > .wp-block-navigation-item__content {
	color: var(--wp--preset--color--blue);
	border-bottom-color: var(--wp--preset--color--blue);
}

.lx-nav .wp-block-navigation__submenu-container {
	border: var(--lx-border);
	border-radius: var(--lx-radius-md);
	box-shadow: var(--lx-shadow-soft);
	padding: 0.4rem;
	min-width: 240px;
}

.lx-nav .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	border-radius: var(--lx-radius-sm);
	border-bottom: 0;
	padding: 0.6rem 0.8rem;
}

.lx-nav .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover {
	background: var(--wp--preset--color--surface-blue);
}

.lx-header__actions {
	align-items: center;
	display: flex;
	gap: 0.75rem;
	flex: 0 0 auto;
}

.lx-header__phone {
	align-items: center;
	color: var(--wp--preset--color--navy);
	display: inline-flex;
	font-weight: 600;
	gap: 0.45rem;
	text-decoration: none;
	white-space: nowrap;
}

.lx-header__phone svg {
	width: 18px;
	height: 18px;
	color: var(--wp--preset--color--blue);
}

.lx-header__phone:hover {
	color: var(--wp--preset--color--blue);
}

@media (max-width: 960px) {
	.lx-header__phone span {
		display: none;
	}
}

/* Core only switches to the overlay hamburger below 600px. Our header links
   do not fit on tablet widths either, so keep the hamburger through 1024px. */
@media (max-width: 1024px) {
	.lx-header .wp-block-navigation__responsive-container-open:not(.always-shown) {
		display: flex !important;
	}

	.lx-header .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
		display: none !important;
	}

	.lx-header__inner {
		gap: 0.85rem;
	}

	.lx-header .lx-nav {
		order: 3;
	}

	.lx-header__actions {
		order: 2;
		margin-left: auto;
	}
}

@media (min-width: 1025px) {
	.lx-header .wp-block-navigation__responsive-container-open:not(.always-shown) {
		display: none !important;
	}
}

@media (max-width: 640px) {
	/* The phone number is repeated in the hero and footer, so the header keeps
	   only the logo, menu toggle and primary CTA on small screens. */
	.lx-header__phone {
		display: none;
	}

	.lx-header__inner {
		gap: 0.65rem;
	}

	.lx-header__actions .wp-block-button__link {
		font-size: 0.875rem;
		padding: 0.65rem 0.9rem;
		white-space: nowrap;
	}

	.lx-logo__sub {
		display: none;
	}

	.lx-logo__name {
		font-size: 1.05rem;
	}

	.lx-logo__mark {
		width: 34px;
		height: 34px;
		border-radius: 9px;
	}
}

/* Mobile / tablet overlay menu */
.wp-block-navigation__responsive-container.is-menu-open {
	background: var(--wp--preset--color--navy) !important;
	padding: 1.5rem;
	z-index: 100000;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	color: #fff;
	font-size: 1.2rem;
	border-bottom: 0;
	padding-block: 0.55rem;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
	color: #fff;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
	box-shadow: none;
	border: 0;
	background: transparent;
	padding-left: 0.75rem;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	font-size: 1.05rem;
	color: rgba(233, 239, 250, 0.88);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

/* Keep the chatbot from covering the open mobile nav. */
html.has-modal-open .lx-chat {
	visibility: hidden;
	pointer-events: none;
}

/* ------------------------------------------------------------------ *
 * 4. Hero
 * ------------------------------------------------------------------ */

.lx-hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.lx-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(60% 80% at 78% 8%, rgba(48, 106, 235, 0.35) 0%, transparent 60%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
	z-index: -2;
	pointer-events: none;
}

.lx-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(120% 90% at 20% 0%, #000 0%, transparent 70%);
	z-index: -1;
	pointer-events: none;
}

.lx-hero__grid {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: center;
	grid-template-columns: 1fr;
}

.lx-hero__grid > * + * {
	margin-block-start: 0;
}

@media (min-width: 900px) {
	.lx-hero__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
	}
}

.lx-hero__title {
	max-width: 18ch;
}

/* Single-column page heroes span the body content width so their copy lines up
   with the sections underneath. Line length is capped inside this wrapper rather
   than on the section itself, because a constrained layout centres any direct
   child that is narrower than the content size. */
.lx-hero__copy :where(h1, h2) {
	max-width: 20ch;
}

.lx-hero__copy .lx-lede {
	max-width: 62ch;
}

.lx-faq-group__intro {
	position: sticky;
	top: calc(var(--lx-header-height) + 2rem);
	align-self: start;
}

@media (max-width: 999px) {
	.lx-faq-group__intro {
		position: static;
	}
}

.lx-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

.lx-hero__points {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1.5rem;
	list-style: none;
	margin: 1.75rem 0 0;
	padding: 0;
}

.lx-hero__points li {
	align-items: center;
	color: rgba(233, 239, 250, 0.85);
	display: flex;
	font-size: var(--wp--preset--font-size--small);
	gap: 0.5rem;
}

.lx-hero__points svg {
	color: #6ee7b7;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

/* ------------------------------------------------------------------ *
 * 5. Trust bar
 * ------------------------------------------------------------------ */

.lx-trustbar {
	display: grid;
	gap: 1rem 2rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}

.lx-trustbar > * + * {
	margin-block-start: 0;
}

.lx-trust-item {
	align-items: center;
	display: flex;
	gap: 0.75rem;
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
	color: var(--wp--preset--color--navy);
	line-height: 1.35;
}

.lx-trust-item svg {
	color: var(--wp--preset--color--blue);
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
}

.lx-dark .lx-trust-item {
	color: #fff;
}

.lx-dark .lx-trust-item svg {
	color: #7ea6ff;
}

/* ------------------------------------------------------------------ *
 * 6. Cards, icons & badges
 * ------------------------------------------------------------------ */

.lx-card,
.is-style-lx-card {
	background: var(--wp--preset--color--base);
	border: var(--lx-border);
	border-radius: var(--lx-radius-lg);
	padding: clamp(1.5rem, 2.5vw, 2rem);
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform var(--lx-transition), box-shadow var(--lx-transition), border-color var(--lx-transition);
}

.is-style-lx-card-dark,
.is-style-lx-bordered {
	display: flex;
	flex-direction: column;
}

.lx-card--link:hover,
.is-style-lx-card.lx-card--link:hover {
	transform: translateY(-3px);
	box-shadow: var(--lx-shadow-raised);
	border-color: rgba(27, 79, 224, 0.35);
}

/* Consistent internal rhythm for every card variant. */
.lx-card :where(h2, h3, h4),
.is-style-lx-card :where(h2, h3, h4),
.is-style-lx-bordered :where(h2, h3, h4),
.is-style-lx-card-dark :where(h2, h3, h4),
.is-style-lx-panel :where(h2, h3, h4) {
	margin-block: 0 0.6rem;
}

.lx-card p,
.is-style-lx-card p,
.is-style-lx-bordered p {
	color: var(--wp--preset--color--muted);
	margin-block: 0;
}

.is-style-lx-panel > * + *,
.is-style-lx-bordered > * + * {
	margin-block-start: 0.9rem;
}

/* These variants space their children explicitly, so the icon tile does not
   need its own trailing margin. */
.is-style-lx-panel > .lx-icon,
.is-style-lx-bordered > .lx-icon {
	margin-bottom: 0;
}

/* Keeps "Learn More" links on one baseline across a row of cards. */
.lx-card__footer {
	margin-top: auto;
	padding-top: 1.25rem;
}

.is-style-lx-card-dark {
	background: var(--wp--preset--color--navy-soft);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--lx-radius-lg);
	color: #fff;
	padding: clamp(1.5rem, 2.5vw, 2rem);
	height: 100%;
}

.is-style-lx-card-dark :where(h2, h3, h4) {
	color: #fff;
}

.is-style-lx-card-dark p {
	color: rgba(233, 239, 250, 0.8);
}

.is-style-lx-panel {
	background: var(--wp--preset--color--surface);
	border-radius: var(--lx-radius-lg);
	padding: clamp(1.5rem, 3vw, 2.5rem);
	height: 100%;
}

.is-style-lx-bordered {
	border: var(--lx-border);
	border-radius: var(--lx-radius-lg);
	padding: clamp(1.5rem, 3vw, 2.5rem);
}

.lx-icon {
	align-items: center;
	border-radius: var(--lx-radius-md);
	display: inline-flex;
	height: 46px;
	justify-content: center;
	margin-bottom: 1.1rem;
	width: 46px;
	flex: 0 0 auto;
}

.lx-icon svg {
	width: 24px;
	height: 24px;
}

.lx-icon--blue {
	background: var(--wp--preset--color--surface-blue);
	color: var(--wp--preset--color--blue);
}

.lx-icon--dark {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #9dbaff;
}

.lx-icon--plain {
	background: transparent;
	color: var(--wp--preset--color--blue);
	margin-bottom: 0;
}

.lx-icon--sm {
	height: 36px;
	width: 36px;
	border-radius: var(--lx-radius-sm);
	margin-bottom: 0.75rem;
}

.lx-icon--sm svg {
	width: 19px;
	height: 19px;
}

.lx-svg--sm {
	width: 16px;
	height: 16px;
}

.lx-badge {
	align-items: center;
	background: var(--wp--preset--color--surface-blue);
	border-radius: var(--lx-radius-pill);
	color: var(--wp--preset--color--blue-dark);
	display: inline-flex;
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: 600;
	gap: 0.4rem;
	letter-spacing: 0.02em;
	padding: 0.4rem 0.85rem;
}

.lx-dark .lx-badge {
	background: rgba(255, 255, 255, 0.1);
	color: #cddcff;
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.lx-stat__value {
	color: var(--wp--preset--color--navy);
	font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.05;
}

.lx-dark .lx-stat__value {
	color: #fff;
}

.lx-stat__label {
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--small);
	margin-top: 0.35rem;
}

/* Checklists */
.is-style-lx-checklist {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}

.is-style-lx-checklist li {
	padding-left: 2rem;
	position: relative;
	margin-bottom: 0.7rem;
}

.is-style-lx-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.35em;
	width: 1.15rem;
	height: 1.15rem;
	border-radius: 50%;
	background: var(--wp--preset--color--surface-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b4fe0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 0.7rem no-repeat;
}

.lx-dark .is-style-lx-checklist li::before {
	background-color: rgba(255, 255, 255, 0.12);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9c4ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E");
}

/* …unless the list is inside a light card that sits on the dark section. */
.lx-dark :where(.lx-card, .is-style-lx-card, .is-style-lx-panel, .is-style-lx-bordered, .lx-quote-slot) .is-style-lx-checklist li::before {
	background-color: var(--wp--preset--color--surface-blue);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b4fe0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E");
}

.is-style-lx-plain {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}

/* ------------------------------------------------------------------ *
 * 7. Process steps
 * ------------------------------------------------------------------ */

.lx-steps {
	counter-reset: lx-step;
	display: grid;
	gap: 1rem;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, 1fr);
	position: relative;
}

.lx-steps > * + * {
	margin-block-start: 0;
}

.lx-step {
	position: relative;
	padding-top: 3.75rem;
}

.lx-step::before {
	counter-increment: lx-step;
	content: counter(lx-step);
	position: absolute;
	top: 0;
	left: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--wp--preset--color--blue);
	color: #fff;
	display: grid;
	place-items: center;
	font-weight: 700;
	font-size: 1.0625rem;
	box-shadow: 0 0 0 6px rgba(27, 79, 224, 0.1);
}

.lx-step::after {
	content: "";
	position: absolute;
	top: 22px;
	left: 56px;
	right: -1rem;
	height: 1px;
	background: repeating-linear-gradient(90deg, var(--wp--preset--color--line) 0 8px, transparent 8px 16px);
}

.lx-step:last-child::after {
	display: none;
}

@media (max-width: 900px) {
	.lx-steps {
		grid-auto-flow: row;
		grid-auto-columns: unset;
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.lx-step::after {
		display: none;
	}
}

.lx-step h3 {
	font-size: var(--wp--preset--font-size--large);
	margin-block: 0 0.4rem;
}

.lx-step p {
	color: var(--wp--preset--color--muted);
	margin: 0;
}

.lx-dark .lx-step::before {
	background: #fff;
	color: var(--wp--preset--color--navy);
	box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.lx-dark .lx-step::after {
	background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0 8px, transparent 8px 16px);
}

.lx-dark .lx-step p {
	color: rgba(233, 239, 250, 0.78);
}

/* ------------------------------------------------------------------ *
 * 8. Vehicle types
 * ------------------------------------------------------------------ */

.lx-vehicle {
	align-items: center;
	background: var(--wp--preset--color--base);
	border: var(--lx-border);
	border-radius: var(--lx-radius-md);
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	justify-content: center;
	padding: 1.5rem 1rem;
	text-align: center;
	transition: border-color var(--lx-transition), transform var(--lx-transition);
}

.lx-vehicle:hover {
	border-color: rgba(27, 79, 224, 0.4);
	transform: translateY(-2px);
}

.lx-vehicle svg {
	width: 30px;
	height: 30px;
	color: var(--wp--preset--color--blue);
}

.lx-vehicle span {
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
	color: var(--wp--preset--color--navy);
}

/* ------------------------------------------------------------------ *
 * 9. Testimonials
 * ------------------------------------------------------------------ */

.lx-testimonial,
.is-style-lx-testimonial {
	background: var(--wp--preset--color--base);
	border: var(--lx-border);
	border-radius: var(--lx-radius-lg);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	height: 100%;
	padding: clamp(1.5rem, 2.5vw, 2rem);
}

.lx-stars {
	color: var(--wp--preset--color--accent);
	display: inline-flex;
	gap: 2px;
}

.lx-stars svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
	stroke: none;
}

.lx-testimonial__quote {
	color: var(--wp--preset--color--contrast);
	font-size: var(--wp--preset--font-size--medium);
	line-height: 1.7;
	margin: 0;
}

.lx-testimonial__author {
	align-items: center;
	border-top: var(--lx-border);
	display: flex;
	gap: 0.75rem;
	margin-top: auto;
	padding-top: 1rem;
}

.lx-avatar {
	align-items: center;
	background: var(--wp--preset--color--surface-blue);
	border-radius: 50%;
	color: var(--wp--preset--color--blue-dark);
	display: inline-flex;
	font-size: 0.875rem;
	font-weight: 700;
	height: 40px;
	justify-content: center;
	width: 40px;
	flex: 0 0 auto;
}

.lx-testimonial__name {
	display: block;
	font-weight: 650;
	color: var(--wp--preset--color--navy);
	font-size: var(--wp--preset--font-size--small);
}

.lx-testimonial__meta {
	color: var(--wp--preset--color--muted);
	display: block;
	font-size: var(--wp--preset--font-size--x-small);
}

/* ------------------------------------------------------------------ *
 * 10. FAQ accordion
 * ------------------------------------------------------------------ */

.wp-block-details.is-style-lx-faq {
	background: var(--wp--preset--color--base);
	border: var(--lx-border);
	border-radius: var(--lx-radius-md);
	margin-bottom: 0.75rem;
	padding: 0;
	transition: border-color var(--lx-transition), box-shadow var(--lx-transition);
}

.wp-block-details.is-style-lx-faq[open] {
	border-color: rgba(27, 79, 224, 0.3);
	box-shadow: var(--lx-shadow-soft);
}

.wp-block-details.is-style-lx-faq > summary {
	align-items: flex-start;
	color: var(--wp--preset--color--navy);
	cursor: pointer;
	display: flex;
	font-size: var(--wp--preset--font-size--large);
	font-weight: 600;
	gap: 1rem;
	justify-content: space-between;
	letter-spacing: -0.01em;
	list-style: none;
	padding: 1.15rem 1.35rem;
}

.wp-block-details.is-style-lx-faq > summary::-webkit-details-marker {
	display: none;
}

.wp-block-details.is-style-lx-faq > summary::after {
	content: "";
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	margin-top: 2px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b4fe0' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
	transition: transform var(--lx-transition);
}

.wp-block-details.is-style-lx-faq[open] > summary::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b4fe0' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
}

.wp-block-details.is-style-lx-faq > *:not(summary) {
	color: var(--wp--preset--color--muted);
	margin: 0;
	padding: 0 1.35rem 1.35rem;
	max-width: 68ch;
}

/* ------------------------------------------------------------------ *
 * 11. CTA bands
 * ------------------------------------------------------------------ */

.lx-cta {
	border-radius: var(--lx-radius-lg);
	overflow: hidden;
	position: relative;
	isolation: isolate;
}

.lx-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(70% 120% at 85% 15%, rgba(52, 111, 240, 0.4) 0%, transparent 65%);
	z-index: -1;
}

.lx-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin-top: 1.75rem;
}

/* ------------------------------------------------------------------ *
 * 12. Quote calculator slot
 * ------------------------------------------------------------------ */

.lx-quote-slot {
	background: var(--wp--preset--color--base);
	border: var(--lx-border);
	border-radius: var(--lx-radius-lg);
	box-shadow: var(--lx-shadow-raised);
	padding: clamp(1.25rem, 3vw, 1.75rem);
	scroll-margin-top: calc(var(--lx-header-height) + 24px);
}

.lx-quote-slot--inline {
	box-shadow: none;
	background: var(--wp--preset--color--surface);
	border-color: transparent;
}

.lx-quote-slot--hero {
	backdrop-filter: blur(4px);
}

.lx-quote-slot__head {
	margin-bottom: 1.1rem;
}

.lx-quote-slot__title {
	font-size: var(--wp--preset--font-size--x-large);
	margin: 0 0 0.35rem;
}

.lx-quote-slot__subtitle {
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--small);
	margin: 0;
}

.lx-quote-slot__meta {
	align-items: center;
	color: var(--wp--preset--color--muted);
	display: flex;
	font-size: var(--wp--preset--font-size--x-small);
	gap: 0.45rem;
	justify-content: center;
	margin: 1.1rem 0 0;
	text-align: center;
}

.lx-quote-slot__meta svg {
	color: var(--wp--preset--color--blue);
	flex: 0 0 auto;
}

.lx-calc-placeholder {
	background:
		linear-gradient(var(--wp--preset--color--surface), var(--wp--preset--color--surface)) padding-box,
		repeating-linear-gradient(135deg, var(--wp--preset--color--line) 0 10px, transparent 10px 20px) border-box;
	border: 2px dashed var(--wp--preset--color--line);
	border-radius: var(--lx-radius-md);
	padding: clamp(1.75rem, 4vw, 2.75rem) 1.5rem;
	text-align: center;
}

.lx-calc-placeholder .lx-icon {
	margin-inline: auto;
}

.lx-calc-placeholder__title {
	color: var(--wp--preset--color--navy);
	font-size: var(--wp--preset--font-size--large);
	font-weight: 700;
	margin: 0 0 0.4rem;
}

.lx-calc-placeholder__text {
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--small);
	margin: 0 auto;
	max-width: 46ch;
}

.lx-calc-placeholder__code {
	margin: 1rem 0 0.75rem;
}

.lx-calc-placeholder__code code {
	background: var(--wp--preset--color--surface-blue);
	border-radius: var(--lx-radius-sm);
	color: var(--wp--preset--color--blue-dark);
	font-size: 0.8125rem;
	padding: 0.4rem 0.7rem;
}

.lx-calc-placeholder__fallback {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	justify-content: center;
	font-size: var(--wp--preset--font-size--small);
	margin: 0;
}

/* ------------------------------------------------------------------ *
 * 13. Forms & notices
 * ------------------------------------------------------------------ */

.lx-form-wrap {
	scroll-margin-top: calc(var(--lx-header-height) + 24px);
}

.lx-form__grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 640px) {
	.lx-form__grid {
		grid-template-columns: 1fr;
	}
}

.lx-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin: 0;
}

.lx-form__field--full {
	grid-column: 1 / -1;
}

.lx-form__label {
	color: var(--wp--preset--color--navy);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
}

.lx-form__required {
	color: var(--wp--preset--color--blue);
}

.lx-form__input {
	background: var(--wp--preset--color--base);
	border: var(--lx-border);
	border-radius: var(--lx-radius-sm);
	color: var(--wp--preset--color--contrast);
	font: inherit;
	font-size: var(--wp--preset--font-size--medium);
	padding: 0.75rem 0.9rem;
	transition: border-color var(--lx-transition), box-shadow var(--lx-transition);
	/* Without border-box the padding is added to the 100% width and the field
	   pushes the page sideways on narrow screens. */
	box-sizing: border-box;
	max-width: 100%;
	width: 100%;
}

.lx-form__input::placeholder {
	color: #9aa7b8;
}

.lx-form__input:focus {
	border-color: var(--wp--preset--color--blue);
	box-shadow: 0 0 0 3px rgba(27, 79, 224, 0.14);
	outline: none;
}

.lx-form__select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6b80' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-position: right 0.75rem center;
	background-repeat: no-repeat;
	background-size: 18px;
	padding-right: 2.4rem;
}

.lx-form__field.has-error .lx-form__input {
	border-color: #d64545;
}

.lx-form__error {
	color: #b42318;
	font-size: var(--wp--preset--font-size--x-small);
}

.lx-form__hp {
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
}

.lx-form__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.5rem;
}

.lx-form__note {
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--x-small);
	margin: 0;
}

.lx-notice {
	align-items: flex-start;
	border-radius: var(--lx-radius-md);
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	padding: 1rem 1.1rem;
}

.lx-notice p {
	margin: 0;
	font-size: var(--wp--preset--font-size--small);
}

.lx-notice svg {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin-top: 2px;
}

.lx-notice--success {
	background: #eaf8f0;
	color: #14532d;
}

.lx-notice--success svg {
	color: #16a34a;
}

.lx-notice--error {
	background: #fdeceb;
	color: #7f1d1d;
}

/* ------------------------------------------------------------------ *
 * 14. Contact & map
 * ------------------------------------------------------------------ */

.lx-contact-item {
	align-items: flex-start;
	display: flex;
	gap: 0.9rem;
	margin-bottom: 1.35rem;
}

.lx-contact-item:last-child {
	margin-bottom: 0;
}

.lx-contact-item .lx-icon {
	margin-bottom: 0;
}

.lx-contact-item__label {
	color: var(--wp--preset--color--muted);
	display: block;
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lx-contact-item__value {
	color: var(--wp--preset--color--navy);
	display: block;
	font-size: var(--wp--preset--font-size--medium);
	font-weight: 600;
	margin-top: 0.15rem;
}

.lx-contact-item__value a {
	color: inherit;
	text-decoration: none;
}

.lx-contact-item__value a:hover {
	color: var(--wp--preset--color--blue);
}

.lx-map {
	border: var(--lx-border);
	border-radius: var(--lx-radius-lg);
	overflow: hidden;
	position: relative;
	aspect-ratio: 16 / 9;
	width: 100%;
}

.lx-map iframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
}

.lx-map--placeholder {
	align-items: center;
	background:
		linear-gradient(0deg, rgba(27, 79, 224, 0.04), rgba(27, 79, 224, 0.04)),
		repeating-linear-gradient(0deg, var(--wp--preset--color--line) 0 1px, transparent 1px 48px),
		repeating-linear-gradient(90deg, var(--wp--preset--color--line) 0 1px, transparent 1px 48px);
	color: var(--wp--preset--color--muted);
	display: flex;
	flex-direction: column;
	font-size: var(--wp--preset--font-size--small);
	gap: 0.5rem;
	justify-content: center;
	text-align: center;
}

.lx-map--placeholder svg {
	width: 28px;
	height: 28px;
	color: var(--wp--preset--color--blue);
}

/* ------------------------------------------------------------------ *
 * 15. Breadcrumbs & page header
 * ------------------------------------------------------------------ */

.lx-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: var(--wp--preset--font-size--x-small);
	color: var(--wp--preset--color--muted);
}

.lx-breadcrumbs__item + .lx-breadcrumbs__item::before {
	content: "/";
	margin-right: 0.4rem;
	color: rgba(91, 107, 128, 0.55);
}

.lx-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.lx-breadcrumbs a:hover {
	color: var(--wp--preset--color--blue);
	text-decoration: underline;
}

.lx-dark .lx-breadcrumbs__list,
.lx-dark .lx-breadcrumbs a {
	color: rgba(233, 239, 250, 0.7);
}

.lx-dark .lx-breadcrumbs a:hover {
	color: #fff;
}

.lx-hero .lx-breadcrumbs {
	margin-top: 1.15rem;
}

.lx-page-header {
	border-bottom: var(--lx-border);
}

/* ------------------------------------------------------------------ *
 * 16. Footer
 * ------------------------------------------------------------------ */

.lx-footer {
	background: var(--wp--preset--color--navy);
	color: rgba(233, 239, 250, 0.78);
}

.lx-footer :where(h2, h3, h4) {
	color: #fff;
	font-size: var(--wp--preset--font-size--small);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.lx-footer a {
	color: rgba(233, 239, 250, 0.78);
	text-decoration: none;
	transition: color var(--lx-transition);
}

.lx-footer a:hover {
	color: #fff;
	text-decoration: underline;
}

.lx-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lx-footer li {
	margin-bottom: 0.6rem;
	font-size: var(--wp--preset--font-size--small);
}

.lx-footer__grid {
	display: grid;
	gap: 1.5rem 1.25rem;
	align-items: start;
	/* Six equal columns stay on one row at desktop widths. */
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.lx-footer__grid > * + * {
	margin-block-start: 0;
}

.lx-footer__brand,
.lx-footer__departments,
.lx-footer__fmcsa {
	min-width: 0;
}

.lx-footer__brand {
	/* Slightly wider for the company blurb without forcing a wrap. */
	grid-column: span 1;
}

.lx-fmcsa__logo {
	display: block;
	height: 52px;
	width: 52px;
}

.lx-fmcsa {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

@media (max-width: 960px) {
	.lx-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.lx-footer__grid {
		grid-template-columns: 1fr;
	}
}

.lx-fmcsa__text {
	color: rgba(233, 239, 250, 0.78);
	font-size: var(--wp--preset--font-size--x-small);
	line-height: 1.55;
	margin: 0;
}

.lx-fmcsa__ids {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	font-size: var(--wp--preset--font-size--small);
	font-weight: 650;
	color: #fff;
	margin: 0;
}

.lx-fmcsa__action {
	margin: 0.25rem 0 0;
}

.lx-fmcsa__link {
	color: #a9c4ff !important;
	font-size: var(--wp--preset--font-size--small);
	font-weight: 650;
	text-decoration: underline !important;
}

.lx-fmcsa__link:hover {
	color: #fff !important;
}

/* ------------------------------------------------------------------ *
 * 16c. Departmental contacts
 * ------------------------------------------------------------------ */

.lx-departments--cards {
	margin-top: var(--wp--preset--spacing--50);
}

.lx-department-card {
	height: 100%;
}

.lx-department-card__title {
	color: var(--wp--preset--color--navy);
	font-size: var(--wp--preset--font-size--large);
	margin: 0 0 0.5rem;
}

.lx-department-card__email {
	margin: 0 0 0.75rem;
}

.lx-department-card__email a {
	color: var(--wp--preset--color--blue);
	font-size: var(--wp--preset--font-size--medium);
	font-weight: 650;
	text-decoration: none;
}

.lx-department-card__email a:hover {
	text-decoration: underline;
}

.lx-department-card__desc {
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--small);
	line-height: 1.6;
	margin: 0;
}

.lx-departments--footer {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lx-departments--footer .lx-departments__item {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	margin-bottom: 0.85rem;
}

.lx-departments--footer .lx-departments__label {
	color: rgba(233, 239, 250, 0.6);
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: 650;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.lx-departments--footer .lx-departments__email {
	color: #cddcff !important;
	font-size: 0.8125rem;
	text-decoration: none !important;
	word-break: break-word;
}

.lx-departments--footer .lx-departments__email:hover {
	color: #fff !important;
	text-decoration: underline !important;
}

.lx-footer__bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	justify-content: space-between;
	margin-top: 3rem;
	padding-top: 1.5rem;
	font-size: var(--wp--preset--font-size--x-small);
	color: rgba(233, 239, 250, 0.6);
}

.lx-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* ------------------------------------------------------------------ *
 * 16c. Legal / sitemap / blog helpers
 * ------------------------------------------------------------------ */

.lx-sitemap details {
	border: 1px solid var(--wp--preset--color--border, rgba(10, 26, 50, 0.12));
	border-radius: var(--lx-radius-md, 12px);
	margin-top: 1.5rem;
	padding: 0.85rem 1.1rem;
}

.lx-sitemap summary {
	cursor: pointer;
	font-weight: 650;
	list-style: none;
}

.lx-sitemap summary::-webkit-details-marker {
	display: none;
}

.lx-sitemap details[open] summary {
	margin-bottom: 0.75rem;
}

.lx-blog-layout {
	align-items: start;
	gap: 2rem;
}

.lx-blog-sidebar .is-style-lx-card {
	height: auto;
}

.lx-blog-featured .wp-block-post-title {
	line-height: 1.2;
}

@media (max-width: 781px) {
	.lx-blog-layout {
		flex-direction: column !important;
	}

	.lx-blog-layout > .wp-block-column {
		flex-basis: 100% !important;
		width: 100% !important;
	}
}

/* ------------------------------------------------------------------ *
 * 16b. Carrier COI requirements
 * ------------------------------------------------------------------ */

.lx-coi__card {
	background: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--blue);
	border-radius: var(--lx-radius-lg);
	box-shadow: 0 18px 40px rgba(10, 26, 50, 0.08);
	padding: clamp(1.5rem, 3vw, 2.5rem);
}

.lx-coi__holder,
.lx-coi__requirements,
.lx-coi__send {
	min-width: 0;
}

.lx-coi__send {
	background: var(--wp--preset--color--surface-blue);
	border: 1px solid rgba(27, 79, 224, 0.18);
	border-radius: var(--lx-radius-md);
	margin-top: 1.5rem;
	padding: 1.25rem 1.35rem;
}

.lx-coi__send .lx-carrier-packet {
	margin-top: 1.25rem;
}

.lx-carrier-packet {
	margin-top: 1.25rem;
}

.lx-carrier-packet__btn {
	align-items: center;
	display: inline-flex;
	gap: 0.55rem;
}

.lx-carrier-packet__btn .lx-svg {
	height: 1.1em;
	width: 1.1em;
}

.lx-hero .lx-carrier-packet {
	margin-top: 1rem;
}

.lx-hero .lx-carrier-packet .wp-block-button__link {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
}

.lx-hero .lx-carrier-packet .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: #fff;
}

/* ------------------------------------------------------------------ *
 * 17. Buttons & links
 * ------------------------------------------------------------------ */

.lx-btn {
	border: 1px solid transparent;
	border-radius: 10px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font: inherit;
	font-size: var(--wp--preset--font-size--medium);
	font-weight: 600;
	line-height: 1.2;
	padding: 0.9rem 1.6rem;
	text-decoration: none;
	transition: background-color var(--lx-transition), border-color var(--lx-transition), transform var(--lx-transition);
}

.lx-btn--primary {
	background: var(--wp--preset--color--blue);
	border-color: var(--wp--preset--color--blue);
	color: #fff;
}

.lx-btn--primary:hover {
	background: var(--wp--preset--color--blue-dark);
	border-color: var(--wp--preset--color--blue-dark);
	color: #fff;
}

.wp-block-button__link {
	transition: background-color var(--lx-transition), border-color var(--lx-transition), color var(--lx-transition);
}

.is-style-lx-ghost .wp-block-button__link,
.wp-block-button.is-style-lx-ghost > .wp-block-button__link {
	background: transparent;
	border: 1px solid var(--wp--preset--color--line);
	color: var(--wp--preset--color--navy);
}

.is-style-lx-ghost .wp-block-button__link:hover {
	background: var(--wp--preset--color--surface);
	border-color: rgba(27, 79, 224, 0.4);
	color: var(--wp--preset--color--blue-dark);
}

.is-style-lx-on-dark .wp-block-button__link,
.wp-block-button.is-style-lx-on-dark > .wp-block-button__link {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
}

.is-style-lx-on-dark .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
	color: #fff;
}

.is-style-lx-link .wp-block-button__link,
.wp-block-button.is-style-lx-link > .wp-block-button__link {
	background: transparent;
	border: 0;
	color: var(--wp--preset--color--blue);
	padding: 0.25rem 0;
	position: relative;
}

.is-style-lx-link .wp-block-button__link::after {
	content: "→";
	margin-left: 0.4rem;
	transition: transform var(--lx-transition);
	display: inline-block;
}

.is-style-lx-link .wp-block-button__link:hover::after {
	transform: translateX(3px);
}

.is-style-lx-link .wp-block-button__link:hover {
	color: var(--wp--preset--color--blue-dark);
	background: transparent;
}

.lx-textlink {
	color: var(--wp--preset--color--blue);
	font-weight: 550;
	text-decoration: none;
	border-bottom: 1px solid rgba(27, 79, 224, 0.3);
}

.lx-textlink:hover {
	border-bottom-color: currentColor;
	color: var(--wp--preset--color--blue-dark);
}

.is-style-lx-rounded img {
	border-radius: var(--lx-radius-lg);
}

/* ------------------------------------------------------------------ *
 * 18. Motion, print & accessibility
 * ------------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}

@media print {
	.lx-header,
	.lx-footer,
	.lx-quote-slot,
	.lx-cta,
	.lx-checklist__toolbar,
	.lx-faq-search {
		display: none !important;
	}

	.lx-checklist {
		border: none;
		padding: 0;
	}
}

/* ------------------------------------------------------------------ *
 * 19. How It Works — education utilities
 * ------------------------------------------------------------------ */

.lx-table-wrap {
	overflow-x: auto;
	margin-top: var(--wp--preset--spacing--50, 2rem);
	border: 1px solid var(--wp--preset--color--line, #d9dde3);
	border-radius: var(--lx-radius-lg, 12px);
	background: var(--wp--preset--color--base, #fff);
}

.lx-table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--wp--preset--font-size--small, 0.9375rem);
}

.lx-table th,
.lx-table td {
	padding: 0.9rem 1rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid var(--wp--preset--color--line, #d9dde3);
}

.lx-table th {
	font-weight: 600;
	background: var(--wp--preset--color--surface, #f4f6f8);
}

.lx-table tr:last-child td {
	border-bottom: none;
}

.lx-table__disclaimer {
	margin-top: 0.85rem;
	color: var(--wp--preset--color--muted, #5b6573);
}

.lx-checklist {
	margin-top: var(--wp--preset--spacing--50, 2rem);
	padding: 1.5rem;
	border: 1px solid var(--wp--preset--color--line, #d9dde3);
	border-radius: var(--lx-radius-lg, 12px);
	background: var(--wp--preset--color--surface, #f4f6f8);
}

.lx-checklist__toolbar {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 1rem;
}

.lx-checklist__print {
	appearance: none;
	border: 1px solid var(--wp--preset--color--navy, #0b1f33);
	background: var(--wp--preset--color--navy, #0b1f33);
	color: #fff;
	border-radius: 999px;
	padding: 0.55rem 1rem;
	font: inherit;
	font-size: 0.875rem;
	cursor: pointer;
}

.lx-checklist__print:hover,
.lx-checklist__print:focus-visible {
	opacity: 0.9;
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.lx-checklist__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.75rem;
}

.lx-checklist__list label {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	cursor: pointer;
}

.lx-checklist__list input {
	margin-top: 0.25rem;
	inline-size: 1.1rem;
	block-size: 1.1rem;
	flex: 0 0 auto;
}

.lx-trust-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	list-style: none;
	margin: 1.25rem 0 0;
	padding: 0;
}

.lx-trust-badges__item {
	padding: 0.65rem 1rem;
	border: 1px solid var(--wp--preset--color--line, #d9dde3);
	border-radius: 999px;
	background: var(--wp--preset--color--base, #fff);
	font-size: var(--wp--preset--font-size--x-small, 0.8125rem);
	font-weight: 600;
}

.lx-faq-search {
	margin-top: 1.75rem;
	max-width: 36rem;
}

.lx-faq-search__input {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--wp--preset--color--line, #d9dde3);
	border-radius: 10px;
	font: inherit;
	background: var(--wp--preset--color--base, #fff);
	color: inherit;
}

.lx-faq-search__input:focus-visible {
	outline: 2px solid var(--wp--preset--color--accent, #e4572e);
	outline-offset: 2px;
}

.lx-faq-search__status {
	margin-top: 0.5rem;
	min-height: 1.25em;
}

.lx-faq-item.is-faq-hidden,
.lx-faq-group.is-faq-hidden {
	display: none !important;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}
