/* ==========================================================================
   Horizon Transport & Logistics — main stylesheet
   ========================================================================== */

:root {
	--navy: #08192c;
	--navy-2: #0e2540;
	--ink: #0f1c2e;
	--text: #46586f;
	--muted: #74849a;
	--blue: #1668f0;
	--blue-d: #0b4fce;
	--blue-l: #eaf2ff;
	--amber: #ff8a3d;
	--line: #e4eaf2;
	--bg: #f5f8fc;
	--white: #fff;
	--radius: 14px;
	--radius-lg: 20px;
	--shadow-sm: 0 4px 14px rgba(11, 38, 74, .06);
	--shadow: 0 16px 40px rgba(11, 38, 74, .10);
	--shadow-lg: 0 30px 70px rgba(9, 32, 64, .20);
	--container: 1180px;
	--head: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--text);
	background: var(--white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--blue);
	text-decoration: none;
}

h1, h2, h3, h4 {
	font-family: var(--head);
	color: var(--ink);
	line-height: 1.18;
	letter-spacing: -.015em;
	margin: 0 0 .5em;
	font-weight: 800;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1rem; }

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 22px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 3000;
	width: auto;
	height: auto;
	clip: auto;
	padding: 12px 18px;
	background: var(--blue);
	color: #fff;
	border-radius: 8px;
}

.ico {
	width: 22px;
	height: 22px;
	display: inline-block;
	vertical-align: middle;
	flex: none;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-family: var(--head);
	font-weight: 700;
	font-size: 15px;
	line-height: 1;
	padding: 13px 24px;
	border-radius: 10px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
	white-space: nowrap;
}

.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 10px 24px rgba(22, 104, 240, .28);
}
.btn-primary:hover {
	background: var(--blue-d);
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(22, 104, 240, .36);
	color: #fff;
}

.btn-outline {
	background: transparent;
	color: var(--blue);
	border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-ghost {
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border-color: rgba(255, 255, 255, .55);
	backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn-light {
	background: #fff;
	color: var(--navy);
}
.btn-light:hover { transform: translateY(-2px); color: var(--navy); }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--head);
	font-weight: 700;
	font-size: 14.5px;
	color: var(--blue);
}
.link-arrow .ico { width: 18px; height: 18px; transition: transform .2s ease; }
.link-arrow:hover .ico { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.topbar {
	background: var(--navy);
	color: rgba(255, 255, 255, .78);
	font-size: 13px;
}
.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 42px;
}
.topbar-note { margin: 0; letter-spacing: .01em; }
.topbar-contact {
	display: flex;
	align-items: center;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.topbar-contact a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, .82);
	font-weight: 500;
}
.topbar-contact a:hover { color: #fff; }
.topbar-contact .ico { width: 15px; height: 15px; color: #6fb0ff; }

.navbar {
	position: sticky;
	top: 0;
	z-index: 900;
	background: #fff;
	border-bottom: 1px solid var(--line);
	transition: box-shadow .25s ease, background .25s ease;
}
.navbar.is-stuck { box-shadow: 0 8px 28px rgba(9, 32, 64, .10); }
.navbar-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: 76px;
}
.navbar.is-stuck .navbar-inner { min-height: 66px; }

.brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	flex: none;
}
.brand-mark svg { width: 42px; height: 42px; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
	font-family: var(--head);
	font-weight: 800;
	font-size: 20px;
	letter-spacing: -.02em;
	color: var(--ink);
}
.brand-sub {
	margin-top: 4px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .17em;
	text-transform: uppercase;
	color: var(--muted);
}

