/*
Theme Name: Logistics Pro
Theme URI: https://example.com/logistics-pro
Author: Miguel Castro
Author URI: https://example.com
Description: A conversion-focused WordPress theme for logistics, freight, shipping and supply-chain companies. Black, navy blue and white palette, a Services custom post type, a built-in quote request form and a front-end English/Spanish language switcher.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: logistics-pro
Tags: business, custom-logo, custom-menu, featured-images, footer-widgets, translation-ready, blog, two-columns, right-sidebar
*/

/* =============================================================
   1. Design tokens
   ============================================================= */
:root {
	--lp-black: #0b0b0f;
	--lp-navy: #0a1f44;
	--lp-navy-700: #0e2a5c;
	--lp-navy-500: #16418f;
	--lp-navy-300: #4c6fb1;
	--lp-white: #ffffff;
	--lp-mist: #f3f6fb;
	--lp-line: #e1e7f0;
	--lp-ink: #10131a;
	--lp-muted: #5a6b84;
	--lp-muted-dark: #a9b7cd;

	--lp-radius: 14px;
	--lp-radius-sm: 10px;
	--lp-shadow: 0 18px 40px -18px rgba(10, 31, 68, 0.35);
	--lp-shadow-sm: 0 8px 24px -12px rgba(10, 31, 68, 0.25);

	--lp-container: 1160px;
	--lp-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--lp-font-head: "Space Grotesk", var(--lp-font-body);

	--lp-header-h: 76px;
}

/* =============================================================
   2. Reset / base
   ============================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--lp-font-body);
	font-size: 17px;
	line-height: 1.7;
	color: var(--lp-ink);
	background: var(--lp-white);
	-webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--lp-navy-500); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--lp-navy); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--lp-font-head);
	line-height: 1.15;
	color: var(--lp-navy);
	margin: 0 0 .5em;
	font-weight: 600;
	letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin: 0 0 1.15rem; }

ul, ol { margin: 0 0 1.15rem; padding-left: 1.25rem; }

blockquote {
	margin: 1.5rem 0;
	padding: .5rem 0 .5rem 1.25rem;
	border-left: 3px solid var(--lp-navy-500);
	color: var(--lp-muted);
	font-style: italic;
}

code, pre { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .9em; }
pre { background: var(--lp-black); color: #e7edf7; padding: 1.25rem; border-radius: var(--lp-radius-sm); overflow: auto; }

hr { border: 0; border-top: 1px solid var(--lp-line); margin: 2.5rem 0; }

:focus-visible { outline: 3px solid var(--lp-navy-300); outline-offset: 2px; border-radius: 4px; }

.screen-reader-text {
	position: absolute !important;
	clip-path: inset(50%);
	width: 1px; height: 1px;
	overflow: hidden;
	white-space: nowrap;
}
.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	z-index: 1000;
	background: var(--lp-navy);
	color: #fff;
	padding: .75rem 1.25rem;
	border-radius: 0 0 var(--lp-radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* =============================================================
   3. Layout helpers
   ============================================================= */
.container {
	width: 100%;
	max-width: var(--lp-container);
	margin-inline: auto;
	padding-inline: 24px;
}
.section { padding: clamp(60px, 9vw, 104px) 0; }
.section--mist { background: var(--lp-mist); }
.section--dark {
	background: linear-gradient(160deg, var(--lp-black) 0%, var(--lp-navy) 60%, var(--lp-navy-700) 100%);
	color: #dfe6f2;
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: #fff; }
.section--tight { padding: clamp(40px, 6vw, 64px) 0; }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.eyebrow {
	display: inline-block;
	font-family: var(--lp-font-head);
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--lp-navy-500);
	margin-bottom: .9rem;
}
.section--dark .eyebrow { color: var(--lp-navy-300); }
.lead { font-size: 1.12rem; color: var(--lp-muted); }
.section--dark .lead { color: var(--lp-muted-dark); }

