:root {
	--brand-blue: #0b4ea2;
	--brand-blue-2: #155dc0;
	--brand-blue-dark: #062b63;
	--brand-red: #d82134;
	--brand-red-dark: #a91525;
	--ink: #091522;
	--muted: #5d6a7c;
	--line: #d8e5f4;
	--paper: #ffffff;
	--soft: #eef5fd;
	--soft-2: #f7fbff;
	--shadow-blue: 0 30px 90px rgba(6, 43, 99, 0.14);
	--shadow-red: 0 20px 44px rgba(216, 33, 52, 0.22);
	--radius: 30px;
	--ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	color: var(--ink);
	background:
		radial-gradient(circle at 82% 8%, rgba(216, 33, 52, 0.1), transparent 28rem),
		linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #eef5fd 100%);
	font-family: "Plus Jakarta Sans", "Geist", "Aptos", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	overflow-x: hidden;
}

body::after {
	position: fixed;
	inset: 0;
	z-index: 4;
	pointer-events: none;
	opacity: 0.035;
	background-image:
		linear-gradient(0deg, rgba(9, 21, 34, 0.35) 1px, transparent 1px),
		linear-gradient(90deg, rgba(9, 21, 34, 0.22) 1px, transparent 1px);
	background-size: 46px 46px;
	content: "";
}

img,
svg {
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

.wrap {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -60px;
	z-index: 30;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--ink);
	color: #fff;
	font-weight: 900;
}

.skip-link:focus {
	top: 16px;
}

.top-strip {
	position: relative;
	z-index: 12;
	color: #42627f;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.top-strip__inner {
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: center;
	min-height: 34px;
}

.top-strip a {
	color: var(--brand-blue-dark);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	padding: 8px 20px 14px;
}

.main-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: min(1120px, 100%);
	min-height: 74px;
	margin: 0 auto;
	padding: 8px 10px 8px 16px;
	border: 1px solid rgba(216, 229, 244, 0.82);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 22px 60px rgba(6, 43, 99, 0.12);
	backdrop-filter: blur(24px);
}

.brand {
	display: inline-flex;
	align-items: center;
	min-width: 126px;
}

.brand__logo {
	display: grid;
	width: 118px;
	height: 54px;
	place-items: center;
	overflow: hidden;
	border-radius: 24px;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(216, 229, 244, 0.9);
}

.brand__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.nav-links {
	display: flex;
	gap: 4px;
	align-items: center;
	color: #42546c;
	font-size: 14px;
	font-weight: 900;
}

.nav-links a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 14px;
	border-radius: 999px;
	transition: transform 520ms var(--ease), background 520ms var(--ease), color 520ms var(--ease);
}

.nav-links a:hover {
	transform: translateY(-1px);
	background: #eef5fd;
	color: var(--brand-blue);
}

.nav-links .nav-cta {
	margin-left: 4px;
	background: var(--brand-red);
	color: #fff;
	box-shadow: var(--shadow-red);
}

.nav-links .nav-cta:hover {
	background: var(--brand-red-dark);
	color: #fff;
}

.nav-toggle {
	display: none;
	position: relative;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: var(--brand-blue-dark);
	cursor: pointer;
}

.nav-toggle span {
	position: absolute;
	left: 15px;
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 99px;
	background: #fff;
	transition: transform 520ms var(--ease), opacity 520ms var(--ease);
}

.nav-toggle span:nth-child(1) {
	top: 17px;
}

.nav-toggle span:nth-child(2) {
	top: 23px;
}

.nav-toggle span:nth-child(3) {
	top: 29px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.eyebrow,
.panel-kicker {
	display: inline-flex;
	width: fit-content;
	margin: 0 0 16px;
	padding: 7px 11px;
	border: 1px solid rgba(11, 78, 162, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--brand-blue);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.hero {
	position: relative;
	min-height: calc(100dvh - 40px);
	padding: 96px 0 80px;
	overflow: hidden;
}

.hero::before {
	position: absolute;
	inset: 8% -12% auto auto;
	width: 560px;
	height: 560px;
	border: 34px solid rgba(216, 33, 52, 0.12);
	border-left-color: transparent;
	border-bottom-color: transparent;
	border-radius: 50%;
	transform: rotate(24deg);
	content: "";
}

.hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
	gap: 58px;
	align-items: center;
}

.hero__copy {
	padding: 36px 0;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.metrics h2,
.account-band h2,
.page-hero h1,
.content-card__header h2,
.about-profile h2,
.service-dtc h2,
.service-process h2 {
	margin: 0;
	color: var(--ink);
	font-family: "Clash Display", "Plus Jakarta Sans", "Geist", sans-serif;
	line-height: 0.96;
	letter-spacing: 0;
}

.hero h1 {
	max-width: 760px;
	font-size: clamp(58px, 9vw, 132px);
}

.hero__lead {
	max-width: 660px;
	margin: 26px 0 0;
	color: #4c5b70;
	font-size: clamp(18px, 2vw, 22px);
}

.hero__actions,
.account-actions,
.service-dtc__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.button,
.tracking-form button,
.request-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 54px;
	padding: 8px 10px 8px 22px;
	border: 0;
	border-radius: 999px;
	font-weight: 900;
	cursor: pointer;
	transition: transform 520ms var(--ease), box-shadow 520ms var(--ease), background 520ms var(--ease);
}

.button i,
.request-form button i {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	font-style: normal;
	transition: transform 520ms var(--ease), background 520ms var(--ease);
}

.button:hover,
.tracking-form button:hover,
.request-form button:hover {
	transform: translateY(-2px);
}

.button:active,
.tracking-form button:active,
.request-form button:active {
	transform: scale(0.98);
}

.button:hover i,
.request-form button:hover i {
	transform: translate(3px, -1px) scale(1.05);
}

.button--primary,
.tracking-form button,
.request-form button {
	background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
	color: #fff;
	box-shadow: 0 18px 36px rgba(11, 78, 162, 0.26);
}

.button--primary i,
.tracking-form button {
	background-color: var(--brand-red);
}

.button--secondary {
	background: #fff;
	color: var(--brand-blue-dark);
	box-shadow: inset 0 0 0 1px rgba(216, 229, 244, 0.96), 0 18px 42px rgba(6, 43, 99, 0.08);
}

.button--secondary i {
	background: #eef5fd;
	color: var(--brand-red);
}

.hero__visual {
	position: relative;
	min-height: 620px;
}

.bezel,
.tracking-panel,
.calculator,
.request-form,
.trust-card,
.card,
.service-tile,
.metric-grid div,
.portal-card,
.content-card,
.service-dtc__hero,
.service-dtc__stats,
.service-dtc__steps,
.service-dtc__details,
.service-dtc__links,
.about-profile__intro,
.about-profile__story p,
.about-profile__cta,
.portal-shell {
	border: 1px solid rgba(216, 229, 244, 0.92);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.76);
	box-shadow: var(--shadow-blue);
}

.bezel {
	padding: 10px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(220, 234, 251, 0.72));
}

.hero-frame {
	position: absolute;
	inset: 0 0 74px 28px;
	border-radius: 42px;
}

.hero-photo {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 32px;
	background:
		linear-gradient(180deg, rgba(6, 43, 99, 0.08), rgba(6, 43, 99, 0.58)),
		url("../images/primecargo/shipping-cargos.jpg") center/cover;
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.36);
}

.hero-swoosh {
	position: absolute;
	right: -110px;
	border: 18px solid;
	border-left-color: transparent;
	border-bottom-color: transparent;
	border-radius: 50%;
	transform: rotate(21deg);
}

.hero-swoosh--red {
	top: 52px;
	width: 360px;
	height: 360px;
	border-color: rgba(216, 33, 52, 0.78);
	border-left-color: transparent;
	border-bottom-color: transparent;
}

.hero-swoosh--blue {
	top: 128px;
	width: 280px;
	height: 280px;
	border-color: rgba(11, 78, 162, 0.82);
	border-left-color: transparent;
	border-bottom-color: transparent;
}

.hero-status {
	position: absolute;
	right: 24px;
	bottom: 24px;
	display: grid;
	gap: 4px;
	width: min(280px, calc(100% - 48px));
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.36);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--brand-blue-dark);
	box-shadow: 0 20px 48px rgba(6, 43, 99, 0.22);
}

.hero-status span {
	color: #607086;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.hero-status strong {
	font-size: 18px;
}

.tracking-panel {
	position: absolute;
	left: 0;
	bottom: 0;
	width: min(390px, 88%);
	padding: 8px;
	border-radius: 34px;
	background: rgba(238, 245, 253, 0.9);
}

.tracking-panel > * {
	margin-left: 20px;
	margin-right: 20px;
}

.tracking-panel h2 {
	margin-top: 0;
	margin-bottom: 16px;
	font-size: 30px;
	line-height: 1;
}

.tracking-form {
	padding: 0 0 20px;
}

.tracking-form label,
.calculator label,
.request-form label,
.portal-card label {
	display: grid;
	gap: 8px;
	color: #4a5a70;
	font-size: 13px;
	font-weight: 900;
}

.tracking-form div {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
}

input,
select,
textarea {
	width: 100%;
	min-height: 50px;
	border: 1px solid #cfddec;
	border-radius: 18px;
	background: #fff;
	color: var(--ink);
	padding: 12px 14px;
	font-weight: 800;
	outline: none;
	transition: border 420ms var(--ease), box-shadow 420ms var(--ease);
}

textarea {
	min-height: 120px;
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	border-color: rgba(11, 78, 162, 0.58);
	box-shadow: 0 0 0 4px rgba(11, 78, 162, 0.12);
}

.service-strip {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 16px;
	margin-top: -34px;
	position: relative;
	z-index: 3;
}

.service-tile {
	display: grid;
	align-content: end;
	min-height: 250px;
	padding: 28px;
	overflow: hidden;
	position: relative;
	background: #fff;
}

.service-tile::before {
	position: absolute;
	inset: 10px;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(238, 245, 253, 0.82), rgba(255, 255, 255, 0.74));
	content: "";
}

.service-tile > * {
	position: relative;
	z-index: 1;
}

.service-tile__media {
	position: absolute;
	inset: 18px auto 18px 18px;
	z-index: 1;
	width: 126px;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(11, 78, 162, 0.18);
	border-radius: 16px;
	background: #dbe8f8;
	box-shadow: 0 14px 34px rgba(6, 43, 99, 0.16);
}

.service-tile__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(6, 43, 99, 0.32));
	content: "";
}

.service-tile__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-tile--large {
	grid-row: span 2;
	min-height: 516px;
	background:
		linear-gradient(180deg, rgba(6, 43, 99, 0.08), rgba(6, 43, 99, 0.2)),
		url("../images/primecargo/low-angle-freight-airplane.jpg") center/cover;
}

.service-tile--large::before {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.88));
}

.service-tile--dark {
	background: var(--brand-blue-dark);
	color: #fff;
}

.service-tile--dark::before {
	background: linear-gradient(145deg, rgba(11, 78, 162, 0.42), rgba(6, 43, 99, 0.54));
}

.service-tile span {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border-radius: 50%;
	background: var(--brand-red);
	color: #fff;
	font-weight: 900;
}

.service-tile h2 {
	margin: 42px 0 8px;
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1;
}

.service-tile p {
	max-width: 420px;
	margin: 0 0 18px;
	color: #516174;
}

.service-tile--dark p {
	color: #d7e5f4;
}

.service-tile a,
.text-link {
	color: var(--brand-red);
	font-weight: 900;
}

.solutions,
.calculator-grid,
.account-band,
.trustpilot {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
	gap: 56px;
	align-items: center;
	padding: 120px 0;
}

.section-copy h2,
.section-heading h2,
.metrics h2,
.account-band h2 {
	font-size: clamp(38px, 5.6vw, 78px);
}

.section-copy p,
.account-band p,
.page-content p,
.content-flow p {
	color: var(--muted);
	font-size: 18px;
}

.image-stack {
	position: relative;
	min-height: 500px;
}

.image-card {
	position: absolute;
	border: 10px solid #fff;
	border-radius: 34px;
	background-size: cover;
	background-position: center;
	box-shadow: var(--shadow-blue);
}

.image-card--air {
	inset: 0 19% 28% 0;
	background-image:
		linear-gradient(180deg, rgba(6, 43, 99, 0.04), rgba(6, 43, 99, 0.2)),
		url("../images/primecargo/low-angle-freight-airplane.jpg");
}

.image-card--sea {
	inset: 34% 0 0 25%;
	background-image:
		linear-gradient(180deg, rgba(6, 43, 99, 0.04), rgba(6, 43, 99, 0.2)),
		url("../images/primecargo/container-ship.jpg");
}

.route-card {
	position: absolute;
	left: 30px;
	bottom: 36px;
	display: grid;
	grid-template-columns: auto 80px auto;
	gap: 12px;
	align-items: center;
	padding: 18px;
	border: 1px solid rgba(216, 229, 244, 0.92);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--brand-blue-dark);
	font-weight: 900;
	box-shadow: 0 22px 50px rgba(6, 43, 99, 0.14);
}

.route-card i {
	display: block;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
}

.metrics,
.calculator-band {
	padding: 104px 0;
	background:
		radial-gradient(circle at 12% 8%, rgba(216, 33, 52, 0.12), transparent 28rem),
		linear-gradient(180deg, #eef5fd, #f8fbff);
}

.metric-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 34px;
}

.metric-grid div {
	display: grid;
	align-content: end;
	min-height: 190px;
	padding: 26px;
	background: #fff;
}

.metric-grid strong {
	display: block;
	color: var(--brand-blue-dark);
	font-size: 50px;
	line-height: 1;
}

.metric-grid span {
	color: var(--muted);
	font-weight: 900;
}

.services,
.request {
	padding: 120px 0;
}

.section-heading {
	max-width: 780px;
	margin-bottom: 38px;
}

.cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.card {
	display: grid;
	align-content: end;
	min-height: 270px;
	padding: 28px;
	background: #fff;
}

.card:nth-child(2) {
	background: var(--brand-blue-dark);
	color: #fff;
}

.card h3 {
	margin: 0 0 12px;
	font-size: 28px;
	line-height: 1;
}

.card p,
.card li {
	margin: 0;
	color: var(--muted);
}

.card:nth-child(2) p {
	color: #dce8f5;
}

.calculator-grid {
	align-items: start;
	padding: 0;
}

.calculator-grid > .section-copy {
	position: sticky;
	top: 132px;
	padding: 34px;
	border: 1px solid rgba(216, 229, 244, 0.92);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: var(--shadow-blue);
}

.calculator {
	display: grid;
	gap: 20px;
	padding: 10px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(226, 239, 253, 0.74));
}

.calculator > * {
	margin-left: 18px;
	margin-right: 18px;
}

.calculator-head {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: center;
	margin: 0;
	padding: 24px;
	border-radius: 24px;
	background: #fff;
}

.calculator-head h3 {
	margin: 0;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1;
}

.calculator-reset {
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	color: var(--brand-blue-dark);
	font-weight: 900;
	cursor: pointer;
}

.calculator-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.calculator-tabs span {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 14px;
	border-radius: 999px;
	background: #fff;
	color: #516174;
	font-size: 13px;
	font-weight: 900;
	box-shadow: 0 10px 24px rgba(6, 43, 99, 0.06);
}

.calculator-tabs span:first-child {
	background: var(--brand-blue-dark);
	color: #fff;
}

.segmented {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.segmented label {
	display: block;
}

.segmented input {
	position: absolute;
	width: 1px;
	height: 1px;
	min-height: 1px;
	opacity: 0;
}

.segmented span {
	display: grid;
	min-height: 66px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: #fff;
	color: var(--brand-blue-dark);
	font-size: 20px;
	font-weight: 900;
}

.segmented input:checked + span {
	background: var(--brand-red);
	color: #fff;
	box-shadow: var(--shadow-red);
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.checks {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.checks label {
	display: flex;
	gap: 10px;
	align-items: center;
	min-height: 66px;
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: #fff;
	color: var(--ink);
}

.checks input,
.check-line input {
	width: auto;
	min-height: auto;
}

.quote {
	display: grid;
	gap: 0;
	margin-bottom: 18px;
	overflow: hidden;
	border-radius: 26px;
	background: var(--brand-blue-dark);
	color: #fff;
}

.quote div {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 15px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.quote span {
	color: #d7e5f4;
}

.quote__total {
	background: var(--brand-red);
	font-size: 24px;
	font-weight: 900;
}

.quote__total span,
.quote__total strong {
	color: #fff;
}

.quote-page {
	display: grid;
	gap: 28px;
}

.quote-page__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
	gap: 18px;
	align-items: stretch;
}

.quote-page__intro,
.quote-page__proof,
.quote-calculator__panel,
.quote-summary {
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(6, 43, 99, 0.08);
}

.quote-page__intro {
	display: grid;
	align-content: center;
	min-height: 360px;
	padding: clamp(28px, 4vw, 54px);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 253, 0.88)),
		radial-gradient(circle at 95% 10%, rgba(216, 33, 52, 0.14), transparent 24rem);
}

.quote-page__eyebrow {
	margin: 0 0 14px;
	color: var(--brand-red);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.quote-page__intro h1 {
	max-width: 840px;
	margin: 0;
	color: var(--brand-blue-dark);
	font-size: clamp(42px, 5.2vw, 76px);
	letter-spacing: -0.02em;
	line-height: .94;
}

.quote-page__intro p {
	max-width: 720px;
	margin: 18px 0 0;
	color: #42546f;
	font-size: 18px;
	line-height: 1.55;
}

.quote-page__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.quote-page__proof {
	position: relative;
	display: grid;
	align-content: end;
	gap: 10px;
	overflow: hidden;
	min-height: 360px;
	padding: 18px;
	background:
		linear-gradient(180deg, rgba(6, 43, 99, 0.08), rgba(6, 43, 99, 0.78)),
		url("../images/primecargo/service-air-freight.jpg") center / cover;
}

.quote-page__proof div {
	position: relative;
	display: grid;
	gap: 4px;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.92);
}

.quote-page__proof strong {
	color: var(--brand-blue-dark);
	font-size: 22px;
	line-height: 1;
}

.quote-page__proof span {
	color: #506079;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}

.quote-estimator {
	margin-bottom: 28px;
}

.quote-calculator {
	grid-template-columns: minmax(0, 1fr) minmax(330px, 0.42fr);
	gap: 18px;
	padding: 0;
	background: transparent;
}

.quote-calculator > * {
	margin: 0;
}

.quote-calculator__panel {
	display: grid;
	gap: 18px;
	padding: 20px;
}

.quote-calculator .calculator-head {
	padding: 0 0 4px;
	border-radius: 0;
	background: transparent;
}

.quote-calculator .calculator-head h2 {
	margin: 0;
	color: var(--brand-blue-dark);
	font-size: clamp(30px, 1.4vw, 40px);
	line-height: 1.05;
}

.quote-calculator .calculator-head > span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 999px;
	background: #f5f9ff;
	color: var(--brand-blue-dark);
	font-size: 13px;
	font-weight: 900;
}

.quote-route {
	align-items: center;
	padding: 12px;
	border: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 12px;
	background: #f8fbff;
}

.quote-route > span {
	min-height: auto;
	color: var(--brand-blue);
	font-size: 24px;
}

.quote-calculator .segmented span {
	min-height: 54px;
	border-radius: 10px;
	font-size: 15px;
}

.quote-calculator .segmented input:checked + span {
	background: var(--brand-blue);
	box-shadow: 0 12px 28px rgba(0, 82, 204, 0.18);
}

.quote-form-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-form-grid label {
	display: grid;
	gap: 8px;
	color: #4d5f78;
	font-size: 13px;
	font-weight: 850;
}

.quote-form-grid input,
.quote-route select {
	width: 100%;
	min-height: 46px;
	border: 1px solid rgba(11, 78, 162, 0.16);
	border-radius: 8px;
	background: #fff;
	color: var(--brand-blue-dark);
	font: inherit;
	font-weight: 800;
}

.quote-checks label {
	min-height: 54px;
	border-radius: 10px;
	color: #273d61;
	font-size: 13px;
	font-weight: 850;
}

.quote-checks input {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	min-height: 18px;
	accent-color: var(--brand-blue);
}

.quote-checks__dgr {
	border-color: rgba(216, 33, 52, 0.28) !important;
	background: #fff7f7 !important;
}

.quote-summary {
	position: sticky;
	top: 112px;
	display: grid;
	gap: 14px;
	align-self: start;
	padding: 18px;
}

.quote-summary__head {
	display: grid;
	gap: 6px;
}

.quote-summary__head h2 {
	margin: 0;
	color: var(--brand-blue);
	font-size: clamp(30px, 2.4vw, 44px);
	line-height: 1;
}

.quote-summary__head > span {
	color: #53657c;
	font-size: 13px;
	font-weight: 850;
}

.quote-summary .quote {
	margin: 0;
	border-radius: 12px;
	background: #062b63;
}

.quote-summary .quote div {
	padding: 12px 14px;
}

.quote-summary__notice {
	display: grid;
	gap: 6px;
	padding: 12px;
	border: 1px solid rgba(216, 33, 52, 0.2);
	border-radius: 10px;
	background: #fff7f7;
	color: #5f2530;
	font-size: 13px;
	line-height: 1.45;
}

.quote-summary__notice strong {
	color: #9f1625;
}

.quote-summary .button {
	width: 100%;
	justify-content: center;
}

.staff-login-page {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: stretch;
	min-height: min(680px, calc(100dvh - 180px));
}

.staff-login-card {
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(6, 43, 99, 0.08);
}

.staff-login-card {
	display: grid;
	align-content: center;
	gap: 26px;
	padding: clamp(26px, 4vw, 54px);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 245, 255, 0.9)),
		radial-gradient(circle at 100% 0, rgba(216, 33, 52, 0.12), transparent 22rem);
}