.primary-nav { margin-left: auto; }
.nav-list {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav-list a {
	display: block;
	padding: 9px 14px;
	border-radius: 9px;
	font-family: var(--head);
	font-weight: 600;
	font-size: 14.5px;
	color: var(--ink);
	transition: color .18s ease, background .18s ease;
}
.nav-list a:hover { color: var(--blue); background: var(--blue-l); }
.nav-list a.is-active { color: var(--blue); }

.navbar-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: none;
}
.nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 10px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}
.nav-toggle-box { position: relative; width: 22px; height: 16px; display: block; }
.nav-toggle-box span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform .22s ease, opacity .22s ease, top .22s ease;
}
.nav-toggle-box span:nth-child(1) { top: 0; }
.nav-toggle-box span:nth-child(2) { top: 7px; }
.nav-toggle-box span:nth-child(3) { top: 14px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.nav-close {
	display: none;
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 10px;
	font-size: 26px;
	line-height: 1;
	color: var(--ink);
	cursor: pointer;
}

.nav-backdrop {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(8, 25, 44, .55);
	opacity: 0;
	transition: opacity .25s ease;
}
.nav-backdrop.is-open { opacity: 1; }
.nav-backdrop[hidden] { display: none; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: var(--navy);
}
.hero-media, .hero-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(105deg, rgba(6, 20, 38, .94) 0%, rgba(7, 26, 48, .82) 44%, rgba(7, 26, 48, .35) 100%),
		linear-gradient(0deg, rgba(6, 20, 38, .55), rgba(6, 20, 38, .1));
}
.hero-inner {
	position: relative;
	z-index: 2;
	padding: 96px 22px 104px;
	max-width: 760px;
}
.hero-copy { color: #dfe9f5; }
.hero h1 { color: #fff; margin: 14px 0 18px; }
.hero-lead { font-size: 1.1rem; color: rgba(255, 255, 255, .82); max-width: 620px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 30px;
	list-style: none;
	margin: 0;
	padding: 22px 0 0;
	border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero-contact a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-weight: 600;
	font-size: 15px;
}
.hero-contact .ico { width: 19px; height: 19px; color: #7cb4ff; }
.hero-contact a:hover { color: #7cb4ff; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: 92px 0; }
.section-alt { background: var(--bg); }
.section-head {
	max-width: 720px;
	margin: 0 auto 52px;
	text-align: center;
}
.section-head .section-sub { color: var(--text); margin: 0; }
.eyebrow {
	display: inline-block;
	font-family: var(--head);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--blue);
	margin: 0 0 14px;
}
.eyebrow-light { color: #7cb4ff; }

/* Values */
.value-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.value-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px 26px;
	box-shadow: var(--shadow-sm);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.value-icon, .feature-icon, .cm-icon, .fc-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: var(--blue-l);
	color: var(--blue);
	margin-bottom: 16px;
}
.value-icon .ico, .feature-icon .ico { width: 26px; height: 26px; }
.value-card h3 { margin-bottom: 6px; }
.value-card p { margin: 0; font-size: 15px; }

/* Services */
.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.service-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy); }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-body { padding: 26px 24px 28px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.service-body h3 { margin: 0; }
.service-body p { margin: 0 0 10px; font-size: 15px; }
.service-body .link-arrow { margin-top: auto; }

/* Process */
.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: step;
}
.process-step {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 34px 26px 30px;
	box-shadow: var(--shadow-sm);
}
.process-step::after {
	content: "";
	position: absolute;
	top: 52px;
	right: -26px;
	width: 26px;
	height: 2px;
	background: linear-gradient(90deg, var(--blue), rgba(22, 104, 240, .15));
}
.process-step:last-child::after { display: none; }
.process-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--blue);
	color: #fff;
	font-family: var(--head);
	font-weight: 800;
	font-size: 17px;
	margin-bottom: 18px;
	box-shadow: 0 10px 22px rgba(22, 104, 240, .3);
}
.process-step h3 { margin: 0 0 6px; }
.process-step p { margin: 0; font-size: 15px; }