.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	font-family: var(--lp-font-head);
	font-weight: 600;
	font-size: .98rem;
	line-height: 1;
	padding: 15px 26px;
	border-radius: var(--lp-radius-sm);
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease;
	white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--lp-navy-500); color: #fff; box-shadow: var(--lp-shadow-sm); }
.btn--primary:hover { background: var(--lp-navy); color: #fff; }
.btn--dark { background: var(--lp-black); color: #fff; }
.btn--dark:hover { background: var(--lp-navy); color: #fff; }
.btn--light { background: #fff; color: var(--lp-navy); }
.btn--light:hover { background: var(--lp-mist); color: var(--lp-navy); }
.btn--ghost { background: transparent; border-color: currentColor; color: inherit; }
.btn--ghost:hover { background: rgba(255,255,255,.08); color: inherit; }
.section--dark .btn--ghost { color: #fff; }
.btn--block { width: 100%; justify-content: center; }

/* =============================================================
   5. Top bar + header
   ============================================================= */
.top-bar {
	background: var(--lp-navy);
	color: #cdd9ec;
	font-size: .86rem;
}
.top-bar .container {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 26px;
	align-items: center;
	padding-block: 9px;
}
.top-bar a { color: #cdd9ec; display: inline-flex; align-items: center; gap: .4rem; }
.top-bar a:hover { color: #fff; }
.top-bar svg { width: 15px; height: 15px; }
.top-bar__spacer { margin-left: auto; }
.top-bar__socials { display: inline-flex; gap: 14px; }

/* Language switcher */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; }
.lang-switch__item {
	display: inline-flex;
	min-width: 32px;
	justify-content: center;
	padding: 4px 8px;
	border-radius: 6px;
	font-family: var(--lp-font-head);
	font-weight: 600;
	font-size: .78rem;
	letter-spacing: .05em;
	line-height: 1.4;
	color: inherit;
}
.lang-switch__item.is-active { background: var(--lp-navy-500); color: #fff; }
.top-bar .lang-switch__item { color: #cdd9ec; }
.top-bar .lang-switch__item:hover { color: #fff; background: rgba(255,255,255,.12); }
.top-bar .lang-switch__item.is-active { color: #fff; }
.header-actions .lang-switch { border: 1px solid var(--lp-line); border-radius: 8px; padding: 2px; }
.header-actions .lang-switch__item { color: var(--lp-ink); }
.header-actions .lang-switch__item:hover { background: var(--lp-mist); }
.footer-bottom .lang-switch__item { color: #b7c4da; }
.footer-bottom .lang-switch__item:hover { color: #fff; background: rgba(255,255,255,.12); }

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,.92);
	backdrop-filter: saturate(180%) blur(8px);
	border-bottom: 1px solid var(--lp-line);
	transition: box-shadow .2s ease, padding .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(10,31,68,.4); }
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: var(--lp-header-h);
}
.site-branding { display: flex; align-items: center; gap: 12px; }
.site-branding .custom-logo { max-height: 44px; width: auto; }
.site-title {
	font-family: var(--lp-font-head);
	font-size: 1.35rem;
	font-weight: 700;
	margin: 0;
	letter-spacing: -0.02em;
}
.site-title a { color: var(--lp-navy); }
.site-title .dot { color: var(--lp-navy-500); }
.site-description { margin: 0; font-size: .8rem; color: var(--lp-muted); }

.primary-nav { margin-left: auto; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.primary-nav li { position: relative; }
.primary-nav a {
	display: block;
	padding: 10px 14px;
	font-family: var(--lp-font-head);
	font-weight: 500;
	font-size: .96rem;
	color: var(--lp-ink);
	border-radius: 8px;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
	color: var(--lp-navy);
	background: var(--lp-mist);
}
.primary-nav .sub-menu {
	position: absolute;
	left: 0;
	top: calc(100% + 6px);
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius-sm);
	box-shadow: var(--lp-shadow);
	padding: 8px;
	display: none;
	flex-direction: column;
}
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu { display: flex; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
	display: none;
	width: 44px; height: 44px;
	border: 1px solid var(--lp-line);
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	padding: 0;
	align-items: center;
	justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
	content: "";
	display: block;
	width: 20px; height: 2px;
	background: var(--lp-navy);
	position: relative;
	transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, var(--lp-black) 0%, var(--lp-navy) 58%, var(--lp-navy-700) 100%);
	color: #e7edf7;
	padding: clamp(72px, 12vw, 132px) 0 clamp(72px, 12vw, 120px);
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
	background-size: 34px 34px;
	mask-image: linear-gradient(180deg, rgba(0,0,0,.6), transparent 75%);
	pointer-events: none;
}
.hero::after {
	content: "";
	position: absolute;
	width: 520px; height: 520px;
	right: -180px; top: -160px;
	background: radial-gradient(circle, rgba(22,65,143,.55), transparent 65%);
	filter: blur(20px);
	pointer-events: none;
}
.hero__inner { position: relative; max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: .6rem; }
.hero__lead { font-size: 1.2rem; color: #c6d2e6; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; }

.hero__track {
	margin-top: 2.5rem;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: var(--lp-radius);
	padding: 18px;
	max-width: 520px;
}
.hero__track label {
	display: block;
	font-family: var(--lp-font-head);
	font-size: .78rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--lp-navy-300);
	margin-bottom: .6rem;
}
.hero__track form { display: flex; gap: 10px; }
.hero__track input {
	flex: 1;
	background: rgba(255,255,255,.95);
	border: 0;
	border-radius: var(--lp-radius-sm);
	padding: 13px 15px;
	font: inherit;
	color: var(--lp-ink);
}

.hero__stats {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 34px 48px;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255,255,255,.14);
}
.hero__stat .num {
	font-family: var(--lp-font-head);
	font-size: 2.2rem;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}
.hero__stat .label { font-size: .9rem; color: #b7c4da; }

/* =============================================================
   7. Service cards
   ============================================================= */
.card {
	background: #fff;
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius);
	padding: 30px;
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.card:hover {
	transform: translateY(-4px);
	border-color: var(--lp-navy-300);
	box-shadow: var(--lp-shadow);
}
.card__icon {
	width: 52px; height: 52px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: rgba(22,65,143,.10);
	color: var(--lp-navy-500);
	margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .35rem; }
.card p { color: var(--lp-muted); margin-bottom: 1rem; }
.card__link {
	margin-top: auto;
	font-family: var(--lp-font-head);
	font-weight: 600;
	font-size: .92rem;
	display: inline-flex;
	align-items: center;
	gap: .4rem;
}
.card__link svg { width: 15px; height: 15px; transition: transform .16s ease; }
.card:hover .card__link svg { transform: translateX(3px); }

.section--dark .card {
	background: rgba(255,255,255,.04);
	border-color: rgba(255,255,255,.12);
}
.section--dark .card h3 { color: #fff; }
.section--dark .card p { color: var(--lp-muted-dark); }
.section--dark .card__icon { background: rgba(255,255,255,.08); color: #fff; }

/* =============================================================
   8. Feature list
   ============================================================= */
.feature { display: flex; gap: 16px; }
.feature__icon {
	flex: none;
	width: 44px; height: 44px;
	border-radius: 10px;
	background: var(--lp-navy);
	color: #fff;
	display: grid;
	place-items: center;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.feature p { color: var(--lp-muted); margin: 0; }

/* =============================================================
   9. Process steps
   ============================================================= */
.steps { counter-reset: step; display: grid; gap: 28px; grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding-top: 58px; }
.step::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	top: 0; left: 0;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--lp-navy-500);
	color: #fff;
	font-family: var(--lp-font-head);
	font-weight: 700;
	display: grid;
	place-items: center;
}
.step::after {
	content: "";
	position: absolute;
	top: 21px; left: 52px; right: -14px;
	height: 2px;
	background: var(--lp-line);
}
.step:last-child::after { display: none; }
.step h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.step p { color: var(--lp-muted); margin: 0; font-size: .96rem; }

/* =============================================================
   10. CTA band
   ============================================================= */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 640px; margin-inline: auto; }
.cta-band .btn { margin-top: 1.4rem; }

/* =============================================================
   11. Quote form
   ============================================================= */
.quote-form {
	background: #fff;
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius);
	padding: clamp(24px, 4vw, 40px);
	box-shadow: var(--lp-shadow);
}
.quote-form .field { margin-bottom: 18px; }
.quote-form label {
	display: block;
	font-family: var(--lp-font-head);
	font-weight: 600;
	font-size: .88rem;
	margin-bottom: .4rem;
	color: var(--lp-navy);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
	width: 100%;
	font: inherit;
	color: var(--lp-ink);
	background: #fff;
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius-sm);
	padding: 12px 14px;
	transition: border-color .16s ease, box-shadow .16s ease;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
	outline: none;
	border-color: var(--lp-navy-500);
	box-shadow: 0 0 0 3px rgba(22,65,143,.15);
}
.quote-form textarea { min-height: 120px; resize: vertical; }
.quote-form .field--half { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form .hp { position: absolute; left: -9999px; }
.form-notice {
	border-radius: var(--lp-radius-sm);
	padding: 14px 16px;
	margin-bottom: 20px;
	font-size: .95rem;
}
.form-notice--ok { background: #e7f6ec; color: #17632f; border: 1px solid #b7e2c4; }
.form-notice--err { background: #fdecec; color: #8a1f1f; border: 1px solid #f3c2c2; }

/* =============================================================
   12. Blog / content
   ============================================================= */
.page-wrap { padding: clamp(48px, 8vw, 88px) 0; }
.content-area.has-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 56px;
	align-items: start;
}
.page-title { margin-bottom: 2rem; }
.post-card {
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius);
	overflow: hidden;
	background: #fff;
	margin-bottom: 28px;
	transition: box-shadow .18s ease, transform .18s ease;
}
.post-card:hover { box-shadow: var(--lp-shadow); transform: translateY(-3px); }
.post-card__thumb img { width: 100%; height: 260px; object-fit: cover; }
.post-card__body { padding: 26px; }
.entry-meta { font-size: .85rem; color: var(--lp-muted); display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: .6rem; }
.entry-title { margin-bottom: .5rem; }
.entry-title a { color: var(--lp-navy); }
.entry-content > * { margin-bottom: 1.15rem; }
.entry-content img { border-radius: var(--lp-radius-sm); }
.entry-footer { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--lp-line); font-size: .9rem; color: var(--lp-muted); }
.tagcloud a, .cat-links a, .tags-links a { display: inline-block; }

.single-featured { margin-bottom: 2rem; }
.single-featured img { width: 100%; border-radius: var(--lp-radius); }

.pagination { margin-top: 2.5rem; display: flex; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 44px; height: 44px;
	padding: 0 10px;
	border: 1px solid var(--lp-line);
	border-radius: 10px;
	font-family: var(--lp-font-head);
	font-weight: 600;
	color: var(--lp-navy);
}
.pagination .page-numbers.current { background: var(--lp-navy); color: #fff; border-color: var(--lp-navy); }
.pagination a.page-numbers:hover { background: var(--lp-mist); }

/* Sidebar / widgets */
.widget { margin-bottom: 34px; }
.widget-title {
	font-size: 1.05rem;
	margin-bottom: 1rem;
	padding-bottom: .6rem;
	border-bottom: 2px solid var(--lp-navy-500);
	display: inline-block;
}
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { padding: 8px 0; border-bottom: 1px solid var(--lp-line); }
.widget li:last-child { border-bottom: 0; }
.widget a { color: var(--lp-ink); }
.widget a:hover { color: var(--lp-navy-500); }

.search-form { display: flex; gap: 8px; }
.search-form input[type="search"] {
	flex: 1;
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius-sm);
	padding: 11px 14px;
	font: inherit;
}
.search-form button {
	border: 0;
	background: var(--lp-navy);
	color: #fff;
	border-radius: var(--lp-radius-sm);
	padding: 0 18px;
	font-family: var(--lp-font-head);
	font-weight: 600;
	cursor: pointer;
}

/* Comments */
.comments-area { margin-top: 3rem; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list .comment { padding: 1.25rem 0; border-top: 1px solid var(--lp-line); }
.comment-list .children { list-style: none; margin: 0; padding-left: 1.5rem; }
.comment-meta { font-size: .85rem; color: var(--lp-muted); margin-bottom: .4rem; }
.comment-respond { margin-top: 2rem; }
.comment-form input:not([type="submit"]):not([type="checkbox"]),
.comment-form textarea {
	width: 100%;
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-radius-sm);
	padding: 12px 14px;
	font: inherit;
	margin-bottom: 1rem;
}
.comment-form input[type="submit"] {
	background: var(--lp-navy-500);
	color: #fff;
	border: 0;
	border-radius: var(--lp-radius-sm);
	padding: 13px 24px;
	font-family: var(--lp-font-head);
	font-weight: 600;
	cursor: pointer;
}

/* =============================================================
   13. Footer
   ============================================================= */
.site-footer {
	background: linear-gradient(180deg, var(--lp-navy) 0%, var(--lp-black) 100%);
	color: #b7c4da;
	padding-top: clamp(56px, 8vw, 88px);
}
.site-footer a { color: #b7c4da; }
.site-footer a:hover { color: #fff; }
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 48px;
}
.footer-about .footer-logo {
	font-family: var(--lp-font-head);
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: .75rem;
	display: inline-block;
}
.site-footer .widget-title { color: #fff; border-color: var(--lp-navy-300); }
.site-footer .widget li { border-color: rgba(255,255,255,.1); }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.12);
	padding: 22px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	align-items: center;
	justify-content: space-between;
	font-size: .88rem;
}
.footer-bottom nav ul { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.footer-bottom__end { display: flex; align-items: center; gap: 18px; }

/* =============================================================
   14. Utilities
   ============================================================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption { font-size: .85rem; color: var(--lp-muted); }
.alignleft { float: left; margin: .4rem 1.5rem 1rem 0; }
.alignright { float: right; margin: .4rem 0 1rem 1.5rem; }
.aligncenter { display: block; margin-inline: auto; }
.sticky .entry-title::after { content: " \2605"; color: var(--lp-navy-500); }

/* =============================================================
   15. Responsive
   ============================================================= */
@media (max-width: 1024px) {
	.grid--4 { grid-template-columns: repeat(2, 1fr); }
	.steps { grid-template-columns: repeat(2, 1fr); }
	.step::after { display: none; }
	.content-area.has-sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
	.nav-toggle { display: inline-flex; }
	.primary-nav {
		position: absolute;
		left: 0; right: 0;
		top: 100%;
		background: #fff;
		border-bottom: 1px solid var(--lp-line);
		box-shadow: var(--lp-shadow);
		padding: 12px;
		display: none;
	}
	.primary-nav.is-open { display: block; }
	.primary-nav ul { flex-direction: column; gap: 2px; }
	.primary-nav a { padding: 12px 14px; }
	.primary-nav .sub-menu {
		position: static;
		display: flex;
		box-shadow: none;
		border: 0;
		padding: 0 0 0 14px;
	}
	.header-actions .btn span { display: none; }
}

@media (max-width: 780px) {
	.grid--3, .grid--2 { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.quote-form .field--half { grid-template-columns: 1fr; }
	.hero__track form { flex-direction: column; }
	.top-bar__spacer { display: none; }
}

@media (max-width: 560px) {
	body { font-size: 16px; }
	.grid--4 { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
	* { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