.staff-login-card__intro h1 {
	max-width: 720px;
	margin: 0;
	color: var(--brand-blue-dark);
	font-size: clamp(38px, 4.8vw, 68px);
	line-height: .96;
}

.staff-login-card__intro p:last-child {
	max-width: 620px;
	margin: 14px 0 0;
	color: #506177;
	font-size: 16px;
	line-height: 1.55;
}

.staff-login-form {
	display: grid;
	max-width: 460px;
	gap: 14px;
}

.staff-login-form label {
	display: grid;
	gap: 7px;
	color: #415276;
	font-size: 13px;
	font-weight: 900;
}

.staff-login-form input {
	width: 100%;
	min-height: 48px;
	border: 1px solid rgba(11, 78, 162, 0.16);
	border-radius: 8px;
	background: #fff;
	color: var(--brand-blue-dark);
	font: inherit;
	font-weight: 850;
}

.staff-login-form .button {
	width: fit-content;
	min-height: 46px;
	border-radius: 8px;
}

.account-band {
	grid-template-columns: 1fr auto;
	padding: 42px;
	border: 1px solid rgba(216, 229, 244, 0.92);
	border-radius: 36px;
	background: #fff;
	box-shadow: var(--shadow-blue);
}

.request-form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	padding: 28px;
	background: #fff;
}

.request-form label:nth-child(4) {
	grid-column: 1 / -1;
}

.request-form button {
	justify-self: start;
}

.trustpilot {
	border-top: 1px solid rgba(216, 229, 244, 0.84);
}

.trust-card {
	display: grid;
	gap: 8px;
	padding: 34px;
	background: #fff;
	color: var(--ink);
	transition: transform 520ms var(--ease), box-shadow 520ms var(--ease);
}

.trust-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 34px 94px rgba(6, 43, 99, 0.18);
}

.trust-card span {
	color: var(--muted);
	font-weight: 900;
}

.trust-card strong {
	color: var(--brand-blue-dark);
	font-size: 30px;
	line-height: 1;
}

.trust-card small {
	color: var(--brand-red);
	font-weight: 900;
}

.page-hero {
	padding: 96px 0 128px;
	background:
		radial-gradient(circle at 76% 14%, rgba(216, 33, 52, 0.13), transparent 26rem),
		linear-gradient(180deg, #f7fbff, #eef5fd);
}

.page-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.55fr);
	gap: 40px;
	align-items: center;
}

.page-hero h1 {
	font-size: clamp(52px, 8vw, 108px);
}

.page-hero__visual {
	min-height: 310px;
	border: 10px solid #fff;
	border-radius: 34px;
	background:
		linear-gradient(180deg, rgba(6, 43, 99, 0.04), rgba(6, 43, 99, 0.22)),
		url("../images/primecargo/shipping-cargos.jpg") center/cover;
	box-shadow: var(--shadow-blue);
}

.page-content {
	padding: 0 0 112px;
}

.page-content--designed {
	margin-top: -70px;
	position: relative;
	z-index: 3;
}

.page-content--no-hero {
	margin-top: 48px;
}

.page-content--service {
	width: min(1120px, calc(100% - 40px));
	margin-top: 58px;
}

.notice {
	padding: 14px 16px;
	border-radius: 18px;
	font-weight: 900;
}

.notice--success,
.status-pill {
	background: #e9f8f1;
	color: #0d7147;
}

.notice--error {
	background: #fff0f0;
	color: #a82929;
}

.content-card,
.portal-shell {
	padding: 34px;
	background: #fff;
}

.content-card {
	display: grid;
	grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
	gap: 34px;
}

.content-card__header {
	position: sticky;
	top: 132px;
	align-self: start;
	padding: 26px;
	border-radius: 24px;
	background: #eef5fd;
}

.content-card__header h2 {
	font-size: clamp(32px, 4vw, 58px);
}

.content-flow {
	display: grid;
	gap: 12px;
}

.content-flow p {
	margin: 0;
	padding: 20px 22px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: #fff;
}

.content-flow p:first-child {
	color: var(--brand-blue-dark);
	font-size: 21px;
	font-weight: 900;
}

.faq-page {
	display: grid;
	gap: 26px;
}

.faq-hero,
.faq-cta {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.42fr);
	gap: 32px;
	align-items: end;
	overflow: hidden;
	padding: 42px;
	border: 1px solid rgba(11, 78, 162, 0.16);
	border-radius: 34px;
	background:
		linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 54%, rgba(6, 43, 99, 0.36) 100%),
		url("../images/primecargo/service-shop-ship.jpg") right center/cover;
	box-shadow: var(--shadow-blue);
}

.faq-hero h1,
.faq-cta h2,
.faq-section__heading h2 {
	margin: 0;
	color: var(--ink);
	font-family: "Clash Display", "Plus Jakarta Sans", "Geist", sans-serif;
	letter-spacing: 0;
	line-height: 1;
}

.faq-hero h1 {
	max-width: 820px;
	font-size: clamp(42px, 5.8vw, 78px);
}

.faq-hero p,
.faq-cta p {
	max-width: 760px;
	color: #4c5b70;
	font-size: 18px;
}

.faq-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.faq-proof {
	display: grid;
	gap: 12px;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.64);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 22px 54px rgba(6, 43, 99, 0.14);
	backdrop-filter: blur(16px);
}

.faq-proof div {
	display: grid;
	gap: 4px;
	padding: 18px;
	border-radius: 20px;
	background: #f7fbff;
}

.faq-proof strong {
	color: var(--brand-blue-dark);
	font-size: 24px;
	line-height: 1;
}

.faq-proof span {
	color: #627187;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.faq-objections {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.faq-objections div {
	display: grid;
	align-content: start;
	gap: 10px;
	min-height: 190px;
	padding: 26px;
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(6, 43, 99, 0.08);
}

.faq-objections div:nth-child(2) {
	background: var(--brand-blue-dark);
	color: #fff;
}