/* Tracking */
.tracking { background: var(--navy); color: #cdd9e8; position: relative; }
.tracking-inner {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 54px;
	align-items: center;
}
.tracking h2 { color: #fff; }
.tracking-copy p { color: rgba(255, 255, 255, .75); margin: 0; max-width: 440px; }
.tracking-widget {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 30px;
	box-shadow: var(--shadow-lg);
}
.track-form { display: flex; gap: 12px; }
.track-form-panel { flex-direction: column; }
.track-input {
	position: relative;
	display: flex;
	align-items: center;
	flex: 1;
}
.track-input-icon { position: absolute; left: 15px; color: var(--muted); display: flex; }
.track-input-icon .ico { width: 20px; height: 20px; }
.track-input input {
	width: 100%;
	height: 54px;
	padding: 0 16px 0 46px;
	border: 1.5px solid var(--line);
	border-radius: 11px;
	font-family: var(--body);
	font-size: 15px;
	color: var(--ink);
	background: #fbfdff;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.track-input input:focus {
	outline: none;
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(22, 104, 240, .12);
}
.track-form .btn { height: 54px; }
.track-form-panel .btn { width: 100%; }
.tracking-hint { margin: 14px 0 0; font-size: 13.5px; color: var(--muted); }

/* Solutions */
.solutions-inner {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 60px;
	align-items: center;
}
.solutions-media { position: relative; }
.solutions-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.solutions-badge {
	position: absolute;
	right: -18px;
	bottom: -18px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--navy);
	color: #fff;
	font-family: var(--head);
	font-weight: 700;
	font-size: 14px;
	padding: 16px 20px;
	border-radius: 14px;
	box-shadow: var(--shadow-lg);
	max-width: 250px;
}
.solutions-badge .ico { width: 24px; height: 24px; color: #7cb4ff; }
.check-list { list-style: none; margin: 22px 0 28px; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--ink); }
.check-list .ico { width: 20px; height: 20px; color: var(--blue); margin-top: 3px; }

/* Why / features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px 24px;
	box-shadow: var(--shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card h3 { margin: 2px 0 4px; font-size: 1.08rem; }
.feature-card p { margin: 0; font-size: 14.5px; }
.feature-icon { width: 48px; height: 48px; margin: 0; flex: none; }
.feature-icon .ico { width: 24px; height: 24px; }

/* CTA band */
.cta-band { position: relative; isolation: isolate; overflow: hidden; background: var(--navy); }
.cta-bg, .cta-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(6, 20, 38, .95), rgba(9, 42, 92, .82));
}
.cta-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
	min-height: 340px;
	padding: 90px 22px;
	flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; margin: 0 0 8px; }
.cta-inner p { color: rgba(255, 255, 255, .8); margin: 0; max-width: 560px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Contact */
.contact-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: start; }
.contact-methods { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 16px; }
.contact-methods a { display: flex; align-items: center; gap: 16px; color: var(--text); }
.contact-methods a:hover { color: var(--blue); }
.contact-methods strong { display: block; font-family: var(--head); color: var(--ink); font-size: 15px; }
.cm-icon { width: 52px; height: 52px; margin: 0; }
.contact-form-wrap {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 34px;
	box-shadow: var(--shadow);
}

/* Forms */
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-family: var(--head); font-weight: 600; font-size: 13.5px; color: var(--ink); }
.field .req { color: var(--blue); }
.field input, .field select, .field textarea {
	width: 100%;
	font-family: var(--body);
	font-size: 15px;
	color: var(--ink);
	background: #fbfdff;
	border: 1.5px solid var(--line);
	border-radius: 10px;
	padding: 13px 14px;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
	outline: none;
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(22, 104, 240, .12);
	background: #fff;
}
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; overflow: hidden; }
.form-consent { margin: 12px 0 0; font-size: 12.5px; color: var(--muted); text-align: center; }

.alert { border-radius: 10px; padding: 14px 18px; font-size: 14.5px; margin-bottom: 20px; }
.alert-success { background: #e9f9f0; color: #12693f; border: 1px solid #bfe9d0; }
.alert-error { background: #fdeceb; color: #a02318; border: 1px solid #f6cfcb; }

/* Page hero */
.page-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--navy); }
.page-hero-bg, .page-hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(6, 20, 38, .94), rgba(9, 42, 92, .72));
}
.page-hero-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 400px;
	padding: 72px 22px;
}
.page-hero h1 { color: #fff; margin: 12px 0 10px; }
.page-hero-lead { color: rgba(255, 255, 255, .8); max-width: 640px; margin: 0; font-size: 1.05rem; }
.breadcrumb { display: flex; gap: 9px; font-size: 13.5px; color: rgba(255, 255, 255, .7); }
.breadcrumb a { color: #7cb4ff; }
.breadcrumb a:hover { color: #fff; }

/* About / generic page blocks */
.intro-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.intro-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.intro-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 8px; }
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mini-card {
	background: #fff;
	border: 1px solid var(--line);
	border-left: 4px solid var(--blue);
	border-radius: var(--radius);
	padding: 26px 24px;
	box-shadow: var(--shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease;
}
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mini-card h3 { margin: 0 0 6px; font-size: 1.08rem; }
.mini-card p { margin: 0; font-size: 14.5px; }
.commitment-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.commitment-media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}
.commitment-media img { width: 100%; height: 100%; object-fit: cover; }

/* Tracking page */
.track-panel {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 30px;
	box-shadow: var(--shadow);
	margin-bottom: 34px;
}
.track-result {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	overflow: hidden;
}
.track-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	padding: 24px 28px;
	background: var(--navy);
	color: #fff;
}
.track-label { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }
.track-number { font-family: var(--head); font-size: 1.3rem; }
.status-badge {
	padding: 8px 16px;
	border-radius: 999px;
	font-family: var(--head);
	font-weight: 700;
	font-size: 13px;
	background: rgba(255, 255, 255, .14);
	color: #fff;
}
.status-delivered { background: #17a05a; }
.status-in-transit { background: var(--blue); }
.status-out-for-delivery { background: var(--amber); color: #3a1e00; }
.status-on-hold { background: #b53328; }
.track-meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 20px;
	padding: 24px 28px;
	border-bottom: 1px solid var(--line);
}
.track-meta span { display: block; font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.track-meta strong { font-family: var(--head); color: var(--ink); font-size: 15px; font-weight: 700; }
.track-timeline { list-style: none; margin: 0; padding: 26px 28px; display: grid; gap: 4px; }
.track-timeline li { position: relative; display: grid; grid-template-columns: 22px 130px 1fr; gap: 14px; padding-bottom: 22px; }
.track-timeline li:not(:last-child)::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 18px;
	bottom: 0;
	width: 2px;
	background: var(--line);
}
.track-dot { width: 14px; height: 14px; margin-top: 5px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px var(--blue-l); }
.track-date { font-family: var(--head); font-weight: 700; color: var(--ink); font-size: 14px; }
.track-body strong { display: block; color: var(--ink); font-weight: 600; }
.track-body span { font-size: 14.5px; color: var(--text); }
.track-empty { padding: 44px 28px; text-align: center; }
.track-empty-icon { display: inline-flex; width: 64px; height: 64px; align-items: center; justify-content: center; border-radius: 50%; background: var(--blue-l); color: var(--blue); margin-bottom: 16px; }
.track-empty-icon .ico { width: 30px; height: 30px; }
.track-empty h3 { margin-bottom: 8px; }
.track-empty p { max-width: 520px; margin: 0 auto 20px; }

/* Content pages */
.entry { max-width: 820px; margin: 0 auto; }
.entry h2, .entry h3 { margin-top: 1.6em; }
.entry ul, .entry ol { padding-left: 1.3em; }
.entry li { margin-bottom: .5em; }

/* 404 */
.error-404 { text-align: center; padding: 120px 0; }
.error-404 .code { font-family: var(--head); font-weight: 800; font-size: clamp(4rem, 12vw, 8rem); color: var(--blue-l); line-height: 1; }
.error-404 .btn { margin-top: 18px; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, .72); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 54px; }
.footer-about p { margin: 20px 0 22px; font-size: 14.5px; }
.footer-title { color: #fff; font-size: 1rem; margin: 0 0 18px; font-weight: 700; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-links a { color: rgba(255, 255, 255, .72); font-size: 14.5px; }
.footer-links a:hover { color: #fff; padding-left: 3px; }
.footer-contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.footer-contact-list li { display: flex; align-items: center; gap: 12px; }
.footer-contact-list a { color: rgba(255, 255, 255, .8); font-size: 14.5px; word-break: break-word; }
.footer-contact-list a:hover { color: #fff; }
.footer-contact .fc-icon { width: 42px; height: 42px; margin: 0; background: rgba(255, 255, 255, .08); color: #7cb4ff; }
.footer-contact .fc-icon .ico { width: 20px; height: 20px; }
.brand-footer .brand-name { color: #fff; }
.brand-footer .brand-sub { color: rgba(255, 255, 255, .55); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: 13.5px; }
.footer-legal { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.footer-legal a { color: rgba(255, 255, 255, .72); font-size: 13.5px; }
.footer-legal a:hover { color: #fff; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
	.value-grid { grid-template-columns: repeat(2, 1fr); }
	.card-grid { grid-template-columns: repeat(2, 1fr); }
	.process-grid { grid-template-columns: repeat(2, 1fr); }
	.process-step:nth-child(2)::after { display: none; }
	.feature-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
	.primary-nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1001;
		width: min(360px, 88vw);
		height: 100dvh;
		background: #fff;
		padding: 76px 22px 30px;
		overflow-y: auto;
		transform: translateX(102%);
		transition: transform .3s ease;
		box-shadow: -20px 0 50px rgba(8, 25, 44, .18);
		margin: 0;
	}
	.primary-nav.is-open { transform: none; }
	.nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
	.nav-list a { padding: 14px 16px; font-size: 17px; border-radius: 10px; }
	.nav-close { display: block; }
	.nav-toggle { display: inline-flex; }
	.btn-quote { display: none; }
	.navbar-actions { margin-left: auto; }
	.primary-nav .nav-list a.is-active { background: var(--blue-l); }

	.hero-inner { padding: 76px 22px 84px; }
	.tracking-inner, .solutions-inner, .contact-inner,
	.intro-inner, .commitment-inner { grid-template-columns: 1fr; gap: 40px; }
	.solutions-media { order: -1; }
	.solutions-badge { right: 16px; bottom: 16px; }
	.section { padding: 74px 0; }
}

@media (max-width: 640px) {
	.topbar-note { display: none; }
	.topbar-inner { justify-content: center; }
	.topbar-contact { gap: 18px; }
	.topbar-contact .ico { display: none; }
	.container { padding: 0 18px; }

	.value-grid, .card-grid, .process-grid,
	.feature-grid, .mini-grid, .field-grid { grid-template-columns: 1fr; }
	.process-step::after { display: none; }
	.hero-inner { padding: 60px 18px 66px; }
	.hero h1 { font-size: clamp(1.7rem, 8vw, 2.3rem); }
	.hero-actions .btn { flex: 1 1 auto; }
	.hero-contact { gap: 10px; }
	.section { padding: 58px 0; }
	.section-head { margin-bottom: 36px; }
	.page-hero-inner { min-height: 300px; padding: 56px 18px 60px; }
	.track-form { flex-direction: column; }
	.track-timeline li { grid-template-columns: 22px 1fr; }
	.track-date { grid-column: 2; }
	.contact-form-wrap, .tracking-widget, .track-panel { padding: 24px 20px; }
	.footer-grid { grid-template-columns: 1fr; gap: 34px; }
	.footer-bottom-inner { flex-direction: column; text-align: center; }
	.cta-inner { min-height: 260px; padding: 52px 18px; }
	.cta-actions { width: 100%; }
	.cta-actions .btn { flex: 1 1 auto; }
}

/* ==========================================================================
   Motion system — subtle, professional, performance-friendly
   ========================================================================== */

@keyframes hznUp {
	from { opacity: 0; transform: translateY(18px); }
	to   { opacity: 1; transform: none; }
}
@keyframes hznFade {
	from { opacity: 0; }
	to   { opacity: 1; }
}
@keyframes heroZoom {
	from { transform: scale(1.07); }
	to   { transform: scale(1); }
}
@keyframes heroGlow {
	from { opacity: .45; transform: translate3d(0, 0, 0); }
	to   { opacity: .85; transform: translate3d(2.5%, 1.5%, 0); }
}
@keyframes hznSpin {
	to { transform: rotate(360deg); }
}

/* Entrance reveal states (only engaged when JS is active) */
.hzn-js [data-reveal] {
	opacity: 0;
	will-change: opacity, transform;
	transition: opacity .6s cubic-bezier(.22, .61, .36, 1), transform .6s cubic-bezier(.22, .61, .36, 1);
	transition-delay: var(--d, 0ms);
}
.hzn-js [data-reveal="up"]    { transform: translateY(26px); }
.hzn-js [data-reveal="left"]  { transform: translateX(-30px); }
.hzn-js [data-reveal="right"] { transform: translateX(30px); }
.hzn-js [data-reveal="scale"] { transform: scale(.95); }
.hzn-js [data-reveal].is-in   { opacity: 1; transform: none; }

/* Page load transition */
.site-main { animation: hznFade .45s ease both; }

/* Hero entrance sequence: background -> headline -> description -> actions */
.hero-copy > * {
	opacity: 0;
	transform: translateY(20px);
	animation: hznUp .7s cubic-bezier(.22, .61, .36, 1) forwards;
}
.hero-copy .eyebrow    { animation-delay: .12s; }
.hero h1               { animation-delay: .24s; }
.hero-lead             { animation-delay: .38s; }
.hero-actions          { animation-delay: .52s; }
.hero-contact          { animation-delay: .66s; }
.hero-media img        { animation: heroZoom 9s cubic-bezier(.16, .68, .32, 1) forwards; }
.hero-overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(58% 78% at 16% 22%, rgba(96, 156, 255, .20), transparent 62%);
	animation: heroGlow 9s ease-in-out infinite alternate;
}

/* Full-bleed parallax layers keep a safe margin so no gaps appear */
[data-parallax] { overflow: hidden; }
[data-parallax] img { position: absolute; left: 0; width: 100%; height: 118%; top: -9%; object-fit: cover; }

/* Navigation micro-interactions */
.nav-list a { position: relative; }
.nav-list a::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 4px;
	height: 2px;
	border-radius: 2px;
	background: var(--blue);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .3s cubic-bezier(.22, .61, .36, 1);
}
.nav-list a:hover { background: transparent; color: var(--blue); }
.nav-list a:hover::after,
.nav-list a.is-active::after { transform: scaleX(1); }
.navbar-inner { transition: min-height .3s ease; }
.brand-mark svg { transition: width .3s ease, height .3s ease; }
.navbar.is-stuck .brand-mark svg { width: 38px; height: 38px; }
.topbar-contact a,
.hero-contact a,
.footer-contact-list a,
.footer-links a {
	transition: color .25s ease, opacity .25s ease, transform .25s ease;
}
.topbar-contact a:hover { transform: translateY(-1px); }

/* Button micro-interactions */
.btn { position: relative; }
.btn::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, rgba(255, 255, 255, .16), transparent);
	opacity: 0;
	transition: opacity .3s ease;
	pointer-events: none;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(0) scale(.99); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline:hover { transform: translateY(-2px); }
.btn-light:hover { transform: translateY(-2px); }
.btn-quote { transition: transform .2s ease, box-shadow .25s ease, background .25s ease; }
.btn-quote:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(22, 104, 240, .38); }
.btn .ico { transition: transform .25s ease; }
.btn:hover .ico { transform: translateX(4px); }
.btn.is-loading { color: transparent !important; pointer-events: none; }
.btn.is-loading::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 18px;
	margin: -9px 0 0 -9px;
	border: 2px solid rgba(255, 255, 255, .45);
	border-top-color: #fff;
	border-radius: 50%;
	animation: hznSpin .7s linear infinite;
}
.btn-outline.is-loading::before { border-color: rgba(22, 104, 240, .35); border-top-color: var(--blue); }

/* Cards: gentle lift + icon movement */
.value-icon, .feature-icon, .mini-card, .process-num {
	transition: transform .3s cubic-bezier(.22, .61, .36, 1), background .3s ease, color .3s ease, box-shadow .3s ease;
}
.value-card:hover .value-icon,
.feature-card:hover .feature-icon {
	transform: translateY(-3px) scale(1.05);
	background: var(--blue);
	color: #fff;
}
.mini-card:hover { transform: translateY(-4px); }
.process-step:hover .process-num { transform: translateY(-3px) scale(1.04); }

/* Service cards: slow zoom, brightness, subtle overlay */
.service-media { position: relative; }
.service-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 42%, rgba(6, 20, 38, .48));
	opacity: 0;
	transition: opacity .45s ease;
}
.service-media img { transition: transform .75s cubic-bezier(.22, .61, .36, 1), filter .6s ease; }
.service-card:hover .service-media img { transform: scale(1.04); filter: brightness(1.06); }
.service-card:hover .service-media::after { opacity: 1; }
.service-card:hover .link-arrow { color: var(--blue-d); }
.service-card:hover .link-arrow .ico { transform: translateX(5px); }
.link-arrow .ico { transition: transform .28s cubic-bezier(.22, .61, .36, 1); }