.faq-objections span {
	width: fit-content;
	padding: 6px 10px;
	border-radius: 999px;
	background: #fff2f4;
	color: var(--brand-red);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.faq-objections div:nth-child(2) span {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.faq-objections strong {
	color: var(--brand-blue-dark);
	font-size: 24px;
	line-height: 1.08;
}

.faq-objections div:nth-child(2) strong {
	color: #fff;
}

.faq-objections p {
	margin: 0;
	color: #627187;
}

.faq-objections div:nth-child(2) p {
	color: #d7e5f4;
}

.faq-sections {
	display: grid;
	gap: 18px;
}

.faq-section {
	display: grid;
	grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
	gap: 28px;
	padding: 30px;
	border: 1px solid rgba(216, 229, 244, 0.92);
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: var(--shadow-blue);
}

.faq-section__heading {
	position: sticky;
	top: 132px;
	align-self: start;
}

.faq-section__heading h2 {
	font-size: clamp(28px, 3.2vw, 46px);
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-item {
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(6, 43, 99, 0.06);
}

.faq-item summary {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 34px;
	gap: 18px;
	align-items: center;
	min-height: 76px;
	padding: 18px 20px 18px 24px;
	color: var(--brand-blue-dark);
	font-size: 18px;
	font-weight: 950;
	cursor: pointer;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary i {
	position: relative;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: #eef5fd;
}

.faq-item summary i::before,
.faq-item summary i::after {
	position: absolute;
	width: 14px;
	height: 2px;
	border-radius: 99px;
	background: var(--brand-red);
	content: "";
}

.faq-item summary i::after {
	transform: rotate(90deg);
	transition: transform 220ms var(--ease);
}

.faq-item[open] summary i::after {
	transform: rotate(0deg);
}

.faq-item > div {
	display: grid;
	gap: 12px;
	padding: 0 24px 24px;
}

.faq-item p {
	margin: 0;
	color: #526177;
	font-size: 16px;
}

.faq-cta {
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	background:
		radial-gradient(circle at 86% 14%, rgba(216, 33, 52, 0.12), transparent 22rem),
		linear-gradient(135deg, #ffffff, #eef5fd);
}

.faq-cta h2 {
	max-width: 780px;
	font-size: clamp(32px, 4vw, 56px);
}

.portal-grid,
.staff-card,
.shipment-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.portal-card {
	display: grid;
	gap: 14px;
	padding: 24px;
	background: #fff;
}

.portal-header {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: center;
	margin-bottom: 26px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: #eef5fd;
}

.request-form--wide,
.tracking-lookup {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 32px;
}

.full-row,
.tracking-lookup h2 {
	grid-column: 1 / -1;
}

.check-line {
	display: flex;
	gap: 10px;
	align-items: center;
}

.table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 18px 52px rgba(6, 43, 99, 0.08);
}

table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
}

th,
td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--line);
	text-align: left;
	vertical-align: top;
}

th {
	background: #eef5fd;
	color: var(--brand-blue-dark);
}

.cargo-app {
	display: grid;
	grid-template-columns: 306px minmax(0, 1fr);
	min-height: 760px;
	overflow: hidden;
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 34px;
	background:
		linear-gradient(90deg, #ffffff 0 306px, rgba(247, 251, 255, 0.92) 306px),
		#fff;
	box-shadow: 0 34px 90px rgba(6, 43, 99, 0.14);
}

.cargo-sidebar {
	display: grid;
	align-content: start;
	gap: 24px;
	padding: 28px 18px;
	border-right: 1px solid rgba(11, 78, 162, 0.16);
	background: rgba(255, 255, 255, 0.92);
}

.cargo-sidebar__brand {
	display: inline-flex;
	width: 176px;
	height: 82px;
	align-items: center;
}

.cargo-sidebar__brand img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.cargo-menu {
	display: grid;
	gap: 8px;
	color: #04355f;
	font-size: 17px;
	font-weight: 800;
}

.cargo-menu a,
.cargo-menu button,
.cargo-logout button {
	display: flex;
	width: 100%;
	min-height: 54px;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	border: 0;
	border-radius: 4px;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: background 360ms var(--ease), color 360ms var(--ease), transform 360ms var(--ease);
}

.cargo-menu a {
	justify-content: flex-start;
}

.cargo-menu a:hover,
.cargo-menu button:hover,
.cargo-menu .is-active {
	background: #dff0ff;
	color: var(--brand-blue-dark);
	transform: translateX(2px);
}

.cargo-menu__group {
	display: grid;
	gap: 2px;
}

.cargo-menu__group a {
	padding-left: 30px;
}

.cargo-support-card {
	display: grid;
	gap: 10px;
	margin-top: 10px;
	padding: 18px;
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 8px;
	background: #f7fbff;
}

.cargo-support-card strong {
	color: #062b63;
	font-size: 16px;
}

.cargo-support-card p {
	margin: 0;
	color: #5f6f86;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
}

.cargo-support-card .button {
	min-height: 42px;
	justify-content: center;
	padding: 0 14px;
	font-size: 13px;
}

.cargo-logout {
	margin-top: 18px;
}

.cargo-logout button {
	background: #fff2f4;
	color: var(--brand-red);
	justify-content: center;
}

.cargo-workspace {
	min-width: 0;
	padding: 34px 36px 48px;
}

.cargo-topbar {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
}

.cargo-topbar h2,
.cargo-panel__intro h2 {
	margin: 0;
	color: #062b63;
	font-size: clamp(30px, 2.7vw, 46px);
	line-height: 1.02;
}

.cargo-topbar p,
.cargo-panel__intro p,
.cargo-step p {
	margin: 8px 0 0;
	color: #415276;
	font-weight: 700;
}

.cargo-topbar__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

.cargo-topbar__stats span,
.rate-cards div {
	display: grid;
	min-width: 160px;
	gap: 4px;
	padding: 16px 18px;
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(6, 43, 99, 0.08);
}

.cargo-topbar__stats strong,
.rate-cards strong {
	color: #062b63;
	font-size: 22px;
}

.cargo-panels {
	position: relative;
}

.cargo-panel {
	display: none;
}

.cargo-panel.is-active {
	display: grid;
	gap: 22px;
	animation: cargoFadeUp 520ms var(--ease) both;
}

@keyframes cargoFadeUp {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cargo-panel__intro {
	display: flex;
	gap: 22px;
	align-items: end;
	justify-content: space-between;
}

.cargo-panel__intro h2 {
	max-width: 760px;
	font-size: clamp(30px, 2.4vw, 40px);
}

.cargo-progress {
	display: flex;
	gap: 8px;
	align-items: center;
}

.cargo-progress span {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: #d7e0ea;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
}

.cargo-progress .is-done {
	background: var(--brand-blue);
}

.cargo-progress .is-current {
	background: var(--brand-red);
}

.cargo-flow {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	padding: 0;
	background: transparent;
}

.cargo-step {
	display: grid;
	gap: 16px;
	padding: 26px;
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 26px;
	background: #fff;
	box-shadow: 0 20px 58px rgba(6, 43, 99, 0.08);
}

.cargo-step h3 {
	margin: 0;
	color: #062b63;
	font-size: clamp(24px, 1.8vw, 32px);
	line-height: 1.05;
}

.cargo-step--notice {
	border-left: 5px solid var(--brand-blue);
}

.cargo-step--notice ol {
	display: grid;
	gap: 10px;
	margin: 0;
	padding-left: 22px;
	color: #04355f;
	font-weight: 700;
}

.cargo-check,
.radio-stack label {
	display: flex;
	gap: 12px;
	align-items: center;
	color: #062b63;
	font-weight: 900;
}

.cargo-check input,
.radio-stack input,
.currency-card input,
.warehouse-card input,
.method-card input {
	width: auto;
	min-height: auto;
}

.currency-card,
.warehouse-card,
.method-card {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 2px 18px;
	align-items: center;
	min-height: 96px;
	padding: 20px 24px;
	border: 1px solid rgba(11, 78, 162, 0.16);
	border-radius: 18px;
	background: #fff;
	color: #062b63;
	cursor: pointer;
	transition: border-color 420ms var(--ease), box-shadow 420ms var(--ease), transform 420ms var(--ease);
}

.currency-card:hover,
.warehouse-card:hover,
.method-card:hover,
.warehouse-card.is-selected,
.method-card.is-selected,
.currency-card:has(input:checked) {
	border-color: var(--brand-blue);
	box-shadow: 0 18px 44px rgba(6, 43, 99, 0.12);
	transform: translateY(-2px);
}

.currency-card span,
.method-card span,
.pin {
	grid-row: 1 / span 2;
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	border: 4px solid var(--brand-blue-dark);
	border-radius: 50%;
	color: var(--brand-blue-dark);
	font-weight: 900;
}

.method-card span {
	border: 0;
	font-size: 46px;
}

.pin {
	border-radius: 50% 50% 50% 8px;
	background: var(--brand-blue-dark);
	color: #fff;
	font-size: 14px;
}

.warehouse-card small,
.method-card small {
	color: #5f6f86;
	font-weight: 700;
}

.method-cards,
.radio-stack,
.rate-cards,
.prohibited-grid {
	display: grid;
	gap: 14px;
}

.dashboard-form-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.dashboard-form-grid .wide {
	grid-column: span 2;
}

.dashboard-form-grid label {
	display: grid;
	gap: 8px;
	color: #062b63;
	font-weight: 900;
}

.dashboard-form-grid input,
.dashboard-form-grid select,
.dashboard-form-grid textarea {
	min-height: 58px;
	border: 1px solid rgba(11, 78, 162, 0.2);
	border-radius: 14px;
	background: #f8fbff;
	color: var(--ink);
	font-size: 16px;
}

.cargo-options {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.cargo-options .cargo-check,
.order-flags .cargo-check {
	display: inline-flex;
	width: auto;
	min-height: 42px;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border: 1px solid rgba(11, 78, 162, 0.16);
	border-radius: 8px;
	background: #fff;
	color: #213d64;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.3;
}

.cargo-options .cargo-check input,
.order-flags .cargo-check input {
	flex: 0 0 auto;
	width: 18px;
	min-width: 18px;
	height: 18px;
	min-height: 18px;
	margin: 0;
	padding: 0;
	border-radius: 4px;
	accent-color: var(--brand-blue);
}

.cargo-options .cargo-check--dgr,
.order-flags .cargo-check--dgr {
	border-color: rgba(216, 33, 52, 0.24);
	background: #fff8f4;
	color: #4c1f27;
}

.cargo-options .cargo-check--dgr input,
.order-flags .cargo-check--dgr input {
	accent-color: var(--brand-red);
}

.shipment-list {
	display: grid;
	gap: 16px;
}

.shipment-row {
	display: grid;
	grid-template-columns: minmax(210px, 1fr) minmax(220px, 1.1fr) minmax(140px, 0.8fr) minmax(150px, 0.7fr) auto;
	gap: 18px;
	align-items: center;
	padding: 20px 22px;
	border: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(6, 43, 99, 0.08);
}

.shipment-row__main strong,
.shipment-row__cost strong,
.empty-state strong {
	color: #062b63;
	font-size: 18px;
}

.shipment-row small {
	display: block;
	margin-top: 4px;
	color: #5f6f86;
	font-weight: 750;
}

.shipment-row__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.shipment-row__badge {
	display: inline-flex;
	min-height: 28px;
	align-items: center;
	border: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 999px;
	padding: 0 10px;
	background: #f4f8fd;
	color: #213d64;
	font-size: 12px;
	font-weight: 900;
}

.shipment-row__badge--dgr {
	border-color: rgba(209, 0, 32, 0.22);
	background: #fff1f3;
	color: var(--brand-red);
}

.shipment-row__badge--edit {
	border-color: rgba(11, 78, 162, 0.24);
	background: #eef5fd;
	color: var(--brand-blue);
}

.shipment-row__progress {
	display: block;
	height: 8px;
	overflow: hidden;
	border-radius: 999px;
	background: #d7e0ea;
}

.shipment-row__progress i {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
}

.shipment-row__cost {
	text-align: right;
}

.shipment-row em {
	color: var(--brand-blue-dark);
	font-style: normal;
	font-size: 30px;
}

.empty-state {
	display: grid;
	gap: 8px;
	padding: 34px;
	border: 1px dashed rgba(11, 78, 162, 0.24);
	border-radius: 24px;
	background: #fff;
}

.prohibited-grid,
.rate-cards {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.prohibited-grid span {
	padding: 18px;
	border-radius: 18px;
	background: #fff2f4;
	color: var(--brand-red);
	font-weight: 900;
}

.tracking-lookup {
	align-items: end;
}

.status-pill {
	display: inline-flex;
	width: fit-content;
	padding: 8px 12px;
	border-radius: 999px;
	font-weight: 900;
}

.shipment-meta {
	margin: 24px 0;
}

.shipment-meta div {
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: #f7fbff;
}

.shipment-meta dt {
	color: var(--muted);
	font-weight: 900;
}

.shipment-meta dd {
	margin: 4px 0 0;
}

.timeline {
	display: grid;
	gap: 12px;
	padding: 0;
	list-style: none;
	counter-reset: timeline;
}

.timeline li {
	position: relative;
	padding: 18px 18px 18px 58px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: #fff;
}

.timeline li::before {
	position: absolute;
	left: 18px;
	top: 18px;
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border-radius: 50%;
	background: var(--brand-red);
	color: #fff;
	font-weight: 900;
	counter-increment: timeline;
	content: counter(timeline);
}

.timeline span {
	display: block;
	color: var(--muted);
	font-size: 14px;
}

.about-profile,
.service-dtc,
.service-editorial,
.service-process,
.staff-list {
	display: grid;
	gap: 24px;
}

.service-editorial {
	grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
	gap: 54px;
	align-items: start;
	padding: 34px 0 96px;
}

.service-editorial__media {
	position: sticky;
	top: 24px;
	min-height: 560px;
	margin: 0;
}

.service-editorial__media::before,
.service-editorial__media::after {
	position: absolute;
	z-index: 0;
	content: "";
}

.service-editorial__media::before {
	left: -26px;
	top: 56px;
	width: 52%;
	height: 74%;
	background: #eef5fd;
}

.service-editorial__media::after {
	right: -18px;
	top: 0;
	width: 78px;
	height: 78px;
	background: #fff;
	clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.service-editorial__media img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 520px;
	object-fit: cover;
	border-radius: 8px;
	clip-path: polygon(0 0, calc(100% - 62px) 0, 100% 62px, 100% 100%, 0 100%);
	box-shadow: 0 24px 58px rgba(6, 43, 99, 0.12);
}

.service-editorial__copy {
	max-width: 680px;
	padding-top: 18px;
}

.service-editorial__kicker {
	margin: 0 0 12px;
	color: var(--brand-blue);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
}

.service-editorial h1 {
	margin: 0 0 18px;
	color: var(--brand-red);
	font-size: clamp(38px, 4vw, 54px);
	line-height: 0.98;
	letter-spacing: 0;
}

.service-editorial ul {
	margin: 0 0 30px;
	padding-left: 18px;
	color: #4d5e75;
	font-size: 15px;
	line-height: 1.75;
}

.service-editorial li::marker {
	color: var(--brand-blue);
}

.service-editorial p {
	margin: 0 0 22px;
	color: #4d5e75;
	font-size: 16px;
	line-height: 1.82;
}

.service-editorial h2 {
	margin: 30px 0 8px;
	color: var(--brand-blue-dark);
	font-size: 18px;
	line-height: 1.2;
}

.service-editorial__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.about-profile__intro {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
	gap: 34px;
	align-items: end;
	padding: 38px;
	background: #fff;
}

.about-profile__intro h2 {
	font-size: clamp(46px, 6vw, 84px);
}

.about-profile__tag {
	margin: 0;
	padding: 24px;
	border-radius: 26px;
	background: #eef5fd;
	color: var(--brand-blue-dark);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.2;
}

.about-profile__story {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.about-profile__story p {
	margin: 0;
	min-height: 260px;
	padding: 28px;
	background: #fff;
	color: var(--muted);
	font-size: 18px;
}

.about-profile__story p:first-child,
.service-dtc__features article:nth-child(2n),
.service-step:nth-child(4n + 2) .service-step__content,
.service-step:nth-child(4n + 3) .service-step__content {
	background: var(--brand-blue-dark);
	color: #fff;
}

.about-profile__media {
	display: grid;
	grid-template-columns: 1.1fr 0.75fr 0.95fr 0.7fr;
	gap: 16px;
	min-height: 280px;
}

.about-profile__media div {
	border: 8px solid #fff;
	border-radius: 30px;
	background-size: cover;
	background-position: center;
	box-shadow: var(--shadow-blue);
}

.about-profile__media div:nth-child(1) {
	background-image: url("../images/primecargo/shipping-cargos.jpg");
}

.about-profile__media div:nth-child(2) {
	background-image: url("../images/primecargo/shopping-online-cart-laptop.jpg");
}

.about-profile__media div:nth-child(3) {
	background-image: url("../images/primecargo/low-angle-freight-airplane.jpg");
}

.about-profile__media div:nth-child(4) {
	background-image: url("../images/primecargo/container-ship.jpg");
}

.about-profile__cta,
.service-process__cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px 28px;
	align-items: center;
	padding: 38px;
	background: var(--brand-red);
	color: #fff;
}

.about-profile__cta h2,
.service-process__cta h2 {
	color: #fff;
	font-size: clamp(30px, 4vw, 56px);
}

.about-profile__cta p {
	margin: 0;
	color: #fff;
	font-size: 20px;
	font-weight: 900;
}

.service-dtc__hero,
.service-process__intro {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
	gap: 34px;
	align-items: center;
	padding: 38px;
	background: #fff;
}

.service-dtc__copy h2,
.service-process__intro h2 {
	font-size: clamp(46px, 6vw, 86px);
}

.service-dtc__copy p:not(.eyebrow) {
	max-width: 650px;
	color: var(--muted);
	font-size: 21px;
}

.service-dtc__media {
	position: relative;
	min-height: 440px;
}

.service-dtc__photo,
.service-process__image {
	position: absolute;
	inset: 0 0 52px 42px;
	border: 8px solid #fff;
	border-radius: 34px;
	background:
		linear-gradient(180deg, rgba(6, 43, 99, 0.04), rgba(6, 43, 99, 0.2)),
		url("../images/primecargo/shipping-cargos.jpg") center/cover;
	box-shadow: var(--shadow-blue);
}

.service-dtc--air-freight .service-dtc__photo,
.service-process--air-freight .service-process__image {
	background-image:
		linear-gradient(180deg, rgba(6, 43, 99, 0.04), rgba(6, 43, 99, 0.2)),
		url("../images/primecargo/low-angle-freight-airplane.jpg");
}

.service-dtc--sea-freight .service-dtc__photo,
.service-process--sea-freight .service-process__image {
	background-image:
		linear-gradient(180deg, rgba(6, 43, 99, 0.04), rgba(6, 43, 99, 0.2)),
		url("../images/primecargo/container-ship.jpg");
}

.service-dtc--shop-ship .service-dtc__photo,
.service-process--shop-ship .service-process__image {
	background-image:
		linear-gradient(180deg, rgba(6, 43, 99, 0.04), rgba(6, 43, 99, 0.2)),
		url("../images/primecargo/shopping-online-cart-laptop.jpg");
}

.service-dtc__badge {
	position: absolute;
	left: 0;
	bottom: 0;
	display: grid;
	gap: 4px;
	width: min(360px, 88%);
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--shadow-blue);
}

.service-dtc__badge strong {
	color: var(--brand-blue-dark);
	font-size: 28px;
	line-height: 1;
}

.service-dtc__badge span {
	color: var(--brand-red);
	font-weight: 900;
}

.service-dtc__stats,
.service-dtc__features,
.service-dtc__links,
.service-options,
.service-feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	padding: 18px;
	background: #eef5fd;
}

.service-dtc__stats div,
.service-dtc__features article,
.service-dtc__detail-list p,
.service-dtc__links a,
.service-options a,
.service-feature-grid a,
.service-step__content {
	border: 1px solid var(--line);
	border-radius: 26px;
	background: #fff;
	box-shadow: 0 16px 44px rgba(6, 43, 99, 0.07);
}

.service-dtc__stats div {
	display: grid;
	gap: 18px;
	min-height: 180px;
	padding: 22px;
}

.service-dtc__stats span,
.service-dtc__steps span,
.service-options span,
.service-step__number {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border-radius: 50%;
	background: var(--brand-red);
	color: #fff;
	font-weight: 900;
}

.service-dtc__stats strong {
	color: var(--brand-blue-dark);
	font-size: 19px;
	line-height: 1.15;
}

.service-dtc__split,
.service-dtc__details {
	display: grid;
	grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
	gap: 20px;
}

.service-dtc__panel {
	display: grid;
	align-content: end;
	min-height: 390px;
	padding: 34px;
	border-radius: 34px;
	background:
		linear-gradient(180deg, rgba(6, 43, 99, 0.24), rgba(6, 43, 99, 0.9)),
		url("../images/primecargo/plane-sq.webp") center/cover;
	color: #fff;
	box-shadow: var(--shadow-blue);
}

.service-dtc__panel h2 {
	color: #fff;
}

.service-dtc__steps {
	display: grid;
	gap: 14px;
	padding: 18px;
	background: #fff;
}

.service-dtc__steps div {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: #eef5fd;
}

.service-dtc__steps p {
	margin: 0;
	color: var(--brand-blue-dark);
	font-size: 21px;
	font-weight: 900;
	line-height: 1.15;
}

.service-dtc__features {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	background: transparent;
	padding: 0;
}

.service-dtc__features article {
	display: grid;
	min-height: 220px;
	align-items: end;
	padding: 26px;
}

.service-dtc__features h3 {
	margin: 0;
	font-size: clamp(22px, 3vw, 34px);
	line-height: 1.08;
}

.service-dtc__details {
	padding: 30px;
	background: #eef5fd;
}

.service-dtc__details h2 {
	font-size: clamp(34px, 4vw, 58px);
}

.service-dtc__detail-list {
	display: grid;
	gap: 12px;
}

.service-dtc__detail-list p {
	margin: 0;
	padding: 18px 20px;
	color: var(--muted);
	font-size: 18px;
}

.service-dtc__links a,
.service-options a,
.service-feature-grid a {
	display: grid;
	min-height: 92px;
	place-items: center;
	padding: 16px;
	color: var(--brand-blue-dark);
	font-weight: 900;
	text-align: center;
}

.service-process__image {
	position: static;
	min-height: 300px;
}

.service-options,
.service-feature-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border: 1px solid var(--line);
	border-radius: 34px;
}

.service-options a {
	place-items: start;
	min-height: 150px;
}

.service-steps {
	display: grid;
	gap: 18px;
}

.service-step {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 18px;
	align-items: stretch;
}

.service-step:nth-child(even) {
	grid-template-columns: minmax(0, 1fr) 74px;
}

.service-step:nth-child(even) .service-step__number {
	grid-column: 2;
	grid-row: 1;
}

.service-step:nth-child(even) .service-step__content {
	grid-column: 1;
	grid-row: 1;
}

.service-step__number {
	width: 58px;
	height: 58px;
	align-self: start;
	font-size: 22px;
}

.service-step__content {
	display: grid;
	min-height: 140px;
	align-items: center;
	padding: 30px;
}

.service-step__content h3 {
	margin: 0;
	font-size: clamp(22px, 3vw, 36px);
	line-height: 1.08;
}

.site-footer {
	background:
		linear-gradient(180deg, rgba(6, 43, 99, 0.95), rgba(4, 26, 61, 0.98)),
		url("../images/primecargo/bg-footer.jpg") center/cover;
	color: #dbe7f7;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.75fr 0.75fr 1fr;
	gap: 32px;
	padding: 74px 0 38px;
}

.footer-brand img {
	width: 150px;
	padding: 8px;
	border-radius: 22px;
	background: #fff;
}

.site-footer h2 {
	color: #fff;
	font-size: 18px;
}

.site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer li + li {
	margin-top: 8px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	color: #aebdd2;
}

.whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 60;
	display: grid;
	justify-items: end;
	gap: 12px;
	max-width: min(340px, calc(100vw - 32px));
}

.whatsapp-float__button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 58px;
	padding: 9px 18px 9px 9px;
	border: 0;
	border-radius: 999px;
	background: #21bf63;
	color: #fff;
	box-shadow: 0 20px 46px rgba(3, 22, 32, 0.22), 0 0 0 7px rgba(33, 191, 99, 0.12);
	font: 900 14px/1 var(--font-display);
	letter-spacing: 0;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float__button:hover,
.whatsapp-float__button:focus-visible {
	background: #17ad56;
	box-shadow: 0 22px 52px rgba(3, 22, 32, 0.28), 0 0 0 8px rgba(33, 191, 99, 0.18);
	transform: translateY(-2px);
}

.whatsapp-float__icon {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
}

.whatsapp-float__icon svg {
	width: 27px;
	height: 27px;
	fill: currentColor;
}

.whatsapp-float__panel {
	display: grid;
	width: 306px;
	max-width: 100%;
	gap: 10px;
	padding: 16px;
	border: 1px solid rgba(177, 210, 190, 0.92);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 24px 70px rgba(9, 30, 54, 0.2);
	color: #10213a;
}

.whatsapp-float__panel[hidden] {
	display: none;
}

.whatsapp-float__panel strong {
	font: 900 17px/1.15 var(--font-display);
}

.whatsapp-float__panel > span {
	color: #5d6b7e;
	font-size: 13px;
}

.whatsapp-float__panel a {
	display: grid;
	gap: 3px;
	padding: 12px 14px;
	border: 1px solid rgba(200, 219, 238, 0.9);
	border-radius: 14px;
	background: #f7fbff;
	color: #10213a;
	text-decoration: none;
	transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.whatsapp-float__panel a:hover,
.whatsapp-float__panel a:focus-visible {
	border-color: rgba(33, 191, 99, 0.55);
	background: #eefbf4;
	transform: translateX(-2px);
}

.whatsapp-float__panel b {
	font: 900 14px/1.15 var(--font-display);
}

.whatsapp-float__panel small {
	color: #526177;
	font-size: 13px;
}

@media (max-width: 620px) {
	.whatsapp-float {
		right: 14px;
		bottom: 16px;
		max-width: calc(100vw - 28px);
	}

	.whatsapp-float__button {
		min-height: 54px;
		padding-right: 15px;
	}

	.whatsapp-float__icon {
		width: 38px;
		height: 38px;
	}
}

.reveal {
	opacity: 0;
	transform: translateY(42px);
	animation: revealUp 900ms var(--ease) forwards;
}

.reveal:nth-child(2) {
	animation-delay: 100ms;
}

.reveal:nth-child(3) {
	animation-delay: 170ms;
}

.reveal:nth-child(4) {
	animation-delay: 240ms;
}

@keyframes revealUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media (max-width: 980px) {
	.top-strip__inner {
		justify-content: flex-start;
		overflow-x: auto;
		white-space: nowrap;
	}

	.nav-toggle {
		display: block;
	}

	.nav-links {
		position: fixed;
		left: 14px;
		right: 14px;
		top: 104px;
		display: grid;
		width: calc(100vw - 28px);
		max-height: calc(100dvh - 118px);
		gap: 10px;
		padding: 14px;
		overflow-y: auto;
		border: 1px solid rgba(11, 78, 162, 0.18);
		border-radius: 24px;
		background: rgba(255, 255, 255, 0.98);
		box-shadow: 0 28px 76px rgba(6, 43, 99, 0.22);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px);
		transition: opacity 520ms var(--ease), transform 520ms var(--ease);
	}

	.nav-links.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.nav-links a {
		justify-content: space-between;
		width: 100%;
		min-height: 50px;
		padding: 0 16px;
		border-radius: 16px;
		background: #f7fbff;
		font-size: 16px;
		white-space: normal;
	}

	.nav-service {
		width: 100%;
	}

	.nav-service__trigger::after {
		margin-left: auto;
		content: "+";
		font-size: 20px;
		line-height: 1;
	}

	.nav-service.is-open .nav-service__trigger::after {
		content: "-";
	}

	.nav-service .mega-menu {
		display: none;
	}

	.nav-service.is-open .mega-menu {
		display: grid;
	}

	.mega-menu {
		position: static;
		width: 100%;
		margin-top: 10px;
		padding: 12px;
		grid-template-columns: 1fr;
		gap: 10px;
		border-radius: 20px;
		background: #eef5fd;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.mega-menu h2 {
		display: none;
	}

	.mega-menu__grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.mega-item,
	.mega-menu .mega-menu__cta {
		width: 100%;
		min-height: 48px;
		padding: 12px 14px;
		clip-path: none;
		border-radius: 14px;
	}

	.mega-item strong,
	.mega-menu .mega-menu__cta strong {
		font-size: 15px;
		line-height: 1.2;
	}

	.mega-menu .mega-menu__cta {
		margin-top: 8px;
		padding-right: 58px;
	}

	.hero__grid,
	.solutions,
	.calculator-grid,
	.trustpilot,
	.page-hero__grid,
	.content-card,
	.about-profile__intro,
	.service-dtc__hero,
	.service-dtc__split,
	.service-dtc__details,
	.service-process__intro {
		grid-template-columns: 1fr;
	}

	.hero__visual {
		min-height: 560px;
	}

	.service-strip,
	.metric-grid,
	.cards,
	.footer-grid,
	.about-profile__story,
	.service-dtc__stats,
	.service-dtc__features,
	.service-dtc__links,
	.service-options,
	.service-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-tile--large {
		grid-row: auto;
		min-height: 300px;
	}

	.calculator-grid > .section-copy,
	.content-card__header {
		position: static;
	}

	.form-grid,
	.checks,
	.account-band,
	.request-form--wide,
	.tracking-lookup {
		grid-template-columns: 1fr;
	}

	.account-actions {
		justify-content: flex-start;
	}

	.about-profile__media {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.wrap {
		width: min(100% - 24px, 1180px);
	}

	.top-strip {
		display: none;
	}

	.site-header {
		padding: 8px 12px;
	}

	.main-nav {
		min-height: 68px;
		padding-left: 10px;
	}

	.brand__logo {
		width: 98px;
		height: 46px;
	}

	.nav-links {
		top: 84px;
		left: 12px;
		right: 12px;
	}

	.hero {
		min-height: auto;
		padding: 56px 0 56px;
	}

	.hero::before {
		width: 320px;
		height: 320px;
		border-width: 20px;
	}

	.hero h1 {
		font-size: 56px;
	}

	.hero__lead {
		font-size: 17px;
	}

	.hero__visual {
		min-height: 520px;
	}

	.hero-frame {
		inset: 0 0 140px 0;
		border-radius: 32px;
	}

	.hero-photo {
		border-radius: 24px;
	}

	.tracking-panel {
		left: 0;
		width: 100%;
	}

	.tracking-form div,
	.service-strip,
	.metric-grid,
	.cards,
	.form-grid,
	.checks,
	.request-form,
	.footer-grid,
	.portal-grid,
	.staff-card,
	.shipment-meta,
	.about-profile__story,
	.about-profile__media,
	.service-dtc__stats,
	.service-dtc__features,
	.service-dtc__links,
	.service-options,
	.service-feature-grid {
		grid-template-columns: 1fr;
	}

	.solutions,
	.services,
	.request,
	.trustpilot {
		padding: 72px 0;
	}

	.calculator-band,
	.metrics {
		padding: 72px 0;
	}

	.section-copy h2,
	.section-heading h2,
	.metrics h2,
	.account-band h2 {
		font-size: 42px;
	}

	.image-stack {
		min-height: 360px;
	}

	.image-card--air {
		inset: 0 8% 34% 0;
	}

	.image-card--sea {
		inset: 42% 0 0 12%;
	}

	.route-card {
		left: 14px;
		bottom: 22px;
		grid-template-columns: auto 48px auto;
	}

	.calculator,
	.calculator-grid > .section-copy,
	.request-form,
	.account-band,
	.content-card,
	.portal-shell,
	.about-profile__intro,
	.about-profile__cta,
	.service-dtc__hero,
	.service-dtc__details,
	.service-process__intro,
	.service-process__cta {
		padding: 20px;
		border-radius: 28px;
	}

	.calculator > * {
		margin-left: 0;
		margin-right: 0;
	}

	.calculator-head,
	.quote div,
	.footer-bottom {
		display: grid;
	}

	.page-hero {
		padding: 56px 0 92px;
	}

	.page-hero h1 {
		font-size: 48px;
	}

	.page-hero__visual {
		min-height: 220px;
		border-radius: 28px;
	}

	.page-content--designed {
		margin-top: -46px;
	}

	.content-card__header,
	.content-flow p,
	.portal-header,
	.service-dtc__steps div,
	.service-step__content {
		padding: 20px;
		border-radius: 22px;
	}

	.about-profile__intro h2,
	.service-dtc__copy h2,
	.service-process__intro h2 {
		font-size: 42px;
	}

	.about-profile__story p {
		min-height: auto;
	}

	.about-profile__media {
		min-height: auto;
	}

	.about-profile__media div {
		min-height: 190px;
	}

	.service-dtc__media {
		min-height: 390px;
	}

	.service-dtc__photo {
		inset: 0 0 92px 0;
		border-radius: 26px;
	}

	.service-dtc__badge {
		left: 12px;
		width: calc(100% - 24px);
	}

	.service-dtc__steps div {
		grid-template-columns: 1fr;
	}

	.service-step,
	.service-step:nth-child(even) {
		grid-template-columns: 1fr;
	}

	.service-step .service-step__number,
	.service-step:nth-child(even) .service-step__number,
	.service-step:nth-child(even) .service-step__content {
		grid-column: auto;
		grid-row: auto;
	}
}

/* Reference-matched Prime Cargo homepage pass. */
.site-header {
	position: relative;
	padding: 28px 0 10px;
	background: transparent;
	box-shadow: none;
}

.header-shell {
	position: relative;
	display: grid;
	grid-template-columns: 250px minmax(360px, 1fr) 220px auto;
	gap: 28px;
	align-items: center;
	width: min(1320px, calc(100% - 48px));
}

.header-shell .brand {
	min-width: 0;
}

.header-shell .brand__logo {
	width: 210px;
	height: 104px;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.header-shell .main-nav {
	position: relative;
	width: 100%;
	min-height: 90px;
	padding: 11px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.58);
	box-shadow:
		inset 0 0 0 1px rgba(11, 78, 162, 0.28),
		inset 0 0 0 8px rgba(255, 255, 255, 0.58),
		0 18px 42px rgba(6, 43, 99, 0.14);
	backdrop-filter: blur(18px);
}

.header-shell .nav-links {
	width: 100%;
	justify-content: center;
	gap: 10px;
	color: #061642;
	font-size: 15px;
	font-weight: 800;
}

.header-shell .nav-links a {
	min-height: 56px;
	padding: 0 15px;
	white-space: nowrap;
}

.nav-service {
	position: static;
}

.nav-service::after {
	position: absolute;
	left: -18px;
	right: -18px;
	top: 100%;
	height: 22px;
	content: "";
}

.nav-service__trigger::after {
	margin-left: 7px;
	color: var(--brand-blue);
	content: "\2304";
}

.mega-menu {
	position: absolute;
	left: 50%;
	top: calc(100% + 10px);
	z-index: 25;
	display: grid;
	grid-template-columns: minmax(520px, 0.86fr) minmax(430px, 1fr);
	gap: 28px;
	width: min(1160px, 94vw);
	padding: 26px;
	border: 1px solid rgba(11, 78, 162, 0.22);
	border-radius: 0;
	background: #ffffff;
	box-shadow:
		inset 0 -1px 0 rgba(11, 78, 162, 0.12),
		0 34px 80px rgba(6, 43, 99, 0.18);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 12px);
	transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.mega-menu::before {
	display: none;
}

.nav-service:hover .mega-menu,
.nav-service:focus-within .mega-menu,
.nav-service.is-open .mega-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.mega-menu h2 {
	margin: 0 0 20px;
	color: #061642;
	font-size: 25px;
	font-weight: 500;
	line-height: 1;
}

.mega-menu__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.mega-item,
.mega-menu__cta {
	position: relative;
	display: flex;
	min-height: 72px;
	align-items: center;
	padding: 18px 24px;
	overflow: hidden;
	background: #eef2f6;
	color: #061642;
	clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
	transition: background 420ms var(--ease), color 420ms var(--ease), transform 420ms var(--ease);
}

.mega-item:hover,
.mega-menu__cta:hover {
	transform: translateY(-2px);
	background: #e4ecf8;
}

.mega-item i,
.mega-menu__cta i {
	position: absolute;
	left: 24px;
	top: 24px;
	grid-row: 1 / span 2;
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 50%;
	background: transparent;
	color: var(--brand-blue);
	font-style: normal;
	font-size: 12px;
	font-weight: 900;
}

.mega-item strong,
.mega-menu__cta strong {
	color: #061642;
	font-size: 19px;
	line-height: 1.1;
	white-space: normal;
}

.mega-item span,
.mega-menu__cta span {
	color: #415276;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.mega-menu .mega-menu__cta {
	width: 100%;
	min-height: 72px;
	margin-top: 16px;
	padding-right: 74px;
	border: 1px solid rgba(11, 78, 162, 0.14);
	background: #fff;
	clip-path: none;
}

.mega-menu .mega-menu__cta strong {
	font-size: 20px;
}

.mega-menu .mega-menu__cta::after {
	position: absolute;
	right: 18px;
	top: 50%;
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 50%;
	background: var(--brand-red);
	color: #fff;
	transform: translateY(-50%);
	content: "\2192";
}

.mega-menu__story {
	position: relative;
	display: grid;
	align-content: start;
	min-height: 380px;
}

.mega-story {
	position: absolute;
	inset: 0;
	display: grid;
	align-content: end;
	gap: 18px;
	min-height: 330px;
	padding: 42px 34px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(6, 22, 66, 0.12), rgba(6, 22, 66, 0.82)),
		url("../images/primecargo/low-angle-freight-airplane.jpg") center/cover;
	color: #fff;
	clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 0 100%);
	opacity: 0;
	transition: opacity 360ms var(--ease);
}