/* Image hover for large imagery */
.solutions-media { overflow: hidden; border-radius: var(--radius-lg); }
.solutions-media img,
.commitment-media { transition: transform .7s cubic-bezier(.22, .61, .36, 1), filter .6s ease; }
.solutions-media:hover img { transform: scale(1.03); filter: brightness(1.04); }
.commitment-media { overflow: hidden; border-radius: var(--radius-lg); }
.commitment-media:hover img { transform: scale(1.03); filter: brightness(1.04); }
.solutions-badge { transition: transform .35s ease, box-shadow .35s ease; }
.solutions-media:hover .solutions-badge { transform: translateY(-4px); }

/* Tracking */
.track-input { transition: box-shadow .3s ease; }
.track-input:focus-within { box-shadow: 0 0 0 4px rgba(22, 104, 240, .10); border-radius: 11px; }
.track-input input { transition: border-color .3s ease, box-shadow .3s ease, background .3s ease; }
.track-result { animation: hznUp .55s cubic-bezier(.22, .61, .36, 1) both; }
.status-badge { animation: hznFade .6s ease .15s both; }
.track-timeline li { animation: hznUp .5s ease both; }
.track-timeline li:nth-child(2) { animation-delay: .07s; }
.track-timeline li:nth-child(3) { animation-delay: .14s; }
.track-timeline li:nth-child(4) { animation-delay: .21s; }
.track-timeline li:nth-child(5) { animation-delay: .28s; }
.track-timeline li:nth-child(n+6) { animation-delay: .34s; }
.track-dot { transition: box-shadow .3s ease, transform .3s ease; }
.track-timeline li:hover .track-dot { transform: scale(1.2); }