.mega-story--air {
	opacity: 1;
}

.mega-story--sea {
	background-image:
		linear-gradient(180deg, rgba(6, 22, 66, 0.1), rgba(6, 22, 66, 0.82)),
		url("../images/primecargo/container-ship.jpg");
}

.mega-story--shop {
	background-image:
		linear-gradient(180deg, rgba(6, 22, 66, 0.1), rgba(6, 22, 66, 0.82)),
		url("../images/primecargo/shopping-online-cart-laptop.jpg");
}

.mega-story--customs {
	background-image:
		linear-gradient(180deg, rgba(6, 22, 66, 0.1), rgba(6, 22, 66, 0.82)),
		url("../images/primecargo/shipping-cargos.jpg");
}

.mega-story strong {
	max-width: 560px;
	color: #fff;
	font-size: 27px;
	font-weight: 500;
	line-height: 1.1;
}

.mega-story span {
	max-width: 520px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 18px;
	font-weight: 800;
}

.mega-menu:has(.mega-item--sea:hover) .mega-story,
.mega-menu:has(.mega-item--shop:hover) .mega-story,
.mega-menu:has(.mega-item--customs:hover) .mega-story {
	opacity: 0;
}

.mega-menu:has(.mega-item--air:hover) .mega-story--air,
.mega-menu:has(.mega-item--sea:hover) .mega-story--sea,
.mega-menu:has(.mega-item--shop:hover) .mega-story--shop,
.mega-menu:has(.mega-item--customs:hover) .mega-story--customs {
	opacity: 1;
}

.nav-service[data-active-service] .mega-story {
	opacity: 0;
}

.nav-service[data-active-service="air"] .mega-story--air,
.nav-service[data-active-service="sea"] .mega-story--sea,
.nav-service[data-active-service="shop"] .mega-story--shop,
.nav-service[data-active-service="customs"] .mega-story--customs {
	opacity: 1;
}

.header-phone {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 2px 12px;
	align-items: center;
	color: #071847;
	font-weight: 900;
}

.header-phone span {
	grid-row: 1 / span 2;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	color: var(--brand-blue);
	font-size: 24px;
}

.header-phone small {
	color: #3b4c76;
	font-size: 13px;
	font-weight: 600;
}

.header-quote {
	display: inline-flex;
	gap: 14px;
	align-items: center;
	min-height: 56px;
	padding: 8px 8px 8px 24px;
	border-radius: 999px;
	background: linear-gradient(135deg, #075df2, #0036b6);
	color: #fff;
	font-weight: 900;
	box-shadow: 0 18px 36px rgba(0, 73, 196, 0.28);
}

.header-quote i {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border-radius: 50%;
	background: #fff;
	color: var(--brand-blue);
	font-style: normal;
}

.hero {
	position: relative;
	min-height: calc(100dvh - 34px);
	padding: 64px 0 54px;
	overflow: hidden;
	isolation: isolate;
	background: #061642;
}

.hero::before {
	display: none;
}

.hero::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(4, 16, 47, 0.86) 0%, rgba(4, 16, 47, 0.58) 43%, rgba(4, 16, 47, 0.16) 74%),
		radial-gradient(circle at 24% 14%, rgba(0, 91, 255, 0.42), transparent 34%),
		radial-gradient(circle at 82% 32%, rgba(216, 33, 52, 0.26), transparent 28%);
	content: "";
	pointer-events: none;
}

.hero-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	background: #061642;
}

.hero-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.92;
}

.hero__grid {
	position: relative;
	z-index: 2;
	grid-template-columns: minmax(430px, 0.72fr) minmax(560px, 1fr);
	gap: 48px;
	align-items: center;
}

.hero__copy {
	padding: 0;
}

.hero h1 {
	max-width: 610px;
	font-size: clamp(62px, 3.5vw, 88px);
	line-height: 0.97;
	color: #fff;
	text-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
}

.hero h1 span {
	display: block;
	color: #fff;
}

.hero h1 em {
	color: var(--brand-red);
	font-style: normal;
}

.hero__lead {
	max-width: 520px;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 17px;
}

.hero-rates {
	display: inline-grid;
	grid-template-columns: auto auto auto;
	align-items: stretch;
	gap: 8px;
	margin-top: 24px;
	padding: 8px;
	max-width: min(100%, 620px);
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-left: 5px solid var(--red);
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));
	box-shadow: 0 22px 54px rgba(5, 16, 31, 0.32), 0 0 0 1px rgba(225, 38, 29, 0.15);
	backdrop-filter: blur(18px);
}

.hero-rates__label {
	display: flex;
	align-items: center;
	max-width: 150px;
	min-height: 56px;
	margin: 0;
	padding: 8px 14px 8px 10px;
	color: #10213a;
	font-size: 12px;
	font-weight: 950;
	line-height: 1.15;
	text-transform: uppercase;
}

.hero-rates > span {
	display: grid;
	align-content: center;
	min-width: 132px;
	min-height: 56px;
	padding: 8px 16px;
	border-radius: 12px;
	background: #10213a;
	color: #fff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-rates > span:first-of-type {
	background: linear-gradient(135deg, #e1261d, #ad1510);
	box-shadow: 0 12px 24px rgba(225, 38, 29, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-rates strong {
	color: rgba(255, 255, 255, 0.78);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
}

.hero-rates b {
	margin-top: 4px;
	color: #fff;
	font-size: 22px;
	font-weight: 950;
	line-height: 1;
}

.hero__actions {
	margin-top: 30px;
}

.hero .button {
	min-height: 60px;
	padding-left: 24px;
	font-size: 16px;
}

.hero .button--primary {
	background: linear-gradient(135deg, #075df2, #0036b6);
	box-shadow: 0 20px 38px rgba(0, 73, 196, 0.3);
}

.hero .button--primary i {
	background: var(--brand-red);
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.78);
}

.hero .button--secondary {
	min-width: 178px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow:
		inset 0 0 0 1px rgba(11, 78, 162, 0.22),
		0 14px 30px rgba(6, 43, 99, 0.08);
}

.hero-features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	max-width: 570px;
	margin-top: 28px;
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.13);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(16px);
}

.hero-features span {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0 10px;
	align-items: center;
	min-height: 46px;
}

.hero-features i {
	grid-row: 1 / span 2;
	color: #fff;
	font-style: normal;
	font-size: 24px;
}

.hero-features strong {
	color: #fff;
	font-size: 12px;
	line-height: 1;
}

.hero-features small {
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
}

.hero__visual {
	min-height: 560px;
}

.hero-frame {
	inset: 0;
	padding: 18px;
	border-radius: 48px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(211, 230, 255, 0.72));
	box-shadow:
		inset 0 0 0 1px rgba(11, 78, 162, 0.24),
		inset 0 0 0 10px rgba(255, 255, 255, 0.78),
		0 28px 80px rgba(6, 43, 99, 0.18);
}

.hero-frame::before {
	position: absolute;
	inset: 12px;
	border: 2px solid rgba(11, 78, 162, 0.72);
	border-radius: 40px;
	content: "";
	pointer-events: none;
}

.hero-photo {
	border-radius: 32px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(6, 43, 99, 0.25)),
		url("../images/primecargo/low-angle-freight-airplane.jpg") center 28% / cover;
}

.hero-photo::before {
	position: absolute;
	left: 0;
	right: 32%;
	bottom: 0;
	height: 38%;
	background:
		linear-gradient(180deg, transparent, rgba(6, 43, 99, 0.36)),
		url("../images/primecargo/container-ship.jpg") center/cover;
	content: "";
}

.hero-photo::after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 40%;
	height: 34%;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(6, 43, 99, 0.18)),
		url("../images/primecargo/shipping-cargos.jpg") center/cover;
	content: "";
}

.hero-swoosh {
	z-index: 2;
	right: 28%;
	border-width: 14px;
	filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.55));
}

.hero-swoosh--red {
	top: 34%;
	width: 430px;
	height: 220px;
	border-color: rgba(216, 33, 52, 0.88);
	border-left-color: transparent;
	border-bottom-color: transparent;
}

.hero-swoosh--blue {
	top: 44%;
	width: 360px;
	height: 180px;
	border-color: rgba(11, 78, 162, 0.78);
	border-left-color: transparent;
	border-bottom-color: transparent;
}

.hero-status {
	z-index: 3;
	top: 58px;
	right: 34px;
	bottom: auto;
	width: 230px;
	padding: 22px;
	border-radius: 28px;
	background: linear-gradient(160deg, rgba(0, 66, 167, 0.95), rgba(2, 32, 96, 0.94));
	color: #fff;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.28),
		0 24px 60px rgba(2, 32, 96, 0.32);
}

.hero-status p {
	margin: 0 0 18px;
	font-weight: 900;
}

.hero-status span,
.hero-status small {
	color: #bfcff4;
}

.hero-status strong {
	display: block;
	margin-bottom: 16px;
	color: #fff;
	font-size: 18px;
}

.hero-status ul {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero-status li {
	position: relative;
	padding-left: 26px;
}

.hero-status li::before {
	position: absolute;
	left: 0;
	top: 3px;
	display: grid;
	width: 14px;
	height: 14px;
	place-items: center;
	border: 1px solid #fff;
	border-radius: 50%;
	content: "";
}

.hero-status li.is-done::before {
	background: var(--brand-red);
	border-color: var(--brand-red);
}

.hero-status li b,
.hero-status li small {
	display: block;
	font-size: 12px;
	line-height: 1.25;
}

.hero-trustpilot {
	display: grid;
	gap: 8px;
	align-items: center;
	width: min(320px, 100%);
	padding: 16px 18px;
	border: 1px solid rgba(0, 182, 122, 0.36);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.96);
	color: #10213a;
	box-shadow: 0 18px 44px rgba(5, 16, 31, 0.18);
	text-decoration: none;
}

.trustpilot-brand {
	display: inline-flex;
	gap: 7px;
	align-items: center;
	color: #00b67a;
	font-size: 17px;
	font-weight: 950;
	line-height: 1;
}

.trustpilot-brand i {
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	border-radius: 4px;
	background: #00b67a;
	color: #fff;
	font-size: 13px;
	font-style: normal;
	line-height: 1;
}

.hero-trustpilot__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	color: #10213a;
	font-size: 15px;
	font-weight: 850;
}

.hero-trustpilot__meta u {
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.hero-trustpilot__meta em {
	color: #10213a;
	font-style: normal;
}

.hero-trustpilot__meta b {
	color: #10213a;
	font-size: 17px;
	font-weight: 950;
	line-height: 1;
}

.hero-trustpilot small {
	color: #46556d;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.25;
}

.tracking-panel {
	display: none;
}

.prime-dashboard {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.95fr);
	gap: 24px;
	align-items: stretch;
	margin-top: 72px;
}

.prime-dashboard .service-strip {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 0;
	padding: 10px;
	border-radius: 28px;
	background: linear-gradient(135deg, #0c69e8, #0643b7);
	box-shadow: 0 22px 52px rgba(0, 73, 196, 0.24);
}

.prime-dashboard .service-tile {
	min-height: 172px;
	align-content: center;
	padding: 22px 58px 22px 170px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow:
		inset 0 0 0 1px rgba(11, 78, 162, 0.18),
		0 10px 26px rgba(6, 43, 99, 0.12);
}

.prime-dashboard .service-tile::before {
	display: none;
}

.prime-dashboard .service-tile span {
	position: absolute;
	left: 28px;
	top: 28px;
	z-index: 2;
	width: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.92);
	color: #075df2;
	font-size: 16px;
	box-shadow: inset 0 0 0 1px rgba(11, 78, 162, 0.18), 0 10px 24px rgba(6, 43, 99, 0.16);
}

.prime-dashboard .service-tile h2 {
	margin: 0 0 8px;
	color: #061642;
	font-size: 20px;
}

.prime-dashboard .service-tile p {
	margin-bottom: 10px;
	color: #294070;
	font-size: 13px;
	line-height: 1.45;
}

.prime-dashboard .service-tile a {
	position: absolute;
	right: 20px;
	bottom: 20px;
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	overflow: hidden;
	border: 1px solid rgba(11, 78, 162, 0.18);
	border-radius: 50%;
	color: transparent;
	font-size: 0;
}

.prime-dashboard .service-tile a::before {
	color: #075df2;
	font-size: 18px;
	content: "\2192";
}

.prime-dashboard .service-tile--dark {
	background: rgba(255, 255, 255, 0.94);
	color: var(--ink);
}

.prime-dashboard .service-tile__media {
	inset: 18px auto 18px 18px;
	width: 126px;
}

.calculator--compact {
	min-height: 100%;
	padding: 20px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow:
		inset 0 0 0 1px rgba(11, 78, 162, 0.16),
		0 22px 54px rgba(6, 43, 99, 0.12);
}

.calculator--compact > * {
	margin-left: 0;
	margin-right: 0;
}

.calculator--compact .calculator-head {
	padding: 0;
	background: transparent;
}

.calculator--compact .calculator-head h3 {
	font-size: 20px;
}

.route-select {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 12px;
	align-items: end;
}

.route-select > span {
	display: grid;
	min-height: 50px;
	place-items: center;
	color: #061642;
	font-size: 34px;
}

.calculator--compact .segmented,
.calculator--compact .form-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calculator--compact .visually-compact {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}

.calculator--compact .quote {
	margin: 0;
	border-radius: 18px;
	background: linear-gradient(135deg, #062b63, #0036b6);
}

.calculator--compact .quote div:not(.quote__total) {
	padding: 12px 16px;
}

.calculator--compact .quote div:not(.quote__total) span {
	font-size: 12px;
}

.calculator--compact .quote div:not(.quote__total) strong {
	font-size: 14px;
}

.calculator--compact .quote__total {
	display: flex;
	align-items: center;
	padding: 18px;
	background: transparent;
}

.calculator--compact .quote__total strong {
	font-size: 30px;
}

.calculator-band--detail {
	margin-top: 96px;
}

.section-copy h2,
.section-heading h2,
.metrics h2,
.account-band h2,
.trustpilot h2 {
	font-size: clamp(30px, 2.8vw, 48px);
	line-height: 1.02;
}

.card h3,
.calculator-head h3,
.trust-card strong,
.service-tile h2 {
	font-size: clamp(18px, 1.6vw, 28px);
	line-height: 1.08;
}

.trustpilot {
	grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
	padding-top: 76px;
}

.trustpilot .trust-card--widget {
	min-width: 0;
}

.trustpilot .trust-card--widget:last-child {
	grid-column: 2;
}

.trustpilot-widget {
	width: 100%;
	min-height: 90px;
}

.trustpilot-widget--hero {
	min-height: 72px;
}

.trustpilot-fallback {
	display: grid;
	gap: 8px;
	color: #10213a;
	text-decoration: none;
}

.hero-trustpilot .trustpilot-fallback {
	color: #10213a;
}

.trustpilot-fallback strong {
	color: #10213a;
	font-size: clamp(18px, 1.6vw, 28px);
	line-height: 1.08;
}

.trustpilot-fallback small {
	color: #46556d;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.4;
}

.trust-card--widget {
	gap: 18px;
	padding: 28px;
	border-radius: 30px;
	background: #fff;
}

.trust-card--rating {
	grid-template-columns: minmax(180px, .62fr) minmax(220px, 1fr);
	gap: 34px;
	align-items: center;
	padding: 30px;
	border: 1px solid rgba(16, 33, 58, 0.12);
	border-radius: 28px;
	background: #fff;
	text-decoration: none;
}

.trust-rating-summary {
	display: grid;
	gap: 12px;
}

.trust-rating-summary > div:first-child {
	display: flex;
	gap: 16px;
	align-items: center;
}

.trust-rating-summary strong {
	color: #20252a;
	font-size: clamp(60px, 6vw, 82px);
	font-weight: 950;
	line-height: 1;
}

.trust-rating-summary span {
	color: #20252a;
	font-size: 20px;
	font-weight: 900;
}

.trust-rating-summary small {
	color: #46556d;
	font-size: 16px;
	font-weight: 800;
}

.trust-stars {
	display: flex;
	gap: 4px;
}

.trust-stars i {
	position: relative;
	display: block;
	width: 32px;
	height: 32px;
	background: #00b67a;
}

.trust-stars i::before {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: #fff;
	content: "★";
	font-size: 22px;
	line-height: 1;
}

.trust-stars--compact {
	gap: 2px;
}

.trust-stars--compact i {
	width: 20px;
	height: 20px;
}

.trust-stars--compact i::before {
	font-size: 14px;
}

.trust-stars--small i {
	width: 24px;
	height: 24px;
}

.trust-stars--small i::before {
	font-size: 16px;
}

.trust-breakdown {
	display: grid;
	gap: 14px;
}

.trust-breakdown span {
	display: grid;
	grid-template-columns: 62px 1fr;
	gap: 18px;
	align-items: center;
	color: #20252a;
	font-size: 15px;
	font-weight: 850;
}

.trust-breakdown b {
	font: inherit;
}

.trust-breakdown i {
	position: relative;
	display: block;
	height: 10px;
	overflow: hidden;
	border-radius: 999px;
	background: #d1d1d1;
}

.trust-breakdown i::before {
	position: absolute;
	inset: 0 auto 0 0;
	width: var(--bar);
	border-radius: inherit;
	background: #00b67a;
	content: "";
}

.review-carousel {
	display: grid;
	grid-column: 1 / -1;
	gap: 20px;
	margin-top: 24px;
	padding: 28px;
	border-radius: 30px;
	background: linear-gradient(135deg, #f7fbff, #eef5fd);
	box-shadow: inset 0 0 0 1px rgba(16, 33, 58, 0.08);
}

.review-carousel__head {
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: space-between;
}

.review-carousel h3 {
	margin: 0;
	color: #10213a;
	font-size: clamp(22px, 2vw, 32px);
	line-height: 1;
}

.review-carousel__controls {
	display: inline-flex;
	gap: 10px;
}

.review-carousel__controls button {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border: 0;
	border-radius: 999px;
	background: #10213a;
	color: #fff;
	cursor: pointer;
	font-size: 19px;
	font-weight: 950;
	transition: transform 220ms var(--ease), background 220ms var(--ease);
}

.review-carousel__controls button:hover {
	background: var(--red);
	transform: translateY(-2px);
}

.review-carousel__viewport {
	overflow: hidden;
}

.review-carousel__track {
	display: grid;
	grid-auto-columns: calc((100% - 40px) / 3);
	grid-auto-flow: column;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.review-carousel__track::-webkit-scrollbar {
	display: none;
}

.review-card {
	display: grid;
	min-height: 230px;
	align-content: space-between;
	gap: 18px;
	padding: 24px;
	border: 1px solid rgba(16, 33, 58, 0.1);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(6, 43, 99, 0.08);
	scroll-snap-align: start;
}

.review-card p {
	margin: 0;
	color: #10213a;
	font-size: 17px;
	font-weight: 750;
	line-height: 1.45;
}

.review-card footer {
	display: grid;
	gap: 4px;
}

.review-card strong {
	color: #10213a;
	font-size: 15px;
	font-weight: 950;
}

.review-card span {
	color: #627187;
	font-size: 13px;
	font-weight: 850;
}

.trust-logo {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.trust-logo strong {
	color: #00b67a;
	font-size: 34px;
	line-height: 1;
}

.trust-logo span {
	display: inline-flex;
	gap: 3px;
}

.trust-logo i {
	display: block;
	width: 26px;
	height: 26px;
	clip-path: polygon(50% 0, 61% 34%, 98% 34%, 68% 55%, 79% 90%, 50% 68%, 21% 90%, 32% 55%, 2% 34%, 39% 34%);
	background: #00b67a;
}

.trustpilot-widget,
.trustpilot-box {
	display: grid;
	min-height: 94px;
	place-items: center;
	padding: 18px;
	border: 1px solid rgba(0, 182, 122, 0.28);
	border-radius: 22px;
	background: #f2fbf8;
	color: #052f24;
	font-weight: 900;
	text-align: center;
}

.trust-note {
	margin: 0;
	color: #627187;
	font-size: 13px;
}

@media (max-width: 1320px) {
	.header-shell {
		grid-template-columns: 180px minmax(320px, 1fr) auto;
		width: min(1180px, calc(100% - 40px));
	}

	.header-phone {
		display: none;
	}
}

@media (min-width: 1181px) and (max-width: 1380px) {
	.header-shell {
		grid-template-columns: 240px minmax(540px, 1fr) auto;
		gap: 18px;
		width: min(1240px, calc(100% - 40px));
	}

	.header-phone {
		display: none;
	}

	.header-shell .brand__logo {
		width: 220px;
	}
}

@media (max-width: 980px) {
	.header-shell {
		grid-template-columns: 1fr auto;
		width: min(1180px, calc(100% - 40px));
	}

	.header-shell .brand__logo {
		width: 150px;
		height: 72px;
	}

	.header-shell .main-nav {
		order: 3;
		grid-column: 1 / -1;
		min-height: auto;
		padding: 0;
		background: transparent;
		box-shadow: none;
	}

	.mega-menu__story {
		display: none;
	}

	.header-quote {
		display: none;
	}

	.hero__grid,
	.prime-dashboard,
	.quote-page__hero,
	.staff-login-page,
	.quote-calculator {
		grid-template-columns: 1fr;
	}

	.quote-summary {
		position: static;
	}

	.hero h1 {
		font-size: 64px;
	}

	.hero__visual {
		min-height: 510px;
	}

	.cargo-app {
		grid-template-columns: 1fr;
	}

	.cargo-sidebar {
		border-right: 0;
		border-bottom: 1px solid rgba(11, 78, 162, 0.16);
	}

	.cargo-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cargo-menu__group {
		grid-column: 1 / -1;
	}

	.cargo-workspace {
		padding: 24px 18px 34px;
	}

	.cargo-topbar,
	.cargo-panel__intro {
		display: grid;
	}

	.dashboard-form-grid,
	.prohibited-grid,
	.rate-cards,
	.shipment-row {
		grid-template-columns: 1fr;
	}

	.shipment-row__cost {
		text-align: left;
	}

	.shipment-row em {
		display: none;
	}

	.dashboard-form-grid .wide {
		grid-column: auto;
	}
}

@media (max-width: 620px) {
	.header-shell .main-nav {
		display: flex;
		justify-content: flex-end;
		grid-column: auto;
		order: 0;
	}

	.nav-links {
		left: 12px;
		right: 12px;
		top: 96px;
		max-height: calc(100dvh - 108px);
	}

	.header-shell .brand__logo {
		width: 130px;
		height: 64px;
	}

	.hero {
		min-height: auto;
		padding-top: 42px;
	}

	.hero h1 {
		font-size: 52px;
	}

	.hero-features,
	.hero-rates,
	.prime-dashboard .service-strip,
	.quote-form-grid,
	.quote-checks,
	.route-select,
	.calculator--compact .segmented,
	.calculator--compact .form-grid {
		grid-template-columns: 1fr;
	}

	.quote-page__intro,
	.quote-page__proof,
	.staff-login-page {
		min-height: auto;
	}

	.quote-page__intro h1 {
		font-size: clamp(36px, 12vw, 52px);
	}

	.quote-page__intro p {
		font-size: 16px;
	}

	.quote-page__actions .button {
		width: 100%;
		justify-content: center;
	}

	.quote-calculator__panel,
	.quote-summary {
		padding: 16px;
	}

	.staff-login-card {
		padding: 20px;
	}

	.staff-login-card__intro h1 {
		font-size: clamp(34px, 11vw, 48px);
	}

	.staff-login-form .button {
		width: 100%;
		justify-content: center;
	}

	.hero-rates {
		width: 100%;
	}

	.hero-rates__label {
		max-width: none;
		min-height: auto;
		padding: 8px 10px 2px;
	}

	.hero-rates > span {
		min-width: 0;
	}

	.hero__visual {
		min-height: 420px;
	}

	.hero-frame {
		inset: 0;
		padding: 10px;
	}

	.hero-status {
		display: none;
	}

	.prime-dashboard .service-tile {
		min-height: 150px;
		padding: 20px 52px 20px 118px;
	}

	.prime-dashboard .service-tile__media {
		inset: 18px auto 18px 18px;
		width: 84px;
	}

	.prime-dashboard .service-tile span {
		left: 24px;
		top: 24px;
		width: 32px;
		height: 32px;
		font-size: 13px;
	}

	.cargo-app {
		border-radius: 24px;
	}

	.cargo-menu {
		grid-template-columns: 1fr;
		font-size: 15px;
	}

	.cargo-topbar__stats {
		justify-content: stretch;
	}

	.cargo-topbar__stats span,
	.rate-cards div {
		min-width: 0;
	}

	.cargo-step {
		padding: 20px;
		border-radius: 20px;
	}
}

@media (max-width: 980px) {
	.header-shell .main-nav {
		position: static;
	}

	.header-shell .nav-links {
		position: absolute;
		left: auto;
		right: 0;
		top: calc(100% + 10px);
		display: grid;
		width: calc(100vw - 40px);
		max-height: calc(100dvh - 118px);
		gap: 10px;
		justify-content: stretch;
		padding: 14px;
		overflow-y: auto;
		border: 1px solid rgba(11, 78, 162, 0.18);
		border-radius: 24px;
		background: rgba(255, 255, 255, 0.98);
		box-shadow: 0 28px 76px rgba(6, 43, 99, 0.22);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px);
	}

	.header-shell .nav-links.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.header-shell .nav-links a {
		justify-content: space-between;
		width: 100%;
		min-height: 50px;
		padding: 0 16px;
		border-radius: 16px;
		background: #f7fbff;
		font-size: 16px;
		white-space: normal;
	}

	.header-shell .nav-service {
		width: 100%;
	}

	.header-shell .nav-service .mega-menu {
		display: none;
	}

	.header-shell .nav-service.is-open .mega-menu {
		display: grid;
		transform: none;
	}

	.header-shell .mega-menu {
		position: static;
		width: 100%;
		margin-top: 10px;
		padding: 12px;
		grid-template-columns: 1fr;
		gap: 10px;
		border-radius: 20px;
		background: #eef5fd;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.header-shell .mega-menu h2,
	.header-shell .mega-menu__story {
		display: none;
	}

	.header-shell .mega-menu__grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.header-shell .mega-item,
	.header-shell .mega-menu .mega-menu__cta {
		width: 100%;
		min-height: 48px;
		padding: 12px 14px;
		clip-path: none;
		border-radius: 14px;
	}

	.header-shell .mega-item strong,
	.header-shell .mega-menu .mega-menu__cta strong {
		font-size: 15px;
		line-height: 1.2;
	}

	.header-shell .mega-menu .mega-menu__cta {
		margin-top: 8px;
		padding-right: 58px;
	}

	.page-content--service {
		width: min(100% - 32px, 1120px);
		margin-top: 28px;
	}

	.service-editorial {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 20px 0 70px;
	}

	.service-editorial__media {
		position: relative;
		top: auto;
		min-height: auto;
	}

	.service-editorial__media img {
		height: min(440px, 72vw);
	}

	.service-editorial__copy {
		max-width: none;
		padding-top: 0;
	}
}

@media (max-width: 620px) {
	.header-shell .nav-links {
		left: auto;
		right: 0;
		top: calc(100% + 10px);
		width: calc(100vw - 40px);
		max-height: calc(100dvh - 108px);
	}

	.page-content--service {
		margin-top: 18px;
	}

	.service-editorial {
		padding-bottom: 56px;
	}

	.service-editorial__media::before {
		left: -14px;
		top: 34px;
	}

	.service-editorial__media::after {
		right: -10px;
		width: 54px;
		height: 54px;
	}

	.service-editorial__media img {
		height: 330px;
		clip-path: polygon(0 0, calc(100% - 44px) 0, 100% 44px, 100% 100%, 0 100%);
	}

	.service-editorial h1 {
		font-size: 38px;
	}

	.service-editorial ul,
	.service-editorial p {
		font-size: 15px;
		line-height: 1.7;
	}

	.service-editorial__actions .button {
		width: 100%;
	}
}

.cargo-app .cargo-flow {
	grid-template-columns: 1fr;
	padding: 0;
	background: transparent;
}

.cargo-app .request-form label:nth-child(4) {
	grid-column: auto;
}

.cargo-app .request-form button {
	justify-self: center;
}

.cargo-app .cargo-step--form .button {
	margin-top: 8px;
}

.page-content--dashboard {
	width: min(100% - 32px, 1880px);
	margin-top: 18px;
}

body.is-account-app {
	background: #f4f7fb;
}

body.is-account-app .site-shell {
	min-height: 100dvh;
}

body.is-account-app .page-content--dashboard {
	width: 100%;
	margin: 0;
	padding: 0;
}

.page-content--dashboard .portal-shell {
	padding: 0;
	background: transparent;
}

body.is-account-app .portal-shell {
	border-radius: 0;
	box-shadow: none;
}

.cargo-app {
	min-height: 690px;
	border-radius: 28px;
}

.page-content--dashboard .cargo-app {
	grid-template-columns: 320px minmax(0, 1fr);
}

body.is-account-app .cargo-app {
	min-height: 100dvh;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background: #f4f7fb;
	grid-template-columns: 276px minmax(0, 1fr);
}

body.is-account-app .cargo-sidebar {
	position: sticky;
	top: 0;
	height: 100dvh;
	gap: 18px;
	padding: 22px 14px;
	border-right: 0;
	background: linear-gradient(180deg, #062b63 0%, #021a3f 100%);
	color: #fff;
}

body.is-account-app .cargo-sidebar__brand {
	width: 176px;
	height: 74px;
	margin: 0 auto;
}

.customer-sidebar-user {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
}

.customer-sidebar-user > span {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border-radius: 50%;
	background: #0b58d0;
	font-weight: 950;
}

.customer-sidebar-user div {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.customer-sidebar-user strong,
.customer-sidebar-user small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.customer-sidebar-user strong {
	font-size: 14px;
}

.customer-sidebar-user small {
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 750;
}

.customer-sidebar-user b {
	width: fit-content;
	padding: 3px 8px;
	border-radius: 999px;
	background: rgba(11, 88, 208, 0.9);
	font-size: 11px;
	font-weight: 900;
}

body.is-account-app .cargo-menu {
	gap: 6px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
}

body.is-account-app .cargo-menu a,
body.is-account-app .cargo-menu button,
body.is-account-app .cargo-logout button {
	min-height: 44px;
	border-radius: 8px;
	color: inherit;
}

body.is-account-app .cargo-menu a:hover,
body.is-account-app .cargo-menu button:hover,
body.is-account-app .cargo-menu .is-active {
	background: #0b58d0;
	color: #fff;
	transform: none;
}

body.is-account-app .cargo-menu__group a {
	padding-left: 16px;
}

body.is-account-app .cargo-support-card {
	margin-top: auto;
	border-color: rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.78);
}

body.is-account-app .cargo-support-card strong {
	color: #fff;
}

body.is-account-app .cargo-support-card p {
	color: rgba(255, 255, 255, 0.72);
}

body.is-account-app .cargo-logout button {
	background: transparent;
	color: #fff;
	justify-content: flex-start;
}

.cargo-workspace {
	padding: 28px;
}

.cargo-topbar {
	padding: 22px;
	border: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 8px;
	background: #fff;
}

.cargo-topbar h2 {
	font-size: clamp(26px, 2vw, 36px);
}

.customer-topbar-meta {
	display: flex;
	gap: 18px;
	align-items: center;
	margin-left: auto;
	color: #071933;
}

.customer-topbar-meta span {
	display: grid;
	gap: 4px;
	min-width: 120px;
	padding-left: 18px;
	border-left: 1px solid rgba(11, 78, 162, 0.12);
}

.customer-topbar-meta small {
	color: #627187;
	font-size: 12px;
	font-weight: 850;
}

.customer-topbar-meta strong {
	font-size: 14px;
}

.customer-topbar-meta b {
	display: grid;
	width: 26px;
	height: 26px;
	place-items: center;
	border-radius: 50%;
	background: var(--brand-red);
	color: #fff;
	font-size: 12px;
}

.customer-kpi-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 14px 0 18px;
}

.customer-kpi-grid article {
	position: relative;
	display: grid;
	gap: 6px;
	min-width: 0;
	padding: 14px 14px 14px 64px;
	border: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(16, 33, 58, 0.06);
}

.customer-kpi-grid i {
	position: absolute;
	top: 14px;
	left: 14px;
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 8px;
	background: #ff8a00;
	color: #fff;
	font-style: normal;
	font-weight: 950;
	box-shadow: 0 10px 22px rgba(255, 138, 0, 0.24);
}

.customer-kpi-grid article:nth-child(2) i {
	background: #0b58d0;
	box-shadow: 0 10px 22px rgba(11, 88, 208, 0.22);
}

.customer-kpi-grid article:nth-child(3) i {
	background: #7c3aed;
	box-shadow: 0 10px 22px rgba(124, 58, 237, 0.22);
}

.customer-kpi-grid article:nth-child(4) i {
	background: #008f56;
	box-shadow: 0 10px 22px rgba(0, 143, 86, 0.22);
}

.customer-kpi-grid span,
.customer-kpi-grid small {
	color: #5f6f86;
	font-size: 12px;
	font-weight: 850;
}

.customer-kpi-grid strong {
	color: #071933;
	font-size: 28px;
	line-height: 1;
}

.cargo-panel__intro {
	padding: 4px 2px 12px;
}

.cargo-panel__hint {
	max-width: 560px;
}

.currency-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.currency-card small {
	color: #5f6f86;
	font-weight: 700;
}

.cargo-flow[data-multistep-form] {
	max-width: 860px;
	margin: 0 auto;
}

.cargo-flow[data-multistep-form] .cargo-step {
	display: none;
	min-height: 430px;
	align-content: start;
}

.cargo-flow[data-multistep-form] .cargo-step.is-active {
	display: grid;
}

.cargo-flow[data-multistep-form] .cargo-step .button[type="submit"] {
	display: none;
}

.cargo-step-controls {
	display: flex;
	justify-content: center;
	gap: 12px;
	padding-top: 6px;
}

.cargo-step-controls [hidden] {
	display: none;
}

.shipment-total + small {
	display: none;
}

.shipment-detail {
	margin-top: -8px;
	padding: 0 22px 24px;
	border: 1px solid rgba(11, 78, 162, 0.12);
	border-top: 0;
	border-radius: 0 0 22px 22px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(6, 43, 99, 0.08);
}

.shipment-edit-panel {
	background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.shipment-detail summary {
	display: flex;
	width: fit-content;
	min-height: 44px;
	align-items: center;
	margin: 0 0 18px auto;
	padding: 0 16px;
	border-radius: 999px;
	background: #eef5fd;
	color: var(--brand-blue-dark);
	font-weight: 900;
	cursor: pointer;
}

.shipment-detail__summary {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 20px;
}

.shipment-detail__summary div {
	display: grid;
	gap: 4px;
	padding: 16px;
	border-radius: 18px;
	background: #f7fbff;
}

.shipment-detail__summary span {
	color: #627187;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.shipment-detail__summary strong {
	color: #062b63;
	font-size: 15px;
}

.shipment-edit-form {
	display: grid;
	gap: 18px;
}

.shipment-edit-form fieldset {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.shipment-edit-form fieldset:disabled {
	opacity: 0.72;
}

.order-flags,
.existing-consolidation-edit {
	display: grid;
	gap: 12px;
	padding: 18px;
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 18px;
	background: #f7fbff;
}

.order-flags {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.existing-consolidation-edit h3 {
	margin: 0;
	color: #062b63;
	font-size: 20px;
}

.existing-consolidation-edit p {
	margin: 0;
	color: #627187;
	font-weight: 750;
}

.consolidation-item--existing {
	box-shadow: none;
}

.consolidation-block {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 6px 18px;
	align-items: center;
	padding: 18px;
	border: 1px dashed rgba(11, 78, 162, 0.24);
	border-radius: 18px;
	background: #f7fbff;
}

.consolidation-block h3,
.consolidation-list h3 {
	margin: 0 0 6px;
	color: #062b63;
	font-size: 20px;
}

.consolidation-block p {
	margin: 0;
	color: #627187;
	font-weight: 700;
}

.consolidation-block .button {
	grid-row: 1 / span 2;
	grid-column: 2;
	white-space: nowrap;
}

.consolidation-items {
	display: grid;
	gap: 16px;
}

.consolidation-item {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	padding: 18px;
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 16px 38px rgba(6, 43, 99, 0.08);
}

.consolidation-item__head {
	grid-column: 1 / -1;
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
}

.consolidation-item .wide {
	grid-column: 1 / -1;
}

.consolidation-item__head h3 {
	margin: 0;
	color: #062b63;
	font-size: 20px;
}

.consolidation-item__head button {
	min-height: 38px;
	padding: 0 14px;
	border: 0;
	border-radius: 999px;
	background: #fff2f4;
	color: var(--brand-red);
	font-weight: 900;
	cursor: pointer;
}

.consolidation-list {
	display: grid;
	gap: 12px;
	margin-bottom: 20px;
	padding: 18px;
	border-radius: 20px;
	background: #f7fbff;
}

.consolidation-list div {
	display: grid;
	gap: 4px;
	padding: 14px;
	border-radius: 16px;
	background: #fff;
}

.consolidation-list strong {
	color: #062b63;
}

.consolidation-list span,
.consolidation-list small {
	color: #627187;
	font-weight: 800;
}

.consolidation-list p {
	margin: 0;
	color: var(--ink);
}

.shipment-detail__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

.shipment-lock {
	margin: 0;
	color: var(--brand-red);
	font-weight: 900;
}

.declaration-callout {
	display: grid;
	gap: 6px;
	margin: 18px 0;
	padding: 18px 20px;
	border: 1px solid rgba(216, 33, 52, 0.24);
	border-left: 5px solid var(--brand-red);
	border-radius: 18px;
	background: #fff7f8;
	color: #4c1f27;
}

.declaration-callout strong {
	color: var(--brand-red);
	font-size: 15px;
	text-transform: uppercase;
}

.declaration-callout span {
	font-weight: 800;
	line-height: 1.55;
}

.dgr-alert {
	display: grid;
	gap: 6px;
	padding: 18px 20px;
	border: 1px solid rgba(209, 0, 32, 0.22);
	border-left: 5px solid var(--brand-red);
	border-radius: 8px;
	background: #fff7f8;
	color: #4c1f27;
}

.dgr-alert strong {
	color: var(--brand-red);
	font-size: 14px;
	font-weight: 950;
	text-transform: uppercase;
}

.dgr-alert p {
	margin: 0;
	font-weight: 800;
	line-height: 1.55;
}

.shipment-row.is-active {
	border-color: rgba(11, 78, 162, 0.32);
	background: #f5f9ff;
	box-shadow: 0 18px 44px rgba(11, 78, 162, 0.12);
}

.order-cost-panel {
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(16, 33, 58, 0.08);
}

.order-cost-panel {
	align-self: start;
	display: grid;
	gap: 16px;
	padding: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.order-cost-panel--inline {
	margin-top: 18px;
	box-shadow: none;
}

.order-cost-panel h3 {
	margin: 0;
	color: #062b63;
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1;
}

.cost-lines {
	display: grid;
	gap: 8px;
}

.cost-lines div {
	display: flex;
	gap: 14px;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid rgba(11, 78, 162, 0.1);
}

.cost-lines span {
	color: #627187;
	font-size: 13px;
	font-weight: 800;
}

.cost-lines strong {
	color: #10213a;
	font-size: 14px;
	font-weight: 950;
	text-align: right;
}

.cost-note {
	margin: 0;
	color: #627187;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.55;
}

.invoice-state {
	display: grid;
	gap: 6px;
	padding: 16px;
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 16px;
	background: #fff;
}

.invoice-state strong {
	color: #062b63;
	font-size: 16px;
}

.invoice-state span {
	color: #506177;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.55;
}

.invoice-state--issued {
	border-color: rgba(0, 143, 86, 0.24);
	background: #f3fff8;
}

.invoice-state--paid {
	border-color: rgba(0, 143, 86, 0.36);
	background: #edfff5;
}

.customer-invoice-card {
	display: grid;
	gap: 14px;
	padding: 16px;
	border: 1px solid rgba(11, 78, 162, 0.16);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 14px 30px rgba(16, 33, 58, 0.06);
}

.customer-invoice-card__head {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	justify-content: space-between;
}

.customer-invoice-card__head div,
.customer-invoice-grid div {
	display: grid;
	gap: 4px;
}

.customer-invoice-card span,
.customer-invoice-grid span,
.customer-payment-methods span {
	color: #627187;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.customer-invoice-card strong,
.customer-invoice-grid strong {
	color: #071933;
	font-size: 14px;
	font-weight: 950;
}

.customer-invoice-card__head .invoice-state {
	display: inline-flex;
	width: fit-content;
	min-height: 28px;
	align-items: center;
	padding: 4px 9px;
	border-radius: 999px;
	font-size: 12px;
}

.customer-invoice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.customer-payment-methods,
.payment-proof-state,
.customer-invoice-note {
	margin: 0;
	padding: 12px;
	border: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 10px;
	background: #f9fbff;
	color: #415276;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.5;
}

.customer-payment-methods p,
.payment-proof-state span {
	margin: 5px 0 0;
	color: #415276;
}

.payment-proof-state {
	display: grid;
	gap: 3px;
	border-color: rgba(11, 88, 208, 0.18);
	background: #f4f8ff;
}

.payment-proof-state--rejected {
	border-color: rgba(209, 0, 32, 0.18);
	background: #fff5f6;
}

.payment-proof-state--paid {
	border-color: rgba(0, 143, 86, 0.24);
	background: #f1fff8;
}

.payment-proof-form {
	display: grid;
	gap: 10px;
}

.payment-proof-form label {
	display: grid;
	gap: 6px;
	color: #415276;
	font-size: 12px;
	font-weight: 900;
}

.payment-proof-form input,
.payment-proof-form textarea {
	width: 100%;
	min-height: 42px;
	border: 1px solid rgba(11, 78, 162, 0.18);
	border-radius: 8px;
	background: #fff;
	color: #071933;
	font: inherit;
	font-size: 14px;
	font-weight: 750;
}

.payment-proof-form textarea {
	padding: 10px 12px;
	resize: vertical;
}

.customer-orders-layout {
	display: grid;
	grid-template-columns: minmax(520px, 0.92fr) minmax(420px, 1fr);
	gap: 18px;
	align-items: start;
	min-width: 0;
}

.customer-order-controls {
	order: 0;
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(150px, 200px) minmax(150px, 200px) auto auto auto;
	gap: 10px;
	align-items: end;
	padding: 12px;
	border: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(16, 33, 58, 0.05);
}

.customer-order-controls label {
	display: grid;
	gap: 6px;
	min-width: 0;
	color: #627187;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.customer-order-controls input,
.customer-order-controls select {
	width: 100%;
	min-height: 40px;
	border: 1px solid rgba(11, 78, 162, 0.16);
	border-radius: 8px;
	background: #f9fbff;
	color: #071933;
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	text-transform: none;
}

.customer-order-controls .button,
.customer-order-clear {
	min-height: 40px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border-radius: 8px;
	font-size: 13px;
}

.customer-order-clear {
	display: inline-flex;
	color: #0b58d0;
	font-weight: 900;
	text-decoration: none;
}

.customer-order-table {
	order: 1;
	gap: 0;
	overflow: hidden;
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 38px rgba(16, 33, 58, 0.07);
}

.customer-order-table__head {
	display: grid;
	grid-template-columns: minmax(122px, 1fr) minmax(88px, 0.62fr) minmax(78px, 0.5fr) minmax(120px, 0.78fr) minmax(105px, 0.72fr) minmax(94px, 0.62fr);
	gap: 10px;
	align-items: center;
	padding: 14px 18px;
	border-bottom: 1px solid rgba(11, 78, 162, 0.1);
	background: #f8fbff;
	color: #5f6f86;
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.customer-order-table .shipment-row {
	grid-template-columns: minmax(122px, 1fr) minmax(88px, 0.62fr) minmax(78px, 0.5fr) minmax(120px, 0.78fr) minmax(105px, 0.72fr) minmax(94px, 0.62fr);
	gap: 10px;
	min-height: 72px;
	padding: 12px 14px;
	border-width: 0 0 1px;
	border-radius: 0;
	box-shadow: none;
}

.customer-order-table .shipment-row:last-child {
	border-bottom: 0;
}

.customer-order-table .shipment-row__main strong,
.customer-order-table .shipment-row__cost strong,
.shipment-row__route strong,
.shipment-row__packages strong {
	color: #071933;
	font-size: 13px;
	line-height: 1.2;
	word-break: break-word;
}

.customer-order-table .shipment-row small,
.shipment-row__route small,
.shipment-row__packages small {
	color: #627187;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.3;
}

.shipment-row__route,
.shipment-row__packages,
.shipment-row__invoice {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.customer-order-table .shipment-row__badges {
	display: grid;
	gap: 6px;
	align-items: center;
}

.customer-order-table .shipment-row__progress {
	height: 5px;
}

.customer-order-table .shipment-row__cost {
	text-align: right;
}

.customer-order-workspace {
	order: 2;
	margin-bottom: 0;
	padding: 16px;
	border-radius: 8px;
	box-shadow: 0 16px 38px rgba(16, 33, 58, 0.07);
}

.customer-order-workspace .order-workspace__header h2 {
	font-size: clamp(22px, 2vw, 30px);
}

.customer-order-workspace .order-workspace__header,
.customer-order-workspace .order-workspace__actions,
.customer-order-workspace .order-declaration-strip {
	align-items: flex-start;
	flex-direction: column;
	min-width: 0;
	max-width: 100%;
}

.customer-order-workspace .order-workspace__actions {
	width: 100%;
}

.customer-order-workspace .order-workspace__actions .button {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	white-space: normal;
}

.customer-order-workspace .order-workspace__header > div,
.customer-order-workspace .order-meta-row,
.customer-order-workspace .order-declaration-strip span {
	min-width: 0;
	max-width: 100%;
	overflow-wrap: anywhere;
}

.customer-order-workspace .order-workspace__grid {
	grid-template-columns: 1fr;
	gap: 12px;
}

.customer-order-workspace .order-cost-panel--workspace {
	position: static;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.customer-order-workspace .cost-note {
	grid-column: 1 / -1;
}

.customer-order-workspace .order-stage-card,
.customer-order-workspace .order-package-card {
	border-radius: 8px;
	box-shadow: none;
}

.customer-package-table {
	border: 1px solid rgba(11, 78, 162, 0.1);
	border-radius: 8px;
	background: #f8fbff;
}

.customer-package-table .order-item-card {
	border-width: 0 0 1px;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.customer-package-table .order-item-card:last-child {
	border-bottom: 0;
}

.customer-package-state {
	display: inline-flex;
	width: fit-content;
	min-height: 22px;
	align-items: center;
	padding: 3px 8px;
	border: 1px solid rgba(11, 78, 162, 0.16);
	border-radius: 999px;
	background: #eef5ff;
	color: #0b58d0;
	font-size: 11px;
	font-weight: 900;
	line-height: 1.1;
}

.customer-package-state--received {
	border-color: rgba(0, 143, 86, 0.22);
	background: #edfbf3;
	color: #00744d;
}

.customer-package-state--awaiting {
	border-color: rgba(229, 161, 0, 0.28);
	background: #fff8df;
	color: #936000;
}

.order-declaration-strip--partial {
	border-color: rgba(229, 161, 0, 0.28);
	background: #fffaf0;
}

.consolidation-item.is-package-locked {
	background: #f8fafc;
}

.consolidation-item.is-package-locked input,
.consolidation-item.is-package-locked textarea {
	color: #627187;
	background: #eef2f7;
}

.customer-estimate-card,
.customer-final-invoice-card {
	display: grid;
	gap: 12px;
	padding: 16px;
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 8px;
	background: #fff;
}

.customer-final-invoice-card {
	border-color: rgba(0, 143, 86, 0.2);
	background: #fbfffd;
}

.customer-estimate-card h3,
.customer-final-invoice-card h3 {
	font-size: clamp(22px, 2vw, 30px);
}

.customer-payment-proof-card {
	display: grid;
	gap: 10px;
}

.customer-selected-order-edit {
	margin: 0;
	padding: 0;
	border: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 8px;
	box-shadow: none;
	background: #fff;
}

.customer-selected-order-edit summary {
	width: 100%;
	min-height: 44px;
	margin: 0;
	border-radius: 8px 8px 0 0;
	background: #f6f9ff;
	justify-content: space-between;
}

.customer-selected-order-edit[open] {
	padding-bottom: 14px;
}

.customer-selected-order-edit .shipment-detail__summary,
.customer-selected-order-edit .shipment-edit-form,
.customer-selected-order-edit .consolidation-list {
	margin: 14px;
}

.customer-selected-order-edit .shipment-detail__summary div,
.customer-selected-order-edit .consolidation-list div,
.customer-selected-order-edit .existing-consolidation-edit,
.customer-selected-order-edit .consolidation-item,
.customer-selected-order-edit .consolidation-block {
	border-radius: 8px;
	box-shadow: none;
}

.declaration-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 20px 0;
}

.declaration-grid div {
	display: grid;
	gap: 8px;
	min-height: 150px;
	padding: 18px;
	border: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 14px 30px rgba(16, 33, 58, 0.06);
}

.declaration-grid div.is-warning {
	border-color: rgba(216, 33, 52, 0.26);
	background: #fff8f4;
}

.declaration-grid span {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 12px;
	background: #eef5ff;
	color: var(--brand-blue);
	font-size: 13px;
	font-weight: 950;
}

.declaration-grid .is-warning span {
	background: #fff0e7;
	color: var(--brand-red);
}

.declaration-grid strong {
	color: #062b63;
	font-size: 18px;
}

.declaration-grid p {
	margin: 0;
	color: #506177;
	font-weight: 750;
	line-height: 1.5;
}

.consent-confirm {
	position: relative;
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 18px;
	border: 1px solid rgba(11, 78, 162, 0.18);
	border-radius: 18px;
	background: #f7fbff;
	color: #062b63;
	cursor: pointer;
}

.consent-confirm input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.consent-confirm span {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 2px solid rgba(11, 78, 162, 0.32);
	border-radius: 12px;
	background: #fff;
}

.consent-confirm span::before {
	content: "";
	width: 10px;
	height: 17px;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transform: rotate(45deg) translate(-1px, -2px);
	opacity: 0;
}

.consent-confirm input:focus-visible + span {
	outline: 3px solid rgba(11, 78, 162, 0.2);
	outline-offset: 3px;
}

.consent-confirm input:checked + span {
	border-color: var(--brand-blue);
	background: var(--brand-blue);
}

.consent-confirm input:checked + span::before {
	opacity: 1;
}

.consent-confirm strong {
	font-size: 16px;
	line-height: 1.35;
}

.customer-declaration-step {
	gap: 16px;
	border-radius: 8px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.customer-declaration-step .dgr-alert {
	grid-template-columns: minmax(0, 1fr) auto;
	border-left-width: 4px;
	box-shadow: none;
}

.customer-declaration-step .dgr-alert p {
	grid-column: 1 / -1;
}

.customer-declaration-step .dgr-alert a {
	align-self: start;
	color: #0b58d0;
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.customer-declaration-step .declaration-grid {
	margin: 0;
}

.customer-declaration-step .declaration-grid div {
	min-height: 132px;
	border-radius: 8px;
	box-shadow: none;
}

.customer-declaration-step .consent-confirm {
	min-height: 48px;
	padding: 12px 14px;
	border-radius: 8px;
}

.order-workspace {
	display: grid;
	gap: 18px;
	margin-bottom: 26px;
	padding: 22px;
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 26px;
	background: #fff;
	box-shadow: 0 22px 60px rgba(16, 33, 58, 0.1);
}

.order-workspace__header {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	justify-content: space-between;
}

.order-workspace__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
}

.order-workspace__actions .button {
	min-height: 42px;
	padding: 0 16px;
	font-size: 13px;
}

.order-breadcrumb {
	margin: 0 0 14px;
	color: #627187;
	font-size: 13px;
	font-weight: 900;
}

.order-breadcrumb span {
	padding: 0 8px;
	color: #b2bdca;
}

.order-workspace__header h2 {
	margin: 0;
	color: #071933;
	font-size: clamp(30px, 3vw, 44px);
	line-height: 1;
}

.order-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	margin-top: 18px;
	color: #627187;
	font-size: 13px;
	font-weight: 800;
}

.order-meta-row strong {
	color: #10213a;
}

.order-declaration-strip {
	display: flex;
	gap: 14px;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	border: 1px solid rgba(11, 78, 162, 0.16);
	border-radius: 18px;
	background: #f7fbff;
	color: #10213a;
}

.order-declaration-strip.has-dgr {
	border-color: rgba(216, 33, 52, 0.28);
	background: #fff8f4;
}

.order-declaration-strip strong {
	color: #062b63;
}

.order-declaration-strip.has-dgr strong {
	color: var(--brand-red);
}

.order-declaration-strip span {
	color: #506177;
	font-weight: 800;
}

.order-workspace__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
	gap: 20px;
	align-items: start;
}

.order-workspace__main {
	display: grid;
	gap: 16px;
}

.order-stage-card,
.order-package-card {
	padding: 20px;
	border: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 20px;
	background: #fff;
}

.order-stage-card h3,
.order-package-card h3 {
	margin: 0 0 18px;
	color: #10213a;
}

.order-card-head {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

.order-card-head h3 {
	margin: 0;
}

.order-card-head span {
	padding: 6px 10px;
	border-radius: 999px;
	background: #eef5ff;
	color: var(--brand-blue);
	font-size: 12px;
	font-weight: 950;
}

.order-stage-card p {
	margin: 18px 0 0;
	color: #506177;
	font-weight: 800;
}

.order-stage-track {
	display: grid;
	grid-template-columns: repeat(7, minmax(80px, 1fr));
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 6px;
}

.order-stage-track div {
	display: grid;
	gap: 8px;
	align-content: start;
	min-width: 90px;
	color: #627187;
	font-size: 12px;
	font-weight: 850;
	text-align: center;
}

.order-stage-track i {
	display: grid;
	width: 34px;
	height: 34px;
	margin: 0 auto;
	place-items: center;
	border-radius: 50%;
	background: #dbe4ef;
	color: #627187;
	font-style: normal;
	font-weight: 950;
}

.order-stage-track .is-current i,
.order-stage-track .is-done i {
	background: var(--brand-blue);
	color: #fff;
}

.order-stage-track .is-current strong {
	color: var(--brand-blue);
}

.order-package-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.order-package-grid div {
	display: grid;
	gap: 5px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(11, 78, 162, 0.1);
}

.order-package-grid span {
	color: #627187;
	font-size: 13px;
	font-weight: 850;
}

.order-package-grid strong {
	color: #10213a;
	font-size: 14px;
	line-height: 1.45;
}

.order-items-list {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.order-item-card {
	display: grid;
	gap: 10px;
	padding: 16px;
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 18px;
	background: #f8fbff;
}

.order-item-card--primary {
	background: #fff;
}

.order-item-card div {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
}

.order-item-card span {
	color: var(--brand-blue);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.order-item-card strong {
	color: #10213a;
	font-size: 14px;
}

.order-item-card p,
.edit-window-note {
	margin: 0;
	color: #506177;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.55;
}

.order-item-card small {
	color: #627187;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.5;
}

.edit-window-note {
	margin-top: 14px;
	padding: 12px 14px;
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 14px;
	background: #f7fbff;
}

.order-cost-panel--workspace {
	position: sticky;
	top: 18px;
}

.order-cost-panel--workspace .cost-lines div:last-child {
	margin-top: 4px;
	border-bottom: 0;
}

.order-cost-panel--workspace .cost-lines div:last-child span,
.order-cost-panel--workspace .cost-lines div:last-child strong {
	color: var(--brand-blue);
	font-size: 16px;
}

.currency-settings {
	align-items: end;
	margin: 22px 0;
	border: 1px solid rgba(11, 78, 162, 0.16);
}

@media (max-width: 980px) {
	.currency-grid {
		grid-template-columns: 1fr;
	}

	.customer-kpi-grid {
		grid-template-columns: repeat(4, minmax(170px, 1fr));
		overflow-x: auto;
		padding-bottom: 4px;
		scrollbar-width: thin;
	}

	.shipment-detail__summary {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cargo-flow[data-multistep-form] .cargo-step {
		min-height: auto;
	}

	.consolidation-block,
	.consolidation-item,
	.order-flags {
		grid-template-columns: 1fr;
	}

	.consolidation-block .button {
		grid-row: auto;
		grid-column: auto;
		width: fit-content;
	}

	.declaration-grid,
	.order-workspace__grid,
	.order-package-grid {
		grid-template-columns: 1fr;
	}

	.customer-order-table {
		border-radius: 8px;
	}

	.customer-order-table__head {
		display: none;
	}

	.order-cost-panel--workspace {
		position: static;
	}
}

@media (max-width: 1500px) {
	body.is-account-app .customer-order-table__head {
		display: none;
	}

	body.is-account-app .customer-order-table .shipment-row {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}

	body.is-account-app .customer-order-table .shipment-row__main,
	body.is-account-app .customer-order-table .shipment-row__cost {
		grid-column: 1 / -1;
		text-align: left;
	}

	body.is-account-app .customer-order-table .shipment-row__invoice,
	body.is-account-app .customer-order-table .shipment-row__badges {
		align-content: start;
	}
}

@media (max-width: 620px) {
	.shipment-detail__summary {
		grid-template-columns: 1fr;
	}

	.customer-kpi-grid {
		grid-template-columns: repeat(4, minmax(154px, 1fr));
		margin: 8px 0 12px;
	}

	.customer-kpi-grid article {
		padding: 12px 10px 12px 52px;
	}

	.customer-kpi-grid i {
		top: 12px;
		left: 10px;
		width: 32px;
		height: 32px;
	}

	.shipment-detail {
		padding: 0 16px 20px;
	}

	.trustpilot {
		grid-template-columns: 1fr;
	}

	.trust-card--widget,
	.trust-card--rating {
		grid-template-columns: 1fr;
		min-width: 0;
		padding: 22px;
	}

	.trustpilot .trust-card--widget:last-child {
		grid-column: auto;
	}

	.review-carousel {
		padding: 20px;
	}

	.review-carousel__head {
		align-items: flex-start;
		flex-direction: column;
	}

	.review-carousel__track {
		grid-auto-columns: 100%;
	}

	.trust-logo strong {
		font-size: 28px;
	}

	.trust-logo i {
		width: 22px;
		height: 22px;
	}

	.hero-rates {
		display: grid;
	}

	.order-workspace,
	.order-stage-card,
	.order-package-card {
		padding: 16px;
		border-radius: 20px;
	}

	.order-workspace__header,
	.order-workspace__actions,
	.order-declaration-strip {
		align-items: flex-start;
		flex-direction: column;
	}

	.order-workspace__actions .button {
		width: 100%;
	}

	.declaration-grid div {
		min-height: auto;
	}
}

.hero__visual {
	min-height: 455px;
}

.hero-frame {
	display: grid;
	inset: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.hero-frame::before,
.hero-photo::before,
.hero-photo::after,
.hero-swoosh {
	display: none;
}

.hero-photo {
	display: grid;
	width: 100%;
	height: 100%;
	gap: 14px;
	align-content: center;
	align-items: center;
	justify-items: end;
	overflow: visible;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.hero-status {
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	width: min(320px, 100%);
	padding: 28px;
	border-radius: 30px;
}

@media (max-width: 980px) {
	.hero-photo {
		justify-items: center;
	}

	.faq-hero,
	.faq-cta,
	.faq-section,
	.faq-objections {
		grid-template-columns: 1fr;
	}

	.faq-section__heading {
		position: static;
	}
}

@media (max-width: 620px) {
	.hero__visual {
		min-height: 455px;
	}

	.hero-frame {
		padding: 0;
	}

	.hero-status {
		display: grid;
		width: min(320px, calc(100vw - 40px));
	}

	.faq-hero,
	.faq-cta,
	.faq-section,
	.faq-objections div {
		padding: 20px;
		border-radius: 24px;
	}

	.faq-hero h1 {
		font-size: 38px;
	}

	.faq-hero p,
	.faq-cta p {
		font-size: 16px;
	}

	.faq-hero__actions .button,
	.faq-cta .button {
		width: 100%;
	}

	.faq-item summary {
		min-height: 64px;
		padding: 16px;
		font-size: 16px;
	}

	.faq-item > div {
		padding: 0 16px 18px;
	}
}

/* Authenticated dashboard responsive overrides. Keep this block after all dashboard rules. */
body.is-account-app .cargo-app,
body.is-account-app .cargo-sidebar,
body.is-account-app .cargo-workspace,
body.is-account-app .cargo-panel {
	min-width: 0;
}

body.is-account-app .cargo-panel {
	width: 100%;
}

body.is-account-app .cargo-mobile-summary {
	display: none;
}

body.is-account-app .warehouse-reference-grid,
body.is-account-app .account-setting-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

body.is-account-app .warehouse-reference-card,
body.is-account-app .account-setting-card,
body.is-account-app .prohibited-grid article {
	display: grid;
	gap: 8px;
	min-width: 0;
	padding: 18px;
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 14px 32px rgba(6, 43, 99, 0.06);
}

body.is-account-app .warehouse-reference-card {
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
}

body.is-account-app .warehouse-reference-card.is-primary {
	border-color: rgba(11, 78, 162, 0.28);
	background: #f7fbff;
}

body.is-account-app .warehouse-reference-card strong,
body.is-account-app .account-setting-card strong,
body.is-account-app .prohibited-grid article strong {
	color: #062b63;
	font-size: 16px;
	line-height: 1.25;
}

body.is-account-app .warehouse-reference-card p,
body.is-account-app .warehouse-reference-card small,
body.is-account-app .account-setting-card p,
body.is-account-app .account-setting-card span,
body.is-account-app .prohibited-grid article span,
body.is-account-app .rate-note {
	margin: 0;
	color: #5f6f86;
	font-size: 13px;
	font-weight: 750;
	line-height: 1.5;
}

body.is-account-app .account-setting-card--action {
	grid-column: span 2;
}

body.is-account-app .account-setting-card--action .button {
	width: fit-content;
	min-height: 42px;
	padding: 0 14px;
	font-size: 13px;
}

body.is-account-app .account-setting-card--empty {
	border-style: dashed;
	background: #f7fbff;
}

body.is-account-app .prohibited-grid article {
	border-color: rgba(216, 33, 52, 0.18);
	background: #fff8f4;
}

body.is-account-app .prohibited-grid article strong {
	color: var(--brand-red);
}

body.is-account-app .prohibited-grid article span {
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: #5f353d;
	font-weight: 750;
}

body.is-account-app .rate-note {
	padding: 14px 16px;
	border: 1px solid rgba(11, 78, 162, 0.14);
	border-radius: 12px;
	background: #f7fbff;
}

@media (max-width: 980px) {
	body.is-account-app .page-content--dashboard .cargo-app {
		grid-template-columns: 1fr;
		overflow: visible;
		background: #f4f7fb;
	}

	body.is-account-app .cargo-sidebar {
		position: sticky;
		z-index: 8;
		display: grid;
		top: 0;
		height: auto;
		width: 100%;
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 10px 14px;
		align-items: center;
		padding: 14px 16px 12px;
		border-right: 0;
		border-bottom: 1px solid rgba(11, 78, 162, 0.16);
		background: rgba(255, 255, 255, 0.96);
		color: #062b63;
	}

	body.is-account-app .cargo-sidebar__brand {
		width: 122px;
		height: 58px;
		margin: 0;
	}

	body.is-account-app .customer-sidebar-user {
		display: none;
	}

	body.is-account-app .cargo-mobile-summary {
		display: grid;
		gap: 2px;
		min-width: 0;
		color: #062b63;
		font-weight: 900;
	}

	body.is-account-app .cargo-mobile-summary span {
		overflow: hidden;
		color: #627187;
		font-size: 12px;
		font-weight: 800;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	body.is-account-app .cargo-workspace {
		width: 100%;
		padding: 18px 16px 34px;
	}

	body.is-account-app .cargo-menu {
		grid-column: 1 / -1;
		display: flex;
		gap: 8px;
		margin: 0 -16px;
		overflow-x: auto;
		padding: 0 16px 2px;
		font-size: 14px;
		scrollbar-width: thin;
	}

	body.is-account-app .cargo-menu__group {
		display: contents;
	}

	body.is-account-app .cargo-menu a,
	body.is-account-app .cargo-menu button {
		flex: 0 0 auto;
		width: auto;
		min-height: 40px;
		justify-content: center;
		padding: 0 12px;
		border: 1px solid rgba(11, 78, 162, 0.12);
		border-radius: 8px;
		background: #fff;
		font-size: 13px;
		white-space: nowrap;
		color: #062b63;
	}

	body.is-account-app .cargo-menu a:hover,
	body.is-account-app .cargo-menu button:hover,
	body.is-account-app .cargo-menu .is-active {
		transform: none;
	}

	body.is-account-app .menu-caret {
		display: none;
	}

	body.is-account-app .cargo-support-card {
		display: none;
	}

	body.is-account-app .cargo-logout {
		grid-column: 3;
		grid-row: 1;
		margin: 0;
	}

	body.is-account-app .cargo-logout button {
		width: auto;
		min-height: 38px;
		padding: 0 12px;
		border-radius: 8px;
		font-size: 13px;
		white-space: nowrap;
	}

	body.is-account-app .cargo-topbar {
		display: grid;
		gap: 10px;
		padding: 12px;
		border-radius: 8px;
	}

	body.is-account-app .cargo-topbar,
	body.is-account-app .cargo-panel__intro,
	body.is-account-app .order-workspace__header,
	body.is-account-app .order-declaration-strip {
		align-items: flex-start;
		flex-direction: column;
	}

	body.is-account-app .cargo-topbar {
		gap: 18px;
		padding: 18px;
		border-radius: 18px;
	}

	body.is-account-app .cargo-topbar__stats {
		width: 100%;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.is-account-app .customer-topbar-meta {
		width: 100%;
		margin-left: 0;
		justify-content: space-between;
	}

	body.is-account-app .customer-topbar-meta span {
		min-width: 0;
		padding-left: 0;
		border-left: 0;
	}

	body.is-account-app .customer-orders-layout {
		grid-template-columns: 1fr;
	}

	body.is-account-app .customer-order-controls {
		grid-template-columns: 1fr 1fr;
	}

	body.is-account-app .customer-order-search,
	body.is-account-app .customer-new-shipment {
		grid-column: 1 / -1;
	}

	body.is-account-app .cargo-panel__intro h2 {
		font-size: clamp(24px, 6vw, 32px);
	}

	body.is-account-app .cargo-flow[data-multistep-form] {
		max-width: none;
	}

	body.is-account-app .cargo-flow[data-multistep-form] .cargo-step {
		min-height: auto;
	}

	body.is-account-app .shipment-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	body.is-account-app .customer-order-table .shipment-row {
		grid-template-columns: 1fr 1fr;
	}

	body.is-account-app .customer-order-table .shipment-row__main,
	body.is-account-app .customer-order-table .shipment-row__cost {
		grid-column: 1 / -1;
	}

	body.is-account-app .shipment-row__cost {
		text-align: left;
	}

	body.is-account-app .shipment-row em {
		display: none;
	}

	body.is-account-app .warehouse-reference-grid,
	body.is-account-app .account-setting-grid,
	body.is-account-app .prohibited-grid,
	body.is-account-app .rate-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.is-account-app .account-setting-card--action {
		grid-column: 1 / -1;
	}

	body.is-account-app .warehouse-card,
	body.is-account-app .method-card,
	body.is-account-app .currency-card {
		min-height: auto;
		padding: 16px;
		border-radius: 12px;
	}
}

@media (max-width: 620px) {
	body.is-account-app .cargo-sidebar {
		grid-template-columns: auto minmax(0, 1fr);
		gap: 6px 10px;
		padding: 8px 10px 6px;
	}

	body.is-account-app .cargo-sidebar__brand {
		width: 86px;
		height: 38px;
	}

	body.is-account-app .cargo-logout {
		display: none;
	}

	body.is-account-app .cargo-menu {
		gap: 5px;
		margin: 0 -10px;
		padding: 0 10px 3px;
		font-size: 14px;
	}

	body.is-account-app .cargo-menu a,
	body.is-account-app .cargo-menu button {
		min-height: 34px;
		padding: 0 9px;
		font-size: 12px;
	}

	body.is-account-app .cargo-workspace {
		padding: 14px 10px 28px;
	}

	body.is-account-app .cargo-topbar h2 {
		font-size: 20px;
	}

	body.is-account-app .cargo-topbar p,
	body.is-account-app .customer-topbar-meta small {
		font-size: 11px;
	}

	body.is-account-app .customer-order-workspace .order-cost-panel--workspace {
		grid-template-columns: 1fr;
	}

	body.is-account-app .cargo-topbar {
		gap: 6px;
		padding: 10px;
	}

	body.is-account-app .cargo-topbar__stats,
	body.is-account-app .customer-topbar-meta {
		display: none;
	}

	body.is-account-app .customer-order-controls {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
		padding: 10px;
	}

	body.is-account-app .customer-order-controls label span {
		display: none;
	}

	body.is-account-app .customer-order-controls label {
		gap: 4px;
	}

	body.is-account-app .customer-order-controls input,
	body.is-account-app .customer-order-controls select,
	body.is-account-app .customer-order-controls .button,
	body.is-account-app .customer-order-clear {
		min-height: 36px;
		font-size: 12px;
	}

	body.is-account-app .customer-order-table .shipment-row {
		grid-template-columns: 1fr 1fr;
	}

	body.is-account-app .customer-order-search {
		grid-column: 1 / -1;
	}

	body.is-account-app .customer-new-shipment {
		grid-column: 2 / -1;
	}

	body.is-account-app .customer-order-clear {
		width: 100%;
	}

	body.is-account-app .cargo-topbar__stats {
		grid-template-columns: 1fr;
	}

	body.is-account-app .cargo-step,
	body.is-account-app .order-workspace,
	body.is-account-app .order-stage-card,
	body.is-account-app .order-package-card,
	body.is-account-app .order-cost-panel {
		padding: 14px;
		border-radius: var(--dashboard-radius);
	}

	body.is-account-app .declaration-grid div {
		min-height: auto;
	}

	body.is-account-app .cargo-step-controls {
		align-items: stretch;
		flex-direction: column;
	}

	body.is-account-app .cargo-step-controls .button,
	body.is-account-app .order-workspace__actions .button,
	body.is-account-app .consolidation-block .button {
		width: 100%;
	}

	body.is-account-app .warehouse-reference-grid,
	body.is-account-app .account-setting-grid,
	body.is-account-app .prohibited-grid,
	body.is-account-app .rate-cards {
		grid-template-columns: 1fr;
	}

	body.is-account-app .warehouse-reference-card,
	body.is-account-app .account-setting-card,
	body.is-account-app .prohibited-grid article {
		padding: 14px;
		border-radius: 10px;
	}

	body.is-account-app .warehouse-reference-card {
		grid-template-columns: 42px minmax(0, 1fr);
	}

	body.is-account-app .warehouse-reference-card .pin {
		width: 42px;
		height: 42px;
		font-size: 12px;
	}

body.is-account-app .rate-cards div,
body.is-account-app .prohibited-grid article {
		border-radius: 12px;
	}
}

body.is-account-app .customer-order-workspace {
	grid-template-columns: minmax(0, 1fr);
	min-width: 0;
	overflow: hidden;
	padding: 16px;
	border-radius: 8px;
}

body.is-account-app .customer-order-workspace > *,
body.is-account-app .customer-order-workspace .order-workspace__header,
body.is-account-app .customer-order-workspace .order-workspace__main,
body.is-account-app .customer-order-workspace .order-cost-panel {
	min-width: 0;
	max-width: 100%;
}

body.is-account-app .customer-order-workspace .order-workspace__grid {
	grid-template-columns: minmax(0, 1fr);
}

body.is-account-app .customer-order-workspace .order-workspace__actions .button {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

body.is-account-app .customer-order-workspace .order-stage-track {
	grid-template-columns: repeat(7, minmax(48px, 1fr));
	max-width: 100%;
	overflow-x: auto;
}

body.is-account-app .customer-order-workspace .order-stage-track div {
	min-width: 0;
	font-size: 10px;
}

body.is-account-app .customer-order-workspace .order-stage-track i {
	width: 28px;
	height: 28px;
}

/* Authenticated dashboard design tokens */
body.is-account-app,
body.is-staff-app {
	--dashboard-radius: 8px;
	--dashboard-border: 1px solid rgba(11, 78, 162, 0.12);
	--dashboard-shadow: none;
	--dashboard-control-height: 40px;
	--dashboard-label-color: #53657f;
	--dashboard-icon-size: 16px;
}

.dashboard-icon {
	display: inline-block;
	width: var(--dashboard-icon-size, 16px);
	height: var(--dashboard-icon-size, 16px);
	flex: 0 0 auto;
	vertical-align: -0.18em;
}

.dashboard-icon--inline {
	width: 14px;
	height: 14px;
	margin: 0 4px;
}

body.is-account-app .eyebrow,
body.is-staff-app .eyebrow {
	display: block;
	align-self: start;
	width: auto;
	margin: 0 0 6px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--dashboard-label-color);
	font-size: 11px;
	font-weight: 850;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: uppercase;
}

body.is-account-app .button,
body.is-staff-app .button,
body.is-account-app .customer-order-clear,
body.is-staff-app .staff-clear-filter,
body.is-staff-app .staff-invoice-action,
body.is-staff-app .staff-drawer-close {
	min-height: var(--dashboard-control-height);
	border-radius: var(--dashboard-radius);
	box-shadow: none;
}

body.is-account-app .button--secondary,
body.is-staff-app .button--secondary {
	border: var(--dashboard-border);
	background: #fff;
}

body.is-account-app .button i,
body.is-staff-app .button i {
	display: inline-grid;
	place-items: center;
}

body.is-account-app .cargo-topbar,
body.is-account-app .cargo-topbar__stats span,
body.is-account-app .customer-topbar-meta,
body.is-account-app .customer-kpi-grid article,
body.is-account-app .cargo-panel,
body.is-account-app .cargo-step,
body.is-account-app .customer-order-controls,
body.is-account-app .customer-order-table,
body.is-account-app .shipment-row,
body.is-account-app .customer-order-workspace,
body.is-account-app .order-declaration-strip,
body.is-account-app .order-stage-card,
body.is-account-app .order-package-card,
body.is-account-app .customer-estimate-card,
body.is-account-app .customer-final-invoice-card,
body.is-account-app .customer-invoice-card,
body.is-account-app .customer-payment-proof-card,
body.is-account-app .invoice-state,
body.is-account-app .customer-selected-order-edit,
body.is-account-app .customer-selected-order-edit summary,
body.is-account-app .shipment-detail__summary div,
body.is-account-app .customer-selected-order-edit .consolidation-list,
body.is-account-app .customer-selected-order-edit .consolidation-list div,
body.is-account-app .customer-selected-order-edit .existing-consolidation-edit,
body.is-account-app .customer-selected-order-edit .consolidation-item,
body.is-account-app .customer-selected-order-edit .consolidation-block,
body.is-account-app .warehouse-card,
body.is-account-app .method-card,
body.is-account-app .currency-card,
body.is-account-app .warehouse-reference-card,
body.is-account-app .account-setting-card,
body.is-account-app .prohibited-grid article,
body.is-account-app .rate-cards div,
body.is-account-app .order-cost-panel,
body.is-staff-app .staff-kpi-grid a,
body.is-staff-app .staff-filter-bar,
body.is-staff-app .staff-queue,
body.is-staff-app .staff-queue-row,
body.is-staff-app .staff-invoice-drawer,
body.is-staff-app .staff-editor-section,
body.is-staff-app .staff-package-receipt-card,
body.is-staff-app .staff-email-preview,
body.is-staff-app .staff-inline-note,
body.is-staff-app .staff-accounts-panel,
body.is-staff-app .staff-account-row,
body.is-staff-app .staff-password-panel,
body.is-staff-app .staff-action-bar {
	border-radius: var(--dashboard-radius);
	box-shadow: var(--dashboard-shadow);
}

body.is-account-app .customer-kpi-grid i {
	color: #fff;
	font-size: 0;
}

body.is-account-app .customer-kpi-grid i .dashboard-icon {
	width: 18px;
	height: 18px;
}

body.is-account-app .order-stage-track i .dashboard-icon {
	width: 16px;
	height: 16px;
}

body.is-account-app .customer-kpi-grid small {
	display: inline-flex;
	gap: 4px;
	align-items: center;
}

body.is-account-app .customer-package-state--editable {
	border-color: rgba(11, 88, 208, 0.24);
	background: #edf5ff;
	color: #0b58d0;
}

body.is-account-app .customer-package-state--locked {
	border-color: rgba(83, 101, 127, 0.24);
	background: #f1f5f9;
	color: #53657f;
}

/* Staff operations app shell */
body.is-staff-app {
	background: #f4f7fb;
	color: #071933;
}

body.is-staff-app .skip-link {
	z-index: 20;
}

body.is-staff-app .page-content--staff-app {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

body.is-staff-app .notice {
	position: fixed;
	z-index: 30;
	top: 16px;
	left: 50%;
	width: min(560px, calc(100vw - 32px));
	transform: translateX(-50%);
	box-shadow: 0 18px 44px rgba(16, 33, 58, 0.14);
}

.staff-app-shell,
.staff-app-shell *,
.staff-app-shell *::before,
.staff-app-shell *::after {
	box-sizing: border-box;
}

.staff-app-shell {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	min-height: 100dvh;
	background: #f4f7fb;
}

.staff-sidebar {
	position: sticky;
	top: 0;
	display: grid;
	height: 100dvh;
	align-content: start;
	gap: 22px;
	padding: 18px 14px;
	background: linear-gradient(180deg, #062b63 0%, #031a3d 100%);
	color: #fff;
}

.staff-sidebar__brand {
	display: grid;
	gap: 6px;
	padding: 12px;
	color: #fff;
	font-weight: 900;
	text-decoration: none;
}

.staff-sidebar__brand img {
	width: 154px;
	height: 74px;
	object-fit: contain;
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.staff-sidebar__brand span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	text-transform: uppercase;
}

.staff-nav {
	display: grid;
	gap: 8px;
}

.staff-nav a {
	display: flex;
	min-height: 46px;
	align-items: center;
	justify-content: space-between;
	padding: 0 12px;
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	font-weight: 850;
	text-decoration: none;
}

.staff-nav a:hover,
.staff-nav a.is-active {
	background: #0b58d0;
	color: #fff;
}

.staff-nav b {
	min-width: 28px;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 12px;
	text-align: center;
}

.staff-user-card {
	position: absolute;
	right: 14px;
	bottom: 18px;
	left: 14px;
	display: grid;
	gap: 4px;
	padding: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	font-weight: 750;
}

.staff-user-card strong {
	color: #fff;
	font-size: 15px;
}

.staff-user-card a {
	color: #fff;
	font-weight: 850;
}

.staff-user-card form {
	margin: 4px 0 0;
}

.staff-user-card button {
	min-height: 34px;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font: inherit;
	font-weight: 900;
	cursor: pointer;
}

.staff-workspace {
	display: grid;
	align-content: start;
	gap: 16px;
	min-width: 0;
	padding: 18px;
}

.staff-command-bar,
.staff-filter-bar,
.staff-kpi-grid a,
.staff-queue,
.staff-detail-panel {
	border: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 38px rgba(16, 33, 58, 0.07);
}

.staff-command-bar {
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
}

.staff-command-bar h1 {
	margin: 0;
	color: #071933;
	font-size: 22px;
	line-height: 1.1;
}

.staff-command-bar p {
	margin: 5px 0 0;
	color: #627187;
	font-size: 13px;
	font-weight: 750;
}

.staff-currency-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(170px, 1fr)) auto;
	gap: 10px;
	align-items: end;
	width: min(780px, 100%);
}

.staff-currency-form .staff-settings-note {
	grid-column: 1 / -1;
	margin: 0;
	color: #627187;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.35;
}

.staff-currency-form label,
.staff-filter-bar label,
.staff-field-grid label {
	display: grid;
	gap: 6px;
	color: #415276;
	font-size: 12px;
	font-weight: 900;
}

.staff-currency-form input,
.staff-filter-bar input,
.staff-filter-bar select,
.staff-field-grid input,
.staff-field-grid select,
.staff-field-grid textarea {
	width: 100%;
	min-height: 40px;
	border: 1px solid rgba(11, 78, 162, 0.18);
	border-radius: 8px;
	background: #f9fbff;
	color: #071933;
	font: inherit;
	font-size: 14px;
	font-weight: 750;
}

.staff-field-grid textarea {
	min-height: 116px;
	padding: 10px 12px;
	resize: vertical;
}

.staff-currency-form button,
.staff-filter-bar button,
.staff-clear-filter {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border: 0;
	border-radius: 8px;
	background: #0b58d0;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	cursor: pointer;
}

.staff-clear-filter {
	border: 1px solid rgba(11, 78, 162, 0.16);
	background: #fff;
	color: #0b58d0;
}

.staff-kpi-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.staff-kpi-grid a {
	display: grid;
	gap: 5px;
	padding: 16px;
	text-decoration: none;
}

.staff-kpi-grid span {
	color: #415276;
	font-size: 13px;
	font-weight: 850;
}

.staff-kpi-grid strong {
	color: #071933;
	font-size: 28px;
	line-height: 1;
}

.staff-kpi-grid small {
	color: #0b58d0;
	font-size: 13px;
	font-weight: 900;
}

.staff-section-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.staff-section-heading h2 {
	margin: 0;
	color: #071933;
	font-size: clamp(30px, 1.4vw, 40px);
	line-height: 1.05;
	letter-spacing: 0;
}

.staff-section-heading p {
	margin: 4px 0 0;
	color: #53657f;
	font-size: 13px;
	font-weight: 750;
	line-height: 1.45;
}

.staff-accounts-panel,
.staff-password-panel {
	display: grid;
	gap: 14px;
	padding: 16px;
	border: 1px solid rgba(11, 78, 162, 0.12);
	background: #fff;
}

.staff-account-create {
	padding: 12px;
	border: 1px solid rgba(11, 78, 162, 0.1);
	border-radius: 8px;
	background: #f8fbff;
}

.staff-account-table {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.staff-account-table__head,
.staff-account-row {
	display: grid;
	grid-template-columns: minmax(120px, 1.1fr) minmax(160px, 1.2fr) minmax(190px, 1fr) minmax(86px, 0.6fr) minmax(110px, 0.7fr) minmax(260px, 1.6fr);
	gap: 10px;
	align-items: center;
}

.staff-account-table__head {
	padding: 0 10px;
	color: #53657f;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.staff-account-row {
	padding: 10px;
	border: 1px solid rgba(11, 78, 162, 0.1);
	border-radius: 8px;
	background: #fff;
	color: #071933;
	font-size: 13px;
	font-weight: 800;
}

.staff-account-row.is-disabled {
	background: #f8fafc;
	color: #64748b;
}

.staff-account-row span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.staff-account-row small {
	display: block;
	margin-top: 3px;
	color: #53657f;
	font-size: 11px;
}

.staff-account-status {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	min-height: 26px;
	padding: 0 8px;
	border-radius: 999px;
	background: #e9fbf1;
	color: #08794b;
	font-size: 12px;
}

.staff-account-status.is-disabled {
	background: #f1f5f9;
	color: #64748b;
}

.staff-account-inline-form,
.staff-account-actions {
	display: grid;
	gap: 8px;
}

.staff-account-inline-form {
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
}

.staff-account-inline-form input,
.staff-account-inline-form select {
	min-height: 38px;
	width: 100%;
	padding: 0 10px;
	border: 1px solid rgba(11, 78, 162, 0.16);
	border-radius: 8px;
	background: #fff;
	color: #071933;
	font: inherit;
	font-size: 12px;
}

.staff-account-inline-form button,
.staff-account-create button,
.staff-password-panel button {
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid rgba(11, 88, 208, 0.18);
	border-radius: 8px;
	background: #0b58d0;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	cursor: pointer;
	white-space: nowrap;
}

.staff-account-inline-form button:disabled,
.staff-account-inline-form select:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.staff-filter-bar {
	display: grid;
	grid-template-columns: minmax(260px, 1fr) minmax(160px, 220px) minmax(160px, 220px) auto auto;
	gap: 10px;
	align-items: end;
	padding: 14px;
}

.staff-search {
	min-width: 0;
}

.staff-ops-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
	align-items: start;
	min-width: 0;
	border: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(16, 33, 58, 0.08);
}

.staff-ops-grid--full.has-drawer {
	grid-template-columns: minmax(680px, 1fr) minmax(420px, 0.42fr);
}

.staff-queue {
	overflow: hidden;
	border: 0;
	border-radius: 8px;
	box-shadow: none;
}

.staff-ops-grid--full.has-drawer .staff-queue {
	border-right: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 8px 0 0 8px;
}

.staff-ops-grid--full.has-drawer .staff-queue__head,
.staff-ops-grid--full.has-drawer .staff-queue-row {
	grid-template-columns: minmax(124px, 1fr) minmax(150px, 1.18fr) minmax(96px, 0.74fr) minmax(82px, 0.62fr) minmax(84px, 0.62fr) minmax(72px, 0.48fr);
}

.staff-ops-grid--full.has-drawer .staff-queue__head span:nth-child(3),
.staff-ops-grid--full.has-drawer .staff-queue__head span:nth-child(5),
.staff-ops-grid--full.has-drawer .staff-queue__route,
.staff-ops-grid--full.has-drawer .staff-queue__weight {
	display: none;
}

.staff-queue__head,
.staff-queue-row {
	display: grid;
	grid-template-columns: minmax(128px, 0.95fr) minmax(170px, 1.12fr) minmax(84px, 0.48fr) minmax(118px, 0.68fr) minmax(94px, 0.5fr) minmax(92px, 0.56fr) minmax(100px, 0.54fr) minmax(82px, 0.44fr);
	gap: 10px;
	align-items: center;
}

.staff-queue__head {
	padding: 12px 14px;
	border-bottom: 1px solid rgba(11, 78, 162, 0.12);
	color: #627187;
	font-size: 11px;
	font-weight: 950;
	text-transform: uppercase;
}

.staff-queue-row {
	min-height: 62px;
	padding: 12px 14px;
	border-bottom: 1px solid rgba(11, 78, 162, 0.08);
	color: #10213a;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.staff-queue-row:hover,
.staff-queue-row.is-selected {
	background: #f5f9ff;
}

.staff-queue-row.is-selected {
	box-shadow: inset 3px 0 0 #0b58d0;
}

.staff-queue-row strong {
	color: #071933;
	font-size: 13px;
}

.staff-queue-row small {
	display: block;
	margin-top: 3px;
	color: #627187;
	font-weight: 800;
}

.staff-queue-row > span {
	min-width: 0;
}

.staff-queue__tracking {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

.staff-queue__route {
	white-space: nowrap;
}

.staff-queue__customer {
	overflow-wrap: anywhere;
	line-height: 1.25;
}

.staff-queue__status,
.staff-queue__invoice,
.staff-queue__actions {
	display: flex;
	min-width: 0;
	align-items: center;
}

.staff-queue__status .staff-badge,
.staff-queue__invoice .staff-badge {
	max-width: 100%;
	white-space: normal;
	text-align: center;
	line-height: 1.15;
}

.staff-queue__total {
	text-align: right;
}

.staff-queue__weight {
	color: #415276;
	font-size: 12px;
	font-weight: 900;
}

.staff-invoice-action,
.staff-drawer-close {
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	border: 1px solid rgba(11, 78, 162, 0.18);
	border-radius: 7px;
	background: #fff;
	color: #0b58d0;
	font-size: 12px;
	font-weight: 950;
	text-decoration: none;
}

.staff-invoice-action:hover,
.staff-drawer-close:hover {
	border-color: rgba(11, 88, 208, 0.36);
	background: #edf5ff;
}

.staff-badge {
	display: inline-flex;
	width: fit-content;
	min-height: 22px;
	align-items: center;
	justify-content: center;
	padding: 2px 7px;
	border: 1px solid rgba(11, 78, 162, 0.16);
	border-radius: 5px;
	background: #eef5ff;
	color: #0b58d0;
	font-size: 10px;
	font-weight: 950;
	line-height: 1;
}

.staff-badge--dgr {
	border-color: rgba(209, 0, 32, 0.22);
	background: #fff1f3;
	color: var(--brand-red);
}

.staff-badge--awaiting-package,
.staff-badge--invoice-pending {
	border-color: rgba(229, 161, 0, 0.32);
	background: #fff8df;
	color: #936000;
}

.staff-badge--paid,
.staff-badge--invoice-paid,
.staff-badge--delivered {
	border-color: rgba(0, 143, 86, 0.24);
	background: #edfdf5;
	color: #00744d;
}

.staff-badge--shipped,
.staff-badge--in-transit,
.staff-badge--arrived,
.staff-badge--processing,
.staff-badge--invoice-issued {
	border-color: rgba(11, 88, 208, 0.24);
	background: #edf5ff;
	color: #0b58d0;
}

.staff-detail-panel {
	display: grid;
	gap: 14px;
	border: 0;
	border-radius: 8px;
	box-shadow: none;
	padding: 18px;
}

.staff-invoice-drawer {
	position: sticky;
	top: 18px;
	max-height: calc(100dvh - 36px);
	overflow: auto;
	border-left: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 0 8px 8px 0;
	background: #fff;
}

.staff-invoice-drawer .staff-field-grid,
.staff-invoice-drawer .staff-field-grid--notes {
	grid-template-columns: 1fr;
}

.staff-invoice-drawer .staff-payment-proof {
	grid-template-columns: 1fr;
}

.staff-invoice-drawer .staff-action-bar {
	grid-template-columns: 1fr 1fr;
}

.staff-invoice-drawer .staff-action-bar .button {
	width: 100%;
	padding: 0 10px;
}

.staff-detail-header {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	justify-content: space-between;
}

.staff-detail-header h2 {
	margin: 0;
	color: #071933;
	font-size: 22px;
	line-height: 1;
}

.staff-detail-header p {
	margin: 7px 0 0;
	color: #627187;
	font-size: 12px;
	font-weight: 800;
}

.staff-detail-badges,
.staff-detail-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.staff-detail-meta {
	padding: 0 0 12px;
	border-bottom: 1px solid rgba(11, 78, 162, 0.1);
	color: #415276;
	font-size: 13px;
	font-weight: 850;
}

.staff-editor-section {
	display: grid;
	gap: 10px;
	padding: 0 0 12px;
	border-bottom: 1px solid rgba(11, 78, 162, 0.08);
}

.staff-editor-section h3 {
	margin: 0;
	color: #071933;
	font-size: 15px;
	line-height: 1.2;
}

.staff-field-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.staff-field-grid--notes {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.staff-package-receipt-grid {
	display: grid;
	gap: 10px;
}

.staff-package-receipt-card {
	display: grid;
	gap: 10px;
	padding: 12px;
	border: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 8px;
	background: #f8fbff;
}

.staff-package-receipt-card.is-received {
	border-color: rgba(0, 143, 86, 0.18);
	background: #fbfffd;
}

.staff-package-receipt-card header {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	justify-content: space-between;
}

.staff-package-receipt-card header div {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.staff-package-receipt-card strong {
	color: #071933;
	font-size: 13px;
	line-height: 1.2;
}

.staff-package-receipt-card span,
.staff-package-receipt-card p {
	margin: 0;
	color: #53657f;
	font-size: 12px;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.staff-package-receipt-card .staff-field-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.staff-inline-note {
	margin: 0;
	padding: 10px 12px;
	border: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 8px;
	background: #f5f9ff;
	color: #506177;
	font-size: 12px;
	font-weight: 800;
}

.staff-email-preview,
.staff-payment-proof {
	display: grid;
	gap: 7px;
	padding: 12px;
	border: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 8px;
	background: #f9fbff;
	color: #415276;
	font-size: 12px;
	font-weight: 800;
}

.staff-email-preview strong,
.staff-payment-proof strong {
	color: #071933;
}

.staff-email-preview p,
.staff-payment-proof p {
	margin: 0;
}

.staff-payment-proof {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.staff-payment-proof p {
	grid-column: 1 / -1;
}

.staff-payment-proof span {
	display: block;
	color: #627187;
	font-size: 11px;
	text-transform: uppercase;
}

.staff-proof-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.staff-action-bar {
	position: sticky;
	bottom: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(110px, 1fr)) auto auto auto;
	gap: 10px;
	align-items: center;
	margin: 2px -18px -18px;
	padding: 12px 18px;
	border-top: 1px solid rgba(11, 78, 162, 0.12);
	border-radius: 0 0 8px 0;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 -12px 30px rgba(16, 33, 58, 0.08);
	backdrop-filter: blur(12px);
}

.staff-action-bar div {
	display: grid;
	gap: 3px;
}

.staff-action-bar span {
	color: #627187;
	font-size: 12px;
	font-weight: 850;
}

.staff-action-bar strong {
	color: #071933;
	font-size: 16px;
}

.staff-action-bar .button {
	min-height: 46px;
	padding: 0 18px;
	border-radius: 8px;
	font-size: 14px;
}

.staff-empty-state,
.staff-detail-panel--empty {
	padding: 24px;
	color: #627187;
	font-weight: 800;
}

@media (max-width: 1320px) {
	.staff-app-shell {
		grid-template-columns: 220px minmax(0, 1fr);
	}

	.staff-ops-grid--full.has-drawer,
	.staff-ops-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.staff-queue {
		border-right: 0;
		border-bottom: 1px solid rgba(11, 78, 162, 0.12);
		border-radius: 8px 8px 0 0;
	}

	.staff-invoice-drawer {
		position: static;
		max-height: none;
		border-left: 0;
		border-radius: 0 0 8px 8px;
	}

	.staff-detail-panel {
		border-radius: 0 0 8px 8px;
	}
}

@media (max-width: 900px) {
	.staff-app-shell {
		grid-template-columns: 1fr;
	}

	.staff-sidebar {
		position: static;
		height: auto;
		grid-template-columns: auto minmax(0, 1fr);
		gap: 10px 12px;
		padding: 10px 12px;
	}

	.staff-sidebar__brand {
		padding: 0;
	}

	.staff-sidebar__brand img {
		width: 118px;
		height: 54px;
	}

	.staff-sidebar__brand span,
	.staff-user-card {
		display: none;
	}

	.staff-nav {
		display: flex;
		gap: 6px;
		overflow-x: auto;
		padding-bottom: 2px;
	}

	.staff-nav a {
		flex: 0 0 auto;
		min-height: 38px;
		padding: 0 10px;
		font-size: 12px;
		white-space: nowrap;
	}

	.staff-workspace {
		padding: 12px;
	}

	.staff-command-bar,
	.staff-filter-bar,
	.staff-account-table__head,
	.staff-account-row {
		grid-template-columns: 1fr;
		align-items: stretch;
	}

	.staff-account-table__head {
		display: none;
	}

	.staff-account-row {
		align-items: stretch;
	}

	.staff-account-inline-form {
		grid-template-columns: 1fr auto;
	}

	.staff-command-bar {
		display: grid;
	}

	.staff-currency-form {
		align-items: end;
	}

	.staff-kpi-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.staff-workspace {
		gap: 10px;
		padding: 10px;
	}

	.staff-command-bar {
		padding: 12px;
	}

	.staff-command-bar h1 {
		font-size: 18px;
	}

	.staff-command-bar p {
		display: none;
	}

	.staff-kpi-grid {
		display: flex;
		overflow-x: auto;
		gap: 8px;
	}

	.staff-kpi-grid a {
		flex: 0 0 118px;
		padding: 12px;
	}

	.staff-kpi-grid strong {
		font-size: 22px;
	}

	.staff-filter-bar {
		padding: 10px;
	}

	.staff-accounts-panel,
	.staff-password-panel {
		padding: 12px;
	}

	.staff-section-heading {
		display: grid;
	}

	.staff-account-create,
	.staff-password-panel .staff-field-grid {
		grid-template-columns: 1fr;
	}

	.staff-account-inline-form,
	.staff-account-actions {
		grid-template-columns: 1fr;
	}

	.staff-queue__head {
		display: none;
	}

	.staff-queue-row {
		grid-template-columns: 1fr auto;
		gap: 8px;
		align-items: start;
		min-height: 0;
		padding: 14px;
	}

	.staff-ops-grid--full.has-drawer .staff-queue__head,
	.staff-ops-grid--full.has-drawer .staff-queue-row {
		grid-template-columns: 1fr auto;
	}

	.staff-queue__route,
	.staff-queue__customer,
	.staff-queue__weight {
		grid-column: 1;
	}

	.staff-queue__status,
	.staff-queue__invoice,
	.staff-queue__actions {
		justify-self: end;
	}

	.staff-queue__total {
		grid-column: 1 / -1;
		text-align: left;
	}

	.staff-payment-proof {
		grid-template-columns: 1fr;
	}

	.staff-detail-panel {
		order: -1;
		gap: 10px;
		padding: 14px;
		border-radius: 8px;
	}

	.staff-detail-header {
		flex-direction: column;
	}

	.staff-field-grid,
	.staff-field-grid--notes {
		grid-template-columns: 1fr;
	}

	.staff-editor-section {
		padding: 12px;
		border: 1px solid rgba(11, 78, 162, 0.1);
		border-radius: 8px;
		background: #fff;
	}

	.staff-action-bar {
		grid-template-columns: 1fr 1fr;
		margin: 0 -14px -14px;
		padding: 10px 14px;
		border-radius: 0 0 8px 8px;
	}

	.staff-action-bar .button {
		width: 100%;
		min-height: 44px;
		padding: 0 10px;
	}
}

@media (max-width: 480px) {
	.staff-sidebar {
		grid-template-columns: 1fr;
	}

	.staff-sidebar__brand {
		display: none;
	}

	.staff-nav {
		margin: 0 -12px;
		padding: 0 12px 2px;
	}

	.staff-currency-form {
		grid-template-columns: 1fr;
		display: grid;
	}

	.staff-action-bar {
		grid-template-columns: 1fr;
	}
}

/* Dashboard app final override layer */
body.is-account-app .cargo-topbar h2,
body.is-account-app .cargo-panel__intro h2,
body.is-account-app .order-workspace__header h2,
body.is-account-app .customer-order-workspace .order-workspace__header h2,
body.is-staff-app .staff-detail-header h2 {
	font-size: clamp(30px, 1.4vw, 40px);
	line-height: 1.05;
}

body.is-account-app .cargo-support-card {
	opacity: 1;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(2, 26, 63, 0.42);
	box-shadow: none;
	color: rgba(255, 255, 255, 0.88);
}

body.is-account-app .cargo-support-card strong {
	color: #fff;
	font-weight: 950;
}

body.is-account-app .cargo-support-card p {
	color: rgba(255, 255, 255, 0.82);
}

body.is-account-app .cargo-support-card .button {
	border-color: rgba(255, 255, 255, 0.82);
	background: #fff;
	color: #062b63;
	font-weight: 950;
}

body.is-account-app .cargo-step,
body.is-account-app .order-workspace,
body.is-account-app .order-stage-card,
body.is-account-app .order-package-card,
body.is-account-app .customer-estimate-card,
body.is-account-app .customer-final-invoice-card,
body.is-account-app .customer-invoice-card,
body.is-account-app .customer-payment-proof-card,
body.is-account-app .warehouse-reference-card,
body.is-account-app .account-setting-card,
body.is-account-app .prohibited-grid article,
body.is-account-app .rate-cards div,
body.is-account-app .order-cost-panel,
body.is-staff-app .staff-command-bar,
body.is-staff-app .staff-filter-bar,
body.is-staff-app .staff-kpi-grid a,
body.is-staff-app .staff-queue,
body.is-staff-app .staff-queue-row,
body.is-staff-app .staff-invoice-drawer,
body.is-staff-app .staff-editor-section,
body.is-staff-app .staff-package-receipt-card,
body.is-staff-app .staff-email-preview,
body.is-staff-app .staff-inline-note,
body.is-staff-app .staff-action-bar {
	border-radius: var(--dashboard-radius);
	box-shadow: none;
}

body.is-account-app .cargo-step,
body.is-account-app .customer-declaration-step {
	border-color: rgba(11, 78, 162, 0.12);
	background: #fff;
}

body.is-account-app .customer-declaration-step .dgr-alert,
body.is-account-app .customer-declaration-step .declaration-grid div,
body.is-account-app .customer-declaration-step .consent-confirm {
	border-radius: var(--dashboard-radius);
	box-shadow: none;
}

body.is-account-app .consent-confirm input[type="checkbox"],
body.is-account-app .currency-card input[type="radio"],
body.is-account-app .warehouse-card input[type="radio"],
body.is-account-app .method-card input[type="radio"] {
	position: absolute;
	width: 1px;
	min-width: 1px;
	height: 1px;
	min-height: 1px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
}

body.is-account-app .currency-card,
body.is-account-app .warehouse-card,
body.is-account-app .method-card {
	border-radius: var(--dashboard-radius);
	box-shadow: none;
	transform: none;
}

body.is-account-app .currency-card:hover,
body.is-account-app .warehouse-card:hover,
body.is-account-app .method-card:hover,
body.is-account-app .warehouse-card.is-selected,
body.is-account-app .method-card.is-selected,
body.is-account-app .currency-card:has(input:checked) {
	border-color: rgba(11, 88, 208, 0.38);
	background: #f7fbff;
	box-shadow: none;
	transform: none;
}

body.is-account-app .currency-card::after,
body.is-account-app .warehouse-card::after,
body.is-account-app .method-card::after {
	position: absolute;
	top: 12px;
	right: 12px;
	display: grid;
	width: 18px;
	height: 18px;
	place-items: center;
	border: 1px solid rgba(11, 78, 162, 0.24);
	border-radius: 50%;
	background: #fff;
	content: "";
}

body.is-account-app .currency-card:has(input:checked)::after,
body.is-account-app .warehouse-card.is-selected::after,
body.is-account-app .method-card.is-selected::after {
	border-color: #0b58d0;
	background: radial-gradient(circle at center, #0b58d0 0 5px, #fff 5px);
}

body.is-account-app .method-card span .dashboard-icon {
	width: 24px;
	height: 24px;
}

body.is-account-app .method-card span {
	border: 1px solid rgba(11, 78, 162, 0.16);
	background: #edf5ff;
	font-size: 0;
}

body.is-account-app .dashboard-form-grid input,
body.is-account-app .dashboard-form-grid select,
body.is-account-app .dashboard-form-grid textarea,
body.is-account-app .payment-proof-form input,
body.is-account-app .payment-proof-form textarea {
	min-height: 44px;
	border-radius: var(--dashboard-radius);
	font-size: 14px;
}

body.is-account-app .dashboard-form-grid textarea,
body.is-account-app .payment-proof-form textarea {
	padding: 10px 12px;
}

body.is-account-app .cargo-step-controls {
	justify-content: flex-end;
}

body.is-account-app .cargo-step-controls .button,
body.is-account-app .cargo-step--form > .button,
body.is-account-app #buy-ship .button--primary {
	width: fit-content;
	min-height: 42px;
	padding: 0 14px;
	border-radius: var(--dashboard-radius);
	font-size: 13px;
}

body.is-account-app .cargo-options .cargo-check,
body.is-account-app .order-flags .cargo-check {
	width: fit-content;
	max-width: 100%;
	min-height: 40px;
	padding: 9px 11px;
	border-radius: var(--dashboard-radius);
	font-size: 13px;
	line-height: 1.2;
}

body.is-account-app .customer-selected-order-edit .cargo-options,
body.is-account-app .customer-selected-order-edit .order-flags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: flex-start;
}

body.is-account-app .customer-selected-order-edit .order-flags.wide {
	grid-column: 1 / -1;
}

body.is-account-app .customer-selected-order-edit .order-flags .cargo-check {
	display: inline-flex;
	width: auto;
	min-width: 220px;
	white-space: nowrap;
}

.staff-dashboard-icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	vertical-align: middle;
}

.staff-dashboard-icon--inline {
	width: 14px;
	height: 14px;
	margin: 0 3px;
}

body.is-staff-app .staff-queue__route,
body.is-staff-app .staff-detail-meta span {
	display: inline-flex;
	gap: 4px;
	align-items: center;
}

@media (max-width: 620px) {
	body.is-account-app .cargo-app[data-active-dashboard-panel="create"] .customer-kpi-grid,
	body.is-account-app .cargo-app[data-active-dashboard-panel="buy-ship"] .customer-kpi-grid {
		display: none;
	}

	body.is-account-app .cargo-app[data-active-dashboard-panel="create"] .cargo-topbar,
	body.is-account-app .cargo-app[data-active-dashboard-panel="buy-ship"] .cargo-topbar {
		margin-bottom: 10px;
	}

	body.is-account-app .cargo-app[data-active-dashboard-panel="create"] .cargo-panel,
	body.is-account-app .cargo-app[data-active-dashboard-panel="buy-ship"] .cargo-panel {
		gap: 12px;
	}

	body.is-account-app .cargo-app[data-active-dashboard-panel="create"] .cargo-panel__intro,
	body.is-account-app .cargo-app[data-active-dashboard-panel="buy-ship"] .cargo-panel__intro {
		gap: 10px;
	}

	body.is-account-app .cargo-step-controls {
		align-items: stretch;
	}

	body.is-account-app .cargo-step-controls .button,
	body.is-account-app .cargo-step--form > .button,
	body.is-account-app #buy-ship .button--primary {
		width: 100%;
		min-height: 42px;
	}
}