/* Footer reveal helpers */
.footer-links a { position: relative; }
.footer-contact .fc-icon { transition: transform .3s ease, background .3s ease, color .3s ease; }
.footer-contact-list li:hover .fc-icon { transform: translateY(-2px); background: var(--blue); color: #fff; }

/* Contact / form focus */
.contact-methods a { transition: color .25s ease, transform .25s ease; }
.contact-methods a:hover { transform: translateX(3px); }

/* Reduced motion: present the simplified, static version */
@media (prefers-reduced-motion: reduce) {
	.hzn-js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
	.hero-copy > * { opacity: 1 !important; transform: none !important; animation: none !important; }
	.hero-media img { animation: none !important; }
	.hero-overlay::after { animation: none !important; }
	.site-main { animation: none !important; }
	.track-result, .status-badge, .track-timeline li { animation: none !important; }
	.btn, .btn:hover, .value-card, .service-card, .feature-card, .mini-card,
	.process-step, .solutions-media:hover img, .solutions-media:hover .solutions-badge { transform: none !important; }
}

/* Mobile: lighter motion, shorter distances */
@media (max-width: 768px) {
	.hzn-js [data-reveal] { transition-duration: .5s; }
	.hzn-js [data-reveal="up"] { transform: translateY(16px); }
	.hzn-js [data-reveal="left"],
	.hzn-js [data-reveal="right"] { transform: translateY(16px); }
	.hero-copy > * { animation-duration: .6s; }
	.hero-media img { animation-duration: 13s; }
	.service-card:hover .service-media img { transform: scale(1.03); }
}

/* Service detail rows (Services page) */
.service-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
	padding: 46px 0;
	border-bottom: 1px solid var(--line);
	scroll-margin-top: 100px;
}
.service-row:first-child { padding-top: 0; }
.service-row:last-child { border-bottom: 0; padding-bottom: 0; }
.service-row:nth-child(even) .service-row-media { order: 2; }
.service-row-media {
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}
.service-row-media img {
	width: 100%;
	transition: transform .7s cubic-bezier(.22, .61, .36, 1), filter .6s ease;
}
.service-row-media:hover img { transform: scale(1.03); filter: brightness(1.04); }
.service-row-copy h2 { margin-top: 0; }
.service-row-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 6px; }

@media (max-width: 900px) {
	.service-row { grid-template-columns: 1fr; gap: 26px; padding: 34px 0; }
	.service-row:nth-child(even) .service-row-media { order: 0; }
	.service-row-media { order: -1; }
}

/* Contact page info cards */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 40px; }
.contact-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px 26px;
	box-shadow: var(--shadow-sm);
	transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card .cm-icon { margin-bottom: 14px; }
.contact-card h3 { margin: 0 0 4px; }
.contact-card a { font-weight: 600; word-break: break-word; }

@media (max-width: 640px) {
	.contact-cards { grid-template-columns: 1fr; }
}

/* Quote / contact two-column layouts */
.split-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: start; }
@media (max-width: 900px) { .split-inner { grid-template-columns: 1fr; gap: 40px; } }
